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