Browse Source

管理后台-业务中心:点单

panyong 3 years ago
parent
commit
ce3949df32

+ 10 - 2
htmldev/manage/src/views/business/oms/detail/index.vue

@@ -146,8 +146,16 @@
             <el-table-column label="商品sku" prop="product_sku"></el-table-column>
             <el-table-column label="商品附加" prop="product_attach"></el-table-column>
             <el-table-column label="数量" prop="product_num"></el-table-column>
-            <el-table-column label="商品总价格(元)" prop="product_price"></el-table-column>
-            <el-table-column label="退款金额(元)" prop="product_refund_price"></el-table-column>
+            <el-table-column label="商品总价格(元)">
+              <template slot-scope="scope">
+                <p>{{ scope.row.product_price | fen2Yuan }}</p>
+              </template>
+            </el-table-column>
+            <el-table-column label="退款金额(元)">
+              <template slot-scope="scope">
+                <p>{{ scope.row.product_refund_price | fen2Yuan }}</p>
+              </template>
+            </el-table-column>
           </el-table>
         </el-form-item>
         <el-form-item label="退款备注:">

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

@@ -40,14 +40,26 @@
       <el-table-column label="手机号" prop="order_user_phone" width="120"></el-table-column>
       <el-table-column label="商品数量" prop="product_num"></el-table-column>
       <el-table-column label="下单时间" prop="created_at" width="180"></el-table-column>
+      <el-table-column label="出单状态">
+        <template slot-scope="scope">
+          <el-tag :type="scope.row.order_print_status === 0 ? 'warning' : 'info'">
+            {{ ['未出单', '已出单'][scope.row.order_print_status] }}
+          </el-tag>
+        </template>
+      </el-table-column>
       <el-table-column label="订单状态状态" width="120">
         <template slot-scope="scope">
           <p>{{ ['待支付', '已支付', '全部退款', '部分退款', '已取消'][scope.row.order_status] }}</p>
         </template>
       </el-table-column>
       <el-table-column label="用户支付订单编号" prop="order_official_number" width="240"></el-table-column>
-      <el-table-column label="操作" fixed="right">
+      <el-table-column label="操作" fixed="right" width="160">
         <template slot-scope="scope">
+          <el-button type="text"
+                     v-permission="'business_oms_order_print'"
+                     :disabled="booLock"
+                     @click="handlePrint(scope.row)">出单
+          </el-button>
           <el-button type="text"
                      v-permission="'business_oms_order_check'"
                      @click="$router.push({name: 'BusinessOMSDetail', query: {id: scope.row.id}})">订单详情
@@ -79,7 +91,18 @@ export default {
       time: [],
       searchForm: {},
       tableData: [],
-      tableUrl: '/v1/user/order/list'
+      tableUrl: '/v1/user/order/list',
+      booLock: false
+    }
+  },
+  methods: {
+    // TODO 出单api
+    async handlePrint (row) {
+      this.booLock = true
+      const data = await this.$fetch('')
+      this.booLock = false
+      if (data.code === 200) {
+      }
     }
   },
   mounted () {