hejianhao
2025-05-22 9fe43c140598f78665fcdc8068685ac075580769
H5-bug修改
4个文件已修改
26 ■■■■■ 已修改文件
H5/pages/index/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/progress/progress.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/supervision/supervision-progress.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/supervision/supervision.vue 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
H5/pages/index/index.vue
@@ -81,7 +81,7 @@
                    <text class="ml-37 font-bold">党员审核</text>
                </view>
                <view class="pt-38 pb-38 bg1 w-333 br-19 mt-19 flex a-center" @tap.stop="toSupervision"
                    v-if="showData && userInfo.isAdmin == 1">
                    v-if="showData && userInfo.isAdmin == 1 && userInfo.identity == 2">
                    <image class="w-81 h-77 ml-38" src="/static/home/supervision.png" mode=""></image>
                    <text class="ml-37 font-bold">诉求监督</text>
                </view>
H5/pages/progress/progress.vue
@@ -48,7 +48,7 @@
                        </view>
                        <view class="context">{{ item.describe }}</view>
                        <view class="proImg">
                            <view v-if="item.imgUrl">
                            <view v-if="item.imgUrl" class="flex wrap">
                                <view class="imgOrVedio" v-for="(ite, index) in item.imgUrl.split(',')" :key="index">
                                    <image :src="ite" class="img shrink0" mode="aspectFill" />
                                    <view
@@ -58,7 +58,7 @@
                                    </view>
                                </view>
                            </view>
                            <view v-if="item.video">
                            <view v-if="item.video" class="flex wrap">
                                <view class="imgOrVedio" v-for="(ite, index) in item.video.split(',')" :key="index">
                                    <video id="myVideo" class="w-140 h-140 mt-19 shrink0" disabled :controls="false"
                                        :show-center-play-btn="false" :src="ite" />
H5/pages/supervision/supervision-progress.vue
@@ -48,7 +48,7 @@
                        </view>
                        <view class="context">{{ item.describe }}</view>
                        <view class="proImg">
                            <view v-if="item.imgUrl">
                            <view v-if="item.imgUrl" class="flex wrap">
                                <view class="imgOrVedio" v-for="(ite, index) in item.imgUrl.split(',')" :key="index">
                                    <image :src="ite" class="img shrink0" mode="aspectFill" />
                                    <view
@@ -58,7 +58,7 @@
                                    </view>
                                </view>
                            </view>
                            <view v-if="item.video">
                            <view v-if="item.video" class="flex wrap">
                                <view class="imgOrVedio" v-for="(ite, index) in item.video.split(',')" :key="index">
                                    <video id="myVideo" class="w-140 h-140 mt-19 shrink0" disabled :controls="false"
                                        :show-center-play-btn="false" :src="ite" />
@@ -138,12 +138,13 @@
        methods: {
            deleteProgress() {
                delProgress(this.row.id).then(res => {
                    this.$refs.customPopup.show = false
                    uni.showToast({
                        icon: 'none',
                        mask: true,
                        title: '删除成功'
                        title: '删除办理进度成功',
                        duration:2000
                    })
                    this.$refs.customPopup.show = false
                    setTimeout(() => {
                        getComplaintDetail({
                            id: this.id
H5/pages/supervision/supervision.vue
@@ -1,6 +1,7 @@
<template>
    <view class="content">
        <view class="bgColor2 shadow1 pb-19" style="position: sticky;top: 0;z-index: 999;">
        <view v-if="userInfo.superviseFlag == 1" class="bgColor2 shadow1 pb-19"
            style="position: sticky;top: 0;z-index: 999;">
            <view class="h-96 flex a-center fs-27  j-between txt-center  font-w400 color1">
                <view @click="changeType(1)" class="flex1 bgColor2 relative" :class="type == 1 && 'color2 font-bold'">
                    <view class="relative zIndex1000">
@@ -44,7 +45,12 @@
                            </view>
                            已超时{{ item.overTimeDays }}天
                        </view>
                        {{ statusObj[item.status] }}
                        <view v-if="type == 1">
                            {{ statusObj[item.status] }}
                        </view>
                        <view v-if="type == 2">
                            {{ ['延期被驳回','上报被驳回'][item.auditType - 1] }}
                        </view>
                    </view>
                </view>
                <view v-if="[5,6].includes(item.status)" class="mt-40 fs-23 pl-40 pr-40">
@@ -185,6 +191,7 @@
                    '7': '延期待审核',
                    '8': '已办结'
                },
                userInfo: uni.getStorageSync('userInfo')
            }
        },
        onReachBottom() {