Эх сурвалжийг харах

管理后台:点单列表展示调整

panyong 3 жил өмнө
parent
commit
953a261ad3

+ 5 - 5
htmldev/manage/src/views/business/oms/list/index.vue

@@ -41,7 +41,7 @@
               :max-height="vheight"
               :summary-method="getSummaries"
               show-summary>
-      <el-table-column label="序号" type="index" width="60"></el-table-column>
+      <el-table-column fixed label="序号" type="index" width="60"></el-table-column>
       <el-table-column label="订单编号" prop="order_number" width="200"></el-table-column>
       <el-table-column label="桌号" prop="place_number" width="80"></el-table-column>
       <el-table-column label="价格(元)" prop="order_price" sortable width="100">
@@ -59,10 +59,6 @@
           <p>{{ scope.row.order_refund_price | fen2Yuan }}</p>
         </template>
       </el-table-column>
-      <el-table-column label="点单用户" prop="order_user_name" width="160"></el-table-column>
-      <el-table-column label="手机号" prop="order_user_phone" width="120"></el-table-column>
-      <el-table-column label="商品数量" prop="product_num" sortable width="120"></el-table-column>
-      <el-table-column label="下单时间" prop="created_at" sortable width="180"></el-table-column>
       <el-table-column label="出单状态" prop="order_print_status" sortable width="120">
         <template slot-scope="scope">
           <el-tag :type="scope.row.order_print_status === 0 ? 'warning' : 'info'">
@@ -86,6 +82,10 @@
           <p>{{ ['待支付', '已支付', '全部退款', '部分退款', '已取消'][scope.row.order_status] }}</p>
         </template>
       </el-table-column>
+      <el-table-column label="点单用户" prop="order_user_name" width="160"></el-table-column>
+      <el-table-column label="手机号" prop="order_user_phone" width="120"></el-table-column>
+      <el-table-column label="商品数量" prop="product_num" sortable width="120"></el-table-column>
+      <el-table-column label="下单时间" prop="created_at" sortable width="180"></el-table-column>
       <el-table-column label="用户支付订单编号" prop="order_official_number" width="240"></el-table-column>
       <el-table-column fixed="right" label="操作" width="160">
         <template slot-scope="scope">

+ 1 - 1
htmldev/manage/src/views/business/place/reserve/index.vue

@@ -51,7 +51,7 @@
               :max-height="vheight"
               :summary-method="getSummaries"
               show-summary>
-      <el-table-column label="序号" type="index" width="60"></el-table-column>
+      <el-table-column fixed label="序号" type="index" width="60"></el-table-column>
       <el-table-column label="订座编号" prop="order_number" width="200"></el-table-column>
       <el-table-column label="手机号" prop="order_user_phone"></el-table-column>
       <el-table-column label="预订人" prop="order_user_name"></el-table-column>