添加客服

master
yujialong 2 months ago
parent f68498aac1
commit 9a8f513b09
  1. 33
      course/customer/customer.vue
  2. 8
      pages.json
  3. 6
      pages/index/index.vue
  4. 2
      pages/login/login.vue

@ -0,0 +1,33 @@
<template>
<view class="page">
<image class="pic" src="https://eduvessel.com/images/occupationlab/customer.png" mode="" show-menu-by-longpress></image>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onShow() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page {
height: 100vh;
overflow: hidden;
}
.pic {
width: 100vw;
height: 100vh;
object-fit: cover;
}
</style>

@ -69,6 +69,14 @@
"navigationBarTitleText" : "用户隐私协议",
"enablePullDownRefresh" : false
}
},
{
"path" : "customer/customer",
"style" :
{
"navigationBarTitleText" : "添加客服",
"enablePullDownRefresh" : false
}
}
]
},

@ -107,11 +107,7 @@
},
//
toDetail(item) {
if (!item.isInEffect) {
this.$util.errMsg('课程已到期,请联系课程负责老师!')
} else {
this.$util.to(`/course/courseDetail/courseDetail?cid=${item.cid}&mallId=${item.mallId}`)
}
this.$util.to(!item.isInEffect ? `/course/customer/customer` : `/course/courseDetail/courseDetail?cid=${item.cid}&mallId=${item.mallId}`) //
},
}
}

@ -127,7 +127,7 @@
background-color: #fff;
border-radius: 20rpx;
.logo {
width: 500rpx;
width: 400rpx;
margin-bottom: 80rpx;
}
.btn {

Loading…
Cancel
Save