mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-03 13:38:02 +08:00
update
This commit is contained in:
@@ -183,7 +183,7 @@
|
|||||||
<div>{{auditStatus(adapayCorpMember.auditState)}}</div>
|
<div>{{auditStatus(adapayCorpMember.auditState)}}</div>
|
||||||
<div style="font-size: 14px;margin: 10px 0;">{{adapayCorpMember.auditDesc}}</div>
|
<div style="font-size: 14px;margin: 10px 0;">{{adapayCorpMember.auditDesc}}</div>
|
||||||
<div style="font-size: 14px;">审核不成功,需要重新填写信息
|
<div style="font-size: 14px;">审核不成功,需要重新填写信息
|
||||||
<el-button type="primary" v-if="adapayCorpMember.auditState != 'E'" @click="dialog=true">新建</el-button>
|
<el-button type="primary" v-if="adapayCorpMember.auditState != 'E'" @click="dialog=true">新建</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="adapayCorpMember.auditState == 'E'">
|
<div v-if="adapayCorpMember.auditState == 'E'">
|
||||||
@@ -332,6 +332,7 @@ export default {
|
|||||||
props: ["merchantId"],
|
props: ["merchantId"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
areaList:[],
|
||||||
bankValue:'',
|
bankValue:'',
|
||||||
cityList:[], // 银行代码JSON数据
|
cityList:[], // 银行代码JSON数据
|
||||||
showAdapayCorp:null,
|
showAdapayCorp:null,
|
||||||
@@ -662,7 +663,8 @@ export default {
|
|||||||
console.log(this.dialogImageUrl);
|
console.log(this.dialogImageUrl);
|
||||||
},
|
},
|
||||||
areaCode(area){
|
areaCode(area){
|
||||||
let arr = this.options.find(item => item.cities[0].value == area)
|
let arr = this.areaList.find(item => item.value === area);
|
||||||
|
console.log("areaCode code:{}, value:{}", area, arr);
|
||||||
if (arr ==null){
|
if (arr ==null){
|
||||||
return '一'
|
return '一'
|
||||||
} else{
|
} else{
|
||||||
@@ -671,7 +673,9 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
provCode(code){
|
provCode(code){
|
||||||
let arr = this.options.find(item => item.value == code)
|
let arr = this.options.find(item => item.value === code);
|
||||||
|
this.areaList=arr.cities
|
||||||
|
console.log("provCode code:{}, value:{}", code, arr);
|
||||||
if (arr ==null){
|
if (arr ==null){
|
||||||
return '一'
|
return '一'
|
||||||
} else{
|
} else{
|
||||||
@@ -749,7 +753,10 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.selectAdapayMember();
|
this.selectAdapayMember();
|
||||||
this.jsonHttp();
|
this.jsonHttp();
|
||||||
this.cityList = text.cityList
|
this.cityList = text.cityList;
|
||||||
|
|
||||||
|
this.provCode("6202");
|
||||||
|
this.areaCode("0062");
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user