运费模板 品牌 计量单位 支持刷新功能
parent
560199944d
commit
77e7d095a7
|
@ -3,6 +3,7 @@
|
|||
<Card>
|
||||
<Row class="operation">
|
||||
<Button @click="add" type="primary">添加</Button>
|
||||
<Button @click="refresh">刷新</Button>
|
||||
<Button @click="delAll">批量删除</Button>
|
||||
</Row>
|
||||
<Table
|
||||
|
@ -284,6 +285,15 @@ export default {
|
|||
},
|
||||
});
|
||||
},
|
||||
// 刷新
|
||||
refresh() {
|
||||
this.loading = true;
|
||||
setTimeout(() => {
|
||||
this.getDataList();
|
||||
this.loading = false;
|
||||
this.$Message.success("刷新成功");
|
||||
}, 500);
|
||||
},
|
||||
// 全部删除
|
||||
delAll() {
|
||||
if (this.selectCount <= 0) {
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
</Form>
|
||||
<Row class="operation padding-row">
|
||||
<Button @click="add" type="primary">添加</Button>
|
||||
<Button @click="refresh">刷新</Button>
|
||||
</Row>
|
||||
<Table :loading="loading" border :columns="columns" :data="data" ref="table"></Table>
|
||||
<Row type="flex" justify="end" class="mt_10">
|
||||
|
@ -314,6 +315,15 @@ export default {
|
|||
delete this.form.id;
|
||||
this.modalVisible = true;
|
||||
},
|
||||
// 刷新
|
||||
refresh() {
|
||||
this.loading = true;
|
||||
setTimeout(() => {
|
||||
this.getDataList();
|
||||
this.loading = false;
|
||||
this.$Message.success("刷新成功");
|
||||
}, 500);
|
||||
},
|
||||
// 编辑
|
||||
edit(v) {
|
||||
this.modalType = 1;
|
||||
|
|
|
@ -140,8 +140,10 @@ export default {
|
|||
this.loading = true;
|
||||
let that = this;
|
||||
setTimeout(function () {
|
||||
that.init();
|
||||
that.$Message.success("刷新成功");
|
||||
that.loading = false;
|
||||
}, 1000);
|
||||
}, 500);
|
||||
},
|
||||
//添加子分类
|
||||
addChildren(v) {
|
||||
|
@ -261,4 +263,7 @@ export default {
|
|||
min-height: 100vh;
|
||||
height: auto;
|
||||
}
|
||||
.operation {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -294,6 +294,7 @@ export default {
|
|||
this.operation = "INFO";
|
||||
this.currentTab = "INFO";
|
||||
this.getData();
|
||||
this.$Message.success("刷新成功");
|
||||
},
|
||||
//运费模板数据
|
||||
getData() {
|
||||
|
|
Loading…
Reference in New Issue