Commit 6e26b2f2 authored by 沈良进's avatar 沈良进
parents 964acece 168161b6
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<template> <template>
<div> <div>
<el-dialog title="修改汇率" :visible.sync="isShow" @closed="clickcancel" width="900px"> <el-dialog title="修改汇率" :visible.sync="isShow" @closed="clickcancel" width="900px">
<div class="editCapitalAllocationDetail"> <div class="editCapitalAllocationDetail" v-loading="loading">
<span class="Ca_Span">收款</span> <span class="Ca_Span">收款</span>
<el-table <el-table
:data="dataList.SBankList" :data="dataList.SBankList"
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button size="mini" @click="clickcancel">取 消</el-button> <el-button size="mini" @click="clickcancel">取 消</el-button>
<el-button size="mini" @click="submit">保 存</el-button> <el-button class="normalBtn" size="mini" @click="submit">保 存</el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
...@@ -148,7 +148,8 @@ export default { ...@@ -148,7 +148,8 @@ export default {
dataList:[], dataList:[],
Rate: 0, Rate: 0,
index: 0, index: 0,
isShow: false isShow: false,
loading: true
} }
}, },
watch: { watch: {
...@@ -224,6 +225,7 @@ export default { ...@@ -224,6 +225,7 @@ export default {
}else{ }else{
this.Error(res.data.message); this.Error(res.data.message);
} }
this.loading = false
}, err => {}) }, 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