This commit is contained in:
liuye
2022-08-16 16:32:15 +08:00
parent d4126cfbab
commit 76c7c3f478
3 changed files with 9 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ import {mapState} from 'vuex'
export default {
name: "selectResident",
appName: "人员选择器(居民档案)",
appName: "选择人员",
data() {
return {
current: 1,
@@ -124,9 +124,10 @@ export default {
}
.user-list {
background-color: #fff;
.item {
background-color: #fff;
.select-img {
display: inline-block;

View File

@@ -67,8 +67,8 @@ export default {
padding: 30px;
background-color: #fff;
border-radius: 8px;
margin: 0 0 30px 30px;
width: 690px;
margin: 0 30px 30px 30px;
width: calc(100% - 60px);
box-sizing: border-box;
.left {
font-size: 28px;

View File

@@ -3,7 +3,7 @@
<div v-if="addList">
<div class="header-description">
<u-form :model="forms" ref="uForm" label-width="auto">
<u-form-item label="走访对象" prop="name" required :right-icon="id ? '' : 'arrow-right'" class="create_user_names">
<u-form-item label="走访对象" prop="name" required :right-icon="id ? '' : ''" class="create_user_names">
<!-- <u-input v-model="forms.name" disabled placeholder="请选择走访对象" @click="toWalkObject" /> -->
<AiPagePicker single @select="handleSelectUser" type="resident" style="width:100%;text-align:right;">
<AiMore v-model="forms.name"/>
@@ -325,5 +325,8 @@ export default {
color: #ffffff;
z-index: 999;
}
::v-deep .uicon-arrow-right{
color: #999!important;
}
}
</style>