blob: 26c04c48a455fce3c87be2dfcb220926550608ba [file] [log] [blame]
guangchao.xu070005a2020-12-07 09:56:40 +08001<template>
2 <view class="chat">
3 <view class="chat-list">
4 <u-cell-group>
5 <u-cell-item title="人工咨询" @click="toPath()">
6 <u-icon slot="icon" size="32" name="kefu" custom-prefix="custom-icon"></u-icon>
7 </u-cell-item>
8 <u-cell-item title="智能机器人" @click="toPath()">
9 <u-icon slot="icon" size="32" name="robot" custom-prefix="custom-icon"></u-icon>
10 </u-cell-item>
11 <u-cell-item title="资讯库" @click="toPath('')">
12 <u-icon slot="icon" size="32" name="zx" custom-prefix="custom-icon"></u-icon>
13 </u-cell-item>
guangchao.xu6cdd45e2021-04-16 17:44:30 +080014 <u-cell-item title="网点查询" @click="toPath('/pages/sub_index/offlineHelp')">
guangchao.xu070005a2020-12-07 09:56:40 +080015 <u-icon slot="icon" size="32" name="offlineHelp" custom-prefix="custom-icon"></u-icon>
16 </u-cell-item>
guangchao.xu6cdd45e2021-04-16 17:44:30 +080017 <u-cell-item title="常见问题" @click="toPath('/pages/sub_index/question')">
guangchao.xu070005a2020-12-07 09:56:40 +080018 <u-icon slot="icon" size="32" name="question" custom-prefix="custom-icon"></u-icon>
19 </u-cell-item>
20 </u-cell-group>
21 </view>
22 </view>
23</template>
24
25<script>
26 export default {
27 data() {
28 return {
29
30 }
31 },
32 methods: {
33
34 }
35 }
36</script>
37
38<style scoped lang="scss">
39 /deep/.u-cell_title{
40 margin-left: 30rpx;
41 }
42 .chat {
43 width: 100vw;
44 // height: 100vh;
45 background-color: #F3F3F3;
46 overflow: hidden;
47 padding-bottom: 30rpx;
48 &-list {
49 margin-top: 30rpx;
50 }
51 }
52</style>