|
@ -69,14 +69,14 @@ |
|
|
prop="actQuota"> |
|
|
prop="actQuota"> |
|
|
<template> |
|
|
<template> |
|
|
<el-radio v-model="dataForm.actQuotaCategory" |
|
|
<el-radio v-model="dataForm.actQuotaCategory" |
|
|
label="1">固定名额</el-radio>   |
|
|
:label="1">固定名额</el-radio>   |
|
|
<el-input-number type="number" |
|
|
<el-input-number type="number" |
|
|
:min="1" |
|
|
:min="1" |
|
|
v-model="dataForm.actQuota" |
|
|
v-model="dataForm.actQuota" |
|
|
placeholder="固定名额" |
|
|
placeholder="固定名额" |
|
|
style="width:150px"></el-input-number>  人   |
|
|
style="width:150px"></el-input-number>  人   |
|
|
<el-radio v-model="dataForm.actQuotaCategory" |
|
|
<el-radio v-model="dataForm.actQuotaCategory" |
|
|
label="0">不限名额</el-radio> |
|
|
:label="0">不限名额</el-radio> |
|
|
</template> |
|
|
</template> |
|
|
<div> |
|
|
<div> |
|
|
<font color="gray">报名未审核人员:</font> |
|
|
<font color="gray">报名未审核人员:</font> |
|
@ -290,7 +290,7 @@ export default { |
|
|
headPic: '', |
|
|
headPic: '', |
|
|
signupStartTime: '', |
|
|
signupStartTime: '', |
|
|
signupEndTime: '', |
|
|
signupEndTime: '', |
|
|
actQuotaCategory: '1', |
|
|
actQuotaCategory: 1, |
|
|
actStartTime: '', |
|
|
actStartTime: '', |
|
|
actEndTime: '', |
|
|
actEndTime: '', |
|
|
actAddress: '', |
|
|
actAddress: '', |
|
@ -369,6 +369,10 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
mounted () { |
|
|
|
|
|
this.dataForm.id = this.$route.query.id |
|
|
|
|
|
this.init() |
|
|
|
|
|
}, |
|
|
created () { |
|
|
created () { |
|
|
this.$http |
|
|
this.$http |
|
|
.get(`/sys/user/deptOptions/getByLoginUser`) |
|
|
.get(`/sys/user/deptOptions/getByLoginUser`) |
|
@ -592,6 +596,7 @@ export default { |
|
|
...this.dataForm, |
|
|
...this.dataForm, |
|
|
...res.data |
|
|
...res.data |
|
|
} |
|
|
} |
|
|
|
|
|
this.quillEditor.root.innerHTML = this.dataForm.actContent |
|
|
}).catch(() => { }) |
|
|
}).catch(() => { }) |
|
|
}, |
|
|
}, |
|
|
// 表单提交 |
|
|
// 表单提交 |
|
|