27549
This commit is contained in:
@@ -245,8 +245,8 @@ export default {
|
||||
}
|
||||
}
|
||||
.upLoadPic {
|
||||
width: 220px;
|
||||
height:220px;
|
||||
width: 204px;
|
||||
height:204px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.upLoadPic:nth-child(3n) {
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
</div>
|
||||
<AiEmpty description="暂无数据" class="emptyWrap" v-else></AiEmpty>
|
||||
|
||||
<u-select v-model="showType" :list="$dict.getDict('villagerCircleTopic')" label-name="dictName" value-name="dictValue"
|
||||
<u-select v-model="showType" :list="list" label-name="dictName" value-name="dictValue"
|
||||
@confirm="confirmTypeSelect"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -47,28 +47,20 @@ export default {
|
||||
current: 1,
|
||||
topic: '',
|
||||
topicType: '',
|
||||
data: {}
|
||||
data: {},
|
||||
list:[]
|
||||
}
|
||||
},
|
||||
created() {
|
||||
// let all = [{
|
||||
// dictName:'全部',
|
||||
// dictValue:'',
|
||||
// dictColor:null
|
||||
// }]
|
||||
// let list = [...all,...this.$dict.getDict('villagerCircleTopic')]
|
||||
// console.log(list,111);
|
||||
// this.$dict.getDict('villagerCircleTopic').unshift(b)
|
||||
// console.log(this.$dict.getDict('villagerCircleTopic'));
|
||||
|
||||
this.$dict.load('villagerCircleTopic','auditStatus').then(()=>{
|
||||
this.getList()
|
||||
uni.$on('update',()=>{
|
||||
this.current = 1
|
||||
this.getList()
|
||||
})
|
||||
|
||||
})
|
||||
let all = [{ dictName: '全部', dictValue: '6', dictColor: null }]
|
||||
this.list = [...all, ...this.$dict.getDict('villagerCircleTopic')]
|
||||
},
|
||||
methods: {
|
||||
tabClick(index) {
|
||||
|
||||
@@ -148,6 +148,7 @@ export default {
|
||||
background: #FFFFFF;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.address {
|
||||
background: #FFFFFF;
|
||||
padding: 20px 32px;
|
||||
@@ -220,8 +221,8 @@ export default {
|
||||
}
|
||||
}
|
||||
.upLoadPic {
|
||||
width: 220px;
|
||||
height:220px;
|
||||
width: 204px;
|
||||
height:204px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.upLoadPic:nth-child(3n) {
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
</div>
|
||||
<AiEmpty description="暂无数据" class="emptyWrap" v-else></AiEmpty>
|
||||
|
||||
<u-select v-model="showType" :list="$dict.getDict('villagerCircleTopic')" label-name="dictName" value-name="dictValue"
|
||||
<u-select v-model="showType" :list="list" label-name="dictName" value-name="dictValue"
|
||||
@confirm="confirmTypeSelect"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -46,6 +46,7 @@ export default {
|
||||
current: 1,
|
||||
topic: '',
|
||||
topicType: '',
|
||||
list: [],
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
@@ -54,8 +55,9 @@ export default {
|
||||
this.current = 1
|
||||
this.getList()
|
||||
})
|
||||
|
||||
})
|
||||
let all = [{ dictName: '全部', dictValue: '6', dictColor: null }]
|
||||
this.list = [...all, ...this.$dict.getDict('villagerCircleTopic')]
|
||||
},
|
||||
methods: {
|
||||
tabClick(index) {
|
||||
|
||||
Reference in New Issue
Block a user