|
@@ -1,297 +1,298 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!-- 修改现货品种 -->
|
|
|
|
|
- <a-modal class="commonModal addSpotVariety"
|
|
|
|
|
- title="修改现货品种"
|
|
|
|
|
- v-if="visible"
|
|
|
|
|
- v-model:visible="visible"
|
|
|
|
|
- centered
|
|
|
|
|
- :maskClosable="maskClosableFlag"
|
|
|
|
|
- @cancel="cancel"
|
|
|
|
|
- width="890px">
|
|
|
|
|
- <template #footer>
|
|
|
|
|
- <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="deliverygoodsname">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- v-model:value="formState.deliverygoodsname"
|
|
|
|
|
- style="width: 200px"
|
|
|
|
|
- placeholder="请输入现货品种名称"/>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="现货品种代码"
|
|
|
|
|
- name="deliverygoodscode">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- style="width: 200px"
|
|
|
|
|
- v-model:value="formState.deliverygoodscode"
|
|
|
|
|
- placeholder="请输入现货品种代码"/>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="24">
|
|
|
|
|
- <a-form-item label="单位"
|
|
|
|
|
- name="unitid">
|
|
|
|
|
- <a-select class="inlineFormSelect"
|
|
|
|
|
- style="width: 200px"
|
|
|
|
|
- v-model:value="formState.unitid"
|
|
|
|
|
- placeholder="请选择单位">
|
|
|
|
|
- <a-select-option v-for="item in unitList"
|
|
|
|
|
- :value="item.enumitemname"
|
|
|
|
|
- :key="item.autoid">
|
|
|
|
|
- {{ item.enumdicname }}
|
|
|
|
|
- </a-select-option>
|
|
|
|
|
- </a-select>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="24">
|
|
|
|
|
- <a-form-item label="备注"
|
|
|
|
|
- name="remark">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- v-model:value="formState.remark"
|
|
|
|
|
- style="width: 588px"
|
|
|
|
|
- placeholder="请输入备注"/>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- <fieldset class="formFieldSet">
|
|
|
|
|
- <legend>品类信息</legend>
|
|
|
|
|
- <a-row :gutter="24"
|
|
|
|
|
- class="dialogRowTitle">
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ <!-- 修改现货品种 -->
|
|
|
|
|
+ <a-modal class="commonModal addSpotVariety"
|
|
|
|
|
+ title="修改现货品种"
|
|
|
|
|
+ v-if="visible"
|
|
|
|
|
+ v-model:visible="visible"
|
|
|
|
|
+ centered
|
|
|
|
|
+ :maskClosable="maskClosableFlag"
|
|
|
|
|
+ @cancel="cancel"
|
|
|
|
|
+ width="890px">
|
|
|
|
|
+ <template #footer>
|
|
|
|
|
+ <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="deliverygoodsname">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ v-model:value="formState.deliverygoodsname"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ placeholder="请输入现货品种名称" />
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="现货品种代码"
|
|
|
|
|
+ name="deliverygoodscode">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ v-model:value="formState.deliverygoodscode"
|
|
|
|
|
+ placeholder="请输入现货品种代码" />
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="24">
|
|
|
|
|
+ <a-form-item label="单位"
|
|
|
|
|
+ name="unitid">
|
|
|
|
|
+ <a-select class="inlineFormSelect"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ v-model:value="formState.unitid"
|
|
|
|
|
+ placeholder="请选择单位">
|
|
|
|
|
+ <a-select-option v-for="item in unitList"
|
|
|
|
|
+ :value="item.enumitemname"
|
|
|
|
|
+ :key="item.autoid">
|
|
|
|
|
+ {{ item.enumdicname }}
|
|
|
|
|
+ </a-select-option>
|
|
|
|
|
+ </a-select>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="24">
|
|
|
|
|
+ <a-form-item label="备注"
|
|
|
|
|
+ name="remark">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ v-model:value="formState.remark"
|
|
|
|
|
+ style="width: 588px"
|
|
|
|
|
+ placeholder="请输入备注" />
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ <fieldset class="formFieldSet">
|
|
|
|
|
+ <legend>品类信息</legend>
|
|
|
|
|
+ <a-row :gutter="24"
|
|
|
|
|
+ class="dialogRowTitle">
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
品类
|
|
品类
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
单位
|
|
单位
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
标仓系数
|
|
标仓系数
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
操作
|
|
操作
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <template v-for="(domain, index) in formState.gldwrstandards"
|
|
|
|
|
- :key="domain.index + 'domain'">
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['gldwrstandards',index, 'wrstandardname', ]"
|
|
|
|
|
- :rules="rules.gldwrstandards.wrstandardname">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- v-model:value="domain.wrstandardname"
|
|
|
|
|
- placeholder="请输入品类"></a-input>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['gldwrstandards',index,'unitid' ]"
|
|
|
|
|
- :rules="rules.gldwrstandards.unitid">
|
|
|
|
|
- <a-select class="inlineFormSelect"
|
|
|
|
|
- v-model:value="domain.unitid"
|
|
|
|
|
- placeholder="请选择单位">
|
|
|
|
|
- <a-select-option v-for="item in unitList"
|
|
|
|
|
- :value="item.enumitemname"
|
|
|
|
|
- :key="item.autoid">
|
|
|
|
|
- {{ item.enumdicname }}
|
|
|
|
|
- </a-select-option>
|
|
|
|
|
- </a-select>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['gldwrstandards',index,'convertfactor']"
|
|
|
|
|
- :rules="rules.gldwrstandards.convertfactor">
|
|
|
|
|
- <a-input-number class="dialogInput"
|
|
|
|
|
- style="width: 200px"
|
|
|
|
|
- v-model:value="domain.convertfactor"
|
|
|
|
|
- placeholder="请输入标仓系数"></a-input-number>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6"
|
|
|
|
|
- class="tc">
|
|
|
|
|
- <a-button class="plusBtn"
|
|
|
|
|
- @click="deleteOne('gldwrstandards', index)"
|
|
|
|
|
- v-if="index > 0">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <MinusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <a-button class="minusBtn"
|
|
|
|
|
- @click="addOne('gldwrstandards')">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <PlusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- <fieldset class="formFieldSet">
|
|
|
|
|
- <legend>品牌信息</legend>
|
|
|
|
|
- <a-row :gutter="24"
|
|
|
|
|
- class="dialogRowTitle dialogRowTitle2">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <template v-for="(domain, index) in formState.gldwrstandards"
|
|
|
|
|
+ :key="domain.index + 'domain'">
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['gldwrstandards',index, 'wrstandardname', ]"
|
|
|
|
|
+ :rules="rules.gldwrstandards.wrstandardname">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ v-model:value="domain.wrstandardname"
|
|
|
|
|
+ placeholder="请输入品类"></a-input>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['gldwrstandards',index,'unitid' ]"
|
|
|
|
|
+ :rules="rules.gldwrstandards.unitid">
|
|
|
|
|
+ <a-select class="inlineFormSelect"
|
|
|
|
|
+ v-model:value="domain.unitid"
|
|
|
|
|
+ placeholder="请选择单位">
|
|
|
|
|
+ <a-select-option v-for="item in unitList"
|
|
|
|
|
+ :value="item.enumitemname"
|
|
|
|
|
+ :key="item.autoid">
|
|
|
|
|
+ {{ item.enumdicname }}
|
|
|
|
|
+ </a-select-option>
|
|
|
|
|
+ </a-select>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['gldwrstandards',index,'convertfactor']"
|
|
|
|
|
+ :rules="rules.gldwrstandards.convertfactor">
|
|
|
|
|
+ <a-input-number class="dialogInput"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ v-model:value="domain.convertfactor"
|
|
|
|
|
+ placeholder="请输入标仓系数"></a-input-number>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6"
|
|
|
|
|
+ class="tc">
|
|
|
|
|
+ <a-button class="plusBtn"
|
|
|
|
|
+ @click="deleteOne('gldwrstandards', index)"
|
|
|
|
|
+ v-if="index > 0">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <MinusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <a-button class="minusBtn"
|
|
|
|
|
+ @click="addOne('gldwrstandards')">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <PlusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ <fieldset class="formFieldSet">
|
|
|
|
|
+ <legend>品牌信息</legend>
|
|
|
|
|
+ <a-row :gutter="24"
|
|
|
|
|
+ class="dialogRowTitle dialogRowTitle2">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
品牌
|
|
品牌
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
<span>
|
|
<span>
|
|
|
操作
|
|
操作
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <template v-for="(domain, index) in formState.glddgfactoryItems"
|
|
|
|
|
- :key="domain.index + 'domain'">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item :name="['glddgfactoryItems',index,'dgfactoryitemvalue']"
|
|
|
|
|
- :rules="rules.glddgfactoryItems.dgfactoryitemvalue">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- v-model:value="domain.dgfactoryitemvalue"
|
|
|
|
|
- placeholder="请输入品牌"></a-input>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-button class="plusBtn"
|
|
|
|
|
- @click="deleteOne('glddgfactoryItems', index)"
|
|
|
|
|
- v-if="index > 0">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <MinusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <a-button class="minusBtn"
|
|
|
|
|
- @click="addOne('glddgfactoryItems')">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <PlusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- <fieldset class="formFieldSet">
|
|
|
|
|
- <legend>套保品种信息</legend>
|
|
|
|
|
- <a-row :gutter="24"
|
|
|
|
|
- class="dialogRowTitle">
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <template v-for="(domain, index) in formState.glddgfactoryItems"
|
|
|
|
|
+ :key="domain.index + 'domain'">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item :name="['glddgfactoryItems',index,'dgfactoryitemvalue']"
|
|
|
|
|
+ :rules="rules.glddgfactoryItems.dgfactoryitemvalue">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ v-model:value="domain.dgfactoryitemvalue"
|
|
|
|
|
+ placeholder="请输入品牌"></a-input>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-button class="plusBtn"
|
|
|
|
|
+ @click="deleteOne('glddgfactoryItems', index)"
|
|
|
|
|
+ v-if="index > 0">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <MinusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <a-button class="minusBtn"
|
|
|
|
|
+ @click="addOne('glddgfactoryItems')">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <PlusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ <fieldset class="formFieldSet">
|
|
|
|
|
+ <legend>套保品种信息</legend>
|
|
|
|
|
+ <a-row :gutter="24"
|
|
|
|
|
+ class="dialogRowTitle">
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
套保品种
|
|
套保品种
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
单位
|
|
单位
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
<span class="red">*</span>
|
|
|
套保系数
|
|
套保系数
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
<span>
|
|
<span>
|
|
|
操作
|
|
操作
|
|
|
</span>
|
|
</span>
|
|
|
- </a-col>
|
|
|
|
|
- <template v-for="(domain, index) in formState.wrsconvertdetails"
|
|
|
|
|
- :key="domain.index + 'domain'">
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['wrsconvertdetails',index,'middlegoodsid']"
|
|
|
|
|
- :rules="rules.wrsconvertdetails.middlegoodsid">
|
|
|
|
|
- <a-select class="inlineFormSelect"
|
|
|
|
|
- @change="middleChange(domain.middlegoodsid, domain)"
|
|
|
|
|
- v-model:value="domain.middlegoodsid"
|
|
|
|
|
- placeholder="请选择套保品种">
|
|
|
|
|
- <a-select-option v-for="item in goodsGroup"
|
|
|
|
|
- :value="item.goodsgroupid"
|
|
|
|
|
- :key="item.goodsgroupid">
|
|
|
|
|
- {{ item.goodsgroupname }}
|
|
|
|
|
- </a-select-option>
|
|
|
|
|
- </a-select>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['wrsconvertdetails', index, 'unitidName']">
|
|
|
|
|
- <a-input class="dialogInput"
|
|
|
|
|
- readonly
|
|
|
|
|
- v-model:value="domain.unitidName"
|
|
|
|
|
- placeholder="选择套保品种后自动填入"></a-input>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6">
|
|
|
|
|
- <a-form-item :name="['wrsconvertdetails', index, 'convertratio']"
|
|
|
|
|
- :rules="rules.wrsconvertdetails.convertratio">
|
|
|
|
|
- <a-input-number class="dialogInput"
|
|
|
|
|
- style="width: 200px"
|
|
|
|
|
- v-model:value="domain.convertratio"
|
|
|
|
|
- placeholder="请输入套保系数"></a-input-number>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="6"
|
|
|
|
|
- class="tc">
|
|
|
|
|
- <a-button class="plusBtn"
|
|
|
|
|
- @click="deleteOne('wrsconvertdetails', index)"
|
|
|
|
|
- v-if="index > 0">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <MinusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <a-button class="minusBtn"
|
|
|
|
|
- @click="addOne('wrsconvertdetails')">
|
|
|
|
|
- <template #icon>
|
|
|
|
|
- <PlusOutlined/>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- </a-form>
|
|
|
|
|
- </a-modal>
|
|
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <template v-for="(domain, index) in formState.wrsconvertdetails"
|
|
|
|
|
+ :key="domain.index + 'domain'">
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['wrsconvertdetails',index,'middlegoodsid']"
|
|
|
|
|
+ :rules="rules.wrsconvertdetails.middlegoodsid">
|
|
|
|
|
+ <a-select class="inlineFormSelect"
|
|
|
|
|
+ @change="middleChange(domain.middlegoodsid, domain)"
|
|
|
|
|
+ v-model:value="domain.middlegoodsid"
|
|
|
|
|
+ placeholder="请选择套保品种">
|
|
|
|
|
+ <a-select-option v-for="item in goodsGroup"
|
|
|
|
|
+ :value="item.goodsgroupid"
|
|
|
|
|
+ :key="item.goodsgroupid">
|
|
|
|
|
+ {{ item.goodsgroupname }}
|
|
|
|
|
+ </a-select-option>
|
|
|
|
|
+ </a-select>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['wrsconvertdetails', index, 'unitidName']">
|
|
|
|
|
+ <a-input class="dialogInput"
|
|
|
|
|
+ readonly
|
|
|
|
|
+ v-model:value="domain.unitidName"
|
|
|
|
|
+ placeholder="选择套保品种后自动填入"></a-input>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6">
|
|
|
|
|
+ <a-form-item :name="['wrsconvertdetails', index, 'convertratio']"
|
|
|
|
|
+ :rules="rules.wrsconvertdetails.convertratio">
|
|
|
|
|
+ <a-input-number class="dialogInput"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ v-model:value="domain.convertratio"
|
|
|
|
|
+ placeholder="请输入套保系数"></a-input-number>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="6"
|
|
|
|
|
+ class="tc">
|
|
|
|
|
+ <a-button class="plusBtn"
|
|
|
|
|
+ @click="deleteOne('wrsconvertdetails', index)"
|
|
|
|
|
+ v-if="index > 0">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <MinusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <a-button class="minusBtn"
|
|
|
|
|
+ @click="addOne('wrsconvertdetails')">
|
|
|
|
|
+ <template #icon>
|
|
|
|
|
+ <PlusOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ </a-form>
|
|
|
|
|
+ </a-modal>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
|
-import {defineComponent, PropType, ref, toRaw, watchEffect} from 'vue';
|
|
|
|
|
-import {closeModal} from '@/common/setup/modal/index';
|
|
|
|
|
-import {initData} from '@/common/methods/index';
|
|
|
|
|
-import {PlusOutlined, MinusOutlined} from '@ant-design/icons-vue';
|
|
|
|
|
-import {handleFromState, handleGoodsGroup} from './setup';
|
|
|
|
|
-import {RuleObject, ValidateErrorEntity} from 'ant-design-vue/es/form/interface';
|
|
|
|
|
-import {FormState, WRSConvertDetailEx} from './interface';
|
|
|
|
|
-import {validateCommon} from '@/common/setup/validate';
|
|
|
|
|
-import {initDG} from '../../list/spot-variety/setup';
|
|
|
|
|
-import {ErmcpDeliveryGoodsDetailEx, ErmcpDeliveryGoods} from '@/services/go/ermcp/goodsInfo/interface';
|
|
|
|
|
-import {mergeTwoObj} from '@/utils/objHandle';
|
|
|
|
|
-import {getGoodsUnitEnumList} from '@/common/constants/enumsList';
|
|
|
|
|
-import {requestResultLoadingAndInfo} from "@/common/methods/request/resultInfo";
|
|
|
|
|
-import {addDeliveryGoodsApply, ermsMiddelGoodsEdit} from "@/services/proto/delivery";
|
|
|
|
|
-import {DeliveryGoodsApplyReq} from "@/services/proto/delivery/interface";
|
|
|
|
|
|
|
+import { defineComponent, PropType, ref, watchEffect } from 'vue';
|
|
|
|
|
+import { closeModal } from '@/common/setup/modal/index';
|
|
|
|
|
+import { initData } from '@/common/methods/index';
|
|
|
|
|
+import { PlusOutlined, MinusOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
+import { handleFromState, handleGoodsGroup } from './setup';
|
|
|
|
|
+import { RuleObject } from 'ant-design-vue/es/form/interface';
|
|
|
|
|
+import { FormState, WRSConvertDetailEx } from './interface';
|
|
|
|
|
+import { validateCommon } from '@/common/setup/validate';
|
|
|
|
|
+import { initDG } from '../../list/spot-variety/setup';
|
|
|
|
|
+import { ErmcpDeliveryGoodsDetailEx } from '@/services/go/ermcp/goodsInfo/interface';
|
|
|
|
|
+import { mergeTwoObj } from '@/utils/objHandle';
|
|
|
|
|
+import { getGoodsUnitEnumList } from '@/common/constants/enumsList';
|
|
|
|
|
+import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
|
|
+import { addDeliveryGoodsApply } from '@/services/proto/delivery';
|
|
|
|
|
+import { DeliveryGoodsApplyReq } from '@/services/proto/delivery/interface';
|
|
|
|
|
+import { validateAction } from '@/common/setup/form';
|
|
|
|
|
|
|
|
interface Obj {
|
|
interface Obj {
|
|
|
[props: string]: any;
|
|
[props: string]: any;
|
|
@@ -325,7 +326,7 @@ export default defineComponent({
|
|
|
},
|
|
},
|
|
|
setup(props, context) {
|
|
setup(props, context) {
|
|
|
// 控制关闭弹窗
|
|
// 控制关闭弹窗
|
|
|
- const {visible, cancel} = closeModal('goods_info_spot_normal_modify');
|
|
|
|
|
|
|
+ const { visible, cancel } = closeModal('goods_info_spot_normal_modify');
|
|
|
// 下单方法
|
|
// 下单方法
|
|
|
const loading = ref<boolean>(false);
|
|
const loading = ref<boolean>(false);
|
|
|
|
|
|
|
@@ -334,71 +335,65 @@ export default defineComponent({
|
|
|
|
|
|
|
|
// 表单
|
|
// 表单
|
|
|
const formRef = ref();
|
|
const formRef = ref();
|
|
|
- const {formState, addOne, deleteOne} = handleFromState();
|
|
|
|
|
|
|
+ const { formState, addOne, deleteOne } = handleFromState();
|
|
|
const rules = {
|
|
const rules = {
|
|
|
- deliverygoodsname: [{required: true, message: '请输入现货品种名称', trigger: 'blur'}],
|
|
|
|
|
|
|
+ deliverygoodsname: [{ required: true, message: '请输入现货品种名称', trigger: 'blur' }],
|
|
|
// unitid: [{ required: true, message: '请选择单位', trigger: 'change' }],
|
|
// unitid: [{ required: true, message: '请选择单位', trigger: 'change' }],
|
|
|
- unitid: [{required: true, validator: validateUnit, trigger: 'change'}],
|
|
|
|
|
|
|
+ unitid: [{ required: true, validator: validateUnit, trigger: 'change' }],
|
|
|
gldwrstandards: {
|
|
gldwrstandards: {
|
|
|
- unitid: {required: true, validator: validateUnit, trigger: 'change'},
|
|
|
|
|
- wrstandardname: {required: true, message: '请输入品类', trigger: 'blur'},
|
|
|
|
|
- convertfactor: {required: true, message: '请输入标仓系数', trigger: 'blur'},
|
|
|
|
|
|
|
+ unitid: { required: true, validator: validateUnit, trigger: 'change' },
|
|
|
|
|
+ wrstandardname: { required: true, message: '请输入品类', trigger: 'blur' },
|
|
|
|
|
+ convertfactor: { required: true, message: '请输入标仓系数', trigger: 'blur' },
|
|
|
},
|
|
},
|
|
|
glddgfactoryItems: {
|
|
glddgfactoryItems: {
|
|
|
- dgfactoryitemvalue: {required: true, message: '请输入品牌', trigger: 'blur'},
|
|
|
|
|
|
|
+ dgfactoryitemvalue: { required: true, message: '请输入品牌', trigger: 'blur' },
|
|
|
},
|
|
},
|
|
|
wrsconvertdetails: {
|
|
wrsconvertdetails: {
|
|
|
- middlegoodsid: {required: true, validator: valideteWR, trigger: 'change'},
|
|
|
|
|
- convertratio: {required: true, message: '请输入套保系数', trigger: 'blur'},
|
|
|
|
|
|
|
+ middlegoodsid: { required: true, validator: valideteWR, trigger: 'change' },
|
|
|
|
|
+ convertratio: { required: true, message: '请输入套保系数', trigger: 'blur' },
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
function submit() {
|
|
function submit() {
|
|
|
- formRef.value
|
|
|
|
|
- .validate()
|
|
|
|
|
- .then(() => {
|
|
|
|
|
- const param = toRaw(formState);
|
|
|
|
|
- const unitid = param.unitid === undefined ? 0 : param.unitid
|
|
|
|
|
- const reqParam: DeliveryGoodsApplyReq = {
|
|
|
|
|
- deliverygoodsid: param.deliverygoodsid,
|
|
|
|
|
- unitid: unitid,
|
|
|
|
|
- deliverygoodsname: param.deliverygoodsname,
|
|
|
|
|
- deliverygoodscode: param.deliverygoodscode,
|
|
|
|
|
- type: 2,
|
|
|
|
|
- remark: param.remark,
|
|
|
|
|
- gldwrstandards: param.gldwrstandards.map(value => {
|
|
|
|
|
- const gldunitid = value.unitid === undefined ? 0 : value.unitid
|
|
|
|
|
- const convertfactors: any = value.convertfactor === null ? 0 : value.convertfactor
|
|
|
|
|
- return {
|
|
|
|
|
- wrstandardid: value.wrstandardid,
|
|
|
|
|
- wrstandardname: value.wrstandardname,
|
|
|
|
|
- unitid: gldunitid,
|
|
|
|
|
- convertfactor: (convertfactors as string) ? Number(convertfactors) : convertfactors
|
|
|
|
|
- }
|
|
|
|
|
- }),
|
|
|
|
|
- glddgfactoryItems: param.glddgfactoryItems,
|
|
|
|
|
- wrsconvertdetails: param.wrsconvertdetails.map(value => {
|
|
|
|
|
- const middlegoodsid = value.middlegoodsid === undefined ? 0 : value.middlegoodsid
|
|
|
|
|
- const convertratio: any = value.convertratio === null ? 0 : value.convertratio
|
|
|
|
|
- const wrsunitid = value.unitid === null ? 0 : value.unitid
|
|
|
|
|
- return {
|
|
|
|
|
- middlegoodsid: middlegoodsid,
|
|
|
|
|
- convertratio: convertratio ? Number(convertratio) : convertratio,
|
|
|
|
|
- unitid: wrsunitid
|
|
|
|
|
- }
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
- requestResultLoadingAndInfo(addDeliveryGoodsApply, reqParam, loading, ['修改现货品种成功', '修改现货品种失败:']).then(() => {
|
|
|
|
|
- cancel();
|
|
|
|
|
- context.emit('refresh');
|
|
|
|
|
- });
|
|
|
|
|
- })
|
|
|
|
|
- .catch((error: ValidateErrorEntity<FormState>) => {
|
|
|
|
|
- console.log('error', error);
|
|
|
|
|
|
|
+ validateAction<FormState>(formRef, formState).then((param) => {
|
|
|
|
|
+ const unitid = param.unitid === undefined ? 0 : param.unitid;
|
|
|
|
|
+ const reqParam: DeliveryGoodsApplyReq = {
|
|
|
|
|
+ deliverygoodsid: param.deliverygoodsid,
|
|
|
|
|
+ unitid: unitid,
|
|
|
|
|
+ deliverygoodsname: param.deliverygoodsname,
|
|
|
|
|
+ deliverygoodscode: param.deliverygoodscode,
|
|
|
|
|
+ type: 2,
|
|
|
|
|
+ remark: param.remark,
|
|
|
|
|
+ gldwrstandards: param.gldwrstandards.map((value) => {
|
|
|
|
|
+ const gldunitid = value.unitid === undefined ? 0 : value.unitid;
|
|
|
|
|
+ const convertfactors: any = value.convertfactor === null ? 0 : value.convertfactor;
|
|
|
|
|
+ return {
|
|
|
|
|
+ wrstandardid: value.wrstandardid,
|
|
|
|
|
+ wrstandardname: value.wrstandardname,
|
|
|
|
|
+ unitid: gldunitid,
|
|
|
|
|
+ convertfactor: (convertfactors as string) ? Number(convertfactors) : convertfactors,
|
|
|
|
|
+ };
|
|
|
|
|
+ }),
|
|
|
|
|
+ glddgfactoryItems: param.glddgfactoryItems,
|
|
|
|
|
+ wrsconvertdetails: param.wrsconvertdetails.map((value) => {
|
|
|
|
|
+ const middlegoodsid = value.middlegoodsid === undefined ? 0 : value.middlegoodsid;
|
|
|
|
|
+ const convertratio: any = value.convertratio === null ? 0 : value.convertratio;
|
|
|
|
|
+ const wrsunitid = value.unitid === null ? 0 : value.unitid;
|
|
|
|
|
+ return {
|
|
|
|
|
+ middlegoodsid: middlegoodsid,
|
|
|
|
|
+ convertratio: convertratio ? Number(convertratio) : convertratio,
|
|
|
|
|
+ unitid: wrsunitid,
|
|
|
|
|
+ };
|
|
|
|
|
+ }),
|
|
|
|
|
+ };
|
|
|
|
|
+ requestResultLoadingAndInfo(addDeliveryGoodsApply, reqParam, loading, ['修改现货品种成功', '修改现货品种失败:']).then(() => {
|
|
|
|
|
+ cancel();
|
|
|
|
|
+ context.emit('refresh');
|
|
|
});
|
|
});
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- const {goodsGroup, getGoodsGroup} = handleGoodsGroup();
|
|
|
|
|
|
|
+ const { goodsGroup, getGoodsGroup } = handleGoodsGroup();
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 切换套保品种时候,获取对应的单位
|
|
* 切换套保品种时候,获取对应的单位
|
|
@@ -413,29 +408,29 @@ export default defineComponent({
|
|
|
|
|
|
|
|
watchEffect(() => {
|
|
watchEffect(() => {
|
|
|
if (props.selctedDeliveryGoods.data.deliverygoodsname) {
|
|
if (props.selctedDeliveryGoods.data.deliverygoodsname) {
|
|
|
- const {data, gblist, gmlist, mgList} = props.selctedDeliveryGoods;
|
|
|
|
|
|
|
+ const { data, gblist, gmlist, mgList } = props.selctedDeliveryGoods;
|
|
|
mergeTwoObj(formState, props.selctedDeliveryGoods);
|
|
mergeTwoObj(formState, props.selctedDeliveryGoods);
|
|
|
mergeTwoObj(formState, data);
|
|
mergeTwoObj(formState, data);
|
|
|
// 单位
|
|
// 单位
|
|
|
formState.unitid = data.agreeunit;
|
|
formState.unitid = data.agreeunit;
|
|
|
// 品类
|
|
// 品类
|
|
|
formState.gldwrstandards = gmlist.map((e) => {
|
|
formState.gldwrstandards = gmlist.map((e) => {
|
|
|
- const {wrstandardid, wrstandardname, convertfactor, unitid} = e;
|
|
|
|
|
- return {wrstandardid, wrstandardname, convertfactor: convertfactor.toString(), unitid};
|
|
|
|
|
|
|
+ const { wrstandardid, wrstandardname, convertfactor, unitid } = e;
|
|
|
|
|
+ return { wrstandardid, wrstandardname, convertfactor: convertfactor.toString(), unitid };
|
|
|
});
|
|
});
|
|
|
// 品牌
|
|
// 品牌
|
|
|
formState.glddgfactoryItems = gblist.map((e) => {
|
|
formState.glddgfactoryItems = gblist.map((e) => {
|
|
|
- const {brandid, brandname} = e;
|
|
|
|
|
- return {dgfactoryitemid: brandid, dgfactoryitemvalue: brandname};
|
|
|
|
|
|
|
+ const { brandid, brandname } = e;
|
|
|
|
|
+ return { dgfactoryitemid: brandid, dgfactoryitemvalue: brandname };
|
|
|
});
|
|
});
|
|
|
// 套保信息
|
|
// 套保信息
|
|
|
formState.wrsconvertdetails = mgList.map((e) => {
|
|
formState.wrsconvertdetails = mgList.map((e) => {
|
|
|
- const {goodsgroupid, goodsunitid, enumdicname} = e.mg;
|
|
|
|
|
|
|
+ const { goodsgroupid, goodsunitid, enumdicname } = e.mg;
|
|
|
return {
|
|
return {
|
|
|
middlegoodsid: goodsgroupid,
|
|
middlegoodsid: goodsgroupid,
|
|
|
unitid: goodsunitid,
|
|
unitid: goodsunitid,
|
|
|
unitidName: enumdicname,
|
|
unitidName: enumdicname,
|
|
|
- convertratio: e.convertratio.toString()
|
|
|
|
|
|
|
+ convertratio: e.convertratio.toString(),
|
|
|
};
|
|
};
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|