cropAreaId

This commit is contained in:
liuye
2022-10-09 15:13:27 +08:00
parent de5aa7286a
commit eb7ba60a4a
3 changed files with 41 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
</u-tabs>
<div class="top-search">
<div class="left">
<AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="areaSelect" :name.sync="areaName" style="color: #666" selectRoot>
<AiAreaPicker v-model="areaId" :areaId="cropAreaId" @select="areaSelect" :name.sync="areaName" style="color: #666" selectRoot>
<u-icon name="map-fill" color="#3192F4" size="20px" style="vertical-align: text-bottom"></u-icon>
<span style="margin-left: 4px" v-if="areaName">{{ areaName }}</span>
<span v-else>请选择</span>
@@ -71,26 +71,36 @@ export default {
activeStyle: {
'font-weight' : '400',
},
list: []
list: [],
cropAreaId: ''
}
},
computed: {
...mapState(['user']),
},
onLoad() {
this.areaId = this.user.areaId
this.areaName = this.user.areaName
// this.areaId = this.user.areaId
// this.areaName = this.user.areaName
this.$dict.load('EP_CM_status', 'EP_registerInfoType').then(() => {
this.getListInit()
})
uni.$on('updateList', () => {
this.getListInit()
})
this.getCropAreaId()
},
onShow() {
document.title = '核酸采样'
},
methods: {
getCropAreaId() {
this.$http.post(`app/appdvcpconfig/getCorpArea`).then((res) => {
if (res.code == 0) {
this.areaId = res.data
this.cropAreaId = res.data
}
})
},
getListInit() {
this.current = 1
this.list = []