BUG 25901

This commit is contained in:
aixianling
2021-12-24 10:02:37 +08:00
parent a5261dcd61
commit 3e6fb9f710
33 changed files with 35 additions and 37 deletions

View File

@@ -119,7 +119,7 @@
</div> </div>
</div> </div>
</u-popup> </u-popup>
<AiBack custom @back="back"/>
</div> </div>
<div class="detail" v-if="isShowConfig"> <div class="detail" v-if="isShowConfig">
<component <component

View File

@@ -61,7 +61,7 @@
</div> </div>
</div> </div>
</div> </div>
<AiBack custom @back="$emit('back')"/>
</div> </div>
</template> </template>

View File

@@ -82,7 +82,7 @@
<u-select v-model="showSelect" :list="selectList" @confirm="confirm" label-name="dictName" <u-select v-model="showSelect" :list="selectList" @confirm="confirm" label-name="dictName"
value-name="dictValue"></u-select> value-name="dictValue"></u-select>
<u-picker v-model="showDateTime" mode="time" :params="params" @confirm="confirm"></u-picker> <u-picker v-model="showDateTime" mode="time" :params="params" @confirm="confirm"></u-picker>
<AiBack/>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -10,7 +10,7 @@
</div> </div>
</div> </div>
<AiEmpty v-if="!list.length"/> <AiEmpty v-if="!list.length"/>
<AiBack/>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -11,7 +11,7 @@
</div> </div>
</div> </div>
<AiEmpty v-if="!list.length"></AiEmpty> <AiEmpty v-if="!list.length"></AiEmpty>
<AiBack/>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -18,7 +18,7 @@
<div class="btn bg-AFD0FC" v-if="item.broadcastStatus == 6">已取消</div> <div class="btn bg-AFD0FC" v-if="item.broadcastStatus == 6">已取消</div>
</div> </div>
</div> </div>
<AiBack></AiBack>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -28,7 +28,7 @@
</div> </div>
</div> </div>
</template> </template>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -48,7 +48,7 @@
<div class="btn" @click="submit">确认上报</div> <div class="btn" @click="submit">确认上报</div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -83,7 +83,7 @@
</div> </div>
</div> </div>
<u-picker mode="time" v-model="show" :params="options" @confirm="confirm"></u-picker> <u-picker mode="time" v-model="show" :params="options" @confirm="confirm"></u-picker>
<AiBack ref="aiBack" v-if="!userSelect"/>
</div> </div>
</template> </template>

View File

@@ -38,7 +38,7 @@
<AiEmpty/> <AiEmpty/>
</template> </template>
</div> </div>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -95,7 +95,7 @@
</div> </div>
</template> </template>
<u-modal v-model="show" title="提示" show-cancel-button content='是否要取消该会议?' @confirm="onConfirm"></u-modal> <u-modal v-model="show" title="提示" show-cancel-button content='是否要取消该会议?' @confirm="onConfirm"></u-modal>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -31,7 +31,7 @@
</div> </div>
<u-loadmore :status="status" v-if="list.length"/> <u-loadmore :status="status" v-if="list.length"/>
<AiEmpty v-if="!list.length"></AiEmpty> <AiEmpty v-if="!list.length"></AiEmpty>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -61,7 +61,7 @@
<div @click="add(1)">立即发布</div> <div @click="add(1)">立即发布</div>
</div> </div>
</div> </div>
<AiBack ref="aiBack" v-if="!userSelect"/>
<u-picker v-model="show" mode="time" :params="options" @confirm="confirm"></u-picker> <u-picker v-model="show" mode="time" :params="options" @confirm="confirm"></u-picker>
</div> </div>
</template> </template>

View File

@@ -51,7 +51,7 @@
</div> </div>
</template> </template>
<AiEmpty description="该通知已撤回" v-else/> <AiEmpty description="该通知已撤回" v-else/>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -9,7 +9,7 @@
<span v-text="item.name"/> <span v-text="item.name"/>
</div> </div>
</div> </div>
<AiBack/>
</div> </div>
</template> </template>

View File

@@ -48,7 +48,7 @@
<textarea placeholder-style="color: #999; font-size: 30rpx;" placeholder="请输入"></textarea> <textarea placeholder-style="color: #999; font-size: 30rpx;" placeholder="请输入"></textarea>
</div> --> </div> -->
<div class="btn" hover-class="text" @click="submit">保存</div> <div class="btn" hover-class="text" @click="submit">保存</div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -9,7 +9,7 @@
</div> </div>
</u-row> </u-row>
</div> </div>
<AiBack custom @back="top.showTagManage=false"/>
</section> </section>
</template> </template>

View File

@@ -71,7 +71,7 @@
</div> </div>
</template> </template>
<tag-manage v-if="showTagManage"/> <tag-manage v-if="showTagManage"/>
<AiBack v-if="isNormal&&!showTagManage"/>
</div> </div>
</template> </template>

View File

@@ -12,7 +12,7 @@
<component :is="currentTab.comp"/> <component :is="currentTab.comp"/>
</template> </template>
</template> </template>
<AiBack v-if="isNormal&&!showTagManage"/>
</section> </section>
</template> </template>

View File

@@ -54,7 +54,7 @@
<div class="btn" @click="submit">保存</div> <div class="btn" @click="submit">保存</div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -74,7 +74,7 @@
</template> </template>
<TagManage v-if="showTagManage" /> <TagManage v-if="showTagManage" />
<AiBack v-if="isNormal && !showTagManage" />
</div> </div>
</template> </template>

View File

@@ -11,7 +11,7 @@
<component :is="currentTab.comp" /> <component :is="currentTab.comp" />
</template> </template>
</template> </template>
<AiBack v-if="isNormal && !showTagManage" />
</section> </section>
</template> </template>

View File

@@ -8,7 +8,7 @@
</div> </div>
</u-row> </u-row>
</div> </div>
<AiBack custom @back="top.showTagManage = false" />
</section> </section>
</template> </template>

View File

@@ -25,7 +25,7 @@
<!-- <audio :src="url" ref="audio" :controls="true" :name="autioName" style="display: block;"></audio> --> <!-- <audio :src="url" ref="audio" :controls="true" :name="autioName" style="display: block;"></audio> -->
</div> </div>
</u-popup> </u-popup>
<AiBack/>
</div> </div>
</template> </template>
<script> <script>

View File

@@ -29,7 +29,7 @@
</div> </div>
</div> </div>
<div class="btn" @click="confirm">确认</div> <div class="btn" @click="confirm">确认</div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -113,7 +113,7 @@
<img v-else :src="isRecording ? stopImg : microphone" @click="record"> <img v-else :src="isRecording ? stopImg : microphone" @click="record">
<span v-if="isStop" @click="save">保存</span> <span v-if="isStop" @click="save">保存</span>
</div> </div>
<AiBack/>
<audio style="opacity: 0; visibility: hidden;" :src="audioSrc" @ended="onAudioEnd"></audio> <audio style="opacity: 0; visibility: hidden;" :src="audioSrc" @ended="onAudioEnd"></audio>
</div> </div>
</template> </template>

View File

@@ -35,7 +35,7 @@
<div class="btn" @click="submit">保存</div> <div class="btn" @click="submit">保存</div>
<AiBack></AiBack>
</div> </div>
</template> </template>
@@ -70,7 +70,7 @@ export default {
if(o.id) { if(o.id) {
this.id = o.id this.id = o.id
} }
this.moduleId = o.moduleId this.moduleId = o.moduleId
this.forms.areaId = this.user.areaId this.forms.areaId = this.user.areaId
this.listName = o.listName this.listName = o.listName
@@ -139,7 +139,7 @@ export default {
id: this.id, id: this.id,
moduleId: this.moduleId, moduleId: this.moduleId,
categoryId: categoryId, categoryId: categoryId,
categoryName: categoryName, categoryName: categoryName,
}) })
.then((res) => { .then((res) => {
console.log(333) console.log(333)
@@ -151,8 +151,6 @@ export default {
uni.navigateBack() uni.navigateBack()
}, 600) }, 600)
} }
}).catch((err) => {
console.log(444333)
}) })
}, },

View File

@@ -26,7 +26,7 @@
<div class="btn" @click="submit">保存</div> <div class="btn" @click="submit">保存</div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -45,7 +45,7 @@
<div class="btn" @click="submit">保存</div> <div class="btn" @click="submit">保存</div>
<AiBack></AiBack>
</div> </div>
<component v-else :is="comp" :paramss="params" @back="backlist"></component> <component v-else :is="comp" :paramss="params" @back="backlist"></component>

View File

@@ -32,7 +32,7 @@
</div> </div>
</div> </div>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -5,7 +5,7 @@
<u-button type="primary" :custom-style="{ width: '100%', borderRadius: '4px', marginTop: '48px' }" @click="goBack"> <u-button type="primary" :custom-style="{ width: '100%', borderRadius: '4px', marginTop: '48px' }" @click="goBack">
{{ btnText }} {{ btnText }}
</u-button> </u-button>
<AiBack></AiBack>
</div> </div>
</template> </template>

View File

@@ -77,7 +77,7 @@
<!-- 日期选择器 --> <!-- 日期选择器 -->
<u-calendar v-model="show" :mode="mode" @change="calendar" /> <u-calendar v-model="show" :mode="mode" @change="calendar" />
<AiBack />
</div> </div>
</template> </template>

View File

@@ -223,7 +223,7 @@
<div class="agree" @click="agree(1)">同意</div> <div class="agree" @click="agree(1)">同意</div>
</div> </div>
<AiBack></AiBack>
</div> </div>
</template> </template>