|
@@ -10,7 +10,7 @@
|
|
|
<detailTop @goBack="goBack"></detailTop>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <financeClaimsForm :ruleForm="ruleForm" :dbList="dbList" :hkList="hkList" :lxList="lxList" :sxList="sxList" :insList='insList' @submitForm="submitForm" @resetForm="resetForm"></financeClaimsForm>
|
|
|
+ <financeClaimsForm :ruleForm="ruleForm" :dbList="dbList" :hkList="hkList" :lxList="lxList" :sxList="sxList" :insList='insList' :loading="loading" @submitForm="submitForm" @resetForm="resetForm"></financeClaimsForm>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
@@ -36,6 +36,7 @@
|
|
|
data: () => ({
|
|
|
display: 'none',
|
|
|
topTitle: '债权产品信息',
|
|
|
+ loading:true,
|
|
|
ruleForm: {
|
|
|
news: [
|
|
|
{
|
|
@@ -82,10 +83,12 @@
|
|
|
...financeclaims(['fclaimsList', 'orUpdate', 'dupdate', 'create','fetch']),
|
|
|
...finalinstitution({instquery:'query'}),
|
|
|
async searchInfo() {
|
|
|
+ this.$set(this, `loading`, false);
|
|
|
if (this.id) {
|
|
|
const res = await this.fetch(this.id);
|
|
|
this.$set(this, `ruleForm`, res.data);
|
|
|
}
|
|
|
+ this.$set(this, `loading`, true);
|
|
|
},
|
|
|
async searchinstitution() {
|
|
|
const res = await this.instquery();
|