定点作业、出库确认、作业管理

This commit is contained in:
2024-03-13 15:42:17 +08:00
parent 6fdce408c4
commit f895730977
13 changed files with 864 additions and 263 deletions

View File

@@ -4,9 +4,9 @@
<uni-icons @tap="goBack" type="back" size="26" color="#fff"></uni-icons>
</view>
<view class="zd-col-16 page_name">{{title}}</view>
<!-- <view class="zd-col-4" style="text-align: right">
<uni-icons @tap="backHome" type="home-filled" size="26" color="#fff" :class="{'vhide': show1 === false}"></uni-icons>
</view> -->
<view v-if="searchActive" class="zd-col-4" style="text-align: right">
<uni-icons @tap="toSearch" type="search" size="26" color="#fff"></uni-icons>
</view>
</view>
</template>
@@ -26,9 +26,9 @@
type: Boolean,
default: false
},
show1: {
searchActive: {
type: Boolean,
default: true
default: false
}
},
methods: {
@@ -43,10 +43,8 @@
})
}
},
backHome () {
uni.redirectTo({
url: '/pages/home/home'
})
toSearch () {
this.$emit('toSearch')
}
}
}