helpDescription.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!-- 帮助说明 -->
  2. <template>
  3. <view class="content">
  4. <u-navbar leftText="返回" title="操作流程" placeholder titleStyle="font-size:36rpx;font-weight:700" :autoBack="true">
  5. <view class="u-nav-slot" slot="left">
  6. <u-icon name="arrow-left" size="20" color="#303137"></u-icon>
  7. </view>
  8. <view class="u-nav-slot" slot="right">
  9. <view class="top-right" v-if="!isShowType" @click="btnClick(false)">
  10. 切换简洁版
  11. </view>
  12. <view class="top-right" v-if="isShowType" @click="btnClick(true)">
  13. 切换图示版
  14. </view>
  15. </view>
  16. </u-navbar>
  17. <image src="@/static/images/tsb/jjb.png" mode="widthFix" class="banner" v-if="isShowType"></image>
  18. <view class="content1" v-if="!isShowType">
  19. <image src="@/static/images/tsb/1.png" mode="widthFix" class="content-img">
  20. </image>
  21. <image src="@/static/images/tsb/2.png" mode="widthFix" class="content-img">
  22. </image>
  23. <image src="@/static/images/tsb/3.png" mode="widthFix" class="content-img">
  24. </image>
  25. <image src="@/static/images/tsb/4.png" mode="widthFix" class="content-img">
  26. </image>
  27. <image src="@/static/images/tsb/5.png" mode="widthFix" class="content-img">
  28. </image>
  29. <image src="@/static/images/tsb/6.png" mode="widthFix" class="content-img">
  30. </image>
  31. <image src="@/static/images/tsb/7.png" mode="widthFix" class="content-img">
  32. </image>
  33. <image src="@/static/images/tsb/8.png" mode="widthFix" class="content-img">
  34. </image>
  35. <image src="@/static/images/tsb/9.png" mode="widthFix" class="content-img">
  36. </image>
  37. <image src="@/static/images/tsb/10.png" mode="widthFix" class="content-img">
  38. </image>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. isShowType: true
  47. };
  48. },
  49. methods: {
  50. btnClick(type) {
  51. console.log(type)
  52. this.isShowType = !type
  53. }
  54. }
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. .content {
  59. background: white;
  60. }
  61. .banner {
  62. width: 100%;
  63. }
  64. .content1 {
  65. width: 100%;
  66. display: flex;
  67. flex-direction: column;
  68. .content-img {
  69. width: 100%;
  70. }
  71. }
  72. .top-right {
  73. background: #F7F8FA;
  74. padding: 11rpx 23rpx;
  75. border-radius: 33px;
  76. font-size: 700;
  77. }
  78. </style>