This commit is contained in:
shijingjing
2022-01-14 18:06:38 +08:00
parent 3249ff37e5
commit 40be80ef0f

View File

@@ -9,7 +9,7 @@
<u-icon name="arrow-down" color="#666" size="28" style="margin-left: 4px" /> <u-icon name="arrow-down" color="#666" size="28" style="margin-left: 4px" />
</AiAreaPicker> </AiAreaPicker>
</div> </div>
<u-search v-model="value" placeholder:clearabled="true" placeholder="搜索" :show-action="false" bg-color="#F5F5F5" search-icon-color="#999" color="#999" height="58" @search="getListInit" @clear="value='',getListInit"></u-search> <u-search v-model="value" placeholder:clearabled="true" placeholder="请输入姓名/身份证/手机号" :show-action="false" bg-color="#F5F5F5" search-icon-color="#999" color="#999" height="58" @search="getListInit" @clear="value='',getListInit"></u-search>
</div> </div>
<div class="userList"> <div class="userList">
<ul v-for="(item,index) in list" :key="index"> <ul v-for="(item,index) in list" :key="index">
@@ -29,7 +29,7 @@
<span class="user-tel">{{item.phone}}</span> <span class="user-tel">{{item.phone}}</span>
</div> </div>
<div class="idCard">{{item.idNumber && item.idNumber.replace(/^(\d{6})\d{8}(.{4}$)/g, `$1${Array(9).join('*')}$2`)}}</div> <div class="idCard">{{item.idNumber && item.idNumber.replace(/^(\d{6})\d{8}(.{4}$)/g, `$1${Array(9).join('*')}$2`)}}</div>
<div class="address">{{item.currentAreaName || '' }}{{item.currentAddress || ''}}</div> <div class="address">{{item.currentAreaName || '' }}{{ item.currentAddress || '' }}</div>
</div> </div>
</div> </div>
</div> </div>
@@ -203,6 +203,7 @@ export default {
} }
} }
} }
} }
} }
} }