|
|
|
@ -29,7 +29,7 @@
|
|
|
|
|
<el-button-group style="display:flex;">
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="search">查询</el-button>
|
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="createScheduleDialog(1)">同步单据-->
|
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="createScheduleDialog(1)">同步单据-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <!– :disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck"–>-->
|
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="createScheduleDialog(2)"-->
|
|
|
|
@ -48,7 +48,7 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="任务ID" prop="id" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
@ -72,9 +72,9 @@
|
|
|
|
|
<el-table-column label="开始时间" width="180" prop="startTime" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="结束时间" width="180" prop="endTime" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="同步信息" prop="remark" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="同步信息" prop="cacheFilePath" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="文件路径" prop="cacheFilePath" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -83,7 +83,8 @@
|
|
|
|
|
<el-button type="text" size="small" slot="reference">下载
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-popconfirm>
|
|
|
|
|
<el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)" confirm-button-text='删除' cancel-button-text='不用了'
|
|
|
|
|
<el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)" confirm-button-text='删除'
|
|
|
|
|
cancel-button-text='不用了'
|
|
|
|
|
icon="el-icon-info" icon-color="red" title="是否确认要删除这条数据?">
|
|
|
|
|
<el-button type="text" size="small" slot="reference">删除
|
|
|
|
|
</el-button>
|
|
|
|
@ -119,7 +120,7 @@ export default {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
|
id: null,
|
|
|
|
|
status: "1",
|
|
|
|
|
status: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
syncTime: null,
|
|
|
|
@ -197,8 +198,8 @@ export default {
|
|
|
|
|
this.syncTime = null;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
search(){
|
|
|
|
|
this.filterQuery.page=1;
|
|
|
|
|
search() {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
@ -274,7 +275,8 @@ export default {
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.createSchedule(type);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.createSchedule(type);
|
|
|
|
|
}
|
|
|
|
@ -297,7 +299,8 @@ export default {
|
|
|
|
|
this.$alert(response.message, '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
type: "warning",
|
|
|
|
|
callback: action => {}
|
|
|
|
|
callback: action => {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
@ -333,7 +336,8 @@ export default {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
|
if (response.code != 20000) {
|
|
|
|
@ -354,7 +358,7 @@ export default {
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
wmsFilterType(status) {
|
|
|
|
|
return status?'success':'warning';
|
|
|
|
|
return status ? 'success' : 'warning';
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -365,7 +369,8 @@ export default {
|
|
|
|
|
this.configParms = response.data;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
detailDialog(id) {
|
|
|
|
|
this.syncVisible = true;
|
|
|
|
@ -401,11 +406,13 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
mounted() {},
|
|
|
|
|
mounted() {
|
|
|
|
|
},
|
|
|
|
|
components: {},
|
|
|
|
|
created() {
|
|
|
|
|
this.headers = {
|
|
|
|
|