panyong 3 anni fa
parent
commit
7032030ce7

+ 1 - 10
htmldev/dashboard/src/views/order/index.vue

@@ -1,15 +1,12 @@
 <template>
   <div class="order-list">
     <div class="header">
-      <Icon class="icon" color="#736F6F" name="arrow-left" size="16"/>
       <ul>
         <li
           v-for="(item, index) in tabList"
           :key="index"
           :class="{ active: index === currentTab }"
-          @click="tabChange(index)"
-        >
-          {{ item }}
+          @click="tabChange(index)">{{ item }}
         </li>
       </ul>
     </div>
@@ -19,12 +16,7 @@
   </div>
 </template>
 <script>
-import { Icon } from 'vant'
-
 export default {
-  components: {
-    Icon
-  },
   data () {
     return {
       tabList: ['订单'],
@@ -92,6 +84,5 @@ export default {
     height: 100vh;
     padding-top: 43px;
   }
-
 }
 </style>

+ 1 - 3
htmldev/dashboard/src/views/order/list/index.vue

@@ -32,9 +32,7 @@
             <div
               class="btn-defaule"
               v-if="item.order_status === 0"
-              @click="cancel(item.id)"
-            >
-              取消
+              @click="cancel(item.id)">取消
             </div>
           </div>
         </div>

+ 1 - 1
htmldev/dashboard/src/views/sell/pay/index.vue

@@ -171,7 +171,7 @@ export default {
       if (!this.isHideGoods || this.selectFoods.length <= 2) {
         result = this.selectFoods
       } else if (this.selectFoods.length > 2) {
-        result = [this.selectFoods[0], this.selectFoods[1]]
+        result = this.selectFoods.slice(0, 2)
       }
       return result
     },