This commit is contained in:
weipengfei 2024-01-31 14:30:32 +08:00
parent 12b274b8b5
commit f6bd08cd31
3 changed files with 7 additions and 8 deletions

View File

@ -280,7 +280,7 @@
const userInfo = ref({});
onLoad(() => {
uni.hideTabBar()
uni.hideTabBar();
// console.log(store.state.userInfo)
if (!store.state.userInfo) {
uni.redirectTo({
@ -330,7 +330,7 @@
const houseInfo = ref({});
onShow(() => {
getlist2()
initFarmLists();
})
const bgc = (icon) => {
return `/static/main/index/${icon}.png`
@ -385,6 +385,7 @@
const farm_lists = ref([]);
const house_lists = ref([]);
const farm_types_lists = ref([]);
const initFarmLists = ()=>{
farmTypeLists().then(res=>{
farm_types_lists.value = res.data
@ -411,6 +412,7 @@
id: step.id,
};
}));
if(houseInfo.value.id) return ; //
if(res.data.length>0) houseInfo.value = res.data[1];
else houseInfo.value = {};
store.commit('setHouse', houseInfo.value);
@ -419,7 +421,6 @@
console.log(err);
})
}
initFarmLists();
const farm_type = computed(()=>{
return farm_types_lists.value.find(item=>item.value==dataobj.value.farm_type)?.name || ''
@ -462,13 +463,11 @@
}
const confirm2 = (e) => {
showPicker.value = false
uni.navigateTo({
url: e.value[0].route + '?id=' + palntId.value
})
}
const confirm1 = (e) => {
palntId.value = e.value[0].id
showPicker1.value = false
if (e.value[0].status == 2) {

View File

@ -54,7 +54,7 @@
</template>
<script setup lang="ts">
<script setup>
import Myindex from '@/components/return/index.vue';
import MyTabbar from "@/components/customTabbar/tabbar.vue"
import {

File diff suppressed because one or more lines are too long