Commit 7798ef0f by 唐玉峰

.

parent 422578d9
...@@ -158,6 +158,11 @@ ...@@ -158,6 +158,11 @@
<div class="table flex-1 mar-top-20"> <div class="table flex-1 mar-top-20">
<el-table border ref="tableRef" height="99%" :data="tableData" size="mini" :highlight-current-row="true"> <el-table border ref="tableRef" height="99%" :data="tableData" size="mini" :highlight-current-row="true">
<el-table-column align="center" type="index" width="50" fixed="left"></el-table-column> <el-table-column align="center" type="index" width="50" fixed="left"></el-table-column>
<el-table-column label="同步更新" align="center" min-width="80" show-overflow-tooltip fixed="left">
<template #default="scope">
<i class="el-icon-refresh font-16 cursor" @click.stop="SetInjoinAgain(scope.row.id)"></i>
</template>
</el-table-column>
<el-table-column <el-table-column
prop="fee_consume" prop="fee_consume"
label="费用消耗比例" label="费用消耗比例"
...@@ -404,6 +409,18 @@ export default { ...@@ -404,6 +409,18 @@ export default {
this.getList(); this.getList();
}); });
}, },
SetInjoinAgain(id) {
http.post(`/screen/screen/SetInjoinAgain?id=${id}`, {})
.then((data) => {
Message.success("同步成功");
this.getList();
})
.catch((error) => {
this.getList();
});
},
handleCurrentChange(val) { handleCurrentChange(val) {
this.pageNumber = val; this.pageNumber = val;
this.getList(); this.getList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment