提交一波

This commit is contained in:
liuye
2022-09-27 14:56:05 +08:00
parent 0905a684b4
commit a9ee6b1289
8 changed files with 63 additions and 19 deletions

View File

@@ -49,7 +49,7 @@
</div>
</div>
<AiEmpty description="暂无数据" class="emptyWrap" v-else></AiEmpty>
<u-select v-model="showTypeSelect" :list="$dict.getDict('EP_registerInfoType')" label-name="dictName" value-name="dictValue" @confirm="typeConfirm"></u-select>
<u-select v-model="showTypeSelect" :list="registerTypeList" label-name="dictName" value-name="dictValue" @confirm="typeConfirm"></u-select>
</div>
</template>
@@ -87,7 +87,8 @@ export default {
activeStyle: {
'font-weight' : '400',
},
list: []
list: [],
registerTypeList: []
}
},
computed: {
@@ -97,6 +98,8 @@ export default {
this.areaId = this.user.areaId
this.areaName = this.user.areaName
this.$dict.load('EP_CM_status', 'EP_registerInfoType').then(() => {
this.registerTypeList = this.$dict.getDict('EP_registerInfoType')
this.registerTypeList.unshift({dictValue: '', dictName: '全部'})
this.getListInit()
})
uni.$on('updateList', () => {