|
|
|
|
@ -1,3 +1,4 @@
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!-- 编辑-->
|
|
|
|
|
@ -24,6 +25,19 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:is_occupy>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
是否占用名额
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<div style="width: 300px;" >
|
|
|
|
|
<el-radio v-model="detail.is_occupy" :label="1">是</el-radio>
|
|
|
|
|
<el-radio v-model="detail.is_occupy" :label="0">否</el-radio>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:rate>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
@ -101,7 +115,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template v-slot:activity_list_id>
|
|
|
|
|
<div class="xy-table-item" >
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>相关项目
|
|
|
|
|
</div>
|
|
|
|
|
@ -146,7 +160,6 @@
|
|
|
|
|
data() {
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
sysInfo: null,
|
|
|
|
|
isShow: false,
|
|
|
|
|
id: "",
|
|
|
|
|
type: "add",
|
|
|
|
|
@ -161,8 +174,9 @@
|
|
|
|
|
total: 0,
|
|
|
|
|
has_total: 0,
|
|
|
|
|
image_id_url: "",
|
|
|
|
|
sort: 1,
|
|
|
|
|
sort:1,
|
|
|
|
|
money: 0,
|
|
|
|
|
is_occupy: 0
|
|
|
|
|
},
|
|
|
|
|
action: process.env.VUE_APP_UPLOAD_API,
|
|
|
|
|
rules: {
|
|
|
|
|
@ -187,8 +201,8 @@
|
|
|
|
|
} else {
|
|
|
|
|
this.id = ''
|
|
|
|
|
this.type = '';
|
|
|
|
|
this.detail.image_id = '';
|
|
|
|
|
this.detail.image_id_url = '';
|
|
|
|
|
this.detail.image_id='';
|
|
|
|
|
this.detail.image_id_url='';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$refs['addActivity'].reset()
|
|
|
|
|
|