Handy_Cao 2 năm trước cách đây
mục cha
commit
ec515403d7

+ 4 - 4
src/packages/pc/components/modules/goods-detail/order/index.vue

@@ -73,18 +73,18 @@ const { dataList: sellList, run: getSellList } = useRequest(queryWrTradeOrderDet
 })
 
 const buyColumns = shallowRef<Model.TableColumn[]>(
-    oem != 'zrwyt' ? [{ prop: 'fixedprice', label: '买价' },
+    oem != 'zrwyt' ? [{ prop: 'orderprice', label: '买价' },
                       { prop: 'orderqty', label: '买量' },
                       { prop: 'username', label: '购买方' }] : 
-                      [{ prop: 'fixedprice', label: '买价' },
+                      [{ prop: 'orderprice', label: '买价' },
                       { prop: 'orderqty', label: '买量' }]
 )
 
 const sellColumns = shallowRef<Model.TableColumn[]>(
-    oem != 'zrwyt' ? [{ prop: 'fixedprice', label: '卖价' },
+    oem != 'zrwyt' ? [{ prop: 'orderprice', label: '卖价' },
                       { prop: 'orderqty', label: '卖量' },
                       { prop: 'username', label: '销售方' }] : 
-                      [{ prop: 'fixedprice', label: '卖价' },
+                      [{ prop: 'orderprice', label: '卖价' },
                        { prop: 'orderqty', label: '卖量' }]
 )