qingyiay
2023-09-07 491249bdf736a5f7d50417c889ad2db734b12383
pages/customer-page/customer-my/customer-my.vue
@@ -79,6 +79,30 @@
               type="primary"
               @click="logout()"></u-button></view>
      </view>
      <view class="noob-tour"
         style="margin-top: 80rpx;"
         v-if="roleType===4">
         <combined-title title="操作指引"></combined-title>
         <u-cell-group>
            <u-cell title="新手指引"
               name='1'
               :clickable="true"
               @click="noobTour">
               <u-badge type="primary"
                  value="01"
                  slot='icon'></u-badge>
               <u-icon slot="value"
                  name="arrow-right"
                  size="30"
                  color="#b8b8b8"></u-icon>
            </u-cell>
         </u-cell-group>
      </view>
      <view class="previewImage-container">
         <previewImage ref="previewImage"
            :imgs="TourImgList"
            :saveBtn='false'></previewImage>
      </view>
      <u-toast ref="uToast"></u-toast>
      <!-- 新建车队弹出框 -->
      <view class="addNewGroup">
@@ -152,10 +176,12 @@
<script>
   import combinedTitle from '@/components/combined-title/combined-title.vue';
   import previewImage from '@/components/kxj-previewImage/kxj-previewImage.vue';
   import { customerId, redirectLogin } from '@/utils/status';
   export default {
      components: {
         combinedTitle
         combinedTitle,
         previewImage
      },
      data() {
         return {
@@ -185,7 +211,13 @@
            logoutTitle: '提示',
            logoutContent: '是否确认退出',
            // 用户信息对象
            userEntity: {}
            userEntity: {},
            TourImgList: ['https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality01.jpg',
               'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality02.jpg',
               'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality03.jpg',
               'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality04.jpg',
               'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality05.jpg'
            ],
         };
      },
      computed: {
@@ -371,6 +403,11 @@
            uni.navigateTo({
               url: '/pages/customer-page/customer-my/userMange/userMange'
            });
         },
         noobTour() {
            this.$nextTick(() => {
               this.$refs.previewImage.open('https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality01.jpg')
            })
         }
      }
   };