master
lion 7 months ago
parent 1562a858a2
commit 8b290601d9

@ -120,7 +120,7 @@
</div> </div>
<el-card v-show="step === 2"> <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 <xy-table
:list="planSelections" :list="planSelections"
size="mini" size="mini"
@ -441,9 +441,23 @@
:inactive-value="0" :inactive-value="0"
/> />
</el-form-item> </el-form-item>
</template> </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> </el-form>
</template> </template>
<template v-if="myPurchaseType === 2"> <template v-if="myPurchaseType === 2">
<el-form <el-form
ref="form" ref="form"
@ -475,7 +489,7 @@
style="width: 100%" style="width: 100%"
/> />
</el-form-item> </el-form-item>
<el-form-item prop="common_type" label="申购人"> <el-form-item prop="apply_user_id" label="申购人">
<el-select <el-select
placeholder="请填写申购人" placeholder="请填写申购人"
v-model="form.apply_user_id" v-model="form.apply_user_id"
@ -1013,6 +1027,7 @@ export default {
plan_price: 0, plan_price: 0,
name: "", name: "",
apply_user_id:'', apply_user_id:'',
pay_user_id:'',
contract_plan_links: [], contract_plan_links: [],
is_simple: 0, is_simple: 0,
supply: "", supply: "",

@ -417,6 +417,18 @@
width="180" width="180"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<!-- <Button
class="slot-btns-item"
size="small"
type="primary"
@click="
$refs['paymentRegistration'].getContract(scope.row),
($refs[
'paymentRegistration'
].isShowPaymentRegistration = true)
"
>付款登记
</Button> -->
<div v-if="isOpt"> <div v-if="isOpt">
<template v-if="scope.row.FLOWSTATUS['caigou'].isEnabled()"> <template v-if="scope.row.FLOWSTATUS['caigou'].isEnabled()">
<Button <Button

Loading…
Cancel
Save