diff --git a/src/views/firefighting/points/components/list.vue b/src/views/firefighting/points/components/list.vue
index d28bce7..b8c08de 100644
--- a/src/views/firefighting/points/components/list.vue
+++ b/src/views/firefighting/points/components/list.vue
@@ -73,7 +73,7 @@
否
-
+
删除
+
+ 检查记录二维码
+
@@ -143,6 +151,22 @@
打 印
+
+
+
+
+
+
@@ -157,7 +181,6 @@
取 消
确 定
-
@@ -171,9 +194,7 @@ import waves from '@/directive/waves' // waves directive
import SelectTree from '@/components/SelectTree'
export default {
-
components: { Pagination, SelectTree, vueQr },
-
directives: { waves },
data() {
return {
@@ -181,7 +202,9 @@ export default {
addBtnType: true,
listLoading: true,
dialogFormShow: false,
+ dialogRecordFormShow: false,
qrcodeStr: '',
+ recordQrcodeStr: '',
qrInfo: {},
add: false,
del: false,
@@ -246,39 +269,36 @@ export default {
handleShowQr(ROW) {
this.dialogFormShow = true
this.qrInfo = ROW
- // 2024-07-22 齐金城确认后,将代码还原,如果不还原则无法显示H5页面和。created by liu jun
this.qrcodeStr = this.config.weburlWaiwang + 'static/qrcode/views/bsbw/point_list.html?id=' + ROW.FIRE_POINT_ID
- // const json = {
- // MANAGER_TYPE: 'fireListManager',
- // FIRE_POINT_ID: ROW.FIRE_POINT_ID
- // }
- // const jsonStr = JSON.stringify(json)
- // this.qrcodeStr = jsonStr
+ },
+ handleShowRecordQr(ROW) {
+ this.dialogRecordFormShow = true
+ const json = {
+ MANAGER_TYPE: 'fireListManager',
+ USER_ID: ROW.USER_ID,
+ DEPARTMENT_ID: ROW.DEPARTMENT_ID
+ }
+ this.recordQrcodeStr = JSON.stringify(json)
},
handleEdit(FIRE_POINT_ID) {
this.$parent.FIRE_POINT_ID = FIRE_POINT_ID
this.$parent.activeName = 'Edit'
},
selectable(row, index) {
- // return row.DEVICE_COUNT == 0
return true
},
getRowKey(row) {
return row.FIRE_POINT_ID
},
- // 添加
handleAdd() {
this.$parent.activeName = 'Edit'
this.$parent.FIRE_POINT_ID = ''
this.$parent.FIRE_POINT_CODE = ''
this.$parent.FIRE_POINT_NAME = ''
},
- // 搜索
getQuery() {
- // this.$refs.multipleTable.clearSelection()
this.getList()
},
- // 获取列表
getList(pid) {
this.listLoading = true
this.varList = []
@@ -299,7 +319,8 @@ export default {
}).catch((e) => {
this.listLoading = false
})
- }, goKeyReset() {
+ },
+ goKeyReset() {
this.FIRE_POINT_NAME = ''
this.FIRE_POINT_CODE = ''
this.IS_PUNCTUATION = ''
@@ -345,7 +366,6 @@ export default {
this.listLoading = false
})
},
- // 部门列表树
getTreeData() {
requestFN(
'/department/listTreeV2',
@@ -355,7 +375,6 @@ export default {
}).catch((e) => {
})
},
- // 批量修改负责人
handleEditUser(row) {
this.editDataIds = []
if (row.FIRE_POINT_ID) {
@@ -505,15 +524,15 @@ export default {
}
-