入库出库
This commit is contained in:
529
src/views/inventory/LngInventoryIn/components/createForm.vue
Normal file
529
src/views/inventory/LngInventoryIn/components/createForm.vue
Normal file
@ -0,0 +1,529 @@
|
||||
<template>
|
||||
<a-spin :spinning="spinning" tip="加载中...">
|
||||
|
||||
<div class="page-bg-wrap formViewStyle pdcss">
|
||||
<div class="top-toolbar" >
|
||||
<a-button style="margin-right: 10px" @click="close">
|
||||
<slot name="icon"><close-outlined /></slot>关闭
|
||||
</a-button>
|
||||
<template v-if="pageType!=='view'">
|
||||
<a-button style="margin-right: 10px" type="primary" @click="handleSubmit">
|
||||
<slot name="icon"><save-outlined /></slot>保存
|
||||
</a-button>
|
||||
</template>
|
||||
</div>
|
||||
<a-form ref="formRef" :model="formState" :rules="rules" v-bind="layout">
|
||||
<Card title="基础信息" :bordered="false" >
|
||||
<a-row>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="交易主体" name="comName">
|
||||
<a-select v-model:value="formState.comId" disabled placeholder="请选择" style="width: 100%" allow-clear>
|
||||
<a-select-option v-for="item in optionSelect.comIdList" :key="item.value" :value="item.value">
|
||||
{{ item.label }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="接收站" name="staName">
|
||||
<a-input-search v-model:value="formState.staName" :disabled="isDisable" placeholder="请选择接收站" readonly @search="onSearchStation"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库存类型" name="typeCode">
|
||||
<a-select v-model:value="formState.typeCode" disabled placeholder="" style="width: 100%" allow-clear>
|
||||
<a-select-option v-for="item in optionSelect.typeCodeList" :key="item.code" :value="item.code">
|
||||
{{ item.name }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="船期编号" name="ssNo">
|
||||
<a-input-search v-model:value="formState.ssNo" :disabled="Boolean(isDisable || pageType ) " placeholder="请选择船期" readonly @search="onSearchShip"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="采购合同" name="kName">
|
||||
<a-input-search v-model:value="formState.kName" :disabled="isDisable" placeholder="请选择合同" readonly @search="onContract"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="供应商" name="suName">
|
||||
<a-input-search v-model:value="formState.suName" disabled/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库" name="dateIn">
|
||||
<a-date-picker :inputReadOnly="true" v-model:value="formState.dateIn" style="width: 100%" :disabled="isDisable" placeholder="请选择日期" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</Card>
|
||||
<Card title="" :bordered="false" >
|
||||
<a-row>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="卸港热值(MMBtu)" name="qtyUnloadMmbtu">
|
||||
<input-number v-model:value="formState.qtyUnloadMmbtu" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="卸港热值(吉焦)" name="qtyUnloadGj">
|
||||
<input-number v-model:value="formState.qtyUnloadGj" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="卸港重量(吨)" name="qtyUnloadTon">
|
||||
<input-number v-model:value="formState.qtyUnloadTon" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="卸港体积(标方)" name="qtyUnloadM3L">
|
||||
<input-number v-model:value="formState.qtyUnloadM3L" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="卸港体积(方)" name="qtyUnloadM3">
|
||||
<input-number v-model:value="formState.qtyUnloadM3" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗比例%" name="rateLost">
|
||||
<input-number v-model:value="formState.rateLost" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗热值(MMBtu)" name="qtyLostMmbtu">
|
||||
<input-number v-model:value="formState.qtyLostMmbtu" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗热值(吉焦)" name="qtyLostGj">
|
||||
<input-number v-model:value="formState.qtyLostGj" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗重量(吨)" name="qtyLostTon">
|
||||
<input-number v-model:value="formState.qtyLostTon" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗体积(标方)" name="qtyLostM3L">
|
||||
<input-number v-model:value="formState.qtyLostM3L" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="损耗体积(方)" name="qtyLostM3">
|
||||
<input-number v-model:value="formState.qtyLostM3" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库热值(MMBtu)" name="qtyMmbtu">
|
||||
<input-number v-model:value="formState.qtyMmbtu" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库热值(吉焦)" name="qtyGj">
|
||||
<input-number v-model:value="formState.qtyGj" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库重量(吨)" name="qtyTon">
|
||||
<input-number v-model:value="formState.qtyTon" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库体积(标方)" name="qtyM3L">
|
||||
<input-number v-model:value="formState.qtyM3L" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库体积(方)" name="qtyM3">
|
||||
<input-number v-model:value="formState.qtyM3" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
||||
</Card>
|
||||
<Card title="" :bordered="false" >
|
||||
<a-row>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="结算币种" name="curCode">
|
||||
<a-select v-model:value="formState.curCode" :disabled="isDisable" placeholder="请选择币种" style="width: 100%" allow-clear>
|
||||
<a-select-option v-for="item in optionSelect.curCodeList" :key="item.code" :value="item.code">
|
||||
{{ item.fullName }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="结算币种单价(/MMBtu)" name="priceMmbtu">
|
||||
<input-number v-model:value="formState.priceMmbtu" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="结算币种金额" name="amountCurr">
|
||||
<input-number v-model:value="formState.amountCurr" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="购汇汇率" name="rateExPur">
|
||||
<input-number v-model:value="formState.rateExPur" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库金额/纯货值(元)" name="amount">
|
||||
<input-number v-model:value="formState.amount" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库价格(元/吨)" name="priceTon">
|
||||
<input-number v-model:value="formState.priceTon" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="入库价格(元/吉焦)" name="priceGj">
|
||||
<input-number v-model:value="formState.priceGj" :disabled="isDisable" :digits="3" :min="0" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="备注" name="note" :label-col="{ span: 3 }" :wrapper-col="{ span: 24 }">
|
||||
<a-textarea v-model:value="formState.note" :disabled="isDisable" :maxLength="200" placeholder="请输入内容,最多200字" :auto-size="{ minRows: 2, maxRows: 5 }"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</Card>
|
||||
<Card title="附件信息" :bordered="false" >
|
||||
<UploadList :disabled="isDisable" :list="dataFile" :value="formState.filePath" :tableName="tableName" :columnName="columnName" @change="uploadListChange"/>
|
||||
</Card>
|
||||
</a-form>
|
||||
</div>
|
||||
<contractPurIntListModal @register="registerContractPurInt" @success="handleSuccessContractPurInt" selectType="radio" pageType="pur"/>
|
||||
<lngStationModal @register="registerStation" @success="handleSuccessStation"/>
|
||||
<shipScheduleListModal @register="registerShip" @success="handleSuccessShip" />
|
||||
</a-spin>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { Card } from 'ant-design-vue';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { FromPageType, RecordType } from '/@/enums/workflowEnum';
|
||||
import { ref, computed, onMounted, onBeforeMount, nextTick, defineAsyncComponent, reactive, defineComponent, watch} from 'vue';
|
||||
import { SendOutlined, SaveOutlined, CloseOutlined, } from '@ant-design/icons-vue';
|
||||
import { useMessage } from '/@/hooks/web/useMessage';
|
||||
import { useI18n } from '/@/hooks/web/useI18n';
|
||||
import { useMultipleTabStore } from '/@/store/modules/multipleTab';
|
||||
import useEventBus from '/@/hooks/event/useEventBus';
|
||||
import type { Rule } from 'ant-design-vue/es/form';
|
||||
import { getDictionary } from '/@/api/sales/Customer';
|
||||
import { useModal } from '/@/components/Modal';
|
||||
import { getAllPriceTerm} from '/@/api/contract/ContractPurInt';
|
||||
import { addLngOpsPurInt,updateLngOpsPurInt, getLngOpsPurInt} from '/@/api/ship/OpsPurInt';
|
||||
import { getAllCurrency } from '/@/api/contract/ContractFact';
|
||||
import dayjs from 'dayjs';
|
||||
import { getAppEnvConfig } from '/@/utils/env';
|
||||
import { message } from 'ant-design-vue';
|
||||
import UploadList from '/@/components/Form/src/components/UploadList.vue';
|
||||
import contractPurIntListModal from '../../../../components/common/contractPurIntListModal.vue';
|
||||
import lngStationModal from '/@/components/common/lngStationModal.vue';
|
||||
import shipScheduleListModal from '/@/components/common/shipScheduleListModal.vue';
|
||||
import { useUserStore } from '/@/store/modules/user';
|
||||
import { getAllCom} from '/@/api/contract/ContractPurInt';
|
||||
import type { CascaderProps } from 'ant-design-vue';
|
||||
import { getAreaList, getAreaInfo} from '/@/api/mdm/CountryRegion';
|
||||
import {getCompDept } from '/@/api/approve/Appro';
|
||||
import { getLngShipSchedule} from '/@/api/ship/ShipSchedule';
|
||||
const userStore = useUserStore();
|
||||
const userInfo = userStore.getUserInfo;
|
||||
|
||||
const tableName = 'OpsPurInt';
|
||||
const columnName = 'OpsPurInt'
|
||||
|
||||
const formType = ref('2'); // 0 新建 1 修改 2 查看
|
||||
const formRef = ref();
|
||||
const props = defineProps({
|
||||
disabled: false,
|
||||
id: ''
|
||||
|
||||
});
|
||||
const { bus, FORM_LIST_MODIFIED } = useEventBus();
|
||||
|
||||
const router = useRouter();
|
||||
const { currentRoute } = router;
|
||||
const isDisable = ref(false);
|
||||
const { formPath } = currentRoute.value.query;
|
||||
const pathArr = [];
|
||||
|
||||
const tabStore = useMultipleTabStore();
|
||||
const formProps = ref(null);
|
||||
const formId = ref(currentRoute.value?.params?.id);
|
||||
const pageType = ref(currentRoute.value.query?.type);
|
||||
const pageId = ref(currentRoute.value.query?.id)
|
||||
const pageSource = ref(currentRoute.value.query?.pageSource)
|
||||
const spinning = ref(false);
|
||||
const { notification } = useMessage();
|
||||
const { t } = useI18n()
|
||||
|
||||
const formState = reactive({
|
||||
approCode: 'WTJ',
|
||||
frtSign: 'N'
|
||||
});
|
||||
const [register, { openModal:openModal}] = useModal();
|
||||
const [registerContractPurInt, { openModal:openModalContractPurInt}] = useModal();
|
||||
const [registerStation, { openModal:openModalStation}] = useModal();
|
||||
const [registerPort, { openModal:openModalPort}] = useModal();
|
||||
const [registerShip, { openModal:openModalShip}] = useModal();
|
||||
|
||||
const rules= reactive({
|
||||
ssNo: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
comId: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
ssTypeCode: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
curCode: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
dateEta: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
kName: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
staName: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
dateOps: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
frtSign: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
insurSign: [{ required: true, message: "该项为必填项", trigger: 'change' }],
|
||||
});
|
||||
const layout = {
|
||||
labelCol: { span: 8 },
|
||||
wrapperCol: { span: 16 },
|
||||
}
|
||||
const dataFile = ref([]);
|
||||
let optionSelect= reactive({
|
||||
signList: [],
|
||||
comIdList: [],
|
||||
ssTypeCodeList: [],
|
||||
typeCodeList: [],
|
||||
curCodeList: [],
|
||||
prcTermCodeList: [],
|
||||
});
|
||||
watch(
|
||||
() => props.id,
|
||||
(val) => {
|
||||
if (val) {
|
||||
getInfo(val)
|
||||
}
|
||||
},
|
||||
{
|
||||
immediate: true
|
||||
}
|
||||
);
|
||||
watch(
|
||||
() => props.disabled,
|
||||
(val) => {
|
||||
isDisable.value = val
|
||||
},
|
||||
{
|
||||
immediate: true
|
||||
}
|
||||
);
|
||||
onMounted(() => {
|
||||
isDisable.value = pageType.value == 'view'
|
||||
getOption()
|
||||
if (pageId.value) {
|
||||
pageSource.value ? getLngShipInfo(pageId.value) :getInfo(pageId.value)
|
||||
} else {
|
||||
getOptionParams()
|
||||
}
|
||||
});
|
||||
const uploadListChange = (val) => {
|
||||
dataFile.value = val
|
||||
}
|
||||
async function getInfo(id) {
|
||||
spinning.value = true
|
||||
try {
|
||||
let data = await getLngOpsPurInt(id)
|
||||
spinning.value = false
|
||||
Object.assign(formState, {...data})
|
||||
Object.assign(dataFile.value, formState.lngFileUploadList || [])
|
||||
formState.dateNor = formState.dateNor ? dayjs(formState.dateNor) : null
|
||||
getOptionParams()
|
||||
|
||||
|
||||
} catch (error) {
|
||||
spinning.value = false
|
||||
}
|
||||
}
|
||||
async function getOption() {
|
||||
optionSelect.signList = await getDictionary('LNG_YN')
|
||||
optionSelect.ssTypeCodeList = await getDictionary('LNG_SHP_S')
|
||||
optionSelect.approCodeList = await getDictionary('LNG_APPRO')
|
||||
optionSelect.typeCodeList = await getDictionary('LNG_INV_I')
|
||||
if (!pageId.value) {
|
||||
getCompDeptInfo(userInfo.id)
|
||||
}
|
||||
let res = await getAllCom() || []
|
||||
optionSelect.comIdList = res.map(v=> {
|
||||
return {
|
||||
label: v.shortName,
|
||||
value: v.id
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
async function getOptionParams() {
|
||||
optionSelect.curCodeList = await getAllCurrency({eid: formState.curCode})
|
||||
}
|
||||
const numCount = () => {
|
||||
formState.amountCurrEst = (Number(formState.qtyMmbtu) || 0) * (Number(formState.priceCurrEst) || 0)
|
||||
formState.amountCurrEst = formState.amountCurrEst ? formState.amountCurrEst.toFixed(2) : ''
|
||||
}
|
||||
const numChange = () => {
|
||||
formState.amountCurr = (Number(formState.qtySettleMmbtu) || 0) * (Number(formState.priceCurr) || 0)
|
||||
formState.amountCurr = formState.amountCurr ? formState.amountCurr.toFixed(2) : ''
|
||||
}
|
||||
|
||||
const onSearchShip = () => {
|
||||
openModalShip(true,{isUpdate: false})
|
||||
}
|
||||
const onSearchStation = (val)=> {
|
||||
openModalStation(true,{isUpdate: false})
|
||||
}
|
||||
|
||||
const onContract = (val)=> {
|
||||
openModalContractPurInt(true,{isUpdate: false})
|
||||
}
|
||||
|
||||
const handleSuccessStation = (val) => {
|
||||
formState.staCode = val[0].code
|
||||
formState.staName = val[0].fullName
|
||||
}
|
||||
const handleSuccessShip = (val) => {
|
||||
|
||||
formState.ssNo = val[0].ssNo
|
||||
formState.ssId = val[0].id
|
||||
getLngShipInfo(val[0].id)
|
||||
}
|
||||
const getLngShipInfo = async (id) => {
|
||||
try {
|
||||
spinning.value = true
|
||||
let data = await getLngShipSchedule(id)
|
||||
spinning.value = false
|
||||
formState.ssNo = data.ssNo
|
||||
formState.ssId = data.id
|
||||
formState.comId = data.comId
|
||||
formState.kId = data.kId
|
||||
formState.kName = data.kName
|
||||
formState.longSpotCode = data.longSpotCode
|
||||
formState.suCode = data.suCode
|
||||
formState.suName = data.suName
|
||||
formState.staCode = data.staCode
|
||||
formState.staName = data.staName
|
||||
formState.sourceName = data.sourceName
|
||||
formState.empId = data.empId
|
||||
formState.empName = data.empName
|
||||
formState.empTel = data.empTel
|
||||
formState.prcTermCode = data.prcTermCode
|
||||
formState.shipCode = data.shipCode
|
||||
formState.shipName = data.shipName
|
||||
formState.dateNor = data.dateNor ? dayjs(data.dateNor) : null
|
||||
formState.portUnloading1Code = data.portUnloading1Code
|
||||
formState.portUnloading1Name = data.portUnloading1Name
|
||||
formState.dateEta = data.dateEta ? dayjs(data.dateEta) : null
|
||||
formState.dateEtb = data.dateEtb ? dayjs(data.dateEtb) : null
|
||||
formState.dateEtc = data.dateEtc ? dayjs(data.dateEtc) : null
|
||||
formState.dateEtd = data.dateEtd ? dayjs(data.dateEtd) : null
|
||||
formState.qtyMmbtu = data.qtyMmbtu
|
||||
formState.qtyGj = data.qtyGj
|
||||
formState.qtyTon = data.qtyTon
|
||||
formState.qtyM3 = data.qtyM3
|
||||
formState.curCode = data.curCode
|
||||
formState.rateEx = data.rateEx
|
||||
formState.priceCurrEst = data.priceCurrEst
|
||||
formState.amountCurrEst = data.amountCurrEst
|
||||
|
||||
if (pageSource.value) {
|
||||
getOptionParams()
|
||||
}
|
||||
} catch (error) {
|
||||
spinning.value = false
|
||||
}
|
||||
}
|
||||
const handleSuccessContractPurInt = (val) => {
|
||||
formState.kId = val[0].id
|
||||
formState.kName = val[0].kName
|
||||
formState.comId = val[0].comId
|
||||
formState.suCode = val[0].suCode
|
||||
formState.suName = val[0].suSname
|
||||
formState.longSpotCode = val[0].longSpotCode
|
||||
formState.prcTermCode = val[0].prcTermCode
|
||||
formState.sourceName = val[0].sourceName
|
||||
}
|
||||
function close() {
|
||||
tabStore.closeTab(currentRoute.value, router);
|
||||
}
|
||||
async function getFormValue() {
|
||||
return formState
|
||||
}
|
||||
async function handleSubmit(type) {
|
||||
try {
|
||||
await formRef.value.validateFields();
|
||||
let obj = {
|
||||
...formState,
|
||||
salesAreaCode: formState.salesAreaCode ? formState.salesAreaCode[formState.salesAreaCode.length -1] : '',
|
||||
lngFileUploadList: dataFile.value,
|
||||
}
|
||||
spinning.value = true;
|
||||
let request = !formState.id ? addLngOpsPurInt :updateLngOpsPurInt
|
||||
|
||||
try {
|
||||
const data = await request(obj);
|
||||
notification.success({
|
||||
message: '提示',
|
||||
description: data?.id ? t('新增成功!') : t('修改成功!')
|
||||
}); //提示消息
|
||||
|
||||
setTimeout(() => {
|
||||
bus.emit(FORM_LIST_MODIFIED, {});
|
||||
close();
|
||||
}, 500);
|
||||
|
||||
} finally {
|
||||
spinning.value = false;
|
||||
}
|
||||
|
||||
} catch (errorInfo) {
|
||||
spinning.value = false;
|
||||
errorInfo?.errorFields?.length && notification.warning({
|
||||
message: '提示',
|
||||
description: '请完善信息'
|
||||
});
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
defineExpose({
|
||||
handleSubmit,
|
||||
getFormValue
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
:deep(.ant-form-item .ant-form-item-label) {
|
||||
width: 135px !important;
|
||||
max-width: 135px !important;
|
||||
}
|
||||
.page-bg-wrap {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.top-toolbar {
|
||||
min-height: 44px;
|
||||
margin-bottom: 12px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.pdcss {
|
||||
padding:0px 12px 6px 12px !important;
|
||||
}
|
||||
:deep(.formItemWarp .ant-form-item-label > label) {
|
||||
white-space: normal !important;
|
||||
word-break: break-word !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user