Sfoglia il codice sorgente

订单列表-新增:订单金额、实付金额、退款金额字段

panyong 3 anni fa
parent
commit
c9ad0a9a81

+ 1 - 1
htmldev/manage/src/utils/index.js

@@ -117,7 +117,7 @@ export function param2Obj (url) {
 }
 
 export function fen2Yuan (num) {
-  return isNaN(num) ? '' : num * 0.01
+  return isNaN(num) ? '' : (num * 0.01).toFixed(2)
 }
 
 export function yuan2Fen (num) {

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

@@ -36,6 +36,21 @@
       <el-table-column label="订单ID" prop="id" width="80"></el-table-column>
       <el-table-column label="订单编号" prop="order_number" width="200"></el-table-column>
       <el-table-column label="桌号" prop="place_number" width="140"></el-table-column>
+      <el-table-column label="价格(元)" width="100">
+        <template slot-scope="scope">
+          <p>{{ scope.row.order_price | fen2Yuan }}</p>
+        </template>
+      </el-table-column>
+      <el-table-column label="实付金额(元)">
+        <template slot-scope="scope">
+          <p>{{ scope.row.order_pay_price | fen2Yuan }}</p>
+        </template>
+      </el-table-column>
+      <el-table-column label="退款金额(元)">
+        <template slot-scope="scope">
+          <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"></el-table-column>

+ 3 - 3
htmldev/manage/src/views/fms/check/index.vue

@@ -41,14 +41,14 @@
       border
       :max-height="vheight">
       <el-table-column label="流水号" prop="record_number"></el-table-column>
-      <el-table-column label="收入/支出" prop="record_type" sortable>
+      <el-table-column label="收入/退款" prop="record_type" sortable>
         <template slot-scope="scope">
-          <p>{{ ['', '支出', '退款', '收入'][scope.row.record_type]}}</p>
+          <p>{{ ['', '收入', '退款'][scope.row.record_type]}}</p>
         </template>
       </el-table-column>
       <el-table-column label="金额" prop="record_price" sortable>
         <template slot-scope="scope">
-          <p>{{ scope.row.record_type === 1 ? '-' : '+'}} {{ scope.row.record_price | fen2Yuan }}</p>
+          <p>{{ scope.row.record_price | fen2Yuan }}</p>
         </template>
       </el-table-column>
       <el-table-column label="订单类型" prop="order_type"></el-table-column>