|
|
@ -66,21 +66,38 @@
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-popconfirm @confirm="downFile(scope.row)" confirm-button-text='下载' cancel-button-text='不用了'
|
|
|
|
|
|
|
|
class="mr10" icon="el-icon-info" icon-color="blck" title="是否确认要下载文件?"
|
|
|
|
<el-button
|
|
|
|
v-if="scope.row.cacheFilePath">
|
|
|
|
type="text"
|
|
|
|
<el-button type="text" size="small" slot="reference">下载
|
|
|
|
size="small"
|
|
|
|
</el-button>
|
|
|
|
@click.native.stop="downFile(scope.row)"
|
|
|
|
</el-popconfirm>
|
|
|
|
>下载
|
|
|
|
<el-popconfirm @confirm="deleteData(scope.row.id)" confirm-button-text='删除'
|
|
|
|
</el-button
|
|
|
|
cancel-button-text='不用了' icon="el-icon-info" icon-color="red" title="是否确认要删除这条数据?">
|
|
|
|
>
|
|
|
|
<el-button type="text" size="small" slot="reference">删除
|
|
|
|
<el-button
|
|
|
|
</el-button>
|
|
|
|
type="text"
|
|
|
|
</el-popconfirm>
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click.native.stop="deleteData(scope.row.id)"
|
|
|
|
|
|
|
|
>删除
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-popconfirm @confirm="downFile(scope.row)" confirm-button-text='下载' cancel-button-text='不用了'-->
|
|
|
|
|
|
|
|
<!-- class="mr10" icon="el-icon-info" icon-color="blck" title="是否确认要下载文件?"-->
|
|
|
|
|
|
|
|
<!-- v-if="scope.row.cacheFilePath">-->
|
|
|
|
|
|
|
|
<!-- <el-button type="text" size="small" slot="reference">下载-->
|
|
|
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
|
|
<!-- </el-popconfirm>-->
|
|
|
|
|
|
|
|
<!-- <el-popconfirm @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>-->
|
|
|
|
|
|
|
|
<!-- </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>
|
|
|
|
|
|
|
|
|
|
|
@ -98,7 +115,7 @@
|
|
|
|
deleteUploadStatus,
|
|
|
|
deleteUploadStatus,
|
|
|
|
updateConfig,
|
|
|
|
updateConfig,
|
|
|
|
connectUpper,
|
|
|
|
connectUpper,
|
|
|
|
uploadInfoByStatus
|
|
|
|
uploadInfoByStatus, infoByStatus, deleteDownloadStatus
|
|
|
|
} from "../../api/sync/dataSyncStatus";
|
|
|
|
} from "../../api/sync/dataSyncStatus";
|
|
|
|
import store from "@/store";
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
|
|
@ -311,7 +328,8 @@
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
console.log(response);
|
|
|
|
console.log(response);
|
|
|
@ -342,6 +360,13 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
downFile(rows) {
|
|
|
|
downFile(rows) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$confirm("是否确定下载该文件, 是否继续?", "提示", {
|
|
|
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
|
|
|
type: "warning",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(() => {
|
|
|
|
uploadInfoByStatus({
|
|
|
|
uploadInfoByStatus({
|
|
|
|
'id': rows.id
|
|
|
|
'id': rows.id
|
|
|
|
}).then(res => {
|
|
|
|
}).then(res => {
|
|
|
@ -356,8 +381,20 @@
|
|
|
|
window.URL.revokeObjectURL(link.href)
|
|
|
|
window.URL.revokeObjectURL(link.href)
|
|
|
|
document.body.removeChild(link)
|
|
|
|
document.body.removeChild(link)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
deleteData(id) {
|
|
|
|
deleteData(id) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$confirm("是否确定删除该记录, 是否继续?", "提示", {
|
|
|
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
|
|
|
type: "warning",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(() => {
|
|
|
|
deleteUploadStatus({
|
|
|
|
deleteUploadStatus({
|
|
|
|
id
|
|
|
|
id
|
|
|
|
}).then((response) => {
|
|
|
|
}).then((response) => {
|
|
|
@ -369,11 +406,18 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
mounted() {},
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
components: {},
|
|
|
|
components: {},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.headers = {
|
|
|
|
this.headers = {
|
|
|
|