Commit 81167be5 authored by 黄媛媛's avatar 黄媛媛

1

parent 2a7828b4
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button size="small" @click="reasonDig = false">取 消</el-button> <el-button size="small" @click="reasonDig = false">取 消</el-button>
<el-button size="small" type="primary" @click="czsubmitForm('addMsg')">确 定</el-button> <el-button size="small" type="primary" @click="czsubmitForm('addMsg')" :loading="tjloading">确 定</el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
...@@ -141,6 +141,7 @@ ...@@ -141,6 +141,7 @@
czType:1, czType:1,
changeState:false, changeState:false,
loading:false, loading:false,
tjloading:false,
checkAll: false, checkAll: false,
checkedCities: [], checkedCities: [],
cities: [], cities: [],
...@@ -233,17 +234,17 @@ ...@@ -233,17 +234,17 @@
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
let cmd="/api/user/SetDistributorRemitAudit"; let cmd="/api/user/SetDistributorRemitAudit";
this.loading = true this.tjloading = true
this.apipost(cmd,this.addMsg, this.apipost(cmd,this.addMsg,
res => { res => {
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.getList(); this.getList();
this.Success(res.data.message) this.Success(res.data.message)
this.reasonDig=false; this.reasonDig=false;
this.loading = false this.tjloading = false
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
this.loading = false this.tjloading = false
} }
}, },
null null
......
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