| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517 |
- <template>
- <!-- 新增现货合同 -->
- <a-modal class="commonModal add-spot-contract"
- title="新增现货合同"
- v-model:visible="visible"
- centered
- :maskClosable="maskClosableFlag"
- @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="submit">提交审核</a-button>
- </template>
- <a-form class="inlineForm"
- ref="formRef"
- :model="formState"
- :rules="rules">
- <fieldset class="formFieldSet">
- <legend>基本信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="合同编号"
- name="ContractNo">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.ContractNo"
- placeholder="请输入合同编号" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="合同类型"
- name="ContractType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="contractChange"
- v-model:value="formState.ContractType"
- placeholder="请选择合同类型">
- <a-select-option v-for="item in contractType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="业务类型"
- name="BizType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.BizType"
- placeholder="请选择业务类型">
- <a-select-option v-for="item in businessType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <template v-if="isSell">
- <a-col :span="12">
- <a-form-item label="采购方"
- name="BuyUserID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.BuyUserID"
- placeholder="请选择客户">
- <!-- 客户资料列表 正常 -->
- <a-select-option :value="i"
- v-for="(item, i) in customList"
- :key="item.userid">
- {{item.customername}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="销售方"
- name="SellUserID">
- <span class="white">{{getUserName()}}</span>
- </a-form-item>
- </a-col>
- </template>
- <template v-else>
- <a-col :span="12">
- <a-form-item label="采购方"
- name="BuyUserID">
- <span class="white">{{getUserName()}}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="销售方"
- name="SellUserID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.SellUserID"
- style="width: 200px"
- placeholder="请选择客户">
- <!-- 客户资料列表 正常 -->
- <a-select-option :value="i"
- v-for="(item, i) in customList"
- :key="item.userid">
- {{item.customername}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </template>
- <a-col :span="12">
- <a-form-item label="合同附件"
- name="ContractAttachment">
- <div class="upload">
- <a-upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
- :transform-file="transformFile">
- <a-button class="uploadBtn">上传</a-button>
- </a-upload>
- <div class="look">查看附件</div>
- </div>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>现货信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="现货品种"
- name="DeliveryGoodsID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="deliveryGoodsChange"
- v-model:value="formState.DeliveryGoodsID"
- placeholder="请选择现货品种">
- <a-select-option v-for="item in deliveryGoodsList"
- :key="item.deliverygoodsid"
- :value="item.deliverygoodsid">
- {{item.deliverygoodsname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="品类"
- name="WrStandardID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="WrStandardChange"
- v-model:value="formState.WrStandardID"
- placeholder="请选择品类">
- <a-select-option v-for="item in gmlist"
- :key="item.wrstandardid"
- :value="item.wrstandardid">
- {{item.wrstandardname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="品牌"
- name="SpotGoodsBrandID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.SpotGoodsBrandID"
- placeholder="请选择品牌">
- <a-select-option v-for="item in gblist"
- :key="item.brandid"
- :value="item.brandid">
- {{item.brandname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="标仓系数"
- name="ConvertFactor">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.ConvertFactor"
- readonly
- placeholder="选择品类后自动填入" />
- </a-form-item>
- </a-col>
- <a-col :span="24">
- <a-form-item label="商品规格"
- name="SpotGoodsDesc">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.SpotGoodsDesc"
- placeholder="请输入商品规格" />
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>价格信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="定价类型"
- name="PriceType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.PriceType"
- placeholder="请选择定价类型">
- <a-select-option v-for="item in priceType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="结算币种"
- name="CurrencyID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.CurrencyID"
- style="width: 200px"
- placeholder="请选择结算币种">
- <a-select-option v-for="item in payCurrency"
- :key="item.enumdicid"
- :value="item.enumdicname">
- {{item.enumdicname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="数量"
- name="Qty">
- <a-input class="dialogInput suffixGrey"
- v-model:value="formState.Qty"
- placeholder="请输入数量"
- :suffix="numberUnit" />
- </a-form-item>
- </a-col>
- <a-col :span="12"
- v-if="formState.PriceType === 3">
- <a-form-item label="暂定价">
- <a-input class="dialogInput suffixGrey"
- :suffix="payCurrencyUnit"
- placeholder="请输入暂定价" />
- </a-form-item>
- </a-col>
- <!-- 以下是点价的价格信息 start -->
- <template v-if="formState.PriceType === 2 || formState.PriceType === 3">
- <a-col :span="12">
- <a-form-item label="点价合约">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择点价合约">
- <a-select-option value="1">
- 合约一
- </a-select-option>
- <a-select-option value="2">
- 合约二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="升贴水">
- <a-input class="dialogInput suffixGrey"
- placeholder="请输入升贴水"
- :suffix="`${payCurrencyUnit}/${numberUnit}`"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="点价期">
- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择点价期">
- <a-select-option value="1">
- 日期一
- </a-select-option>
- </a-select>
- <span class="to">-</span>
- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择定价类型">
- <a-select-option value="1">
- 日期二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="交收期">
- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择定价类型">
- <a-select-option value="1">
- 日期一
- </a-select-option>
- </a-select>
- <span class="to">-</span>
- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择定价类型">
- <a-select-option value="1">
- 日期二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </template>
- <!-- 以上是点价的价格信息 end -->
- <template v-if="formState.PriceType === 1">
- <a-col :span="12">
- <a-form-item label="价格"
- name="Price">
- <a-input class="dialogInput suffixGrey"
- v-model:value="formState.Price"
- placeholder="请输入价格"
- :suffix="`${payCurrencyUnit}/${numberUnit}`"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="金额"
- class="relative">
- <a-input class="dialogInput suffixGrey"
- readonly
- placeholder="输入数量和价格后自动算"
- :suffix="payCurrencyUnit"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="24">
- <a-form-item label="交收期">
- <a-range-picker v-model:value="deliveryDate"
- :disabled-date="disabledDate"
- :show-time="{hideDisabledOptions: true}"
- format="YYYY-MM-DD" />
- <!-- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择定价类型">
- <a-select-option value="1">
- 日期一
- </a-select-option>
- </a-select>
- <span class="to">-</span>
- <a-select class="inlineFormSelect"
- style="width: 95px"
- placeholder="请选择定价类型">
- <a-select-option value="1">
- 日期二
- </a-select-option>
- </a-select> -->
- </a-form-item>
- </a-col>
- </template>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>其他信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="保证金">
- <a-input class="dialogInput suffixGrey"
- placeholder="请输入保证金"
- :suffix="payCurrencyUnit" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="业务员">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择业务员">
- <a-select-option value="1">
- 客户一
- </a-select-option>
- <a-select-option value="2">
- 客户二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="跟单员">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择跟单员">
- <a-select-option value="1">
- 客户一
- </a-select-option>
- <a-select-option value="2">
- 客户二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="期货账户">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择期货账户">
- <a-select-option value="1">
- 客户一
- </a-select-option>
- <a-select-option value="2">
- 客户二
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="24">
- <a-form-item label="备注">
- <a-input class="dialogInput"
- style="width: 620px"
- placeholder="请输入备注" />
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, ref } from 'vue';
- import { closeModal } from '@/common/setup/modal/index';
- import { initData } from '@/common/methods';
- import { handleFromState, handleContract, handlevalidate, handleDeliveryGoods, handlePrice, handleDate } from './setup';
- import { getUserName } from '@/services/bus/user';
- export default defineComponent({
- name: 'add-spot-contract',
- components: {},
- setup() {
- const { visible, cancel } = closeModal('spot_contract_btn_add');
- const loading = ref<boolean>(false);
- // 表单
- const formRef = ref();
- const { formState, businessType } = handleFromState();
- // 合同类型
- const { contractType, isSell, contractChange, customList, queryCustomList } = handleContract();
- // 自定义表单验证方法
- const { v_ContractType, v_BizType, v_BuyUser, v_SellUser, v_DeliveryGoods, v_WrStandard, v_SpotGoodsBrand, v_PriceType, v_Currency } = handlevalidate(formState);
- const rules = {
- ContractNo: [{ required: true, message: '请输入合同编号', trigger: 'blur' }],
- ContractType: [{ required: true, validator: v_ContractType, trigger: 'change' }],
- BizType: [{ required: true, validator: v_BizType, trigger: 'change' }],
- BuyUserID: [{ required: true, validator: v_BuyUser, trigger: 'change' }],
- SellUserID: [{ required: true, validator: v_SellUser, trigger: 'change' }],
- DeliveryGoodsID: [{ required: true, validator: v_DeliveryGoods, trigger: 'change' }],
- WrStandardID: [{ required: true, validator: v_WrStandard, trigger: 'blur' }],
- SpotGoodsBrandID: [{ required: true, validator: v_SpotGoodsBrand, trigger: 'blur' }],
- ConvertFactor: [{ required: true, message: '请选择品类', trigger: 'blur' }],
- SpotGoodsDesc: [{ required: true, message: '请输入商品规格', trigger: 'blur' }],
- PriceType: [{ required: true, validator: v_PriceType, trigger: 'blur' }],
- CurrencyID: [{ required: true, validator: v_Currency, trigger: 'blur' }],
- Qty: [{ required: true, message: '请输入数量', trigger: 'blur' }],
- Price: [{ required: true, message: '请输入价格', trigger: 'blur' }],
- };
- // 处理现货商品
- const { deliveryGoodsList, gblist, gmlist, numberUnit, WrStandardChange, getDeliveryGoods, deliveryGoodsChange } = handleDeliveryGoods(formState);
- // 价格信息
- const { priceType, payCurrency, payCurrencyUnit, parCurrencyChange } = handlePrice(formState);
- // 日期
- const { deliveryDate, disabledDate } = handleDate();
- function submit() {
- loading.value = true;
- setTimeout(() => {
- loading.value = false;
- cancel();
- }, 2000);
- }
- initData(() => {
- queryCustomList();
- getDeliveryGoods();
- });
- return {
- visible,
- cancel,
- submit,
- loading,
- maskClosableFlag: false,
- formState,
- rules,
- businessType,
- contractType,
- isSell,
- contractChange,
- customList,
- deliveryGoodsList,
- gblist,
- gmlist,
- deliveryGoodsChange,
- WrStandardChange,
- priceType,
- payCurrency,
- payCurrencyUnit,
- parCurrencyChange,
- numberUnit,
- getUserName,
- deliveryDate,
- disabledDate,
- };
- },
- });
- </script>
- <style lang="less">
- .add-spot-contract {
- }
- </style>;
|