fix
13404089107
8 天以前 2e90f57e7d28d6a949247ef39b487d3e75b56683
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<template>
  <view class="content">
    <view class="cell">
      <view class="cell-item" @click="$navTo('/pages/user/help/problem')">
        <view class="cell-item-text">常见问题</view>
        <image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
      </view>
      <view class="cell-item" @click="$navTo('/pages/user/setup/documentDisplay?t=14&title=热门问题')">
        <view class="cell-item-text">热门问题</view>
        <image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
      </view>
      <view class="cell-item" @click="$navTo('/pages/user/setup/documentDisplay?t=15&title=使用技巧')">
        <view class="cell-item-text">使用技巧</view>
        <image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
      </view>
      <view class="cell-item" @click="$navTo('/pages/user/help/feedback')">
        <view class="cell-item-text">意见反馈</view>
        <image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
      </view>
    </view>
  </view>
</template>
 
<script>
  export default {
    data() {
      return {
        
      };
    }
  }
</script>
 
<style lang="scss">
.content{
  padding: 0 28rpx;
  .cell{
    .cell-item{
      height: 100rpx;
      display: flex;
      align-items: center;
      border-bottom: 2rpx solid rgba(217, 217, 217, 0.4);
      .cell-item-text{
        flex: 1;
        font-size: 32rpx;
        color: #000000;
        line-height: 32rpx;
      }
      .cell-item-icon{
        width: 14rpx;
        height: 24rpx;
      }
    }
  }
}
</style>