feat: 新增订单综合查询模块 · 暂无功能实现

This commit is contained in:
lonewolfyx 2026-03-10 10:13:43 +08:00
parent 34fad36623
commit 561c9f551b
3 changed files with 27 additions and 0 deletions

View File

@ -156,6 +156,13 @@
"props": true
// props
}
},
{
"path": "pages/work/OrderSearchQuery/index",
"style": {
"navigationBarTitleText": "订单综合查询",
"props": true
}
}
],
"tabBar": {

View File

@ -0,0 +1,8 @@
<template>
<view>
订单综合查询
</view>
</template>
<script setup>
</script>

View File

@ -39,6 +39,12 @@
<text class="text">商务审批</text>
</view>
</uni-grid-item>
<uni-grid-item @click="gotoOrderSearchQuery">
<view class="grid-item-box">
<uni-icons size="30" type="person-filled"></uni-icons>
<text class="text">订单综合查询</text>
</view>
</uni-grid-item>
</uni-grid>
</view>
@ -143,6 +149,12 @@ const gotoOrderManager = () => {
})
}
const gotoOrderSearchQuery = () => {
uni.navigateTo({
url: '/pages/work/OrderSearchQuery/index'
})
}
</script>
<style lang="scss" scoped>