This commit is contained in:
2024-06-11 15:13:40 +08:00
parent 571e8e5ee2
commit 5ba90f1c45
4 changed files with 36 additions and 15 deletions

View File

@@ -133,7 +133,15 @@
data() {
return {
rowDetails: {},
detailList: [],
detailList: [{
bankCardName: '',
bankCardNo: '',
bankName: '',
interBankCode: '',
disabledType: false,
commonMark: 1,
companyId: ''
}],
id: '',
indexNature: 0,
bankNatureList: [{
@@ -191,7 +199,7 @@
}
}
});
}else{
} else {
uni.showToast({
title: '请把信息填写完整后提交',
icon: 'none'
@@ -214,7 +222,10 @@
findDetail(id) {
companyManagement.getByCompanyId(id).then(res => {
if (res.code !== 20000) return
this.detailList = res.data
if (res.data && res.data.length > 0) {
this.detailList = res.data
}
})
},
seleoli(item, index) {