yunxing 4 gadi atpakaļ
vecāks
revīzija
6bc3f97d9d

+ 6 - 0
src/components/systemMenu.vue

@@ -11,6 +11,8 @@
  * 设备设施左侧菜单
  * 点击后,传回父组件, text, categoryId, smsxt  三个字段
  */
+import { mapGetters, mapActions, mapMutations } from 'vuex'
+
 export default {
     name: 'systemMenu',
     props: {},
@@ -33,6 +35,7 @@ export default {
     beforeMount() {},
     mounted() {},
     methods: {
+        ...mapMutations(['SETCATEGORYID', 'SETSMSXT']),
         /**
          * 点击系统,进行切换,并传回 父组件选中系统值
          */
@@ -43,6 +46,9 @@ export default {
                     item.active = true
                 }
             })
+            // 设置 categoryId,smsxt
+            this.SETCATEGORYID(categoryId)
+            this.SETSMSXT(smsxt)
             this.$emit('chooseSystem', { text, categoryId, smsxt })
         },
     },

+ 11 - 9
src/views/equipmentFacilities/index.vue

@@ -11,20 +11,20 @@
                 <van-cell :title='`消防泵房引出管路分布图`' :border='false' is-link value='无' @click='handleClick' />
                 <van-cell :title='`楼层分布+其他数据`' :border='false' is-link value='无' @click='handleClick' />-->
                 <van-cell
-                    v-for='({text},index ) in listData[smsxt]'
+                    v-for='(item,index ) in listData[smsxt]'
                     :key='index'
-                    :title='text'
+                    :title='item.text'
                     :border='false'
                     is-link
                     value='无'
-                    @click='handleClick'
+                    @click='handleClick(item)'
                 />
             </div>
             <!-- 分割线 -->
             <div class='divider'></div>
             <!-- 设备卡片 -->
             <div class='card-container'>
-                <m-card class='card' :type='item' name='消防主机' :total='50' :numer='3' v-for='item in 5' :key='item' @click='goToEquipment(item)' />
+                <m-card class='card' :type='item' name='消防主机' :total='50' :numer='3' v-for='item in 5' :key='item' @click.native='goToEquipment(item)' />
             </div>
         </div>
     </div>
@@ -46,15 +46,15 @@ export default {
                 //上部列表数据
                 1001: [
                     //供电
-                    { text: '供电系统原理图', id: '' },
-                    { text: '机房平面布置图', id: '' },
+                    { text: '供电系统原理图', dataType: 'img', id: '' },
+                    { text: '机房平面布置图', dataType: 'room', id: '' },
                     { text: '配电室低压柜及出现明细', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '楼层分布', dataType: 'floor', id: '' },
                     { text: '电井控制商铺范围', id: '' },
                 ],
                 1002: [
                     //暖通
-                    { text: '空调系统原理图', id: '' },
+                    { text: '空调系统原理图', type: 'img', id: '' },
                     { text: '分水器之路分布图', id: '' },
                     { text: '机房平面布置图', id: '' },
                     { text: '楼层分布', id: '' },
@@ -115,7 +115,9 @@ export default {
             console.log(text, categoryId, smsxt)
             this.smsxt = smsxt
         },
-        handleClick() {},
+        handleClick(item) {
+            console.log(item)
+        },
         goToEquipment(data) {
             console.log(data)
         },

+ 14 - 7
src/views/otherMatter/ComprehensiveMatter.vue

@@ -159,7 +159,7 @@ export default {
             if (['其他部门', '其他', '其它'].includes(data[0].department)) {
                 let item = data[0]
                 item.showOther = true
-                item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
+                item.children.push({ department: item.department, count: item.count, cnt: item.cnt, otherdescription: item.otherdescription })
             }
             // 处理其他部门,将在一起的其他部门,合并到一起
             for (let index = 1, len = data.length; index < len; index++) {
@@ -172,10 +172,15 @@ export default {
                             return item.otherdescription === otherdescription && item.count === count && item.department === item.department
                         })
                     ) {
-                        item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
+                        item.children.push({ department: item.department, count: item.count, cnt: item.cnt, 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[index - 1].children.push({
+                        department: item.department,
+                        count: item.count,
+                        cnt: item.cnt,
+                        otherdescription: item.otherdescription,
+                    })
                     data.splice(index--, 1)
                     len--
                 }
@@ -242,17 +247,19 @@ export default {
         goToMattersFetail(data, type) {
             // console.log(data)
             let { department, otherdescription, cnt } = data
+            console.log(data)
             let params = {
                 type, //部门类型
                 department, //部门名称
                 size: cnt, //分页,按照cnt(count)字段
-                startDate: this.createdateStartDate,
-                endDate: this.createdateEndDate,
+                createdateStartDate: this.createdateStartDate,
+                createdateEndDate: this.createdateEndDate,
             }
+            
             // 全部时,不传时间字段
             if (this.active === 3) {
-                delete params.startDate
-                delete params.endDate
+                delete params.createdateStartDate
+                delete params.createdateEndDate
             }
             // 其他部门,传递 其他部门说明字段
             type == 2 && (params.otherdescription = otherdescription)

+ 5 - 5
src/views/otherMatter/ComprehensiveMatterList.vue

@@ -2,7 +2,7 @@
     <div class='comprehensive-matter-list'>
         <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>
+            <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'>
@@ -93,13 +93,13 @@ export default {
     },
     created() {
         console.log(this.$route.params)
-        let { type, department, otherdescription, size, startDate, endDate } = this.$route.params
+        let { type, department, otherdescription, size, createdateStartDate, createdateEndDate } = this.$route.params
         this.size = size
         if (type === 1) {
-            this.params = { department, startDate, endDate }
+            this.params = { department, createdateStartDate, createdateEndDate }
             this.title = department
         } else {
-            this.params = { department, otherdescription, startDate, endDate }
+            this.params = { department, otherdescription, createdateStartDate, createdateEndDate }
             this.title = '其他部门'
         }
         this.getList()
@@ -124,7 +124,7 @@ export default {
                 ...params,
                 plazaId: this.plazaId,
                 page: this.page,
-                size: this.size,
+                size: 100 || this.size, //TODO: size
                 orderBy: 'createdate,0',
             }
             let res = await queryDetailList({ getParams })