|
|
|
@ -85,6 +85,40 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-slot:year >
|
|
|
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
|
|
|
<div class="xy-table-item-label">年份 :</div>
|
|
|
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
|
|
type="year"
|
|
|
|
|
|
|
|
v-model="form.year"
|
|
|
|
|
|
|
|
placeholder="所属年份"
|
|
|
|
|
|
|
|
style="width: 300px"
|
|
|
|
|
|
|
|
value-format="yyyy"
|
|
|
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template v-slot:is_face_small>
|
|
|
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
|
|
|
专门面向中小企业采购
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
|
|
|
<el-switch v-model="form.is_face_small" active-text="是" inactive-text="否" :active-value="1" :inactive-value="0"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-slot:is_conserve>
|
|
|
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
|
|
|
<div class="xy-table-item-label">采购节能产品、环境标志产品
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
|
|
|
<el-switch v-model="form.is_conserve" active-text="是" inactive-text="否" :active-value="1" :inactive-value="0"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<template v-slot:public_plane_date v-if="role == 0">
|
|
|
|
<template v-slot:public_plane_date v-if="role == 0">
|
|
|
|
<div class="xy-table-item">
|
|
|
|
<div class="xy-table-item">
|
|
|
|
<div class="xy-table-item-label">采购意向公开计划时间 :</div>
|
|
|
|
<div class="xy-table-item-label">采购意向公开计划时间 :</div>
|
|
|
|
@ -343,6 +377,9 @@ export default {
|
|
|
|
department_id: this.$store.state.user.info?.department_id,
|
|
|
|
department_id: this.$store.state.user.info?.department_id,
|
|
|
|
content: "",
|
|
|
|
content: "",
|
|
|
|
plan_money: "",
|
|
|
|
plan_money: "",
|
|
|
|
|
|
|
|
year:"",
|
|
|
|
|
|
|
|
is_face_small:0,
|
|
|
|
|
|
|
|
is_conserve:0,
|
|
|
|
public_plane_date: "",
|
|
|
|
public_plane_date: "",
|
|
|
|
public_act_date: "",
|
|
|
|
public_act_date: "",
|
|
|
|
invite_plane_date: "",
|
|
|
|
invite_plane_date: "",
|
|
|
|
@ -413,7 +450,9 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
async getDetail() {
|
|
|
|
async getDetail() {
|
|
|
|
const res = await show({ id: this.id });
|
|
|
|
const res = await show({ id: this.id });
|
|
|
|
|
|
|
|
|
|
|
|
this.$integrateData(this.form, res);
|
|
|
|
this.$integrateData(this.form, res);
|
|
|
|
|
|
|
|
this.form.year = res.year+"";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
submit() {
|
|
|
|
submit() {
|
|
|
|
|