|
|
@@ -652,8 +652,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8"
|
|
|
>开户银行:
|
|
|
- <el-select v-model="form.pbaiBankName" filterable clearable remote reserve-keyword placeholder="请选择银行姓名" :remote-method="getBankList" :loading="loading">
|
|
|
- <el-option v-for="(item,index) in bankList" :key="index" :label="item.ssName" :value="item.ssId" >
|
|
|
+ <el-select v-model="form.pbaiBankName" filterable clearable remote reserve-keyword placeholder="请选择银行姓名" :remote-method="getBankList" >
|
|
|
+ <el-option v-for="(item,index) in bankList" :key="index" :label="item.zcbiBankName" :value="item.zcbiId" >
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
@@ -802,6 +802,7 @@ import {
|
|
|
verification,
|
|
|
addCode,
|
|
|
cashBack,
|
|
|
+ listBank
|
|
|
} from "@/api/system/authentication";
|
|
|
import { uploadFileNew } from "@/api/common/file";
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
@@ -814,6 +815,8 @@ export default {
|
|
|
form: {},
|
|
|
//法人经办
|
|
|
legalHandle:false,
|
|
|
+ //是否长期
|
|
|
+ term:false,
|
|
|
//是否确认
|
|
|
confirm:false,
|
|
|
//无法输入
|
|
|
@@ -886,6 +889,10 @@ export default {
|
|
|
capital: "",
|
|
|
representative: "",
|
|
|
credit: "",
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ },
|
|
|
pickerOptions: {
|
|
|
disabledDate(time) {
|
|
|
return time.getTime() > Date.now();
|
|
|
@@ -940,6 +947,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
+ this.getBankList();
|
|
|
},
|
|
|
methods: {
|
|
|
// 表单重置
|
|
|
@@ -1065,9 +1073,11 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
//查询银行名称
|
|
|
- getBankList(form) {
|
|
|
- listBank(form).then((response) => {
|
|
|
- this.bankList = response.rows;
|
|
|
+ getBankList(query){
|
|
|
+ console.log(query)
|
|
|
+ this.queryParams.pbaiBankName = query;
|
|
|
+ listBank(this.queryParams).then((response) => {
|
|
|
+ this.bankList = response.data;
|
|
|
});
|
|
|
},
|
|
|
//文件移除提示
|
|
|
@@ -1496,7 +1506,7 @@ export default {
|
|
|
},
|
|
|
//上一步
|
|
|
step(){
|
|
|
- this.active==1;
|
|
|
+ this.active=1;
|
|
|
},
|
|
|
//保存
|
|
|
preservation(){
|