提交一波
This commit is contained in:
@@ -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', () => {
|
||||
|
||||
Reference in New Issue
Block a user