12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!-- 帮助说明 -->
- <template>
- <view class="content">
- <u-navbar leftText="返回" title="操作流程" placeholder titleStyle="font-size:36rpx;font-weight:700" :autoBack="true">
- <view class="u-nav-slot" slot="left">
- <u-icon name="arrow-left" size="20" color="#303137"></u-icon>
- </view>
- <view class="u-nav-slot" slot="right">
- <view class="top-right" v-if="!isShowType" @click="btnClick(false)">
- 切换简洁版
- </view>
- <view class="top-right" v-if="isShowType" @click="btnClick(true)">
- 切换图示版
- </view>
- </view>
- </u-navbar>
- <image src="@/static/images/tsb/jjb.png" mode="widthFix" class="banner" v-if="isShowType"></image>
- <view class="content1" v-if="!isShowType">
- <image src="@/static/images/tsb/1.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/2.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/3.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/4.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/5.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/6.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/7.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/8.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/9.png" mode="widthFix" class="content-img">
- </image>
- <image src="@/static/images/tsb/10.png" mode="widthFix" class="content-img">
- </image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isShowType: true
- };
- },
- methods: {
- btnClick(type) {
- console.log(type)
- this.isShowType = !type
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background: white;
- }
- .banner {
- width: 100%;
- }
- .content1 {
- width: 100%;
- display: flex;
- flex-direction: column;
- .content-img {
- width: 100%;
- }
- }
- .top-right {
- background: #F7F8FA;
- padding: 11rpx 23rpx;
- border-radius: 33px;
- font-size: 700;
- }
- </style>
|