fix(realname): use disabled instead of readonly
This commit is contained in:
parent
6b03902c9c
commit
e5ea18ac82
|
@ -19,7 +19,7 @@ module.exports = vm => {
|
|||
|
||||
//#ifdef DEV_SERVER
|
||||
console.log('DEV_SERVER')
|
||||
config.baseURL = 'http://localhost:8080'
|
||||
config.baseURL = 'https://t-app.beida666.com/prod-api'
|
||||
//#endif
|
||||
|
||||
//#ifdef QA_SERVER
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
>
|
||||
<u--input
|
||||
:placeholder="'请输入'"
|
||||
readonly
|
||||
disabled
|
||||
v-model="dataForm.accountName"
|
||||
></u--input>
|
||||
</u-form-item>
|
||||
|
@ -55,7 +55,11 @@
|
|||
prop="sex"
|
||||
ref="item1"
|
||||
>
|
||||
<u-radio-group v-model="dataForm.sex" @change="radioGroupChange">
|
||||
<u-radio-group
|
||||
disabled
|
||||
v-model="dataForm.sex"
|
||||
@change="radioGroupChange"
|
||||
>
|
||||
<u-radio
|
||||
:customStyle="{ marginRight: '16rpx' }"
|
||||
v-for="(item, index) in sexList"
|
||||
|
@ -76,7 +80,6 @@
|
|||
>
|
||||
<u--input
|
||||
suffixIcon="arrow-right"
|
||||
readonly
|
||||
v-model="dataForm.idName"
|
||||
disabled
|
||||
:placeholder="'请选择'"
|
||||
|
@ -92,7 +95,7 @@
|
|||
>
|
||||
<u--input
|
||||
:placeholder="'请输入'"
|
||||
readonly
|
||||
disabled
|
||||
v-model="dataForm.idCard"
|
||||
></u--input>
|
||||
</u-form-item>
|
||||
|
@ -167,7 +170,7 @@
|
|||
>
|
||||
<u-textarea
|
||||
v-model="dataForm.address"
|
||||
readonly
|
||||
disabled
|
||||
placeholder-class="place-class"
|
||||
class="border-color"
|
||||
maxlength="200"
|
||||
|
|
Loading…
Reference in New Issue