瀏覽代碼

完善opc

hfxc226 2 年之前
父節點
當前提交
e291e92e83
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/views/remote/opc-log/modules/Detail.vue

+ 6 - 0
src/views/remote/opc-log/modules/Detail.vue

@@ -20,6 +20,7 @@
             v-if="$auth('remote-opc-logs-export')"
             type="primary"
             icon="download"
+            :loading="confirmLoading"
             @click="doExport">导出
           </a-button>
         </a-col>
@@ -125,6 +126,7 @@ export default {
   methods: {
     base (record, param) {
       this.visible = true
+      this.confirmLoading = true
       this.modalTitle = '详情'
       if (!this.BaseTool.Object.isBlank(record)) {
         this.model = record
@@ -191,6 +193,7 @@ export default {
       this.chart.render()
     },
     onChange (date, dateString) {
+      this.confirmLoading = true
       const param = {}
       param.positionNum = this.model.positionNum
       param.year = date.format(this.BaseTool.Date.PICKER_NORM_YEAR)
@@ -215,6 +218,9 @@ export default {
     handleCancel () {
       this.visible = false
       this.confirmLoading = false
+      this.searchDay = null
+      this.chart = null
+      this.chartsData = []
       this.$emit('ok')
     }
   }