|
@@ -36,20 +36,25 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 原理图 -->
|
|
|
+ <ImagePreview :key='imgKey' class='update-img-preview' :visible.sync='showImgPreview' :imgList='imgList' />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import Vue from 'vue'
|
|
|
import { Cell, Toast } from 'vant'
|
|
|
Vue.use(Cell).use(Toast)
|
|
|
-import SystemMenu from '@/components/systemMenu'
|
|
|
+import { mapGetters, mapMutations } from 'vuex'
|
|
|
+import { querySystemCount, querySystemImage } from '@/api/equipmentList'
|
|
|
+
|
|
|
import MCard from '@/components/equipmentFacilities/Card'
|
|
|
-import { mapGetters,mapMutations } from 'vuex'
|
|
|
-import { querySystemCount } from '@/api/equipmentList'
|
|
|
+import SystemMenu from '@/components/systemMenu'
|
|
|
+import ImagePreview from '@/components/ImagePreview'
|
|
|
+
|
|
|
export default {
|
|
|
name: 'EquipmentFacilities',
|
|
|
props: {},
|
|
|
- components: { SystemMenu, MCard },
|
|
|
+ components: { SystemMenu, MCard, ImagePreview },
|
|
|
computed: {
|
|
|
...mapGetters(['plazaId', 'smsxt', 'categoryId']),
|
|
|
},
|
|
@@ -118,7 +123,10 @@ export default {
|
|
|
],
|
|
|
},
|
|
|
listKey: `list_${new Date().getTime()}`,
|
|
|
- showRight: false,
|
|
|
+ showRight: false, //是否显示右侧内容
|
|
|
+ showImgPreview: false, //是否展示图片预览
|
|
|
+ imgList: [], //图片数组
|
|
|
+ imgKey: `img${new Date().getTime()}`,
|
|
|
}
|
|
|
},
|
|
|
async created() {
|
|
@@ -170,11 +178,11 @@ export default {
|
|
|
res = await querySystemCount({ getParams })
|
|
|
} catch (error) {}
|
|
|
// TODO: 123123
|
|
|
- /* if (!res?.data) {
|
|
|
+ if (!res?.data) {
|
|
|
return false
|
|
|
- } */
|
|
|
- // let data = res.data
|
|
|
- let data = [
|
|
|
+ }
|
|
|
+ let data = res.data
|
|
|
+ /* let data = [
|
|
|
{
|
|
|
typecode: 2010,
|
|
|
cnt: 1,
|
|
@@ -231,7 +239,7 @@ export default {
|
|
|
typecode: 2025,
|
|
|
cnt: 14,
|
|
|
},
|
|
|
- ]
|
|
|
+ ] */
|
|
|
|
|
|
let currentSys = this.listData[this.currentSmsxt]
|
|
|
console.log(currentSys)
|
|
@@ -239,7 +247,7 @@ export default {
|
|
|
if (item.dataType === 'img') {
|
|
|
let detail = data.filter((v) => v.typecode == item.typecode)[0]
|
|
|
console.log(detail)
|
|
|
- item.count = detail?.cnt + '张' || '无'
|
|
|
+ item.count = detail?.cnt ? detail?.cnt + '张' : '无' // + '张' || '无'
|
|
|
}
|
|
|
})
|
|
|
console.log(currentSys)
|
|
@@ -269,19 +277,52 @@ export default {
|
|
|
/**
|
|
|
* 显示原理图预览
|
|
|
*/
|
|
|
- handleImg(item) {},
|
|
|
+ handleImg(item) {
|
|
|
+ if (item.count === '无') {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ this.showImage(item)
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 显示原理图
|
|
|
+ */
|
|
|
+ async showImage(item) {
|
|
|
+ console.log('显示原理图')
|
|
|
+ console.log(item)
|
|
|
+ let getParams = {
|
|
|
+ plazaId: this.plazaId,
|
|
|
+ module: this.module,
|
|
|
+ neTypename: '位置布置图',
|
|
|
+ typecode: item.typecode,
|
|
|
+ system: this.smsxt,
|
|
|
+ }
|
|
|
+ let res = await querySystemImage({ getParams })
|
|
|
+ console.log(res)
|
|
|
+ if (!res && !res?.data) {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ let data = res.data
|
|
|
+ let imgList = []
|
|
|
+ data.map((item) => {
|
|
|
+ imgList.push(item.url)
|
|
|
+ })
|
|
|
+ this.imgList = imgList
|
|
|
+ imgList.length && (this.showImgPreview = true)
|
|
|
+ },
|
|
|
/**
|
|
|
* 跳转 机房平面布置图
|
|
|
*/
|
|
|
handleRoom(item) {
|
|
|
- this.$router.push({ name: 'EngineRoomPicture', params: {} })
|
|
|
+ // TODO: 机房平面布置图
|
|
|
+ // this.$router.push({ name: 'EngineRoomPicture', params: {} })
|
|
|
},
|
|
|
/**
|
|
|
* 跳转 楼层分布
|
|
|
*/
|
|
|
handleFloor(item) {
|
|
|
let title = this.systemText + '-楼层分布'
|
|
|
- this.$router.push({ name: 'SystemFloor', params: { title } })
|
|
|
+ // TODO: 楼层分布
|
|
|
+ // this.$router.push({ name: 'SystemFloor', params: { title } })
|
|
|
},
|
|
|
goToEquipment(data) {
|
|
|
console.log(data)
|