lancer 2 years ago
parent
commit
62f9186fdf
4 changed files with 56 additions and 13 deletions
  1. +19
    -6
      pages.json
  2. +21
    -7
      pages/index/index.vue
  3. +8
    -0
      pages/mine/consultanonduty/index.vue
  4. +8
    -0
      pages/mine/equipment/index.vue

+ 19
- 6
pages.json View File

@@ -143,12 +143,30 @@
"navigationBarBackgroundColor": "#FFFFFF", "navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
},
{
"path": "consultanonduty/index",
"style": {
"navigationBarTitleText": "值班顾问",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black"
}
},
{
"path": "equipment/index",
"style": {
"navigationBarTitleText": "设备管理",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black"
}
} }
] ]
}, },
{ {
@@ -225,12 +243,7 @@
"navigationBarBackgroundColor": "#FFFFFF", "navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}
}
] ]
} }
], ],


+ 21
- 7
pages/index/index.vue View File

@@ -129,24 +129,26 @@
</view> </view>
<view class="commonly-text">销讲数据</view> <view class="commonly-text">销讲数据</view>
</view> </view>
<view class="commonly">
<view class="commonly" @click="record">
<view class="commonly-img"> <view class="commonly-img">
<image class="commonly-img1" @click="record" src="../../static/images/building.png" mode=""></image>
<image class="commonly-img1" src="../../static/images/building.png" mode=""></image>
</view> </view>
<view class="commonly-text">接待记录</view> <view class="commonly-text">接待记录</view>
</view> </view>
<view class="commonly">
<view class="commonly" @click="toequipment()">
<view class="commonly-img"> <view class="commonly-img">
<image class="commonly-img1" src="../../static/images/building.png" mode=""></image> <image class="commonly-img1" src="../../static/images/building.png" mode=""></image>
</view> </view>
<view class="commonly-text">客户管理</view>
<view class="commonly-text">设备管理</view>
</view> </view>
<view class="commonly">
<view class="commonly" @click="toconsultanonduty()">
<view class="commonly-img"> <view class="commonly-img">
<image class="commonly-img1" src="../../static/images/building.png" mode=""></image> <image class="commonly-img1" src="../../static/images/building.png" mode=""></image>
</view> </view>
<view class="commonly-text">客户管理</view>
<view class="commonly-text">值班顾问</view>
</view> </view>
<view class="commonly"> <view class="commonly">
<view class="commonly-img"> <view class="commonly-img">
<image class="commonly-img1" src="../../static/images/building.png" mode=""></image> <image class="commonly-img1" src="../../static/images/building.png" mode=""></image>
@@ -232,11 +234,23 @@
url: '/pages/center/Piabodata/index' url: '/pages/center/Piabodata/index'
}); });
}, },
// 接待记录
record(){ record(){
// 接待记录
uni.navigateTo({ uni.navigateTo({
url: '/pages/center/records/index' url: '/pages/center/records/index'
}); });
},
//值班顾问
toconsultanonduty(){
uni.navigateTo({
url: '/pages/mine/consultanonduty/index'
});
},
//设备
toequipment(){
uni.navigateTo({
url: '/pages/mine/equipment/index'
});
} }
}, },


+ 8
- 0
pages/mine/consultanonduty/index.vue View File

@@ -0,0 +1,8 @@
<template>
</template>

<script>
</script>

<style>
</style>

+ 8
- 0
pages/mine/equipment/index.vue View File

@@ -0,0 +1,8 @@
<template>
</template>

<script>
</script>

<style>
</style>

Loading…
Cancel
Save