|
|
@@ -66,6 +66,7 @@ import moment from "moment";
|
|
|
import {getLongTypeLoginID} from "@/services/bus/login";
|
|
|
import {LongType} from "@/services/socket/login/interface";
|
|
|
import {Order} from "@/services/socket/order";
|
|
|
+import {QueryTradePositionRsp} from "@/services/go/ermcp/order/interface";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: ModalEnum.commodity_contract_summary_transfer,
|
|
|
@@ -73,7 +74,7 @@ export default defineComponent({
|
|
|
emits: ['cancel', 'update'],
|
|
|
props: {
|
|
|
selectedRow: {
|
|
|
- type: Object as PropType<WrPerformancePlan>,
|
|
|
+ type: Object as PropType<QueryTradePositionRsp>,
|
|
|
default: {},
|
|
|
},
|
|
|
buyOrSell: {
|
|
|
@@ -93,15 +94,15 @@ export default defineComponent({
|
|
|
ClientType: 4, // 终端类型
|
|
|
LoginID: Number(getLongTypeLoginID() as LongType), // 登陆账号
|
|
|
AccountID: getSelectedAccountId(), // 交易账号
|
|
|
- // GoodsID: props.parantSelectedRow.goodsid, // 商品ID (需要填入)
|
|
|
- // MarketID: props.parantSelectedRow.marketid, // 市场ID (需要填入)
|
|
|
+ GoodsID: props.selectedRow.goodsid, // 商品ID
|
|
|
+ MarketID: props.selectedRow.marketid, // 市场ID
|
|
|
ValidType: 1, // 校验类型 当日有效
|
|
|
OperateType: 1, // 操作类型: 申请
|
|
|
OrderSrc: 1, // 单据来源: 客户端下单
|
|
|
- // OrderPrice: res.price, // 委托价格 (需要填入)
|
|
|
+ OrderPrice: 370, // 委托价格 (需要填入)
|
|
|
OperatorID: Number(getLongTypeLoginID()),
|
|
|
// MarketMaxSub: number // 市价允许最大偏差(做市)
|
|
|
- // OrderQty: res.num, // 委托数量 (需要填入)
|
|
|
+ OrderQty: 1, // 委托数量 (需要填入)
|
|
|
BuyOrSell: 1 , // 买卖方向 0 买 1 卖
|
|
|
BuildType: 2 , // 下单类型 1 建 2 平
|
|
|
// CurtQuotePrice: 0, // 保留,计算冻结金额使用
|