This commit is contained in:
花有清香月有阴
2022-02-25 13:58:05 +08:00
parent fee55eb9c6
commit f8efc03341

View File

@@ -5,9 +5,9 @@
<div class="middle"> <div class="middle">
<div class="nav"> <div class="nav">
<div class="navLeft" @click="showType = true"> <div class="navLeft" @click="showType = true">
<span>{{ name ? name : '全部类型' }}</span> <span class="showTypes">{{ name ? name : '全部类型' }}</span>
<u-icon name="arrow-down" v-if="!name"></u-icon> <u-icon name="arrow-down" style="margin-left: 16px"></u-icon>
</div> </div>
<u-search v-model="searchObj" placeholder="请输入姓名或电话" :show-action="false" clearabled bg-color="#fff" search-icon-color="#6AA8F8" placeholder-color="#D0D4D4" @search="handerSearch" @clear=";(searchObj = ''), init()" /> <u-search v-model="searchObj" placeholder="请输入姓名或电话" :show-action="false" clearabled bg-color="#fff" search-icon-color="#6AA8F8" placeholder-color="#D0D4D4" @search="handerSearch" @clear=";(searchObj = ''), init()" />
@@ -112,7 +112,7 @@ export default {
this.data = this.current > 1 ? [...this.data, ...res.data.records] : res.data.records this.data = this.current > 1 ? [...this.data, ...res.data.records] : res.data.records
const oldList = this.$dict.getDict('atWillReportType') const oldList = this.$dict.getDict('atWillReportType')
const addList = [{ dictName: '全部', dictValue: '', dictColor: null }] const addList = [{ dictName: '全部类型', dictValue: '', dictColor: null }]
this.newList = [...addList, ...oldList] this.newList = [...addList, ...oldList]
} }
}) })
@@ -177,10 +177,19 @@ export default {
align-items: center; align-items: center;
padding: 54px 0 14px 0; padding: 54px 0 14px 0;
.navLeft { .navLeft {
display: flex;
width: calc(100% - 460px); width: calc(100% - 460px);
height: 32px;
line-height: 32px;
.showTypes {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
} }
::v-deep u-search { ::v-deep u-search {
width: 460px; width: 440px;
} }
} }