|
@@ -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')
|
|
|
}
|
|
|
}
|