This commit is contained in:
2024-01-22 17:37:02 +08:00
parent 444d10c595
commit e633e1a756
2 changed files with 11 additions and 4 deletions

View File

@ -27,7 +27,7 @@
</uni-tr> </uni-tr>
<uni-tr> <uni-tr>
<uni-td>{{list.residentName}}</uni-td> <uni-td>{{list.residentName}}</uni-td>
<uni-td>{{list.gender === '1' ? '男' : '女'}}</uni-td> <uni-td>{{Number(list.gender) === 1? '男' : '女'}}</uni-td>
<uni-td>{{list.age?list.age:''}}</uni-td> <uni-td>{{list.age?list.age:''}}</uni-td>
<uni-td>{{list.identity?list.identity:''}}</uni-td> <uni-td>{{list.identity?list.identity:''}}</uni-td>
<uni-td>{{list.address?list.address:''}}</uni-td> <uni-td>{{list.address?list.address:''}}</uni-td>

View File

@ -34,7 +34,7 @@
<u-input v-model="query.phone" :border="true" placeholder="请输入手机号码" /> <u-input v-model="query.phone" :border="true" placeholder="请输入手机号码" />
</view> </view>
<view class="name" @tap='countyshow=true'> <view class="name" @tap='countyshow=true'>
<text class="asterisk">*</text> <text class="asterisk">*</text>
现住区县 现住区县
<view class="select"> <view class="select">
<text v-if="query.countyName" style="font-size: 26rpx;color: #303133;">{{query.countyName}}</text> <text v-if="query.countyName" style="font-size: 26rpx;color: #303133;">{{query.countyName}}</text>
@ -337,6 +337,13 @@
} }
} }
}, },
// searchfun_close() {
// const idCardReg = /(^\d{15}$)|(^\d{17}([0-9]|X)$)/;
// if (!idCardReg.test(this.query.identity)) {} else {
// let sex = getSex(this.query.identity)
// sex == '' ? this.query.gender = '2' : sex == '' ? this.query.gender = '1' : ''
// }
// },
updata() { updata() {
if (this.radio == 2) { if (this.radio == 2) {
if (!this.query.signYears) this.query.signYears = 1 if (!this.query.signYears) this.query.signYears = 1
@ -431,7 +438,7 @@
title: '请输入详细地址', title: '请输入详细地址',
type: 'error', type: 'error',
}) })
}else{ } else {
this.stepnumber++ this.stepnumber++
} }