|
|
@@ -0,0 +1,383 @@
|
|
|
+<template>
|
|
|
+ <!-- 挂牌求购 -->
|
|
|
+ <Drawer :title="'挂牌求购'"
|
|
|
+ :placement="'right'"
|
|
|
+ :visible="visible"
|
|
|
+ @cancel="cancel"
|
|
|
+ class="top">
|
|
|
+ <div class="post_buying">
|
|
|
+ <a-form class="inlineForm dialogForm"
|
|
|
+ ref="formRef"
|
|
|
+ :model="formState"
|
|
|
+ :rules="rules">
|
|
|
+ <div class="formBar">
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-item label="交易账户"
|
|
|
+ name="accountid">
|
|
|
+ <a-select class="inlineFormSelect"
|
|
|
+ style="width: 260px"
|
|
|
+ v-model:value="formState.accountid"
|
|
|
+ placeholder="请选择">
|
|
|
+ <a-select-option v-for="item in accountList"
|
|
|
+ :value="item.accountid"
|
|
|
+ :key="item.accountid">{{item.accountid}}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-item label="价格类型"
|
|
|
+ name>
|
|
|
+ <a-radio-group class="commonRadioGroup"
|
|
|
+ v-model:value="formState.priceType">
|
|
|
+ <a-radio :value="1">固定价</a-radio>
|
|
|
+ <a-radio :value="2">浮动价</a-radio>
|
|
|
+ </a-radio-group>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ v-if="!isFloat()">
|
|
|
+ <a-form-item label="挂牌价格"
|
|
|
+ name="FixedPrice">
|
|
|
+ <a-input-number class="commonInput"
|
|
|
+ style="width: 260px"
|
|
|
+ :min="0"
|
|
|
+ v-model:value="formState.FixedPrice" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ v-else>
|
|
|
+ <a-form-item label="基差"
|
|
|
+ name="PriceMove">
|
|
|
+ <a-input-number class="commonInput"
|
|
|
+ style="width: 260px"
|
|
|
+ v-model:value="formState.PriceMove" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ v-if="isFloat()">
|
|
|
+ <a-form-item label="估算价"
|
|
|
+ name="PriceMove">
|
|
|
+ <span class="white">{{getPrice()}}</span>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-item label="挂牌数量"
|
|
|
+ name="OrderQty">
|
|
|
+ <a-input-number class="commonInput"
|
|
|
+ style="width: 260px"
|
|
|
+ :min="0"
|
|
|
+ :max="getMaxNum()"
|
|
|
+ v-model:value="formState.OrderQty" />
|
|
|
+ <span class="input-enumdicname">{{selectedRow.enumdicname}}</span>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ class="mt-10">
|
|
|
+ <a-form-item>
|
|
|
+ <a-slider :min="0"
|
|
|
+ v-model:value="formState.OrderQty"
|
|
|
+ :max="getMaxNum()"
|
|
|
+ class="formSlider" />
|
|
|
+ <div class="unit">
|
|
|
+ <span>{{getMaxNum() ? selectedRow.minivalue : 0}}</span>
|
|
|
+ <span>{{getMaxNum()}}{{selectedRow.enumdicname}}</span>
|
|
|
+ </div>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ class="relative mt20">
|
|
|
+ <a-form-item :label="'挂牌金额'">
|
|
|
+ <span class="white ml8">{{getMoney()}}</span>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24"
|
|
|
+ v-if="getMargin()">
|
|
|
+ <a-form-item :label="'履约保证金'">
|
|
|
+ <span class="white ml8">{{getMargin()}}</span>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-item label="可用资金">
|
|
|
+ <span class="white ml8">{{canUseMoney()}}</span>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </div>
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :span="24"
|
|
|
+ class="fixedBtns">
|
|
|
+ <a-form-item class="btnCenter">
|
|
|
+ <a-button class="listedBtn"
|
|
|
+ @click="submit">买入</a-button>
|
|
|
+ <a-button class="ml10 cancelBtn"
|
|
|
+ @click="cancel">取消</a-button>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </div>
|
|
|
+ </Drawer>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import { defineComponent, PropType, ref } from 'vue';
|
|
|
+import { Des } from '@/common/components/commonDes';
|
|
|
+import { _closeModal } from '@/common/setup/modal/modal';
|
|
|
+import { ModalEnum } from '@/common/constants/modalNameEnum';
|
|
|
+import Drawer from '@/common/components/drawer/index.vue';
|
|
|
+import { PlusOutlined, MinusOutlined } from '@ant-design/icons-vue';
|
|
|
+import { hdWROrder } from '@/services/proto/warehousetrade';
|
|
|
+import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
+import { DGFactoryItems, WRGoodsInfo } from '@/services/proto/warehousetrade/interface';
|
|
|
+import { getAccountTypeList, getSelectedAccountId, getUserId } from '@/services/bus/account';
|
|
|
+import { v4 as uuidv4 } from 'uuid';
|
|
|
+import moment, { Moment } from 'moment';
|
|
|
+import { getMarketByTradeMode, getMarketRunByTradeMode, getMarketsByTradeMode } from '@/services/bus/market';
|
|
|
+import { WrOrderQuote } from '@/services/go/wrtrade/interface';
|
|
|
+import { handleForm, handleNumAndPrice, isFloat } from './setup';
|
|
|
+import { validateAction } from '@/common/setup/form';
|
|
|
+import { FormParam, TempWrOrderQuoteDetail } from './interface';
|
|
|
+import { EnumRouterName } from '@/common/constants/enumRouterName';
|
|
|
+import { BuyOrSell, TradeMode } from '@/common/constants/enumCommon';
|
|
|
+import { getCanUseMoney } from '@/services/bus/account';
|
|
|
+import { geLoginID_number } from '@/services/bus/login';
|
|
|
+import { OrderReq } from '@/services/socket/order/interface';
|
|
|
+import { QueryQuoteGoodsListRsp } from '@/services/go/Tjmd/interface';
|
|
|
+import { Order } from '@/services/socket/order';
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ emits: ['cancel', 'update'],
|
|
|
+ name: ModalEnum.spot_trade_warehouse_post_buying,
|
|
|
+ components: { Des, Drawer, PlusOutlined, MinusOutlined },
|
|
|
+ props: {
|
|
|
+ selectedRow: {
|
|
|
+ type: Object as PropType<TempWrOrderQuoteDetail>,
|
|
|
+ default: {},
|
|
|
+ },
|
|
|
+ enumName: {
|
|
|
+ default: '',
|
|
|
+ type: String as PropType<EnumRouterName>,
|
|
|
+ },
|
|
|
+ refGoods: {
|
|
|
+ type: Object as PropType<QueryQuoteGoodsListRsp>,
|
|
|
+ default: {},
|
|
|
+ },
|
|
|
+ },
|
|
|
+ setup(props, context) {
|
|
|
+ // 控制弹窗
|
|
|
+ const { visible, cancel } = _closeModal(context);
|
|
|
+ // 表单
|
|
|
+ const { rules, formState, formRef } = handleForm();
|
|
|
+ const loading = ref<boolean>(false);
|
|
|
+ // 默认的资金账号
|
|
|
+ const accountList = getAccountTypeList([2]);
|
|
|
+ if (accountList.length) {
|
|
|
+ formState.accountid = accountList[0].accountid;
|
|
|
+ }
|
|
|
+ function getSelectedAccount() {
|
|
|
+ return accountList.find((e) => e.accountid === formState.accountid);
|
|
|
+ }
|
|
|
+
|
|
|
+ const { getMaxNum, getMoney, getMargin, getPrice, canUseMoney } = handleNumAndPrice(props.enumName, props.selectedRow);
|
|
|
+ function submit() {
|
|
|
+ // const param: OrderReq = {
|
|
|
+ // ClientSerialNo: uuidv4(), // 客户端流水号
|
|
|
+ // ClientOrderTime: moment(new Date()).format('YYYY-MM-DD HH:mm:ss'), // 客户端委托时间
|
|
|
+ // ClientType: 4, // 终端类型
|
|
|
+ // LoginID: geLoginID_number()!, // 登陆账号
|
|
|
+ // AccountID: getSelectedAccountId(), // 交易账号
|
|
|
+ // GoodsID: props.selectedRow.goodsid, // 商品ID
|
|
|
+ // MarketID: getMarketByTradeMode(TradeMode.ListingAndSelection)?.marketid, // 市场ID
|
|
|
+ // ValidType: 1, // 校验类型 当日有效
|
|
|
+ // OperateType: 1, // 操作类型: 申请
|
|
|
+ // OrderSrc: 1, // 单据来源: 客户端下单
|
|
|
+ // RelatedID: Long.fromString(props.selectedRow.orderid), // 操作员账号ID
|
|
|
+ // OrderPrice: props.selectedRow.orderprice, // 委托价格
|
|
|
+ // OperatorID: Number(geLoginID_number()),
|
|
|
+ // // MarketMaxSub: number // 市价允许最大偏差(做市)
|
|
|
+ // OrderQty: res.num, // 委托数量
|
|
|
+ // BuyOrSell: props.selectedRow.buyorsell === 1 ? 0 : 1, // 买卖方向 0 买 1 卖
|
|
|
+ // BuildType: props.selectedRow.buyorsell === 1 ? 1 : 2, // 下单类型 1 建 2 平
|
|
|
+ // // CurtQuotePrice: 0, // 保留,计算冻结金额使用
|
|
|
+ // // SpPrice: 0 ,// 止盈价格
|
|
|
+ // // SlPrice: 0 , // 止损价格
|
|
|
+ // PriceMode: PriceType.limit, // 取价方式
|
|
|
+ // TimevalidType: 1, // 时间有效类型 单日有效
|
|
|
+ // TriggerType: 1, // 预埋单触发类型
|
|
|
+ // // TriggerPrice: number // 预埋单触发价格
|
|
|
+ // ListingSelectType: 2, // 挂牌点选类型 1:挂牌 2:摘牌 3:先摘后挂
|
|
|
+ // DelistingType: DelistingType.selected, // 摘牌类型 2:点选成交
|
|
|
+ // // RelatedID: number // 关联单号
|
|
|
+ // OptionType: 1, // 期权类型(1:认购(看涨)2:认沽(看跌))
|
|
|
+ // // Premium: number // 权利金
|
|
|
+ // // TriggerOperator: number // 触发条件(1:大于等于2:小于等于)
|
|
|
+ // // ServiceTime: string // 服务端时间
|
|
|
+ // // CouponTypeID: number // 优惠券类型ID(买方)
|
|
|
+ // // UsedQty: number // 使用数量
|
|
|
+ // // ValidTime: string // 指定有效日期
|
|
|
+ // // ReceiveInfoID: number // 收货地址ID
|
|
|
+ // };
|
|
|
+ // requestResultLoadingAndInfo(Order, param, loading, ['摘牌成功', '摘牌失败:']).then(() => {
|
|
|
+ // cancel(true);
|
|
|
+ // });
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ submit,
|
|
|
+ cancel,
|
|
|
+ visible,
|
|
|
+ accountList,
|
|
|
+ rules,
|
|
|
+ formState,
|
|
|
+ formRef,
|
|
|
+ isFloat,
|
|
|
+ getMaxNum,
|
|
|
+ getMoney,
|
|
|
+ getMargin,
|
|
|
+ getSelectedAccount,
|
|
|
+ canUseMoney,
|
|
|
+ getPrice,
|
|
|
+ };
|
|
|
+ },
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+.post_buying {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ .flex;
|
|
|
+ flex-direction: column;
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ .ant-form {
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ .condition {
|
|
|
+ width: 100%;
|
|
|
+ height: 48px;
|
|
|
+ margin: 0 16px;
|
|
|
+ padding: 10px 0;
|
|
|
+ border-bottom: 1px solid @m-black6;
|
|
|
+ .inlineflex;
|
|
|
+ .conditionBtn {
|
|
|
+ align-self: center;
|
|
|
+ align-items: center;
|
|
|
+ border: 0;
|
|
|
+ min-width: 80px;
|
|
|
+ height: 28px;
|
|
|
+ line-height: 28px;
|
|
|
+ background: @m-black7;
|
|
|
+ .rounded-corners(3px);
|
|
|
+ font-size: 14px;
|
|
|
+ color: @m-blue0;
|
|
|
+ &:hover {
|
|
|
+ background: @m-black7-hover;
|
|
|
+ color: @m-blue0-hover;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .conditionBtn + .conditionBtn {
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.unit {
|
|
|
+ margin-left: 70px;
|
|
|
+ width: 260px;
|
|
|
+ .flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ font-size: 14px;
|
|
|
+ color: @m-grey41;
|
|
|
+ height: 14px;
|
|
|
+ line-height: 14px;
|
|
|
+}
|
|
|
+.listedBtn {
|
|
|
+ width: 120px;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ background: linear-gradient(0deg, @m-blue2 0%, @m-blue0 100%);
|
|
|
+ border-radius: 3px;
|
|
|
+ color: @m-white0;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ border: 0;
|
|
|
+ &:hover {
|
|
|
+ background: linear-gradient(0deg, @m-blue0-hover 0%, @m-blue2-hover 100%);
|
|
|
+ color: @m-white0-hover;
|
|
|
+ }
|
|
|
+}
|
|
|
+.cancelBtn:extend(.listedBtn) {
|
|
|
+ background: linear-gradient(0deg, @m-grey12 0%, @m-grey13 100%) !important;
|
|
|
+ &:hover {
|
|
|
+ background: linear-gradient(0deg, @m-grey12-hover 0%, @m-grey13-hover 100%) !important;
|
|
|
+ color: @m-white0-hover;
|
|
|
+ }
|
|
|
+}
|
|
|
+.ml10 {
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.ant-form.dialogForm .ant-row.ant-form-item {
|
|
|
+ margin-bottom: 14px;
|
|
|
+}
|
|
|
+.mt20 {
|
|
|
+ margin-top: 20px;
|
|
|
+}
|
|
|
+.mt-10 {
|
|
|
+ margin-top: -10px;
|
|
|
+}
|
|
|
+.ant-input-suffix {
|
|
|
+ position: absolute;
|
|
|
+ right: -25px;
|
|
|
+}
|
|
|
+.minusBtn,
|
|
|
+.plusBtn {
|
|
|
+ width: 15px;
|
|
|
+ height: 32px;
|
|
|
+ line-height: 32px;
|
|
|
+ font-size: 15px;
|
|
|
+ color: @m-blue15;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.minusBtn {
|
|
|
+ position: absolute;
|
|
|
+ top: -6px;
|
|
|
+ left: 14px;
|
|
|
+ z-index: 1;
|
|
|
+}
|
|
|
+.plusBtn {
|
|
|
+ position: absolute;
|
|
|
+ top: -6px;
|
|
|
+ right: 14px;
|
|
|
+ z-index: 1;
|
|
|
+}
|
|
|
+.stepper {
|
|
|
+ padding-left: 30px;
|
|
|
+ padding-right: 30px;
|
|
|
+ text-align: center;
|
|
|
+ color: @m-yellow1;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.ant-slider.formSlider {
|
|
|
+ width: 260px !important;
|
|
|
+ margin-left: 70px;
|
|
|
+ .ant-slider-rail {
|
|
|
+ margin-right: 0;
|
|
|
+ padding-right: 0;
|
|
|
+ height: 3px !important;
|
|
|
+ border-radius: 2px !important;
|
|
|
+ background-color: @m-blue14;
|
|
|
+ }
|
|
|
+ .ant-slider-track {
|
|
|
+ height: 3px;
|
|
|
+ background-color: @m-blue0;
|
|
|
+ }
|
|
|
+ .ant-slider-step {
|
|
|
+ height: 3px;
|
|
|
+ }
|
|
|
+ .ant-progress-text {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|