| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <!-- 审核计划-->
- <a-modal class="commonModal fieldsetDialog warehouse-disable" title="审核计划" v-model:visible="visible" centered @cancel="cancel" width="890px">
- <template #footer>
- <a-button key="submit" class="cancelBtn" @click="cancel">取消</a-button>
- <a-button key="submit" type="primary" :loading="loading" @click="pass">审核通过</a-button>
- <a-button key="submit" type="primary" :loading="loading" @click="refuse">审核拒绝</a-button>
- </template>
- <a-form class="inlineForm" :form="form" @submit="handleSearch">
- <fieldset class="formFieldSet">
- <legend>套保计划</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="计划类型">
- <span class="white">{{ getPlanContractType(selectedRow.contracttype) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="计划名称">
- <span class="white">{{ formatValue(selectedRow.hedgeplanno) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="现货品种">
- <span class="white">{{ formatValue(selectedRow.deliverygoodsname) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="商品">
- <span class="white">{{ formatValue(selectedRow.wrstandardname) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="计划量">
- <span class="white">{{ formatValue(selectedRow.planqty) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="交易用户">
- <span class="white">{{ formatValue(selectedRow.tradeusername) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="结算币种">
- <span class="white">{{ formatValue(selectedRow.currencyname) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="状态">
- <span class="white">{{ formatValue(getPlanStatusName(selectedRow.hedgeplanstatus)) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="备注">
- <span class="white">{{ formatValue(selectedRow.remark) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref } from 'vue';
- import { closeModal } from '@/common/setup/modal/index';
- import { Modal } from 'ant-design-vue';
- import { ErmcpHedgePlanReq } from '@/services/proto/hedgeplan/interface';
- import Long from 'long';
- import { Ermcp3HedgePlan } from '@/services/go/ermcp/plan/interface';
- import { getPlanContractType, getPlanStatusName } from '@/views/business/plan/setup';
- import { formatValue } from '@/common/methods';
- import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
- import { hedgePlanReq } from '@/services/proto/hedgeplan';
- import { getPayCurrencyTypeEnumList } from '@/common/constants/enumsList';
- import { getUserId } from '@/services/bus/user';
- import { geLoginID_number } from '@/services/bus/login';
- import { _closeModal } from '@/common/setup/modal/modal';
- export default defineComponent({
- name: 'plan_audit_audit',
- emits: ['cancel', 'update'],
- props: {
- selectedRow: {
- type: Object as PropType<Ermcp3HedgePlan>,
- default: {},
- },
- },
- setup(props, context) {
- const { visible, cancel } = _closeModal(context);
- const loading = ref<boolean>(false);
- // 审核通过
- function pass() {
- Modal.confirm({
- title: '是否确认审核通过',
- okText: '审核通过',
- cancelText: '取消',
- onOk() {
- const params: ErmcpHedgePlanReq = {
- HedgePlanID: Long.fromString(props.selectedRow.hedgeplanid),
- OperateType: 4,
- auditremark: '通过',
- Currencyid: props.selectedRow.currencyid, // 结算币种id
- Tradeuserid: props.selectedRow.tradeuserid, // 交易用户id
- auditid: Number(geLoginID_number()),
- };
- requestResultLoadingAndInfo(hedgePlanReq, params, loading, ['审核通过', '审核失败:']).then(() => {
- cancel(true);
- });
- },
- onCancel() {},
- });
- }
- // 审核拒绝
- function refuse() {
- Modal.confirm({
- title: '是否确认审核拒绝',
- okText: '审核拒绝',
- cancelText: '取消',
- onOk() {
- const params: ErmcpHedgePlanReq = {
- HedgePlanID: Long.fromString(props.selectedRow.hedgeplanid),
- OperateType: 5,
- };
- requestResultLoadingAndInfo(hedgePlanReq, params, loading, ['审核拒绝通过', '审核拒绝失败:']).then(() => {
- cancel(true);
- });
- },
- onCancel() {},
- });
- }
- return {
- visible,
- cancel,
- refuse,
- loading,
- pass,
- getPlanContractType,
- formatValue,
- getPayCurrencyTypeEnumList,
- getPlanStatusName,
- };
- },
- });
- </script>
|