zhangwei
2024-08-28 91a6d368073912a2e54bbd8c8a39c44d783881d8
src/pages/order/myorder.vue
@@ -10,8 +10,7 @@
      </up-sticky>
      <view class="full-page">
         <view class="" v-if="listO.orderList&&listO.orderList.length>0">
            <view class="listrecord c-p-20" v-for="(item,index) in listO.orderList" :key="item.id"
               @click="pageToDetail(item)">
            <view class="listrecord c-p-20" v-for="(item,index) in listO.orderList" :key="item.id">
               <view class="coreshop-ff chuany-bradius20">
                  <view class="c-p-26">
                     <view class="chuany-flex chuany-justify-between">
@@ -24,7 +23,9 @@
                           
                        </text> -->
                           <up-tag class='c-m-r-10' text="去打卡" shape="circle" type="success"
                              size='mini'></up-tag>
                              v-if="item.isSelected" @click="pageToDetail(item)" size='mini'></up-tag>
                           <up-tag class='c-m-r-10' :text="item.isSelectedName" shape="circle" type="warning"
                              v-else size='mini'></up-tag>
                        </view>
                     </view>
                     <view class="c-p-t-20">
@@ -62,7 +63,8 @@
   import {
      onLoad,
      onShow,
      onReachBottom
      onReachBottom,
      onPullDownRefresh
   } from "@dcloudio/uni-app";
   import {
      reactive,
@@ -91,6 +93,11 @@
         PostMyListPage();
      }
   })
   onPullDownRefresh(() => {
      state.pageIndex = 1
      state.pageSize = 20
      PostMyListPage()
   })
   onLoad(() => {
      PostMyListPage()
   })