|
|
@@ -0,0 +1,74 @@
|
|
|
+<template>
|
|
|
+ <!-- 现货仓单 现货明细 撤单 -->
|
|
|
+ <div></div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import { defineComponent, PropType, ref } from 'vue';
|
|
|
+import Drawer from '@/common/components/drawer/index.vue';
|
|
|
+import { WrOrderDetail } from '@/services/go/wrtrade/interface';
|
|
|
+import { getInTaAccount, getUserId } from '@/services/bus/account';
|
|
|
+import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
+import { wRListingCancelOrder } from '@/services/proto/warehousetrade';
|
|
|
+import { v4 as uuidv4 } from 'uuid';
|
|
|
+import moment from 'moment';
|
|
|
+import { ModalEnum } from '@/common/constants/modalNameEnum';
|
|
|
+import { _closeModal } from '@/common/setup/modal/modal';
|
|
|
+import { WRListingCancelOrderReq } from '@/services/proto/warehousetrade/interface';
|
|
|
+import * as Long from 'long';
|
|
|
+import { geLoginID_number } from '@/services/bus/login';
|
|
|
+import { Modal } from 'ant-design-vue';
|
|
|
+import Bus from '@/utils/eventBus/index';
|
|
|
+import { cancelOrderReq } from '@/services/socket/order';
|
|
|
+import { QueryTradeOrderDetailRsp } from '@/services/go/ermcp/order/interface';
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: ModalEnum.spot_warrant_pending_order_cancel_order,
|
|
|
+ components: { Drawer },
|
|
|
+ emits: ['cancel', 'update'],
|
|
|
+ props: {
|
|
|
+ selectedRow: {
|
|
|
+ type: Object as PropType<QueryTradeOrderDetailRsp>,
|
|
|
+ default: {},
|
|
|
+ },
|
|
|
+ },
|
|
|
+ setup(props, context) {
|
|
|
+ const { visible, cancel } = _closeModal(context);
|
|
|
+ const loading = ref<boolean>(false);
|
|
|
+
|
|
|
+ function submit() {
|
|
|
+ const param = {
|
|
|
+ ClientSerialNo: uuidv4(), // string 客户端流水号
|
|
|
+ ClientOrderTime: moment().format('YYYY-MM-DD HH:mm:ss'), // string 客户端委托时间
|
|
|
+ ClientType: 4, // uint32 终端类型
|
|
|
+ OperateType: 5, // 操作类型
|
|
|
+ OldOrderId: props.selectedRow.orderid,
|
|
|
+ AccountID: getInTaAccount(), // uint64 资金账号
|
|
|
+ OrderSrc: 1, // uint32 委托来源
|
|
|
+ OperatorID: Number(geLoginID_number()), // uint64 操作员账号ID
|
|
|
+ MarketID: props.selectedRow.marketid,
|
|
|
+ GoodsID: props.selectedRow.goodsid,
|
|
|
+ };
|
|
|
+ requestResultLoadingAndInfo(cancelOrderReq, param, loading, ['撤单成功', '撤单失败:']).then(() => {
|
|
|
+ Bus.$emit('spotTrade', true);
|
|
|
+ cancel(true);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ Modal.confirm({
|
|
|
+ title: '撤单',
|
|
|
+ content: '是否确认撤单?',
|
|
|
+ onOk: submit,
|
|
|
+ onCancel: cancel,
|
|
|
+ });
|
|
|
+
|
|
|
+ return {
|
|
|
+ visible,
|
|
|
+ cancel,
|
|
|
+ };
|
|
|
+ },
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+</style>;
|