fix
This commit is contained in:
		| @@ -22,7 +22,10 @@ | ||||
|             prefix-icon="el-icon-search" | ||||
|             @clear="search.name = '', handleTreeFilter()" clearable/> | ||||
|       </div> | ||||
|       <div title>设备列表</div> | ||||
|       <div title> | ||||
|         <div>设备列表</div> | ||||
|         <el-button type="text" icon="iconfont iconResetting" @click="updateDev" size="mini" :loading="btnLoading">刷新</el-button> | ||||
|       </div> | ||||
|       <div fill class="deviceList"> | ||||
|         <el-tree ref="deviceTree" highlight-current :render-content="renderItem" :data="treeData" :props="propsConfig" | ||||
|                  @node-click="handleNodeClick" @node-contextmenu="nodeContextmenu" | ||||
| @@ -48,10 +51,10 @@ export default { | ||||
|   name: "deviceSlider", | ||||
|   props: { | ||||
|     show: Boolean, | ||||
|     ins: Function, | ||||
|     instance: Function, | ||||
|     dict: Object, | ||||
|     permissions: Function, | ||||
|     renderItem: Function | ||||
|     renderItem: Function, | ||||
|   }, | ||||
|   computed: { | ||||
|     overview() { | ||||
| @@ -98,7 +101,8 @@ export default { | ||||
|         x: '', | ||||
|         y: '', | ||||
|         node: {} | ||||
|       } | ||||
|       }, | ||||
|       btnLoading: false, | ||||
|     } | ||||
|   }, | ||||
|   methods: { | ||||
| @@ -110,8 +114,10 @@ export default { | ||||
|       this.isShowMenu = false | ||||
|     }, | ||||
|     getDevices() { | ||||
|       this.ins.post("/app/appzyvideoequipment/tree", null, { | ||||
|         params: {size: 999} | ||||
|       this.instance.post(`/app/appzyvideoequipment/tree`, null, { | ||||
|         params: { | ||||
|           size: 999 | ||||
|         } | ||||
|       }).then(res => { | ||||
|         if (res?.data) { | ||||
|           this.staData = res.data.count | ||||
| @@ -122,6 +128,21 @@ export default { | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     updateDev() { | ||||
|       this.btnLoading = true | ||||
|       this.instance.post(`/app/appzyvideoequipment/sync`, null, { | ||||
|         timeout: 1000000 | ||||
|       }).then(res => { | ||||
|         if (res.code == 0) { | ||||
|           this.$message.success('更新成功') | ||||
|           this.getDevices() | ||||
|         } | ||||
|         this.btnLoading = false | ||||
|       }).catch(() => { | ||||
|         this.btnLoading = false | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     handleTreeCommand(e, node) { | ||||
|       this.$emit('treeCommand', { | ||||
|         type: e, | ||||
| @@ -154,14 +175,16 @@ export default { | ||||
|     handleTreeFilter() { | ||||
|       this.$refs.deviceTree?.filter(this.search.name) | ||||
|     }, | ||||
|  | ||||
|     onChange() { | ||||
|       this.$refs.deviceTree?.filter(this.search.name) | ||||
|     } | ||||
|     }, | ||||
|      | ||||
|   }, | ||||
|  | ||||
|   created() { | ||||
|     this.dict.load("deviceStatus") | ||||
|     this.getDevices() | ||||
|     this.$dict.load("deviceStatus").then(()=>{ | ||||
|       this.getDevices() | ||||
|     }) | ||||
|   }, | ||||
|  | ||||
|   mounted() { | ||||
| @@ -247,6 +270,18 @@ export default { | ||||
|       background: #3E4A69; | ||||
|       padding: 0 16px; | ||||
|       line-height: 28px; | ||||
|       display: flex; | ||||
|       justify-content: space-between; | ||||
|       align-items: center; | ||||
|  | ||||
|       ::v-deep .el-button { | ||||
|         padding: 0 4px; | ||||
|         height: 28px; | ||||
|         background: #3E4A69; | ||||
|       } | ||||
|       ::v-deep .el-button:hover { | ||||
|         border: none; | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     ::v-deep.deviceList { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user