|
@@ -1,6 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<!-- 现货合同审核-->
|
|
<!-- 现货合同审核-->
|
|
|
- <a-modal class="add-custom custom-detail" title="现货合同审核" v-model:visible="visible" centered :maskClosable="false" @cancel="cancel" width="890px">
|
|
|
|
|
|
|
+ <a-modal class="add-custom custom-detail" title="现货合同审核" v-model:visible="visible" centered :maskClosable="false"
|
|
|
|
|
+ @cancel="cancel" width="890px">
|
|
|
<template #footer>
|
|
<template #footer>
|
|
|
<a-button key="submit" class="cancelBtn" :loading="loading" :disabled="loading" @click="refuse">审核拒绝</a-button>
|
|
<a-button key="submit" class="cancelBtn" :loading="loading" :disabled="loading" @click="refuse">审核拒绝</a-button>
|
|
|
<a-button key="submit" type="primary" :loading="loading" :disabled="loading" @click="submit">审核通过</a-button>
|
|
<a-button key="submit" type="primary" :loading="loading" :disabled="loading" @click="submit">审核通过</a-button>
|
|
@@ -17,8 +18,11 @@
|
|
|
</a-col>
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
|
<a-form-item label="业务员" name="SaleUserID">
|
|
<a-form-item label="业务员" name="SaleUserID">
|
|
|
- <a-select class="inlineFormSelect" v-model:value="formState.SaleUserID" style="width: 200px" placeholder="请选择业务员">
|
|
|
|
|
- <a-select-option v-for="item in businesserList" :key="item.userid" :value="item.userid"> {{ item.accountname }}-{{ item.logincode }} </a-select-option>
|
|
|
|
|
|
|
+ <a-select class="inlineFormSelect" v-model:value="formState.SaleUserID" style="width: 200px"
|
|
|
|
|
+ placeholder="请选择业务员">
|
|
|
|
|
+ <a-select-option v-for="item in businesserList" :key="item.userid" :value="item.userid"> {{
|
|
|
|
|
+ item.accountname
|
|
|
|
|
+ }}-{{ item.logincode }} </a-select-option>
|
|
|
</a-select>
|
|
</a-select>
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-col>
|
|
</a-col>
|
|
@@ -26,14 +30,18 @@
|
|
|
<a-row :gutter="24">
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
|
<a-form-item label="跟单员" name="MerUserID">
|
|
<a-form-item label="跟单员" name="MerUserID">
|
|
|
- <a-select class="inlineFormSelect" v-model:value="formState.MerUserID" style="width: 200px" placeholder="请选择跟单员">
|
|
|
|
|
- <a-select-option v-for="item in merchandiserList" :key="item.userid" :value="item.userid"> {{ item.accountname }}-{{ item.logincode }} </a-select-option>
|
|
|
|
|
|
|
+ <a-select class="inlineFormSelect" v-model:value="formState.MerUserID" style="width: 200px"
|
|
|
|
|
+ placeholder="请选择跟单员">
|
|
|
|
|
+ <a-select-option v-for="item in merchandiserList" :key="item.userid" :value="item.userid"> {{
|
|
|
|
|
+ item.accountname
|
|
|
|
|
+ }}-{{ item.logincode }} </a-select-option>
|
|
|
</a-select>
|
|
</a-select>
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-col>
|
|
</a-col>
|
|
|
- <a-col :span="12">
|
|
|
|
|
|
|
+ <a-col :span="12" v-if="false">
|
|
|
<a-form-item label="交易用户" name="TradeUserID">
|
|
<a-form-item label="交易用户" name="TradeUserID">
|
|
|
- <a-select class="inlineFormSelect" style="width: 200px" v-model:value="formState.TradeUserID" placeholder="请选择交易用户">
|
|
|
|
|
|
|
+ <a-select class="inlineFormSelect" style="width: 200px" v-model:value="formState.TradeUserID"
|
|
|
|
|
+ placeholder="请选择交易用户">
|
|
|
<a-select-option v-for="item in traderList" :key="item.roleid" :value="item.roleid">
|
|
<a-select-option v-for="item in traderList" :key="item.roleid" :value="item.roleid">
|
|
|
{{ item.rolename }}
|
|
{{ item.rolename }}
|
|
|
</a-select-option>
|
|
</a-select-option>
|
|
@@ -47,7 +55,8 @@
|
|
|
<a-row :gutter="24">
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="24">
|
|
<a-col :span="24">
|
|
|
<a-form-item label="审核意见" name="Remark">
|
|
<a-form-item label="审核意见" name="Remark">
|
|
|
- <a-input class="dialogInput" v-model:value="formState.Remark" style="width: 620px" placeholder="请输入审核意见" />
|
|
|
|
|
|
|
+ <a-input class="dialogInput" v-model:value="formState.Remark" style="width: 620px"
|
|
|
|
|
+ placeholder="请输入审核意见" />
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-col>
|
|
</a-col>
|
|
|
</a-row>
|
|
</a-row>
|
|
@@ -216,10 +225,10 @@ export default defineComponent({
|
|
|
|
|
|
|
|
<style lang="less">
|
|
<style lang="less">
|
|
|
.add-custom custom-detail {
|
|
.add-custom custom-detail {
|
|
|
- .upload {
|
|
|
|
|
- .look {
|
|
|
|
|
- margin-left: 0;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ .upload {
|
|
|
|
|
+ .look {
|
|
|
|
|
+ margin-left: 0;
|
|
|
}
|
|
}
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|