This commit is contained in:
wangweidong 2026-03-05 10:47:59 +08:00
parent 43c1519776
commit 81246bc4c6
5 changed files with 46 additions and 49 deletions

View File

@ -50,8 +50,8 @@
<view class="one">
<view class="one-left">身份证号</view>
<input class="one-right" type="number" maxlength="18" placeholder="请输入身份证号" style="text-overflow: inherit;min-width: 320rpx;"
<view class="one-left">身份证号</view>
<input class="one-right" type="number" maxlength="18" placeholder="请输入身份证号" style="text-overflow: inherit;min-width: 320rpx;"
v-model="form.idCard" disabled/>
</view>
<view class="one">
@ -223,7 +223,7 @@
return
} else if (!form.idCard) {
uni.showToast({
title: '请输入身份证号',
title: '请输入身份证号',
icon: 'none'
})
} else if (!isValid18DigitNumber(form.idCard)) {

View File

@ -47,7 +47,7 @@
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
</view>
<view class="one">
<view class="one-left">身份证号</view>
<view class="one-left">身份证号</view>
<input class="one-right" disabled maxlength="18" placeholder="自动获取" v-model="form.idCard" />
<!-- <image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" /> -->
</view>
@ -196,7 +196,7 @@
fontSize: 40
}]
const nameArray = ["姓名", "性别", "身份证号码", "民族", "出生日期", "住址", "签发机关", "有效期限"];
const antherArray = ["姓名", "电话", "身份证号", "家庭住址", "工作单位"]
const antherArray = ["姓名", "电话", "身份证号", "家庭住址", "工作单位"]
const textArray = reactive(["", "", "", "", "", "", "", ""]);
const anthertextArray = reactive(["", "", "", "", ""]);
const states = ["审核中", "审核未通过", "审核通过"];
@ -748,37 +748,35 @@
duration: 2000 // ms
})
return
}
// return
const connectinon = {
nuId: data.nuId,
openId: uni.getStorageSync('openid'),
elderId: r.data.result,
sysOrgCode: data.sysOrgCode,
}
const urlpost = `${payurl.value}/api/nuBaseInfo/bindNu`;
uni.request({
url: urlpost,
method: 'POST',
header: {
'Content-Type': 'application/json',
'X-Access-Token': uni.getStorageSync('token') || '',
},
data: connectinon,
success: (r) => {
uni.reLaunch({
url: '/pages/oldmanindex/oldmansuccess'
})
// console.log("????", r)
},
fail: (e) => {
// console.log("????", e)
}else{
const connectinon = {
nuId: data.nuId,
openId: uni.getStorageSync('openid'),
elderId: r.data.result,
sysOrgCode: data.sysOrgCode,
}
});
// console.log("????", r)
const urlpost = `${payurl.value}/api/nuBaseInfo/bindNu`;
uni.request({
url: urlpost,
method: 'POST',
header: {
'Content-Type': 'application/json',
'X-Access-Token': uni.getStorageSync('token') || '',
},
data: connectinon,
success: (r) => {
uni.reLaunch({
url: '/pages/oldmanindex/oldmansuccess'
})
// console.log("????", r)
},
fail: (e) => {
// console.log("????", e)
}
});
}
},
fail: (e) => {
// console.log("????", e)

View File

@ -309,7 +309,7 @@
const nameArray0 = ["开户行", "开户行卡号"];
const textArray0 = reactive(["", "", ]);
const nameArray1 = ["供应商名称", "供应商地址", "供应商性质", "负责人", "联系电话", "开户行","开户行账号" ];
const nameArray1 = ["供应商名称", "供应商地址", "负责人", "联系电话","供应商性质", "开户行","开户行账号" ];
const textArray1 = reactive(["", "", "", "", "", "", ""]);
const backImge = ref("");
@ -402,9 +402,9 @@
const keys = [
"suppliersName",
"suppliersAddress",
"name",
"personInCharge",
"contactNumber",
"name",
"openingBank",
"openingBankNo",
"orgCode",

View File

@ -55,15 +55,7 @@
<input class="one-right" maxlength="50" disabled placeholder="自动获取"
v-model="form.suppliersAddress" />
</view>
<view class="one" @click="showmarry = true">
<view class="one-left">供应商性质</view>
<input disabled style="cursor: not-allowed;pointer-events: none;" class="one-right" type="text"
placeholder="请选择供应商性质" v-model="form.name" />
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
</view>
<u-select style="font-size: 35rpx;" v-model="showmarry" :list="showmarrylist"
@confirm="confirmmarry"></u-select>
<view class="one">
<view class="one-left">负责人</view>
@ -76,6 +68,15 @@
v-model="form.contactNumber" />
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
</view>
<view class="one" @click="showmarry = true">
<view class="one-left">供应商性质</view>
<input disabled style="cursor: not-allowed;pointer-events: none;" class="one-right" type="text"
placeholder="请选择供应商性质" v-model="form.name" />
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
</view>
<u-select style="font-size: 35rpx;" v-model="showmarry" :list="showmarrylist"
@confirm="confirmmarry"></u-select>
<view class="one">
<view class="one-left">开户行</view>
<input class="one-right" maxlength="15" placeholder="请输入开户行" v-model="form.openingBank" />

View File

@ -12,9 +12,7 @@
</view>
<view class="small-title">
{{ uni.getStorageSync('isstaffchange') ? '尊敬的用户,您的供应商变更信息已提交,' : '尊敬的用户,您的供应商入驻申请已提交成功,' }}
{{ uni.getStorageSync('isstaffchange')?`请等待审核!`:`请等待审核!` }}
{{ uni.getStorageSync('isstaffchange') ? '尊敬的用户,您的供应商信息变更申请已成功提交,请耐心等待审核结果,期待与您继续携手,提供更高效的供应服务!' : '尊敬的用户,您的供应商入驻申请已成功提交,请耐心等待审核结果,期待您早日通过认证,成为优质供应链的一员,携手共创美好未来!' }}
</view>
<view class="normal">
<text>