فهرست منبع

commit 解决该bug

yu jie 4 سال پیش
والد
کامیت
9b34a49e6a
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/views/market/spot_trade/components/post_buying/index.vue

+ 3 - 3
src/views/market/spot_trade/components/post_buying/index.vue

@@ -207,7 +207,7 @@ export default defineComponent({
                         PriceMove: 0, // double 商品升贴水值
                         WeightRatio: 1, // double 商品重量系数
                     };
-
+                    debugger
                     const param = {
                         AccountID: res.accountid, // 默认内部资金账号第一个
                         ClientSerialNo: uuidv4(), // 客户端流水号
@@ -248,13 +248,13 @@ export default defineComponent({
                         WRStandardID: props.selectedRow.wrstandardid,
                         HasWr: isWR(), // 无仓单挂牌  是否有无仓单
                         DeliveryMonth: isWR() ? '' : moment(res.DeliveryMonth).format('YYYY-MM'),
-                        FactoryItems: props.selectedRow.wrResult.flatMap((it) => {
+                        FactoryItems: props.selectedRow.wrResult != undefined ? props.selectedRow.wrResult.flatMap((it) => {
                             return {
                                 DGFactoryItemTypeID: it.dgfactoryitemtypeid, // uint64 要素项类型ID
                                 DGFactoryItemID: it.dgfactoryitemid, // uint64 预约要素项类型值
                                 ItemTypeMode: 1, // uint32 要素项类型模式
                             };
-                        }), // DGFactoryItems 要素类型明细集合(没有仓单要素ID填写)
+                        }): [], // DGFactoryItems 要素类型明细集合(没有仓单要素ID填写)
                     };
                     debugger;
                     requestResultLoadingAndInfo(hdWROrder, param, loading, ['求购成功', '求购失败:']).then(() => {