소스 검색

Merge branch 'dev' of git.sagacloud.cn:yunxing/wanda-bm-guide-h5 into dev

zhangyu 4 년 전
부모
커밋
a676584274

+ 6 - 6
src/App.vue

@@ -87,7 +87,7 @@ export default {
     beforeMount() {},
     created() {
         store.commit('SETSSOTOKEN', 'admin:liujiandong')
-        console.log(window.location.href)
+        // console.log(window.location.href)
         this.SETHAVEFENGMAP(false)
         // 判断 安卓,ios
         const { os } = osInfo()
@@ -100,7 +100,7 @@ export default {
         this.getFloorList()
     },
     mounted() {
-        console.log('环境变量', process.env.VUE_APP_RealEnv)
+        // console.log('环境变量', process.env.VUE_APP_RealEnv)
         if (this.plazaId) {
             this.getFengMap()
             store.dispatch('getBrand')
@@ -143,17 +143,17 @@ export default {
                 if (dataArr.length) {
                     setFloor({ plazaId: this.plazaId }, dataArr)
                         .then((res) => {
-                            console.log('缓存楼层', res)
+                            // console.log('缓存楼层', res)
                         })
                         .catch((error) => {
-                            console.log('缓存楼层', error)
+                            // console.log('缓存楼层', error)
                         })
                 }
             })
         },
         // 路由更改
         changeTabbar(active) {
-            console.log(active)
+            // console.log(active)
             if (active == 1) {
                 this.SETCATEGORYID('LCGN')
             }
@@ -169,7 +169,7 @@ export default {
     },
     watch: {
         plazaId(plazaId) {
-            console.log('项目id', plazaId)
+            // console.log('项目id', plazaId)
             window.fengmapData = null
             // 当获取到到项目id,请求底图
             if (plazaId) {

+ 1 - 1
src/api/httputils.js

@@ -104,7 +104,7 @@ export default {
     },
 
     async getJson(url, params) {
-        console.log(url, params)
+        // console.log(url, params)
         try {
             let response = await axiosservice({
                 url,

+ 7 - 2
src/api/other.js

@@ -1,8 +1,13 @@
 import httputils from '@/api/httputils'
-// 综合事项记录
+// 根据部门统计综合事项数量
 export function queryGlams({ getParams }) {
-    return httputils.getJson(`/data/sms_zhsxjl/query`, getParams)
+    return httputils.getJson(`/data/sms_zhsxjl/queryByDeptCount`, getParams)
+}
+// 综合事项记录
+export function queryDetailList({ getParams }) {
+    return httputils.getJson(`/sms_zhsxjl/query`, getParams)
 }
+
 // 辅助用房 统计表
 export function querygcfzyfhz({ getParams }) {
     return httputils.getJson(`/data/sms_gcfzyfhz/query`, getParams)

BIN
src/assets/images/normal.png


BIN
src/assets/images/normal@2x.png


BIN
src/assets/images/weibao.png


BIN
src/assets/images/weibao@2x.png


BIN
src/assets/images/weixiu.png


BIN
src/assets/images/weixiu@2x.png


+ 8 - 5
src/components/ImagePreview.vue

@@ -12,7 +12,7 @@
             @close='close'
             @change='onChange'
         ></van-image-preview>
-        <span class='direction' @click='changeOri'>横竖屏切换</span>
+        <i class='direction iconfont wanda-hengshuping' @click='changeOri'></i>
     </div>
 </template> 
 <script>
@@ -113,13 +113,16 @@ export default {
         display: inline-block;
         position: fixed;
         z-index: 3000;
-        height: 30px;
-        line-height: 30px;
-        width: 80px;
+        // height: 30px;
+        // line-height: 30px;
+        // width: 80px;
+        // bottom: 50px;
         bottom: 50px;
         right: 50px;
-        background-color: #fff;
+        // background-color: #fff;
         text-align: center;
+        color: #fff;
+        font-size: 24px;
     }
 }
 // 竖屏

+ 128 - 0
src/components/equipmentFacilities/Card.vue

@@ -0,0 +1,128 @@
+<template>
+    <div class='m-card' :class='"type-"+type'>
+        <div class='name'>{{name}}</div>
+        <div class='number'>
+            {{number}}
+            <i>台</i>
+        </div>
+        <div class='type'>
+            {{typeDict[type]}}
+            <i v-show='[2,3].includes(type)'>:</i>
+            <i v-show='[2,3].includes(type)'>{{total}}</i>
+        </div>
+        <!-- 右上角tag -->
+        <div class='tag' v-if='[2,3].includes(type)'></div>
+    </div>
+</template>
+<script>
+/**
+ * 设备卡片
+ */
+export default {
+    name: 'Card',
+    props: {
+        type: {
+            //1 正常, 2维保 3 维修
+            type: Number,
+            default: 1,
+            required: true,
+        },
+        name: {
+            type: String,
+            default: '消防主机',
+            required: true,
+        },
+        total: {
+            type: Number,
+            default: 10,
+            required: true,
+        },
+        number: {
+            type: Number,
+            default: 293,
+            required: false,
+        },
+    },
+    data() {
+        return {
+            typeDict: {
+                1: '正常运维',
+                2: '重要维保',
+                3: '重要维修',
+            },
+        }
+    },
+    components: {},
+    beforeMount() {},
+    mounted() {},
+    methods: {},
+}
+</script>
+<style lang='less' scoped>
+.m-card {
+    width: 100%;
+    height: 100%;
+    border-radius: 4px;
+    background-size: cover !important;
+    padding: 15px;
+    line-height: 25px;
+    display: flex;
+    flex-direction: column;
+    position: relative;
+    .name,
+    .number {
+        font-size: 16px;
+        font-weight: 500;
+        color: #333333;
+        flex: 1;
+    }
+    .number > i {
+        font-size: 14px;
+        color: #666;
+    }
+    .type {
+        font-size: 14px;
+        font-weight: 500;
+        color: #2bad88;
+        flex: 1;
+    }
+    .tag {
+        position: absolute;
+        right: 15px;
+        top: 6px;
+        border-top: 10px solid #0481e1;
+        border-left: 5px solid #0481e1;
+        border-right: 5px solid #0481e1;
+        border-bottom: 3px solid transparent;
+    }
+}
+// 正常运维
+.type-1,
+.type-4 {
+    background: url('../../assets/images/normal.png');
+}
+// 重要维保
+.type-2,
+.type-5 {
+    background: url('../../assets/images/weibao.png');
+    .type {
+        color: #0481e1;
+    }
+    .tag {
+        border-color: #0481e1;
+        border-bottom: 3px solid transparent;
+    }
+}
+// 重要维修
+.type-3,
+.type-6 {
+    background: url('../../assets/images/weixiu.png');
+    .type {
+        color: #d83931;
+    }
+    .tag {
+        border-color: #d83931;
+        border-bottom: 3px solid transparent;
+    }
+}
+</style>

+ 8 - 8
src/router/index.ts

@@ -51,7 +51,7 @@ const routes: Array<RouteConfig> = [
         name: 'EquipmentFacilities',
         component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/index.vue'),
         meta: {
-            keepAlive: true,
+            keepAlive: false,
             showTabbar: true,
         },
     },
@@ -61,7 +61,7 @@ const routes: Array<RouteConfig> = [
         name: 'OtherMatter',
         component: () => import(/* webpackChunkName: "otherMatter" */ '../views/otherMatter/index.vue'),
         meta: {
-            keepAlive: true,
+            keepAlive: false,
             showTabbar: true,
         },
     },
@@ -71,7 +71,7 @@ const routes: Array<RouteConfig> = [
         name: 'ComprehensiveMatter',
         component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/ComprehensiveMatter.vue'),
         meta: {
-            keepAlive: true,
+            keepAlive: false,
             showTabbar: true,
         },
     },
@@ -92,7 +92,7 @@ const routes: Array<RouteConfig> = [
         name: 'AuxiliaryRoom',
         component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/AuxiliaryRoom.vue'),
         meta: {
-            keepAlive: true,
+            keepAlive: false,
             showTabbar: true,
         },
     },
@@ -102,7 +102,7 @@ const routes: Array<RouteConfig> = [
         name: 'UpdateRecord',
         component: () => import(/* webpackChunkName: "updateRecord" */ '../views/overview/UpdateRecord.vue'),
         meta: {
-            keepAlive: true,
+            keepAlive: false,
             showTabbar: false,
             hideNarBar: true,
         },
@@ -138,7 +138,7 @@ const router = new VueRouter({
 })
 // 跳入路由后要对发送pvuv
 router.afterEach((to) => {
-    console.log(to)
+    // console.log(to)
     // 项目概览,楼层功能,设备设施,其他事项 记录pupv
     let pupvArr = ['Overview', 'FloorFunc', 'EquipmentFacilities', 'OtherMatter']
     // @ts-ignore
@@ -156,10 +156,10 @@ router.afterEach((to) => {
     }
     getPvUv(data, postParams)
         .then((res: any) => {
-            console.log('pvuv', res)
+            // console.log('pvuv', res)
         })
         .catch((res: any) => {
-            console.log('error', res)
+            // console.log('error', res)
         })
 })
 export default router

+ 7 - 5
src/views/equipmentFacilities/index.vue

@@ -24,7 +24,7 @@
             <div class='divider'></div>
             <!-- 设备卡片 -->
             <div class='card-container'>
-                <div class='card' v-for='i in 5' :key='i'></div>
+                <m-card class='card' :type='item' name='消防主机' :total='50' :numer='3' v-for='item in 5' :key='item' @click='goToEquipment(item)' />
             </div>
         </div>
     </div>
@@ -34,9 +34,11 @@ import Vue from 'vue'
 import { Cell } from 'vant'
 Vue.use(Cell)
 import SystemMenu from '@/components/systemMenu'
+import MCard from '@/components/equipmentFacilities/Card'
 export default {
     name: 'EquipmentFacilities',
     props: {},
+    components: { SystemMenu, MCard },
     data() {
         return {
             smsxt: '1001', //系统值,默认供电系统
@@ -100,7 +102,6 @@ export default {
             },
         }
     },
-    components: { SystemMenu },
     beforeMount() {},
     mounted() {},
     methods: {
@@ -115,6 +116,9 @@ export default {
             this.smsxt = smsxt
         },
         handleClick() {},
+        goToEquipment(data) {
+            console.log(data)
+        },
     },
 }
 </script>
@@ -163,9 +167,7 @@ export default {
                 margin: 2% 1%;
                 min-width: 48%; // 加入这两个后每个item的宽度就生效了
                 max-width: 48%; // 加入这两个后每个item的宽度就生效了
-                height: 100px;
-                border: 1px solid #2bad88;
-                border-radius: 4px;
+                height: 110px;
             }
         }
     }

+ 234 - 45
src/views/otherMatter/ComprehensiveMatter.vue

@@ -10,27 +10,28 @@
             <van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
         </div>
         <div class='main'>
-            <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :immediate-check='false' @load='onLoad'>
-                <div class='container' v-for='(item,index) in 15' :key='index'>
-                    <div class='government-department' v-if='true'>
-                        <van-cell :title='`政府部门${index}`' is-link :value='`${index}项`' @click='goToMattersFetail(item)' />
+            <!-- <van-list style='height:300px;overflow: auto;' v-model='loading1' :finished='finished1' finished-text='没有更多了' @load=''>
+                <van-cell v-for='item in list1' :key='item' :title='item' />
+            </van-list>-->
+            <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :offset='300' @load='onLoad'>
+                <!-- :immediate-check='false' -->
+                <div class='container' v-for='(item,index) in list' :key='index'>
+                    <!-- 政府部门 -->
+                    <div class='government-department' v-if='item.department.indexOf("其他")'>
+                        <van-cell :title='item.department' is-link :value='`${item.count}`' @click='goToMattersFetail(item)' />
                     </div>
-                    <div class='other-department' v-if='index==4'>
-                        <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus' />
-                        <div class='other-container' v-show='showOther'>
+                    <!-- 其他部门 -->
+                    <div class='other-department' v-else>
+                        <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus(item)' />
+                        <div class='other-container' v-if='item.showOther'>
                             <van-cell
-                                :title='`自定义其他部门${index}`'
+                                :title='detail.otherdescription'
                                 title-class='other-cell'
-                                :value='`${index}项`'
+                                :value='detail.count'
                                 is-link
-                                @click='goToMattersFetail(item)'
-                            />
-                            <van-cell
-                                :title='`自定义其他部门${index}`'
-                                title-class='other-cell'
-                                :value='`${index}项`'
-                                is-link
-                                @click='goToMattersFetail(item)'
+                                @click='goToMattersFetail(detail)'
+                                v-for='(detail,dIndex) in item.children'
+                                :key='dIndex'
                             />
                         </div>
                     </div>
@@ -42,16 +43,23 @@
 <script>
 /**
  * 综合事项
- nginx 1.16.1
         
  */
 import Vue from 'vue'
 import { List, Cell, Button } from 'vant'
-Vue.use(List).use(Cell).use(Button)
+Vue.use(List)
+Vue.use(Cell)
+Vue.use(Button)
+import { queryGlams } from '@/api/other.js'
+import { mapGetters } from 'vuex'
+import moment from 'moment'
 export default {
     name: 'ComprehensiveMatter',
     props: {},
     components: {},
+    computed: {
+        ...mapGetters(['plazaId']),
+    },
     data() {
         return {
             active: 0,
@@ -59,54 +67,238 @@ export default {
             loading: false,
             finished: false,
             page: 1,
+            size: 11,
             count: 0,
+            currentCount: 0,
             arrowDirection: 'up', //其他 箭头方向
             showOther: true,
+            list1: [],
+            loading1: false,
+            finished1: false,
         }
     },
+    watch: {
+        loading: {
+            immediate: true,
+            handler(val) {
+                console.log(val)
+            },
+        },
+    },
+    created() {
+        // this.getList()
+    },
     beforeMount() {},
     mounted() {},
     methods: {
+        onLoad1() {
+            console.log('onload1')
+            // 异步更新数据
+            // setTimeout 仅做示例,真实场景中一般为 ajax 请求
+            setTimeout(() => {
+                for (let i = 0; i < 10; i++) {
+                    this.list1.push(this.list1.length + 1)
+                }
+                // 加载状态结束
+                this.loading1 = false
+                // 数据全部加载完成
+                if (this.list1.length >= 50) {
+                    this.finished1 = true
+                }
+            }, 1000)
+        },
         /**
          * 更改时间
          */
         changeTime(active) {
+            console.log('更改时间')
             this.active = active
+            this.list = []
+            this.page = 1
+            this.count = 0
+            this.currentCount = 0
+            this.loading = true
+            this.finished = false
+            this.getList()
         },
-        onLoad() {
-            // 异步更新数据
-            // setTimeout 仅做示例,真实场景中一般为 ajax 请求
-            setTimeout(() => {
-                for (let i = 0; i < 5; i++) {
-                    this.list.push(this.list.length + 1)
-                }
+        async getList() {
+            let getParams = {
+                plazaId: this.plazaId,
+                page: this.page,
+                size: this.size,
+                orderBy: 'createdate,0',
+            }
+            switch (this.active) {
+                // 近一个月
+                case 0:
+                    getParams.changeDateStartDate = moment().subtract(1, 'months').format('YYYYMMDD000000')
+                    getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
+                    break
+                // 半年内
+                case 1:
+                    getParams.changeDateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
+                    getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
+                    break
+                // 一年内
+                case 2:
+                    getParams.changeDateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
+                    getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
+                    break
+                // 默认 全部
+                default:
+                    break
+            }
+            let res = await queryGlams({ getParams }) //TODO: 123
+            console.log(res)
+            // TODO:
+            // if (!res?.data) {
+            //     return false
+            // }
 
-                // 加载状态结束
-                this.loading = false
+            // let data = res.data
+            let data = [
+                {
+                    department: '政府部门1' + new Date().getTime(),
+                    cnt: 1,
+                    otherdescription: '无',
+                },
+                {
+                    department: '政府部门2',
+                    cnt: 2,
+                    otherdescription: '无',
+                },
+                {
+                    department: '其他部门',
+                    cnt: 3,
+                    otherdescription: '无',
+                },
+                {
+                    department: '其他部门',
+                    cnt: 4,
+                    otherdescription: '特检所',
+                },
+                {
+                    department: '其他部门',
+                    cnt: 5,
+                    otherdescription: '电监',
+                },
 
-                // 数据全部加载完成
-                if (this.list.length >= 40) {
-                    this.finished = true
+                {
+                    department: '其他部门',
+                    cnt: 6,
+                    otherdescription: '电监6',
+                },
+                {
+                    department: '其他部门',
+                    cnt: 7,
+                    otherdescription: '电监7',
+                },
+                {
+                    department: '政府部门8',
+                    cnt: 8,
+                    otherdescription: '无',
+                },
+                {
+                    department: '其他部门',
+                    cnt: 9,
+                    otherdescription: '电监7',
+                },
+                {
+                    department: '政府部门8',
+                    cnt: 10,
+                    otherdescription: '无',
+                },
+                {
+                    department: '政府部门8',
+                    cnt: 10,
+                    otherdescription: '无',
+                },
+            ]
+            this.count = 50 // res.count
+            this.currentCount += data.length
+            data.map((item) => {
+                item.children = []
+                if (item.cnt) {
+                    item.count = item.cnt + '项'
+                } else {
+                    item.count = '--'
+                    item.disabled = true
                 }
-            }, 1000)
+            })
+            // 处理其他部门,将在一起的其他部门,合并到一起
+            for (let index = 1, len = data.length; index < len; index++) {
+                const item = data[index]
+                // 穿插出现的第一个其他部门加入children
+                if (['其他部门', '其他', '其它'].includes(item.department) && !['其他部门', '其他', '其它'].includes(data[index - 1].department)) {
+                    item.showOther = true
+                    item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
+                } else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
+                    if (!data[index - 1].children.length) {
+                        data[index - 1].children.push(
+                            // data[index - 1]
+                            { department: data[index - 1].department, cnt: data[index - 1].cnt, otherdescription: data[index - 1].otherdescription },
+                            { department: item.department, cnt: item.cnt, otherdescription: item.otherdescription }
+                        )
+                    } else {
+                        data[index - 1].children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
+                    }
+                    data.splice(index--, 1)
+                    index--
+                    len--
+                }
+            }
+            if (this.page === 1) {
+                this.list = data
+            } else {
+                this.list = this.list.concat(data)
+            }
+
+            console.log(this.count, this.currentCount)
+            if (this.currentCount === this.count) {
+                this.loading = false
+                this.finished = true
+            } else {
+                this.loading = true
+                this.finished = false
+            }
+        },
+        async onLoad() {
+            console.log('onLoad')
+            // 异步更新数据
+            await this.getList()
+            console.log(12312312323)
+            this.page++
+            // 加载状态结束
+            this.loading = false
+            // 查询完成
+            if (this.currentCount >= this.count) {
+                this.finished = true
+            } else {
+                this.finished = false
+                this.loading = true
+            }
+            console.log(this.loading, this.finished)
         },
         /**
          * 点击其他右侧上下箭头,显隐其他部门
          */
-        changeOtherShowStatus() {
-            if (this.showOther) {
-                this.showOther = false
-                this.arrowDirection = 'down'
+        changeOtherShowStatus(item) {
+            console.log(item)
+            if (item.showOther) {
+                item.showOther = false
+                item.arrowDirection = 'down'
             } else {
-                this.showOther = true
-                this.arrowDirection = 'up'
+                item.showOther = true
+                item.arrowDirection = 'up'
             }
         },
         /**
          *  跳转 列表页面
          */
         goToMattersFetail(data) {
-            this.$router.push({ name: 'ComprehensiveMatterList', params: data })
+            console.log(data)
+            let { department, otherdescription, cnt } = data
+            // this.$router.push({ name: 'ComprehensiveMatterList', params: data })
         },
     },
 }
@@ -116,7 +308,7 @@ export default {
     width: 100%;
     height: 100%;
     background-color: #f5f6f7;
-    overflow: auto;
+
     // 时间切换按钮
     .time {
         width: 100%;
@@ -145,12 +337,13 @@ export default {
     .main {
         width: 100%;
         height: calc(100% - 60px);
-        overflow: auto;
+        // overflow: hidden;
         font-size: 14px;
         font-weight: 400;
         color: #333333;
         .matters-list {
             width: 100%;
+            height: 100%;
             background-color: #fff;
             overflow: auto;
             .container {
@@ -188,9 +381,5 @@ export default {
             }
         }
     }
-    // /deep/.van-list {
-    //     width: 100%;
-    //     height: calc(100%- 150px);
-    // }
 }
 </style>

+ 14 - 4
src/views/otherMatter/index.vue

@@ -1,11 +1,11 @@
 <template>
     <div class='other-matter'>
-        <van-tabs v-model='active' class='other-tabs' color='#025BAA' title-active-color='#025BAA' :line-width='60'>
+        <van-tabs v-model='active' class='other-tabs' color='#025BAA' @change='changeTab' title-active-color='#025BAA' :line-width='60'>
             <van-tab title='综合事项'>
-                <ComprehensiveMatter />
+                <ComprehensiveMatter v-if='active===0' />
             </van-tab>
             <van-tab title='辅助用房'>
-                <AuxiliaryRoom />
+                <AuxiliaryRoom v-if='active===1' />
             </van-tab>
         </van-tabs>
     </div>
@@ -23,11 +23,21 @@ export default {
     data() {
         return {
             active: 0,
+            key0: 1,
+            key1: 1,
         }
     },
     beforeMount() {},
     mounted() {},
-    methods: {},
+    methods: {
+        changeTab(active) {
+            // if (this.active === 0) {
+            //     this.key0++
+            // } else {
+            //     this.key1++
+            // }
+        },
+    },
 }
 </script>
 <style lang='less' scoped>

+ 12 - 1
src/views/overview/UpdateRecord.vue

@@ -70,6 +70,14 @@ export default {
     computed: {
         ...mapGetters(['plazaId', 'objtypeDict']),
     },
+    watch: {
+        loading: {
+            immediate: true,
+            handler(val) {
+                console.log(val)
+            },
+        },
+    },
     created() {
         // 查询更新记录列表
         this.getList()
@@ -122,6 +130,9 @@ export default {
                 changeDateStartDate: moment().subtract(1, 'years').format('YYYYMMDD000000'), //变更记录开始时间 格式yyyyMMddHHmiss 必填
                 changeDateEndDate: moment().format('YYYYMMDD000000'), //变更记录结束时间 格式yyyyMMddHHmiss 必填
             }
+            // 全部时,添加排序字段
+            this.objtype === 0 && (getParams.orderBy = 'date,0;seq,1')
+            // 非全部时,添加 objtype 字段
             if (this.objtype !== 0) {
                 getParams.objtype = this.objtype
             }
@@ -135,7 +146,7 @@ export default {
             let listArr = res?.data || []
             // 处理时间
             listArr.map((item) => {
-                item.date = moment(item.create_date_time).format('YYYY.MM.DD')
+                item.date = moment(item.changedate).format('YYYY.MM.DD')
             })
             /**
              * 按照时间,构造二维数据

+ 13 - 8
src/views/overview/UpdateRecordDetail.vue

@@ -232,11 +232,13 @@ export default {
             console.log(res)
             let data = {}
             if (res.data) {
-                let data = res.data[0]
+                data = res.data[0]
             }
             data.reportdate && (data.tbDate = moment(data.reportdate).format('YYYY-MM-DD'))
             data.sjjssj && (data.ysDate = moment(data.sjjssj).format('YYYY-MM-DD'))
             this.data = data
+            console.log(this.data)
+            console.log('===========')
             // 图片处理
             this.imgList = []
             if (data?.glsmsImage?.length) {
@@ -257,11 +259,13 @@ export default {
             console.log(res)
             let data = {}
             if (res.data) {
-                let data = res.data[0]
+                data = res.data[0]
             }
             data.reportdate && (data.tbDate = moment(data.reportdate).format('YYYY-MM-DD'))
             data.sjjssj && (data.ysDate = moment(data.sjjssj).format('YYYY-MM-DD'))
             this.data = data
+            console.log(this.data)
+            console.log('===========2')
             // 图片处理
             this.imgList = []
             if (data?.glsmsImage?.length) {
@@ -281,7 +285,7 @@ export default {
             let res = await getUpdateDetail5({ getParams })
             let data = {}
             if (res.data) {
-                let data = res.data[0]
+                data = res.data[0]
             }
             data.handledate && (data.handleDate = moment(data.handledate).format('YYYY-MM-DD'))
             this.data = data
@@ -298,7 +302,7 @@ export default {
             console.log(res)
             let data = {}
             if (res.data) {
-                let data = res.data[0]
+                data = res.data[0]
             }
             data.createdate && (data.createDate = moment(data.createdate).format('YYYY-MM-DD'))
             this.data = data
@@ -313,6 +317,7 @@ export default {
                 return false
             }
             let data = this.data
+            console.log(data)
             // 维保有任务编号, 或者维修有工单编号, 显示
             if (this.type === 1) {
                 this.taskText = '任务'
@@ -323,8 +328,8 @@ export default {
                     description: data.description || '--', //描述
                     reporter: data.reportedby || '--', //填报人
                     phone: data.phone || '--', //联系电话    // TODO: 联系电话
-                    reportDate: data.reportdate || '--', //填报时间
-                    acceptanceDate: data.sjjssj || '--', //验收时间
+                    reportDate: data.reportdate? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
+                    acceptanceDate: data.sjjssj? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
                 }
             } else if (this.type === 4) {
                 this.taskText = '工单'
@@ -335,8 +340,8 @@ export default {
                     description: data.description || '--', //描述
                     reporter: data.reportedby || '--', //填报人
                     phone: data.phone || '--', //联系电话    // TODO: 联系电话
-                    reportDate: data.reportdate || '--', //填报时间
-                    acceptanceDate: data.sjjssj || '--', //验收时间
+                     reportDate: data.reportdate? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
+                    acceptanceDate: data.sjjssj? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
                 }
             }
             if (this.data.wb_gzglid || this.data.wonum) {