|
|
|
|
@ -120,7 +120,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-card v-show="step === 2">
|
|
|
|
|
<el-popover placement="right-start" width="660" trigger="click" v-if="myPurchaseType === 1">
|
|
|
|
|
<el-popover placement="right-start" width="660" trigger="click" v-if="myPurchaseType === 1 && !isWeixiu">
|
|
|
|
|
<xy-table
|
|
|
|
|
:list="planSelections"
|
|
|
|
|
size="mini"
|
|
|
|
|
@ -441,9 +441,23 @@
|
|
|
|
|
:inactive-value="0"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
<el-form-item prop="pay_user_id" label="发起支付人" v-if="isWeixiu">
|
|
|
|
|
<el-select
|
|
|
|
|
placeholder="请填写发起支付人"
|
|
|
|
|
v-model="form.pay_user_id"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
filterable
|
|
|
|
|
default-first-option
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in commonPurchasePeople" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template v-if="myPurchaseType === 2">
|
|
|
|
|
<el-form
|
|
|
|
|
ref="form"
|
|
|
|
|
@ -475,7 +489,7 @@
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item prop="common_type" label="申购人">
|
|
|
|
|
<el-form-item prop="apply_user_id" label="申购人">
|
|
|
|
|
<el-select
|
|
|
|
|
placeholder="请填写申购人"
|
|
|
|
|
v-model="form.apply_user_id"
|
|
|
|
|
@ -1013,6 +1027,7 @@ export default {
|
|
|
|
|
plan_price: 0,
|
|
|
|
|
name: "",
|
|
|
|
|
apply_user_id:'',
|
|
|
|
|
pay_user_id:'',
|
|
|
|
|
contract_plan_links: [],
|
|
|
|
|
is_simple: 0,
|
|
|
|
|
supply: "",
|
|
|
|
|
|