feat: 新增订单综合查询模块 · 暂无功能实现
This commit is contained in:
parent
34fad36623
commit
561c9f551b
@ -156,6 +156,13 @@
|
||||
"props": true
|
||||
// 开启 props 传参
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/work/OrderSearchQuery/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "订单综合查询",
|
||||
"props": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"tabBar": {
|
||||
|
||||
8
pages/work/OrderSearchQuery/index.vue
Normal file
8
pages/work/OrderSearchQuery/index.vue
Normal file
@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<view>
|
||||
订单综合查询
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
</script>
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user