27096
This commit is contained in:
@@ -56,7 +56,7 @@
|
||||
<AiAreaPicker v-model="form.areaId" :areaId="user.areaId" @select="areaSelect" :name.sync="form.areaName">
|
||||
<span class="label" v-if="form.areaName">{{ form.areaName }}</span>
|
||||
<span v-else :class="form.areaName === '' ? 'color-999' : ''">请选择</span>
|
||||
<u-icon name="arrow-right" color="#666" size="24" style="margin-left:4px;"/>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24" style="margin-left:4px;"/>
|
||||
</AiAreaPicker>
|
||||
</div>
|
||||
</div>
|
||||
@@ -64,7 +64,7 @@
|
||||
<span class="label"><span class="tips"></span>详细地址</span>
|
||||
<div class="value">
|
||||
<u-input type="text" placeholder="请输入" v-model="form.address" input-align="right"
|
||||
placeholder-style="color:#999;font-size:16px;" height="48"/>
|
||||
placeholder-style="color:#999;font-size:16px;" :maxlength="20"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
@@ -74,7 +74,7 @@
|
||||
:class="form.girdName === '' ? 'color-999' : ''">{{
|
||||
$dict.getLabel('appSpecialTypeFive', form.girdName) || '请选择'
|
||||
}}</span>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="14"/>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24"/>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="this.form.userType != ''">
|
||||
@@ -84,7 +84,7 @@
|
||||
<span class="label"><span class="tips"></span>{{ item.label }}</span>
|
||||
<div class="value">
|
||||
<u-input type="text" placeholder="请输入" v-model="form[item.formDbName]" 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="20" :clearable="false" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
:class="form[item.formDbName] === '' ? 'color-999' : ''">{{
|
||||
$dict.getLabel(item.dict, form[item.formDbName]) || '请选择'
|
||||
}}</span>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="14"/>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
<span :class="form[item.formDbName] === '' ? 'color-999' : ''">{{
|
||||
$dateFormat(form[item.formDbName], 'YYYY-MM-DD') || '请选择'
|
||||
}}</span>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="14"/>
|
||||
<u-icon name="arrow-right" color="#cccccc" size="24"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -531,7 +531,7 @@ export default {
|
||||
|
||||
.item {
|
||||
width: 100%;
|
||||
padding: 34px 32px 34px 0;
|
||||
padding: 34px 36px 34px 0;
|
||||
background: #FFFFFF;
|
||||
border-bottom: 1px solid #D8DDE6;
|
||||
display: flex;
|
||||
@@ -549,6 +549,8 @@ export default {
|
||||
.value {
|
||||
.u-icon {
|
||||
margin-left: 16px;
|
||||
margin-bottom: 4px;
|
||||
vertical-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user