|
|
@ -19,7 +19,7 @@
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-date-picker
|
|
|
|
<el-date-picker
|
|
|
|
v-model="syncTime"
|
|
|
|
v-model="filterQuery.syncTime"
|
|
|
|
type="datetime"
|
|
|
|
type="datetime"
|
|
|
|
format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
@ -202,7 +202,6 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
templateDlUrl: null,
|
|
|
|
templateDlUrl: null,
|
|
|
|
checked: false,
|
|
|
|
checked: false,
|
|
|
|
syncTime: null,
|
|
|
|
|
|
|
|
configParms: {},
|
|
|
|
configParms: {},
|
|
|
|
syncInfo: null,
|
|
|
|
syncInfo: null,
|
|
|
|
syncVisible: false
|
|
|
|
syncVisible: false
|
|
|
@ -289,8 +288,8 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
createScheduleDialog(type) {
|
|
|
|
createScheduleDialog(type) {
|
|
|
|
if (this.$isNotBlank(this.syncTime)) {
|
|
|
|
if (this.$isNotBlank(this.filterQuery.syncTime)) {
|
|
|
|
this.$confirm("此操作将从" + this.syncTime + "开始同步最新数据,是否继续", "提示", {
|
|
|
|
this.$confirm("此操作将从" + this.filterQuery.syncTime + "开始同步最新数据,是否继续", "提示", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning",
|
|
|
|
type: "warning",
|
|
|
@ -309,7 +308,7 @@ export default {
|
|
|
|
createSchedule(type) {
|
|
|
|
createSchedule(type) {
|
|
|
|
let query = {
|
|
|
|
let query = {
|
|
|
|
createType: type,
|
|
|
|
createType: type,
|
|
|
|
syncTime: this.syncTime,
|
|
|
|
syncTime: this.filterQuery.syncTime,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
createSchedule(query)
|
|
|
|
createSchedule(query)
|
|
|
|