贺自立 6ヶ月前
コミット
c7135e957c
2個のファイルの変更10行の追加2行の削除
  1. 1
    1
      pages/payment/payment.vue
  2. 9
    1
      pages/userInfoUploading/userInfoUploading.vue

+ 1
- 1
pages/payment/payment.vue ファイルの表示

@@ -191,7 +191,7 @@
} else {
// 单位办理
data.userType = 'ENTERPRISE'
data.accountNumber = orderData.order.customerIdnum
data.accountNumber = orderData.order.customerIdNum
}
console.log('login请求参数', data);
await requestNew('/iaw/portal/loginByNoPassword', {

+ 9
- 1
pages/userInfoUploading/userInfoUploading.vue ファイルの表示

@@ -77,7 +77,8 @@
})
isShow.value = true
console.log('新版', formData.value)
handleMobile(data)
handleMobile(data)//处理联系方式
handleAgentTel(data)//处理经办人电话
delete data.config.tableConfig
config.value = Object.assign(data.config, config.value)
})
@@ -119,6 +120,13 @@
itemData.disabled = true
}
}
function handleAgentTel(data) {
const itemData = formData.value[Index('经办人电话', formData.value)]
if (data.order.customerTel) {
itemData[itemData.value] = data.order.customerTel || ''
itemData.disabled = true
}
}
//初始判断单位办理还是个人办理
function danChange(key) {
if (key) {

読み込み中…
キャンセル
保存