|
|
@ -41,12 +41,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="任务类型" prop="type" width="140" show-overflow-tooltip>
|
|
|
|
<el-table-column label="任务类型" prop="type" width="140" show-overflow-tooltip>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ scope.row.type}}</span>
|
|
|
|
<span>{{ scope.row.type }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="状态" prop="status" width="140" show-overflow-tooltip>
|
|
|
|
<el-table-column label="状态" prop="status" width="140" show-overflow-tooltip>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag v-if="scope.row.status" :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}
|
|
|
|
<el-tag v-if="scope.row.status" :type="statusFilterType(scope.row.status)">
|
|
|
|
|
|
|
|
{{ status[scope.row.status] }}
|
|
|
|
</el-tag>
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
@ -64,15 +65,18 @@
|
|
|
|
<el-button type="text" size="small" slot="reference">下载
|
|
|
|
<el-button type="text" size="small" slot="reference">下载
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</el-popconfirm>
|
|
|
|
</el-popconfirm>
|
|
|
|
<el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)" confirm-button-text='删除'
|
|
|
|
<el-popconfirm v-if="scope.row.status==4" @confirm="deleteData(scope.row.id)"
|
|
|
|
cancel-button-text='不用了' icon="el-icon-info" icon-color="red" title="是否确认要删除这条数据?">
|
|
|
|
confirm-button-text='删除'
|
|
|
|
|
|
|
|
cancel-button-text='不用了' icon="el-icon-info" icon-color="red"
|
|
|
|
|
|
|
|
title="是否确认要删除这条数据?">
|
|
|
|
<el-button type="text" size="small" slot="reference">删除
|
|
|
|
<el-button type="text" size="small" slot="reference">删除
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</el-popconfirm>
|
|
|
|
</el-popconfirm>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
<el-pagination :current-page="filterQuery.page" :page-size="filterQuery.limit" @current-change="handleCurrentChange"
|
|
|
|
<el-pagination :current-page="filterQuery.page" :page-size="filterQuery.limit"
|
|
|
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
layout="prev, pager, next" :total="total"></el-pagination>
|
|
|
|
layout="prev, pager, next" :total="total"></el-pagination>
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
@ -85,22 +89,22 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
filterDownloadStatus,
|
|
|
|
filterDownloadStatus,
|
|
|
|
deleteDownloadStatus,
|
|
|
|
deleteDownloadStatus,
|
|
|
|
createSchedule,
|
|
|
|
createSchedule,
|
|
|
|
updateConfig,
|
|
|
|
updateConfig,
|
|
|
|
infoByStatus
|
|
|
|
infoByStatus
|
|
|
|
} from "../../api/sync/dataSyncStatus";
|
|
|
|
} from "../../api/sync/dataSyncStatus";
|
|
|
|
import store from "@/store";
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
taskId: null,
|
|
|
|
taskId: null,
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
|
status: "3",
|
|
|
|
status: null,
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 10,
|
|
|
|
limit: 10,
|
|
|
|
syncTime: null,
|
|
|
|
syncTime: null,
|
|
|
@ -225,7 +229,8 @@
|
|
|
|
.then(() => {
|
|
|
|
.then(() => {
|
|
|
|
this.createSchedule(type);
|
|
|
|
this.createSchedule(type);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
this.createSchedule(type);
|
|
|
|
this.createSchedule(type);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -248,7 +253,8 @@
|
|
|
|
this.$alert(response.message, '提示', {
|
|
|
|
this.$alert(response.message, '提示', {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
type: "warning",
|
|
|
|
type: "warning",
|
|
|
|
callback: action => {}
|
|
|
|
callback: action => {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -284,7 +290,8 @@
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
console.log(response);
|
|
|
|
console.log(response);
|
|
|
@ -316,7 +323,6 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
downFile(rows) {
|
|
|
|
downFile(rows) {
|
|
|
|
alert(1)
|
|
|
|
|
|
|
|
infoByStatus({
|
|
|
|
infoByStatus({
|
|
|
|
'id': rows.id
|
|
|
|
'id': rows.id
|
|
|
|
}).then(res => {
|
|
|
|
}).then(res => {
|
|
|
@ -344,11 +350,13 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
mounted() {},
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
components: {},
|
|
|
|
components: {},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.headers = {
|
|
|
|
this.headers = {
|
|
|
@ -358,35 +366,35 @@
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
// this.getConfig();
|
|
|
|
// this.getConfig();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
<style>
|
|
|
|
.itemTag {
|
|
|
|
.itemTag {
|
|
|
|
float: left;
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
|
|
|
text-align: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
.text {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row {
|
|
|
|
.el-row {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-col {
|
|
|
|
.el-col {
|
|
|
|
border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.syncInfo {
|
|
|
|
.syncInfo {
|
|
|
|
font-size: medium;
|
|
|
|
font-size: medium;
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
line-height: 25px;
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|