新增接单大厅页面

This commit is contained in:
TOP糯米 2023-03-01 22:44:35 +08:00
parent 5716752b9d
commit 128b11525a
3 changed files with 40 additions and 2 deletions

View File

@ -53,6 +53,12 @@
"style": { "style": {
"navigationBarTitleText": "设置" "navigationBarTitleText": "设置"
} }
},
{
"path": "pages/get/index",
"style": {
"navigationBarTitleText": "接单大厅"
}
} }
], ],
"globalStyle": { "globalStyle": {

32
src/pages/get/index.vue Normal file
View File

@ -0,0 +1,32 @@
<template>
<app-layout title="接单大厅">
<view class="getorder-container">
<view class="tab-cate-group">
</view>
</view>
</app-layout>
</template>
<script>
import AppLayout from "@/components/layout/layout";
export default {
name: "get-index",
data() {
return {};
},
components: {
AppLayout,
},
onLoad() {},
onShow() {},
onReady() {},
onReachBottom() {},
onPullDownRefresh() {},
methods: {},
};
</script>
<style lang="less" scoped>
</style>

View File

@ -36,7 +36,7 @@
</view> </view>
</view> </view>
<view class="nav"> <view class="nav">
<view class="nav-item" v-for="(item, index) in navList" :key="index"> <view class="nav-item" v-for="(item, index) in navList" :key="index" @click="utils.toPage(item.page)">
<image class="icon" :src="item.icon" mode="aspectFill" /> <image class="icon" :src="item.icon" mode="aspectFill" />
<text class="title">{{ item.name }}</text> <text class="title">{{ item.name }}</text>
</view> </view>
@ -101,7 +101,7 @@ export default {
id: 1, id: 1,
icon: require("@/static/temp/index/1.png"), icon: require("@/static/temp/index/1.png"),
name: "接单大厅", name: "接单大厅",
page: "", page: "/pages/get/index",
}, },
{ {
id: 1, id: 1,