Tyler 1 anno fa
parent
commit
c6e7bb2244
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      frontendEle/src/views/shop/order-list.vue

+ 2 - 2
frontendEle/src/views/shop/order-list.vue

@@ -17,7 +17,7 @@
         </el-table-column>
         <el-table-column label="订单编号" prop="SN">
           <template slot-scope="{row}">
-            <span v-if="row.PAY_TYPE === '在线支付' && row.SEND_AT > 0  && row.STATUS === '已支付'" @click="openLogisticsQuery(row.SN)" style="cursor: pointer;"> <el-link type="primary">{{ row.SN }}</el-link> </span>
+            <span v-if="row.SEND_AT > 0  && row.STATUS === '已支付'" @click="openLogisticsQuery(row.SN)" style="cursor: pointer;"> <el-link type="primary">{{ row.SN }}</el-link> </span>
             <span v-else>{{ row.SN }}</span>
           </template>
         </el-table-column>
@@ -42,7 +42,7 @@
         <el-timeline-item v-for="(activity, index) in logistics" :key="index" :timestamp="activity.date_action">{{ activity.order_status }}</el-timeline-item>
       </el-timeline>
     </el-dialog>
-    
+
     <el-dialog
       :top="dialogTop"
       :width="dialogWidth"