2021-03-19 18:52:19 +08:00
|
|
|
<template>
|
2021-05-11 22:29:14 +08:00
|
|
|
<div v-clickoutside="{obj:editPanel,func:clickOutside}" class="right-box right-box-panel">
|
|
|
|
|
<!-- begin--标题-->
|
|
|
|
|
<div class="right-box__header">
|
2021-05-18 14:01:29 +08:00
|
|
|
<div class="header__title">{{editPanel.id ? ($t("dashboard.panel.editPanelTitle")) : $t("dashboard.panel.createPanelTitle")}}</div>
|
2021-05-11 22:29:14 +08:00
|
|
|
<div class="header__operation">
|
|
|
|
|
<span v-cancel="{obj: editPanel, func: esc}"><i class="nz-icon nz-icon-close"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- begin--表单-->
|
|
|
|
|
<div class="right-box__container">
|
|
|
|
|
<div class="container__form">
|
|
|
|
|
<el-form ref="form" :model="editPanel" :rules="rules" label-position = "top" label-width="120px" size="small">
|
|
|
|
|
<el-form-item :label='$t("overall.name")' prop="name">
|
|
|
|
|
<el-input id="dc-box-input-name" v-model="editPanel.name" maxlength="64" placeholder="" show-word-limit size="small"></el-input>
|
2020-01-20 17:32:03 +08:00
|
|
|
</el-form-item>
|
2022-06-15 17:25:14 +08:00
|
|
|
<!--remark-->
|
|
|
|
|
<el-form-item :label='$t("overall.remark")' class="range-time" prop="remark">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="editPanel.remark"
|
|
|
|
|
maxlength="256"
|
|
|
|
|
size="small" :rows="2"
|
|
|
|
|
show-word-limit
|
|
|
|
|
type="textarea">
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item :label="$t('dashboard.panel.chartTooltip')" class="item-receivers" prop="chartShare">
|
|
|
|
|
<el-select v-model="editPanel.param.chartShare" clearable placeholder="" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="chartType">
|
|
|
|
|
<el-option value="none" label="Default">
|
|
|
|
|
<span class="panel-dropdown-label-txt" >{{$t('config.assetLabel.default')}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
<el-option value="crosshair" label="Share crosshair">
|
|
|
|
|
<span class="panel-dropdown-label-txt" >{{$t('dashboard.panel.crosshair')}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
<el-option value="tooltip" label="Share tooltip">
|
|
|
|
|
<span class="panel-dropdown-label-txt" >{{$t('dashboard.panel.shareTooltip')}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<div class="item-receivers-text">{{$t('dashboard.panel.chartTooltipText')}}</div>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- Report -->
|
|
|
|
|
<div>
|
|
|
|
|
<el-form-item >
|
|
|
|
|
<div class="form__sub-title">
|
|
|
|
|
<span>{{$t('dashboard.panel.report')}}</span>
|
|
|
|
|
<el-switch v-model="editPanel.param.report.enable" size="small"></el-switch>
|
|
|
|
|
</div>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<div v-if="editPanel.param.report.enable">
|
|
|
|
|
<transition name="el-zoom-in-top" >
|
|
|
|
|
<div class="form-items--half-width-group">
|
|
|
|
|
<el-form-item
|
|
|
|
|
:label="$t('backup.start')"
|
|
|
|
|
class="form-item--half-width"
|
2022-06-16 13:55:45 +08:00
|
|
|
prop="param.report.schedule.stime"
|
2022-06-15 17:25:14 +08:00
|
|
|
>
|
|
|
|
|
<my-date-picker align="right" class=" "
|
|
|
|
|
v-model="editPanel.param.report.schedule.stime"
|
|
|
|
|
:format="timeFormatStrToDatePickFormat(dateFormatStr)"
|
|
|
|
|
popper-class="panel-time-picker-popper right-box-select-top"
|
|
|
|
|
prefix-icon=" "
|
|
|
|
|
size="mini"
|
|
|
|
|
type="datetime">
|
|
|
|
|
</my-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
:label="$t('dashboard.panel.endAt')"
|
|
|
|
|
class="form-item--half-width"
|
2022-06-16 13:55:45 +08:00
|
|
|
prop="param.report.schedule.etime"
|
2022-06-15 17:25:14 +08:00
|
|
|
>
|
|
|
|
|
<my-date-picker align="right" class=" "
|
|
|
|
|
v-model="editPanel.param.report.schedule.etime"
|
|
|
|
|
:format="timeFormatStrToDatePickFormat(dateFormatStr)"
|
|
|
|
|
popper-class="panel-time-picker-popper right-box-select-top"
|
|
|
|
|
prefix-icon=" "
|
|
|
|
|
size="mini"
|
|
|
|
|
type="datetime">
|
|
|
|
|
</my-date-picker>
|
|
|
|
|
</el-form-item>
|
2022-06-16 13:55:45 +08:00
|
|
|
<el-form-item :label='$t("dashboard.panel.period")' class="range-time" prop="param.report.range.unit">
|
2022-06-15 17:25:14 +08:00
|
|
|
<el-radio-group v-model="editPanel.param.report.range.unit" size="small">
|
|
|
|
|
<el-radio-button label="day">{{ $t("dashboard.panel.prevDay") }}</el-radio-button>
|
|
|
|
|
<el-radio-button label="week">{{ $t("dashboard.panel.prevWeek") }}</el-radio-button>
|
|
|
|
|
<el-radio-button label="month">{{ $t("dashboard.panel.prevMonth") }}</el-radio-button>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
:label="$t('backup.schedule')"
|
2022-06-16 13:55:45 +08:00
|
|
|
prop="param.report.schedule.type"
|
2022-06-15 17:25:14 +08:00
|
|
|
class="form-tabs">
|
|
|
|
|
<el-tabs
|
|
|
|
|
v-model="editPanel.param.report.schedule.type"
|
|
|
|
|
type="card"
|
|
|
|
|
@tab-click="datasourceChange"
|
|
|
|
|
class="backups-info-tab"
|
|
|
|
|
>
|
|
|
|
|
<el-tab-pane :label="$t('backup.Daily')" name="2"></el-tab-pane>
|
|
|
|
|
<el-tab-pane :label="$t('backup.Weekly')" name="3"></el-tab-pane>
|
|
|
|
|
<el-tab-pane :label="$t('backup.Monthly')" name="4"></el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
v-if="isShow === 2 || isShow === 3 ? true :false"
|
|
|
|
|
:label="$t('backup.RepeatEvery')"
|
2022-06-16 13:55:45 +08:00
|
|
|
prop="param.report.schedule.repeat"
|
2022-06-15 17:25:14 +08:00
|
|
|
class="form-day-week">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="editPanel.param.report.schedule.repeat"
|
|
|
|
|
id="chart-box-title"
|
|
|
|
|
v-if="isShow === 3 ? true :false">
|
|
|
|
|
<template slot="append">{{ $t("backup.week") }}</template>
|
|
|
|
|
</el-input>
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="editPanel.param.report.schedule.repeat"
|
|
|
|
|
id="chart-box-title"
|
|
|
|
|
v-if="isShow === 2 ? true :false">
|
|
|
|
|
<template slot="append">{{ $t("backup.day") }}</template>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="isShow === 3 ? true : false" :label='$t("backup.WeekOn")' class="range-time" prop="nums">
|
|
|
|
|
<el-checkbox-group
|
|
|
|
|
v-model="editPanel.param.report.schedule.nums">
|
|
|
|
|
<el-checkbox-button
|
|
|
|
|
v-for="(item,index) in week"
|
|
|
|
|
:label="index + 1"
|
|
|
|
|
:key="index"
|
|
|
|
|
>{{item}}</el-checkbox-button>
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
v-show="isShow === 4 ? true : false"
|
|
|
|
|
:label="$t('backup.DayOfMonth')"
|
|
|
|
|
prop="nums"
|
|
|
|
|
class="check-month_box"
|
|
|
|
|
id="day-of-month"
|
|
|
|
|
>
|
|
|
|
|
<el-checkbox-group v-model="editPanel.param.report.schedule.nums">
|
|
|
|
|
<el-checkbox-button
|
|
|
|
|
v-for="(item, index) in month"
|
|
|
|
|
:label="index === 31 ? -1 : index + 1"
|
|
|
|
|
:key="item"
|
|
|
|
|
>{{ item }}</el-checkbox-button>
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</el-form-item>
|
2022-06-16 13:55:45 +08:00
|
|
|
<el-form-item :label="$t('dashboard.panel.receivers')" class="item-receivers" prop="param.report.receivers">
|
2022-06-15 17:25:14 +08:00
|
|
|
<el-select v-model="editPanel.param.report.receivers" clearable multiple placeholder="" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="chartType">
|
|
|
|
|
<el-option v-for="item in userData" :key="item.id" :label="item.name" :value="item.id">
|
|
|
|
|
<span class="panel-dropdown-label-txt" >{{item.name}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
</transition>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2020-01-20 17:32:03 +08:00
|
|
|
</el-form>
|
2020-12-14 20:25:24 +08:00
|
|
|
</div>
|
2020-01-03 17:17:09 +08:00
|
|
|
</div>
|
2021-05-11 22:29:14 +08:00
|
|
|
<!--底部按钮-->
|
|
|
|
|
<div class="right-box__footer">
|
|
|
|
|
<button id="dc-box-esc" v-cancel="{obj:editPanel, func:esc}" class="footer__btn footer__btn--light">
|
|
|
|
|
<span>{{$t('overall.cancel')}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="dc-box-save" :class="{'nz-btn-disabled':prevent_opt.save}" :disabled="prevent_opt.save" class="footer__btn" @click="save">
|
|
|
|
|
<span>{{$t('overall.save')}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2020-01-03 17:17:09 +08:00
|
|
|
</template>
|
2021-05-11 22:29:14 +08:00
|
|
|
|
2020-01-03 17:17:09 +08:00
|
|
|
<script>
|
2021-07-05 14:43:47 +08:00
|
|
|
import editRigthBox from '../mixin/editRigthBox'
|
2022-06-15 17:25:14 +08:00
|
|
|
import bus from '@/libs/bus'
|
2022-06-16 13:55:45 +08:00
|
|
|
import { arrLength, datePicker } from '@/components/common/js/validate'
|
2021-03-19 18:52:19 +08:00
|
|
|
export default {
|
|
|
|
|
name: 'panelBox',
|
|
|
|
|
props: {
|
2021-05-11 22:29:14 +08:00
|
|
|
obj: {
|
|
|
|
|
type: Object
|
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
},
|
2021-07-05 14:43:47 +08:00
|
|
|
mixins: [editRigthBox],
|
2021-03-19 18:52:19 +08:00
|
|
|
data () {
|
|
|
|
|
return {
|
2021-05-12 16:19:43 +08:00
|
|
|
url: 'visual/panel',
|
2021-05-11 22:29:14 +08:00
|
|
|
editPanel: {},
|
2022-06-15 17:25:14 +08:00
|
|
|
isShow: 0,
|
|
|
|
|
userData: [],
|
2021-05-11 22:29:14 +08:00
|
|
|
rules: {
|
|
|
|
|
name: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
2022-06-16 13:55:45 +08:00
|
|
|
],
|
|
|
|
|
'param.report.range.unit': [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'change' }
|
|
|
|
|
],
|
|
|
|
|
'param.report.schedule.type': [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'change' }
|
|
|
|
|
],
|
|
|
|
|
'param.report.schedule.repeat': [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
'param.report.schedule.stime': [{
|
|
|
|
|
required: true,
|
|
|
|
|
message: this.$t('validate.required')
|
|
|
|
|
}, { validator: datePicker, trigger: 'blur' }],
|
|
|
|
|
'param.report.receivers': [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'change' },
|
|
|
|
|
{ validator: arrLength }
|
2021-05-11 22:29:14 +08:00
|
|
|
]
|
2022-06-15 17:25:14 +08:00
|
|
|
},
|
|
|
|
|
week: [
|
|
|
|
|
this.$t('week.Mon'),
|
|
|
|
|
this.$t('week.Tue'),
|
|
|
|
|
this.$t('week.Wed'),
|
|
|
|
|
this.$t('week.Thu'),
|
|
|
|
|
this.$t('week.Fri'),
|
|
|
|
|
this.$t('week.Sat'),
|
|
|
|
|
this.$t('week.Sun')
|
|
|
|
|
],
|
|
|
|
|
month: [
|
|
|
|
|
1,
|
|
|
|
|
2,
|
|
|
|
|
3,
|
|
|
|
|
4,
|
|
|
|
|
5,
|
|
|
|
|
6,
|
|
|
|
|
7,
|
|
|
|
|
8,
|
|
|
|
|
9,
|
|
|
|
|
10,
|
|
|
|
|
11,
|
|
|
|
|
12,
|
|
|
|
|
13,
|
|
|
|
|
14,
|
|
|
|
|
15,
|
|
|
|
|
16,
|
|
|
|
|
17,
|
|
|
|
|
18,
|
|
|
|
|
19,
|
|
|
|
|
20,
|
|
|
|
|
21,
|
|
|
|
|
22,
|
|
|
|
|
23,
|
|
|
|
|
24,
|
|
|
|
|
25,
|
|
|
|
|
26,
|
|
|
|
|
27,
|
|
|
|
|
28,
|
|
|
|
|
29,
|
|
|
|
|
30,
|
|
|
|
|
31,
|
|
|
|
|
'Last'
|
|
|
|
|
],
|
|
|
|
|
dateFormatStr: localStorage.getItem('nz-default-dateFormat')
|
|
|
|
|
? localStorage.getItem('nz-default-dateFormat')
|
|
|
|
|
: 'YYYY-MM-DD HH:ss:mm'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created () {
|
|
|
|
|
this.dateFormatStr = 'YYYY-MM-DD HH:mm:ss'
|
|
|
|
|
if (this.editPanel.id) {
|
|
|
|
|
this.isShow = Number(this.editPanel.param.report.schedule.type)
|
|
|
|
|
this.editPanel.param.report.schedule.type = this.editPanel.param.report.schedule.type + ''
|
2022-06-16 13:55:45 +08:00
|
|
|
if (this.editPanel.param.report.schedule.stime !== '') {
|
|
|
|
|
this.editPanel.param.report.schedule.stime = this.utcTimeToTimezoneStr(this.editPanel.param.report.schedule.stime)
|
|
|
|
|
} else {
|
|
|
|
|
this.editPanel.param.report.schedule.stime = ''
|
|
|
|
|
}
|
|
|
|
|
if (this.editPanel.param.report.schedule.etime !== '') {
|
|
|
|
|
this.editPanel.param.report.schedule.etime = this.utcTimeToTimezoneStr(this.editPanel.param.report.schedule.etime)
|
|
|
|
|
} else {
|
|
|
|
|
this.editPanel.param.report.schedule.etime = ''
|
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
}
|
|
|
|
|
},
|
2022-06-15 17:25:14 +08:00
|
|
|
mounted () {
|
|
|
|
|
this.getUserData()
|
|
|
|
|
},
|
2021-03-19 18:52:19 +08:00
|
|
|
methods: {
|
2022-06-15 17:25:14 +08:00
|
|
|
getUserData () {
|
|
|
|
|
return new Promise(resolve => {
|
|
|
|
|
this.$get('sys/user', { pageSize: -1, pageNo: 1 }).then(response => {
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
this.userData = response.data.list
|
|
|
|
|
}
|
|
|
|
|
resolve()
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
datasourceChange (tab) {
|
|
|
|
|
this.isShow = Number(tab.name)
|
|
|
|
|
if (this.editPanel.param.report.schedule.nums) {
|
|
|
|
|
this.editPanel.param.report.schedule.nums = []
|
2022-06-16 13:55:45 +08:00
|
|
|
this.editPanel.param.report.schedule.repeat = 1
|
2022-06-15 17:25:14 +08:00
|
|
|
}
|
|
|
|
|
},
|
2021-05-11 22:29:14 +08:00
|
|
|
/* 关闭弹框 */
|
|
|
|
|
esc (refresh) {
|
|
|
|
|
this.prevent_opt.save = false
|
|
|
|
|
this.$emit('close', refresh)
|
2021-03-19 18:52:19 +08:00
|
|
|
},
|
2021-05-11 22:29:14 +08:00
|
|
|
clickOutside () {
|
|
|
|
|
this.esc(false)
|
2020-01-03 17:17:09 +08:00
|
|
|
},
|
2021-05-11 22:29:14 +08:00
|
|
|
|
|
|
|
|
/* 保存 */
|
|
|
|
|
save () {
|
2022-06-15 17:25:14 +08:00
|
|
|
const params = {
|
|
|
|
|
id: this.editPanel.id ? this.editPanel.id : '',
|
|
|
|
|
name: this.editPanel.name,
|
|
|
|
|
type: 'dashboard',
|
|
|
|
|
pid: 0,
|
|
|
|
|
remark: this.editPanel.remark,
|
|
|
|
|
param: {
|
|
|
|
|
report: {
|
|
|
|
|
enable: this.editPanel.param.report.enable,
|
|
|
|
|
range: {
|
|
|
|
|
type: 'previous',
|
|
|
|
|
interval: 1,
|
|
|
|
|
unit: this.editPanel.param.report.range.unit
|
|
|
|
|
},
|
|
|
|
|
schedule: {
|
|
|
|
|
type: Number(this.editPanel.param.report.schedule.type),
|
|
|
|
|
repeat: this.editPanel.param.report.schedule.repeat ? this.editPanel.param.report.schedule.repeat : 1,
|
2022-06-16 13:55:45 +08:00
|
|
|
nums: this.editPanel.param.report.schedule.nums,
|
|
|
|
|
stime: this.editPanel.param.report.schedule.stime !== '' ? this.timezoneToUtcTimeStr(this.editPanel.param.report.schedule.stime) : this.editPanel.param.report.schedule.stime,
|
|
|
|
|
etime: this.editPanel.param.report.schedule.etime !== '' ? this.timezoneToUtcTimeStr(this.editPanel.param.report.schedule.etime) : this.editPanel.param.report.schedule.etime
|
2022-06-15 17:25:14 +08:00
|
|
|
},
|
|
|
|
|
receivers: this.editPanel.param.report.receivers
|
|
|
|
|
},
|
|
|
|
|
chartShare: this.editPanel.param.chartShare
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const editParam = JSON.parse(JSON.stringify(params))
|
2021-05-11 22:29:14 +08:00
|
|
|
if (this.prevent_opt.save) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.prevent_opt.save = true
|
|
|
|
|
this.$refs.form.validate((valid) => {
|
2021-03-19 18:52:19 +08:00
|
|
|
if (valid) {
|
2021-05-11 22:29:14 +08:00
|
|
|
if (this.editPanel.id) {
|
2022-06-15 17:25:14 +08:00
|
|
|
this.$put(this.url, editParam).then(response => {
|
2021-05-11 22:29:14 +08:00
|
|
|
this.prevent_opt.save = false
|
2021-03-19 18:52:19 +08:00
|
|
|
if (response.code === 200) {
|
|
|
|
|
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.saveSuccess') })
|
2021-05-11 22:29:14 +08:00
|
|
|
this.esc(true)
|
2021-03-19 18:52:19 +08:00
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.msg)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
2022-06-15 17:25:14 +08:00
|
|
|
this.$post(this.url, editParam).then(response => {
|
2021-05-11 22:29:14 +08:00
|
|
|
this.prevent_opt.save = false
|
2021-03-19 18:52:19 +08:00
|
|
|
if (response.code === 200) {
|
|
|
|
|
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.saveSuccess') })
|
2021-05-11 22:29:14 +08:00
|
|
|
this.esc(true)
|
2021-03-19 18:52:19 +08:00
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.msg)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2021-05-11 22:29:14 +08:00
|
|
|
this.prevent_opt.save = false
|
2021-03-19 18:52:19 +08:00
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
})
|
2020-01-03 17:17:09 +08:00
|
|
|
},
|
2021-05-11 22:29:14 +08:00
|
|
|
/* 删除 */
|
|
|
|
|
del () {
|
|
|
|
|
if (this.prevent_opt.save) { return } ;
|
|
|
|
|
this.prevent_opt.save = true
|
|
|
|
|
this.$confirm(this.$t('tip.confirmDelete'), {
|
|
|
|
|
confirmButtonText: this.$t('tip.yes'),
|
|
|
|
|
cancelButtonText: this.$t('tip.no'),
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.$delete(`${this.url}?ids=${this.editPanel.id}`).then(response => {
|
|
|
|
|
this.prevent_opt.save = false
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.deleteSuccess') })
|
|
|
|
|
this.esc(true)
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.msg)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.prevent_opt.save = false
|
|
|
|
|
})
|
2021-03-19 18:52:19 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
2021-05-11 22:29:14 +08:00
|
|
|
obj: {
|
|
|
|
|
immediate: true,
|
|
|
|
|
deep: true,
|
|
|
|
|
handler (n, o) {
|
2021-07-15 11:56:25 +08:00
|
|
|
this.isEdit = true
|
2021-05-11 22:29:14 +08:00
|
|
|
this.editPanel = JSON.parse(JSON.stringify(n))
|
|
|
|
|
}
|
2022-06-15 17:25:14 +08:00
|
|
|
},
|
|
|
|
|
'editPanel.param.report.schedule.stime': {
|
|
|
|
|
deep: true,
|
|
|
|
|
handler (n) {
|
|
|
|
|
this.editPanel.param.report.schedule.stime = bus
|
|
|
|
|
.timeFormate(new Date(n), 'YYYY-MM-DD HH:mm:ss')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'editPanel.param.report.schedule.etime': {
|
|
|
|
|
deep: true,
|
|
|
|
|
handler (n) {
|
|
|
|
|
this.editPanel.param.report.schedule.etime = bus
|
|
|
|
|
.timeFormate(new Date(n), 'YYYY-MM-DD HH:mm:ss')
|
|
|
|
|
}
|
2021-05-11 22:29:14 +08:00
|
|
|
}
|
2020-01-03 17:17:09 +08:00
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
}
|
2020-01-03 17:17:09 +08:00
|
|
|
</script>
|