浏览代码

bug修改

ms
贺自立 6 个月前
父节点
当前提交
58ca76737b
共有 4 个文件被更改,包括 13 次插入3 次删除
  1. 1
    1
      manifest.json
  2. 1
    0
      package.json
  3. 2
    1
      pages/payment/payment.vue
  4. 9
    1
      pages/userInfoUploading/userInfoUploading.vue

+ 1
- 1
manifest.json 查看文件

{ {
"name" : "ETC申办", "name" : "ETC申办",
"appid" : "__UNI__DF00DD6",
"appid" : "__UNI__AA89C92",
"description" : "", "description" : "",
"versionName" : "1.0.0", "versionName" : "1.0.0",
"versionCode" : "100", "versionCode" : "100",

+ 1
- 0
package.json 查看文件

"browser-image-compression": "^2.0.2", "browser-image-compression": "^2.0.2",
"docx-preview": "^0.1.18", "docx-preview": "^0.1.18",
"egg-cors": "^2.2.3", "egg-cors": "^2.2.3",
"jsbn": "^1.1.0",
"jweixin-module": "^1.6.0", "jweixin-module": "^1.6.0",
"qrcode.vue": "^3.4.1", "qrcode.vue": "^3.4.1",
"sm-crypto": "^0.3.12", "sm-crypto": "^0.3.12",

+ 2
- 1
pages/payment/payment.vue 查看文件

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

+ 9
- 1
pages/userInfoUploading/userInfoUploading.vue 查看文件

}) })
isShow.value = true isShow.value = true
console.log('新版', formData.value) console.log('新版', formData.value)
handleMobile(data)
handleMobile(data)//处理联系方式
handleAgentTel(data)//处理经办人电话
delete data.config.tableConfig delete data.config.tableConfig
config.value = Object.assign(data.config, config.value) config.value = Object.assign(data.config, config.value)
}) })
itemData.disabled = true 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) { function danChange(key) {
if (key) { if (key) {

正在加载...
取消
保存