新增接单大厅页面
This commit is contained in:
parent
5716752b9d
commit
128b11525a
|
@ -53,6 +53,12 @@
|
|||
"style": {
|
||||
"navigationBarTitleText": "设置"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/get/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "接单大厅"
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
|
|
|
@ -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>
|
|
@ -36,7 +36,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<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" />
|
||||
<text class="title">{{ item.name }}</text>
|
||||
</view>
|
||||
|
@ -101,7 +101,7 @@ export default {
|
|||
id: 1,
|
||||
icon: require("@/static/temp/index/1.png"),
|
||||
name: "接单大厅",
|
||||
page: "",
|
||||
page: "/pages/get/index",
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
|
|
Loading…
Reference in New Issue