浏览代码

Merge branch 'dev' of http://39.106.8.246:3003/yunxing/wanda-bm-guide-h5 into dev

zhangyu 4 年之前
父节点
当前提交
7f5196228d

+ 1 - 1
src/api/other.js

@@ -5,7 +5,7 @@ export function queryGlams({ getParams }) {
 }
 // 综合事项记录
 export function queryDetailList({ getParams }) {
-    return httputils.getJson(`/sms_zhsxjl/query`, getParams)
+    return httputils.getJson(`/data/sms_zhsxjl/query`, getParams)
 }
 
 // 辅助用房 统计表

+ 2 - 2
src/router/index.ts

@@ -61,7 +61,7 @@ const routes: Array<RouteConfig> = [
         name: 'OtherMatter',
         component: () => import(/* webpackChunkName: "otherMatter" */ '../views/otherMatter/index.vue'),
         meta: {
-            keepAlive: false,
+            keepAlive: true,
             showTabbar: true,
         },
     },
@@ -71,7 +71,7 @@ const routes: Array<RouteConfig> = [
         name: 'ComprehensiveMatter',
         component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/ComprehensiveMatter.vue'),
         meta: {
-            keepAlive: false,
+            keepAlive: true,
             showTabbar: true,
         },
     },

+ 1 - 1
src/views/otherMatter/AuxiliaryRoom.vue

@@ -125,7 +125,7 @@ export default {
             res.data.map((item) => {
                 imgList.push(item.url)
             })
-            this.imgList = imgList.concat(imgList)
+            this.imgList = imgList
             imgList.length && (this.showImgPreview = true)
         },
     },

+ 100 - 139
src/views/otherMatter/ComprehensiveMatter.vue

@@ -1,24 +1,18 @@
 <template>
     <div class='comprehensive-matter'>
-        <!-- <van-list v-model='loading' :finished='finished' finished-text='加载到底了' @load='onLoad'>
-            <van-cell v-for='item in list' :key='item' :title='item' />
-        </van-list>-->
         <div class='time'>
             <van-button round size='small' :class='active === 0?"active":""' @click='changeTime(0)'>一个月内</van-button>
             <van-button round size='small' :class='active === 1?"active":""' @click='changeTime(1)'>半年内</van-button>
             <van-button round size='small' :class='active === 2?"active":""' @click='changeTime(2)'>一年内</van-button>
             <van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
         </div>
-        <div class='main'>
-            <!-- <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'>
+        <div class='main' v-show='!noData'>
+            <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)' />
+                        <van-cell :title='item.department' is-link :value='`${item.count}`' @click='goToMattersFetail(item,1)' />
                     </div>
                     <!-- 其他部门 -->
                     <div class='other-department' v-else>
@@ -29,7 +23,7 @@
                                 title-class='other-cell'
                                 :value='detail.count'
                                 is-link
-                                @click='goToMattersFetail(detail)'
+                                @click='goToMattersFetail(detail,2)'
                                 v-for='(detail,dIndex) in item.children'
                                 :key='dIndex'
                             />
@@ -38,6 +32,9 @@
                 </div>
             </van-list>
         </div>
+        <div class='main' v-show='noData'>
+            <van-empty description='暂无数据' />
+        </div>
     </div>
 </template>
 <script>
@@ -46,10 +43,11 @@
         
  */
 import Vue from 'vue'
-import { List, Cell, Button } from 'vant'
+import { List, Cell, Button, Empty } from 'vant'
 Vue.use(List)
 Vue.use(Cell)
 Vue.use(Button)
+Vue.use(Empty)
 import { queryGlams } from '@/api/other.js'
 import { mapGetters } from 'vuex'
 import moment from 'moment'
@@ -67,157 +65,90 @@ export default {
             loading: false,
             finished: false,
             page: 1,
-            size: 11,
+            size: 10,
             count: 0,
             currentCount: 0,
             arrowDirection: 'up', //其他 箭头方向
-            showOther: true,
-            list1: [],
-            loading1: false,
-            finished1: false,
+            noData: false,
+            createdateStartDate: '',
+            createdateEndDate: '',
         }
     },
     watch: {
         loading: {
             immediate: true,
-            handler(val) {
-                console.log(val)
-            },
+            handler(val) {},
         },
     },
-    created() {
-        // this.getList()
-    },
+    created() {},
     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('更改时间')
+        async changeTime(active) {
             this.active = active
             this.list = []
             this.page = 1
             this.count = 0
             this.currentCount = 0
-            this.loading = true
+            this.loading = false
             this.finished = false
+            this.noData = false
+            await this.sleep(1000)
             this.getList()
         },
         async getList() {
+            if (this.page > 1 && this.count === 0) {
+                return false
+            }
             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')
+                    this.createdateStartDate = moment().subtract(1, 'months').format('YYYYMMDD000000')
+                    this.createdateEndDate = moment().format('YYYYMMDD000000')
                     break
                 // 半年内
                 case 1:
-                    getParams.changeDateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
-                    getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
+                    this.createdateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
+                    this.createdateEndDate = moment().format('YYYYMMDD000000')
                     break
                 // 一年内
                 case 2:
-                    getParams.changeDateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
-                    getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
+                    this.createdateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
+                    this.createdateEndDate = moment().format('YYYYMMDD000000')
                     break
                 // 默认 全部
                 default:
+                    this.createdateStartDate = null
+                    this.createdateEndDate = null
                     break
             }
+            this.createdateStartDate && (getParams.createdateStartDate = this.createdateStartDate)
+            this.createdateEndDate && (getParams.createdateEndDate = this.createdateEndDate)
             let res = await queryGlams({ getParams }) //TODO: 123
-            console.log(res)
             // TODO:
-            // if (!res?.data) {
-            //     return 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 (!res?.data) {
+                if (!this.list.length) {
+                    this.noData = true
+                } else {
+                    this.noData = false
+                }
+                return false
+            }
 
-                {
-                    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
+            let data = res.data
+            this.count = res.count //TODO: count
             this.currentCount += data.length
             data.map((item) => {
                 item.children = []
+
                 if (item.cnt) {
                     item.count = item.cnt + '项'
                 } else {
@@ -225,25 +156,27 @@ export default {
                     item.disabled = true
                 }
             })
+            if (['其他部门', '其他', '其它'].includes(data[0].department)) {
+                let item = data[0]
+                item.showOther = true
+                item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
+            }
             // 处理其他部门,将在一起的其他部门,合并到一起
             for (let index = 1, len = data.length; index < len; index++) {
                 const item = data[index]
-                // 穿插出现的第一个其他部门加入children
+                // 出现的第一个其他部门加入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 })
+                    if (
+                        !item.children.some(({ department, count, otherdescription }) => {
+                            return item.otherdescription === otherdescription && item.count === count && item.department === item.department
+                        })
+                    ) {
+                        item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
                     }
+                } else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
+                    data[index - 1].children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
                     data.splice(index--, 1)
-                    index--
                     len--
                 }
             }
@@ -252,38 +185,48 @@ export default {
             } else {
                 this.list = this.list.concat(data)
             }
-
-            console.log(this.count, this.currentCount)
-            if (this.currentCount === this.count) {
-                this.loading = false
+            this.loading = false
+            if (this.currentCount >= this.count) {
                 this.finished = true
             } else {
-                this.loading = true
                 this.finished = false
             }
         },
         async onLoad() {
-            console.log('onLoad')
+            // 防止第一页没有数据,接着查询第二页
+            if (this.page > 1 && this.count === 0) {
+                return true
+            }
+            // 防止第一页不够
+            if (this.currentCount >= this.count) {
+                return true
+            }
             // 异步更新数据
             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)
+        },
+        /**
+         * 同步延迟器
+         * @param { Number } timeout 延迟时间,ms
+         */
+        async sleep(timeout) {
+            await new Promise((resolve) => {
+                setTimeout(() => {
+                    resolve()
+                }, timeout)
+            })
         },
         /**
          * 点击其他右侧上下箭头,显隐其他部门
          */
         changeOtherShowStatus(item) {
-            console.log(item)
+            // console.log(item)
             if (item.showOther) {
                 item.showOther = false
                 item.arrowDirection = 'down'
@@ -294,11 +237,26 @@ export default {
         },
         /**
          *  跳转 列表页面
+         *  @param { Number } 1:政府部门 2:其他部门
          */
-        goToMattersFetail(data) {
-            console.log(data)
+        goToMattersFetail(data, type) {
+            // console.log(data)
             let { department, otherdescription, cnt } = data
-            // this.$router.push({ name: 'ComprehensiveMatterList', params: data })
+            let params = {
+                type, //部门类型
+                department, //部门名称
+                size: cnt, //分页,按照cnt(count)字段
+                startDate: this.createdateStartDate,
+                endDate: this.createdateEndDate,
+            }
+            // 全部时,不传时间字段
+            if (this.active === 3) {
+                delete params.startDate
+                delete params.endDate
+            }
+            // 其他部门,传递 其他部门说明字段
+            type == 2 && (params.otherdescription = otherdescription)
+            this.$router.push({ name: 'ComprehensiveMatterList', params })
         },
     },
 }
@@ -380,6 +338,9 @@ export default {
                 }
             }
         }
+        /deep/ .van-empty {
+            height: 100%;
+        }
     }
 }
 </style>

+ 141 - 88
src/views/otherMatter/ComprehensiveMatterList.vue

@@ -1,34 +1,31 @@
 <template>
     <div class='comprehensive-matter-list'>
-        <van-nav-bar title='政府部门xx' left-arrow @click-left='backPage' />
-        <div class='main'>
-            <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :immediate-check='false' @load='onLoad'>
+        <van-nav-bar :title='title' left-arrow @click-left='backPage' />
+        <div class='main' v-show='!noData'>
+            <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :immediate-check='false' @load>
                 <div class='card' v-for='(item,index) in list' :key='index'>
                     <div class='date-attachment'>
                         <div class='date'>
                             <span class='label'>日期:</span>
                             <span class='data'>{{item.date}}</span>
                         </div>
-                        <div class='attachment'>
+                        <div class='attachment' @click='showImg(item)'>
                             <span class='label'>附件:</span>
-                            <span class='data'>{{item.id}}</span>
+                            <span class='data'>{{item.attachmentCount}}</span>
                         </div>
                     </div>
                     <div class='record'>
                         <span class='label'>记录事项:</span>
                         <!-- 该条的showMore为true或者undefined,数据最多显示3行 -->
-                        <div
-                            class='data'
-                            :class='item.showMore || item.showMore === undefined ?"van-multi-ellipsis--l3":"" '
-                        >三明万达广场顶层4座空调冷却塔噪声超标 排放(已整改),三明万达广场顶层4座空调冷 却塔噪声超标排放(已整改),三明万达广场 顶层4座空调冷却最多显示4行,显示不下…</div>
+                        <div class='data' :class='item.showMore || item.showMore === undefined ?"van-multi-ellipsis--l3":"" '>{{item.recordsx ||'--'}}</div>
                     </div>
                     <div class='work' v-if='item.showMore === false'>
                         <span class='label'>工作要求:</span>
-                        <div class='data'>这里是工作要求具体内容</div>
+                        <div class='data'>{{item.workyq ||'--'}}</div>
                     </div>
                     <div class='matter' v-if='item.showMore === false'>
                         <span class='label'>整改事项:</span>
-                        <div class='data'>三明万达广场顶层4座空调冷却塔噪声超标 排放(已整改),三明万达广场顶层4座空调冷 却塔噪声超标排放(已整改),三明万达广场 顶层4座空调冷却塔噪声超标排放(已整改)</div>
+                        <div class='data'>{{item.zgyq || '--'}}</div>
                     </div>
                     <div class='show-more' v-if='item.showMore || item.showMore === undefined ' @click='changeStatus(item,false)'>
                         <i class='iconfont wanda-zhankai'></i>
@@ -42,6 +39,11 @@
                 </div>
             </van-list>
         </div>
+        <div class='main' v-show='noData'>
+            <van-empty description='暂无数据' />
+        </div>
+        <!-- 现场照片预览 -->
+        <ImagePreview :key='imgKey' class='update-img-preview' :visible.sync='showImgPreview' :imgList='imgList' />
     </div>
 </template>
 <script>
@@ -51,10 +53,14 @@
 import Vue from 'vue'
 import { NavBar, List } from 'vant'
 Vue.use(NavBar).use(List)
-
+import { queryDetailList } from '@/api/other'
+import { mapGetters } from 'vuex'
+import moment from 'moment'
+import ImagePreview from '@/components/ImagePreview'
 export default {
     name: 'ComprehensiveMatterList',
     props: {},
+    components: { ImagePreview },
     data() {
         return {
             // 列表数据
@@ -69,17 +75,34 @@ export default {
                 showMore: true,
             },
             loading: false, // list加载中
-            finished: false, //list组件,加载完成
+            finished: true, //list组件,加载完成
             page: 1, //页码
             size: 5, //分页条数
             count: 0, //总条数
+            title: '',
+            params: {}, //跳转改页面时,路由传参
+            showImgPreview: false, //是否展示图片预览
+            imgList: [], //图片数组
+            imgKey: `img${new Date().getTime()}`, //重新渲染图片预览组件使用
+            noData: false,
         }
     },
-    components: {},
+
+    computed: {
+        ...mapGetters(['plazaId']),
+    },
     created() {
-        for (let i = 0; i < 6; i++) {
-            this.list.push({ index: i, date: '2020-08-15', id: new Date().getTime() })
+        console.log(this.$route.params)
+        let { type, department, otherdescription, size, startDate, endDate } = this.$route.params
+        this.size = size
+        if (type === 1) {
+            this.params = { department, startDate, endDate }
+            this.title = department
+        } else {
+            this.params = { department, otherdescription, startDate, endDate }
+            this.title = '其他部门'
         }
+        this.getList()
     },
     beforeMount() {},
     mounted() {},
@@ -95,21 +118,46 @@ export default {
             this.currentInfo = item
             this.$set(this.currentInfo, 'showMore', showMore)
         },
-        onLoad() {
-            setTimeout(() => {
-                for (let i = 0; i < 6; i++) {
-                    this.list.push({ index: i, date: '2020-08-15', id: new Date().getTime() })
-                }
-
-                // 加载状态结束
-                this.loading = false
-
-                // 数据全部加载完成
-                if (this.list.length >= 40) {
-                    this.finished = true
-                }
-            }, 1000)
+        async getList() {
+            let params = this.params
+            let getParams = {
+                ...params,
+                plazaId: this.plazaId,
+                page: this.page,
+                size: this.size,
+                orderBy: 'createdate,0',
+            }
+            let res = await queryDetailList({ getParams })
+            if (!res?.data) {
+                return false
+            }
+            let data = res.data
+            data.map((item) => {
+                item.date = moment(item.createdate).format('YYYY-MM-DD')
+                item.attachmentCount = item.glsmsZhsxfj ? item.glsmsZhsxfj.length : '--'
+            })
+            this.list = data
+            if (!this.list.length) {
+                this.noData = true
+            } else {
+                this.noData = false
+            }
+        },
+        /**
+         * 预览图片
+         */
+        showImg(data) {
+            if (!data.attachmentCount) {
+                return false
+            }
+            let imgList = []
+            data.glsmsZhsxfj.map((attachment) => {
+                imgList.push(attachment.urlname)
+            })
+            this.imgList = imgList
+            imgList.length && (this.showImgPreview = true)
         },
+        async onLoad() {},
     },
 }
 </script>
@@ -120,70 +168,75 @@ export default {
     background-color: #f5f6f7;
     .main {
         width: 100%;
-        height: calc(100% - 45px);
-        overflow: auto;
-        .card {
+        height: calc(100% - 50px);
+        // overflow: auto;
+        .matters-list {
             width: 100%;
-            padding: 15px;
-            background-color: #fff;
-            margin-bottom: 10px;
-            .date-attachment,
-            .record,
-            .work,
-            .matter {
+            height: 100%;
+            overflow: auto;
+            .card {
                 width: 100%;
-                display: flex;
-                justify-content: space-between;
-                line-height: 20px;
-                font-size: 14px;
-                font-weight: 400;
-                color: #666666;
-                margin-bottom: 12px;
-                .label {
-                    width: 70px;
-                }
-                .data {
-                    flex: 1;
-                    color: #333;
-                }
-            }
-            // 日期,附件
-            .date-attachment {
-                .label {
-                    // margin-right: 10px;
-                    display: inline-block;
-                    width: 45px;
-                }
-                .attachment {
-                    color: #025baa;
+                padding: 15px;
+                background-color: #fff;
+                margin-bottom: 10px;
+                .date-attachment,
+                .record,
+                .work,
+                .matter {
+                    width: 100%;
+                    display: flex;
+                    justify-content: space-between;
+                    line-height: 20px;
+                    font-size: 14px;
+                    font-weight: 400;
+                    color: #666666;
+                    margin-bottom: 12px;
+                    .label {
+                        width: 70px;
+                    }
                     .data {
-                        color: #025baa;
+                        flex: 1;
+                        color: #333;
                     }
                 }
-            }
-            .show-more,
-            .show-less {
-                margin: 0 auto;
-                width: 72px;
-                height: 30px;
-                line-height: 30px;
-                text-align: center;
-                background: #e5eef6;
-                border-radius: 2px;
-                display: flex;
-                align-items: center;
-                justify-content: center;
-                font-weight: 400;
-                color: #025baa;
-                font-size: 14px;
-                border-radius: 3px;
-                i {
-                    position: relative;
-                    top: 2px;
-                    width: 20px;
+                // 日期,附件
+                .date-attachment {
+                    .label {
+                        // margin-right: 10px;
+                        display: inline-block;
+                        width: 45px;
+                    }
+                    .attachment {
+                        color: #025baa;
+                        .data {
+                            color: #025baa;
+                        }
+                    }
                 }
-                span {
-                    height: 100%;
+                .show-more,
+                .show-less {
+                    margin: 0 auto;
+                    width: 72px;
+                    height: 30px;
+                    line-height: 30px;
+                    text-align: center;
+                    background: #e5eef6;
+                    border-radius: 2px;
+                    display: flex;
+                    align-items: center;
+                    justify-content: center;
+                    font-weight: 400;
+                    color: #025baa;
+                    font-size: 14px;
+                    border-radius: 3px;
+                    i {
+                        position: relative;
+                        top: 2px;
+                        width: 20px;
+                    }
+                    span {
+                        height: 100%;
+                    }
                 }
             }
         }

+ 2 - 2
src/views/otherMatter/index.vue

@@ -2,10 +2,10 @@
     <div class='other-matter'>
         <van-tabs v-model='active' class='other-tabs' color='#025BAA' @change='changeTab' title-active-color='#025BAA' :line-width='60'>
             <van-tab title='综合事项'>
-                <ComprehensiveMatter v-if='active===0' />
+                <ComprehensiveMatter />
             </van-tab>
             <van-tab title='辅助用房'>
-                <AuxiliaryRoom v-if='active===1' />
+                <AuxiliaryRoom />
             </van-tab>
         </van-tabs>
     </div>