AI销管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

128 lines
2.7 KiB

  1. <template>
  2. <view class="help-box">
  3. <view class="top-box">
  4. <view class="title">您好,</br> 我们为您提供更多帮助</view>
  5. <view class="search-box">
  6. <u-input v-model="keyword" disabled @click="searchFun" :clearable="false" :custom-style="customStyle" type="text" :border="false" :height="72" />
  7. </view>
  8. </view>
  9. <view class="bot-box">
  10. <view class="title">常见问题</view>
  11. <view class='sortlist'>
  12. <view class='list-item' @click="helpSort" v-for="(item,index) in list" :key="index">{{item.name}} <image src="/static/images/right-arrow.png" mode=""></image> </view>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. let domain = require("@/utils/domain")
  19. export default {
  20. data() {
  21. return {
  22. keyword: "",
  23. customStyle: {
  24. 'color':'#333',
  25. 'fontSize': '28rpx',
  26. 'padding': '0 30rpx'
  27. },
  28. list: [
  29. {name:'接待管理',url:''},
  30. {name:'客户管理',url:''},
  31. {name:'设备管理',url:''},
  32. {name:'顾问管理',url:''},
  33. ]
  34. };
  35. },
  36. onShow() {
  37. },
  38. methods: {
  39. searchFun(){
  40. uni.navigateTo({
  41. url: '/pages/mine/help/helpSearch'
  42. })
  43. },
  44. helpSort(){
  45. uni.navigateTo({
  46. url: '/pages/mine/help/helpSort'
  47. })
  48. },
  49. },
  50. }
  51. </script>
  52. <style lang="scss">
  53. .help-box{
  54. width: 100%;
  55. min-height: 100vh;
  56. overflow: hidden;
  57. background: #F8F8F8;
  58. .top-box{
  59. width: 750rpx;
  60. height: 280rpx;
  61. padding: 30rpx 36rpx;
  62. margin-bottom: 20rpx;
  63. background: url('https://static.quhouse.com/5f06ad6e271748a9b06e9c027bd5bfe2.png') no-repeat;
  64. background-size: 750rpx 280rpx;
  65. .title{
  66. height: 112rpx;
  67. font-size: 40rpx;
  68. font-family: PingFangSC-Medium, PingFang SC;
  69. font-weight: 500;
  70. color: #FFFFFF;
  71. line-height: 56rpx;
  72. letter-spacing: 2rpx;
  73. }
  74. .search-box{
  75. background: #fff;
  76. width: 690rpx;
  77. height: 72rpx;
  78. border-radius: 4rpx;
  79. margin-top: 24rpx
  80. }
  81. }
  82. .bot-box{
  83. width: 750rpx;
  84. height: 504rpx;
  85. background: #FFFFFF;
  86. .title{
  87. height: 92rpx;
  88. font-size: 32rpx;
  89. font-family: PingFangSC-Medium, PingFang SC;
  90. font-weight: 500;
  91. color: #303030;
  92. line-height: 92rpx;
  93. padding: 0 30rpx;
  94. border-bottom: 1rpx solid #E0E0E0;
  95. }
  96. .sortlist{
  97. padding: 0 30rpx;
  98. .list-item{
  99. display: flex;
  100. justify-content: space-between;
  101. align-items: center;
  102. height: 102rpx;
  103. border-bottom: 1rpx solid #E0E0E0;
  104. font-size: 30rpx;
  105. font-family: PingFangSC-Regular, PingFang SC;
  106. font-weight: 400;
  107. color: #333333;
  108. &:last-child{
  109. border: 0;
  110. }
  111. image{
  112. width: 12rpx;
  113. height: 28rpx;
  114. }
  115. }
  116. }
  117. }
  118. }
  119. </style>