diff --git a/project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue b/project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue
index 81e05da..76cd3cf 100644
--- a/project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue
+++ b/project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue
@@ -6,17 +6,19 @@
-
+
全部状态
{{ $dict.getLabel('partyFourLinkageStatus',status) }}
+
-
+
时间选择
{{ linksageDate }}
-
+
+
@@ -64,10 +66,22 @@ export default {
},
list: [],
current: 1,
+ array: [],
}
},
onShow() {
- this.$dict.load('partyFourLinkageStatus')
+ this.$dict.load('partyFourLinkageStatus').then(()=>{
+ this.array = this.$dict.getDict('partyFourLinkageStatus').map(item=>{
+ return {
+ label: item.dictName,
+ value: item.dictValue,
+ }
+ })
+ this.array.unshift({
+ label: '全部',
+ value: ''
+ })
+ })
uni.$on('update', ()=>{
this.getList()
})