mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 22:36:43 +08:00
修改错误性别校验
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<van-cell-group class="pl15 mt10">
|
<van-cell-group class="pl15 mt10">
|
||||||
<van-cell title="业务员工号" :value="userInfo.jobNo" />
|
<van-cell title="业务员工号" :value="userInfo.jobNo" />
|
||||||
<van-cell title="业务员姓名" :value="userInfo.name" />
|
<van-cell title="业务员姓名" :value="userInfo.name" />
|
||||||
<van-cell title="性别" :value="userInfo.sex === 1 ? '女' : '男'" />
|
<van-cell title="性别" :value="userInfo.sex === '1' ? '女' : '男'" />
|
||||||
<van-cell title="证件类型" :value="userInfo.cardType" />
|
<van-cell title="证件类型" :value="userInfo.cardType" />
|
||||||
<van-cell title="证件号码" :value="userInfo.cardNo" />
|
<van-cell title="证件号码" :value="userInfo.cardNo" />
|
||||||
<van-cell title="营销服务部" :value="userInfo.saleArea" />
|
<van-cell title="营销服务部" :value="userInfo.saleArea" />
|
||||||
@@ -53,7 +53,7 @@ export default {
|
|||||||
if (res.result == 0) {
|
if (res.result == 0) {
|
||||||
this.userInfo = res
|
this.userInfo = res
|
||||||
// document.title = this.userInfo.name + '(' + this.userInfo.jobNo + ')'
|
// document.title = this.userInfo.name + '(' + this.userInfo.jobNo + ')'
|
||||||
console.log('-----代理人证件类型:',this.userInfo.cardType)
|
console.log('-----代理人证件类型:', this.userInfo.cardType)
|
||||||
obj.idType.some(item => {
|
obj.idType.some(item => {
|
||||||
if (item.id == res.cardType) {
|
if (item.id == res.cardType) {
|
||||||
res.cardType = item.text
|
res.cardType = item.text
|
||||||
|
|||||||
Reference in New Issue
Block a user