6.17(第一次提交
@@ -52,22 +52,23 @@ export const carShopList = [
|
|||||||
|
|
||||||
export const driverList = [
|
export const driverList = [
|
||||||
{
|
{
|
||||||
text: '发现',
|
text: '首页',
|
||||||
iconPath: '../../../static/images/driver/tabbar/index.png',
|
iconPath: '../../../static/images/driver/tabbar/index.png',
|
||||||
activeIconPath: '../../../static/images/driver/tabbar/index_active.png',
|
activeIconPath: '../../../static/images/driver/tabbar/index_active.png',
|
||||||
path: '/pages/driver/index/index'
|
path: '/pages/driver/home/home'
|
||||||
}, {
|
}, {
|
||||||
text: '惊喜',
|
text: '滴友圈',
|
||||||
iconPath: '../../../static/images/driver/tabbar/welfare.png',
|
iconPath: '../../../static/images/driver/tabbar/welfare.png',
|
||||||
activeIconPath: '../../../static/images/driver/tabbar/welfare_active.png',
|
activeIconPath: '../../../static/images/driver/tabbar/welfare_active.png',
|
||||||
path: '/pages/driver/welfare/index'
|
// path: '/pages/driver/welfare/index'
|
||||||
|
path: '/pages/driver/index/index'
|
||||||
}, {
|
}, {
|
||||||
text: '展厅',
|
text: '租买车',
|
||||||
iconPath: '../../../static/images/driver/tabbar/showroom.png',
|
iconPath: '../../../static/images/driver/tabbar/showroom.png',
|
||||||
activeIconPath: '../../../static/images/driver/tabbar/showroom_active.png',
|
activeIconPath: '../../../static/images/driver/tabbar/showroom_active.png',
|
||||||
path: '/pages/driver/showroom/index'
|
path: '/pages/driver/showroom/index'
|
||||||
}, {
|
}, {
|
||||||
text: '服务',
|
text: '享服务',
|
||||||
iconPath: '../../../static/images/driver/tabbar/serve.png',
|
iconPath: '../../../static/images/driver/tabbar/serve.png',
|
||||||
activeIconPath: '../../../static/images/driver/tabbar/serve_active.png',
|
activeIconPath: '../../../static/images/driver/tabbar/serve_active.png',
|
||||||
path: '/pages/driver/serve/index'
|
path: '/pages/driver/serve/index'
|
||||||
|
|||||||
20
pages.json
@@ -1,8 +1,18 @@
|
|||||||
{
|
{
|
||||||
"pages": [{
|
"pages": [
|
||||||
|
{
|
||||||
|
"path" : "pages/driver/home/home",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "首页",
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"app-plus": {
|
||||||
|
"bounce": "none"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},{
|
||||||
"path": "pages/driver/index/index",
|
"path": "pages/driver/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "发现",
|
"navigationBarTitleText": "滴友圈",
|
||||||
"navigationStyle": "custom",
|
"navigationStyle": "custom",
|
||||||
"app-plus": {
|
"app-plus": {
|
||||||
"bounce": "none"
|
"bounce": "none"
|
||||||
@@ -1436,16 +1446,20 @@
|
|||||||
"color": "#000000",
|
"color": "#000000",
|
||||||
"selectedColor": "#000000",
|
"selectedColor": "#000000",
|
||||||
"list": [
|
"list": [
|
||||||
|
//车商
|
||||||
{"pagePath": "pages/carShop/community/community"},
|
{"pagePath": "pages/carShop/community/community"},
|
||||||
{"pagePath": "pages/carShop/maintain_order/maintain_order"},
|
{"pagePath": "pages/carShop/maintain_order/maintain_order"},
|
||||||
{"pagePath": "pages/carShop/order/order"},
|
{"pagePath": "pages/carShop/order/order"},
|
||||||
{"pagePath": "pages/carShop/message/message"},
|
{"pagePath": "pages/carShop/message/message"},
|
||||||
{"pagePath": "pages/carShop/mine/mine"},
|
{"pagePath": "pages/carShop/mine/mine"},
|
||||||
|
//司机
|
||||||
|
{"pagePath": "pages/driver/home/home"},
|
||||||
{"pagePath": "pages/driver/index/index"},
|
{"pagePath": "pages/driver/index/index"},
|
||||||
{"pagePath": "pages/driver/welfare/index"},
|
// {"pagePath": "pages/driver/welfare/index"},
|
||||||
{"pagePath": "pages/driver/showroom/index"},
|
{"pagePath": "pages/driver/showroom/index"},
|
||||||
{"pagePath": "pages/driver/serve/index"},
|
{"pagePath": "pages/driver/serve/index"},
|
||||||
{"pagePath": "pages/driver/mine/index"},
|
{"pagePath": "pages/driver/mine/index"},
|
||||||
|
//维修店
|
||||||
{"pagePath": "pages/repair/tabbar/repair"},
|
{"pagePath": "pages/repair/tabbar/repair"},
|
||||||
{"pagePath": "pages/repair/tabbar/accessory"},
|
{"pagePath": "pages/repair/tabbar/accessory"},
|
||||||
{"pagePath": "pages/repair/tabbar/procure"},
|
{"pagePath": "pages/repair/tabbar/procure"},
|
||||||
|
|||||||
25
pages/driver/home/home.vue
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<z-paging ref="paging" v-model="dataList" @query="queryList" default-page-size="5"
|
||||||
|
>
|
||||||
|
<view>首页</view>
|
||||||
|
<view slot='bottom'>
|
||||||
|
<tabbar-driver current="/pages/driver/home/home"></tabbar-driver>
|
||||||
|
</view>
|
||||||
|
</z-paging>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -648,20 +648,6 @@
|
|||||||
onShow() {
|
onShow() {
|
||||||
this.getUserInfo1()
|
this.getUserInfo1()
|
||||||
},
|
},
|
||||||
onShareAppMessage(res) {
|
|
||||||
// console.log(res,'123456');
|
|
||||||
if (res.from === 'button') {
|
|
||||||
// 来自页面内分享按钮
|
|
||||||
getNoteShare(this.noteId).then(res => {
|
|
||||||
console.log(res, '分享成功');
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
title: this.shareItem.content, //分享的名称
|
|
||||||
path: '/pages/driver/index/index',
|
|
||||||
imageUrl: this.shareItem.image.length ? this.shareItem.image[0] : '',
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
shareBtnInfo(item) {
|
shareBtnInfo(item) {
|
||||||
// console.log(item,'小程序分享');
|
// console.log(item,'小程序分享');
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
methods: {
|
methods: {
|
||||||
toHomePage() {
|
toHomePage() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
methods: {
|
methods: {
|
||||||
navBackFn() {
|
navBackFn() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
toHomePage() {
|
toHomePage() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -86,7 +86,7 @@
|
|||||||
//返回首页
|
//返回首页
|
||||||
returnIndexFn() {
|
returnIndexFn() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//提交
|
//提交
|
||||||
|
|||||||
@@ -72,7 +72,7 @@
|
|||||||
},
|
},
|
||||||
toHomePage() {
|
toHomePage() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
},
|
},
|
||||||
toHomePage() {
|
toHomePage() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
this.$store.dispatch('WorkingDay', '')
|
this.$store.dispatch('WorkingDay', '')
|
||||||
this.$store.dispatch('WorkingTime', '')
|
this.$store.dispatch('WorkingTime', '')
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -146,7 +146,7 @@
|
|||||||
navBackFn(type) {
|
navBackFn(type) {
|
||||||
if (type == 'tabbar') {
|
if (type == 'tabbar') {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
|
|||||||
@@ -503,7 +503,7 @@
|
|||||||
navBackFn(type) {
|
navBackFn(type) {
|
||||||
if (type == 'tabbar') {
|
if (type == 'tabbar') {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
},
|
},
|
||||||
toHomePage() {
|
toHomePage() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -203,7 +203,7 @@
|
|||||||
navBackFn(type) {
|
navBackFn(type) {
|
||||||
if (type == 'tabbar') {
|
if (type == 'tabbar') {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -133,15 +133,13 @@
|
|||||||
},
|
},
|
||||||
// 登录
|
// 登录
|
||||||
loginSumbit() {
|
loginSumbit() {
|
||||||
// uni.$u.toast('司机模块开发中')
|
|
||||||
// return
|
|
||||||
if (this.agree) {
|
if (this.agree) {
|
||||||
this.$refs.uForm.validate().then(res => {
|
this.$refs.uForm.validate().then(res => {
|
||||||
userLogin(this.form).then(res => {
|
userLogin(this.form).then(res => {
|
||||||
setToken(res.data.token)
|
setToken(res.data.token)
|
||||||
uni.setStorageSync('userType', 'driver')
|
uni.setStorageSync('userType', 'driver')
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ list.forEach(item => {
|
|||||||
})
|
})
|
||||||
}else if(userType == 'driver'){
|
}else if(userType == 'driver'){
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/driver/index/index'
|
url: '/pages/driver/home/home'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 9.9 KiB |