字体
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<span class="label"><span class="tips">*</span>类型</span>
|
||||
<div class="value" @click="selectClick('appSpecialTypeFive', 'userType')">
|
||||
<span
|
||||
:class="form.userType === '' ? 'color-999' : ''" >{{
|
||||
:class="form.userType === '' ? 'color-999' : ''" >{{
|
||||
$dict.getLabel('appSpecialTypeFive', form.userType) || '请选择'
|
||||
}}</span>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24"/>
|
||||
@@ -16,7 +16,7 @@
|
||||
<div class="value">
|
||||
|
||||
<u-input type="text" placeholder="请输入" v-model="form.name" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="15" :clearable="false"/>
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="15" :clearable="false" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
@@ -24,35 +24,35 @@
|
||||
<div class="value">
|
||||
<u-input type="text" placeholder="请输入" v-model="form.idNumber" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="18" :clearable="false"
|
||||
@input="changeIdNumber"/>
|
||||
@input="changeIdNumber" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="label"><span class="tips">*</span>性别</span>
|
||||
<div class="value">
|
||||
<u-input disabled placeholder="自动填充" v-model="form.gender" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="15" :clearable="false"/>
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="15" :clearable="false" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="label"><span class="tips">*</span>出生日期</span>
|
||||
<div class="value">
|
||||
<u-input type="text" disabled placeholder="自动填充" v-model="form.birth" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="19" :clearable="false"/>
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="19" :clearable="false" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="label"><span class="tips">*</span>联系电话</span>
|
||||
<div class="value">
|
||||
<u-input type="number" placeholder="请输入" v-model="form.phone" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="11" :clearable="false"/>
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="11" :clearable="false" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<span class="label"><span class="tips">*</span>所属区域</span>
|
||||
<div class="value">
|
||||
<AiAreaPicker v-model="form.areaId" @select="areaSelect" :fullName.sync="form.areaName" mode="custom" all>
|
||||
<span class="label" v-if="form.areaName" style="font-size: 16px">{{ form.areaName }}</span>
|
||||
<span class="label font" v-if="form.areaName" style="font-size: 16px">{{ form.areaName }}</span>
|
||||
<span v-else :class="form.areaName === '' ? 'color-999' : ''" >请选择</span>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24" style="margin-left:4px;"/>
|
||||
</AiAreaPicker>
|
||||
@@ -62,7 +62,7 @@
|
||||
<span class="label"><span class="tips"></span>详细地址</span>
|
||||
<div class="value">
|
||||
<u-input type="textarea" placeholder="请输入" v-model="form.address"
|
||||
placeholder-style="color:#999;font-size:16px;" :maxlength="20" auto-height style="font-size: 16px"/>
|
||||
placeholder-style="color:#999;font-size:16px;" :maxlength="20" auto-height />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
<span class="label"><span class="tips"></span>{{ item.label }}</span>
|
||||
<div class="value">
|
||||
<u-input type="number" placeholder="请输入" v-model="form[item.formDbName]" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="item.maxlength" :clearable="false" @input="changeMoney"/>
|
||||
placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="item.maxlength" :clearable="false" @input="changeMoney" style="font-size: 16px"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -425,7 +425,6 @@ export default {
|
||||
id: this.id
|
||||
}
|
||||
}).then((res) => {
|
||||
console.log(res);
|
||||
if (res.code == 0) {
|
||||
this.$forceUpdate()
|
||||
this.form = res.data
|
||||
@@ -626,6 +625,14 @@ export default {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.uni-input-form,
|
||||
.uni-input-input,
|
||||
.uni-input-placeholder,
|
||||
.uni-input-wrapper,
|
||||
.uni-textarea-textarea {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
height: 112px;
|
||||
|
||||
Reference in New Issue
Block a user