Commit f0f7d8d9 by caoyanzhi

update: 样式调整

parent 086f7370
......@@ -2,7 +2,7 @@
<div class="frozen-list">
<div class="min100">
<!-- <nav-path :navpath="navpath"></nav-path> -->
<div class="member-forzen-container">
<div class="member-forzen-container" v-loading="loading">
<!--
会员列表
-->
......@@ -51,7 +51,6 @@
<el-table
ref="multipleTable"
:data="frozenList"
v-loading="loading"
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange"
......@@ -228,7 +227,6 @@
</el-button>
<el-button
type="primary"
:disabled="reasonbtn"
@click="frozenAll"
>冻结选中会员</el-button>
</div>
......@@ -503,13 +501,13 @@ export default {
status: 1, // 1 冻结 0 解冻
frozenType: this.frozenReason // 101.异常冻结、102.会员主动冻结
};
this.loading = true;
doFetch("/api-member/members-batch-update-frozen", datas)
.then(res => {
if (res.data.errorCode === 0) {
this.frozenReason = "";
this.remark = "";
this.middleList.length = 0;
this.loading = true;
if (this.ids.length > 1) {
this.handleToTaskCenter(res.data.result);
}
......@@ -526,6 +524,7 @@ export default {
}
})
.catch(err => {
this.loading = false;
checkFalse(err);
});
},
......
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