|
@@ -33,7 +33,7 @@
|
|
|
v-model="form.sponsorId"
|
|
|
placeholder="主办方"
|
|
|
clearable
|
|
|
- style="width: 240px"
|
|
|
+ style="width: 100%"
|
|
|
@change="changePerform"
|
|
|
>
|
|
|
<el-option
|
|
@@ -44,12 +44,29 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="票务选择" prop="ticketIdList">
|
|
|
+ <el-select
|
|
|
+ v-model="form.ticketIdList"
|
|
|
+ placeholder="票务选择"
|
|
|
+ clearable
|
|
|
+ multiple
|
|
|
+ style="width: 100%"
|
|
|
+ @change="changePerform"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in ticketList"
|
|
|
+ :key="dict.id"
|
|
|
+ :label="dict.goodsName"
|
|
|
+ :value="dict.id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="是否启用" prop="status">
|
|
|
<el-select
|
|
|
v-model="form.status"
|
|
|
placeholder="状态"
|
|
|
clearable
|
|
|
- style="width: 240px"
|
|
|
+ style="width: 100%"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="dict in statusList"
|
|
@@ -74,8 +91,10 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="演出时长">
|
|
|
<el-input
|
|
|
- v-model="form.showDuration"
|
|
|
placeholder="演出时长"
|
|
|
+ type="number"
|
|
|
+ v-model.number="form.showDuration"
|
|
|
+ @change="changePriceAmount('showDuration')"
|
|
|
clearable
|
|
|
style="width: 240px;margin-right: 10px"
|
|
|
/>
|
|
@@ -83,8 +102,10 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="演出人数">
|
|
|
<el-input
|
|
|
+ type="number"
|
|
|
v-model="form.peopleNum"
|
|
|
placeholder="演出人数"
|
|
|
+ @change="changePriceAmount('peopleNum')"
|
|
|
clearable
|
|
|
style="width: 240px;margin-right: 10px"
|
|
|
/>
|
|
@@ -93,7 +114,7 @@
|
|
|
<el-form-item label="演员信息">
|
|
|
<el-button type="text" @click="performerOpen">添加</el-button>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="宣传图">
|
|
|
+ <el-form-item label="剧目海报">
|
|
|
<el-upload
|
|
|
ref="upload"
|
|
|
class="avatar-uploader"
|
|
@@ -118,7 +139,7 @@
|
|
|
<div class="el-upload__tip" slot="tip">只能上传.jpg或.png格式</div>
|
|
|
</el-upload>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="剧目海报">
|
|
|
+ <el-form-item label="宣传图">
|
|
|
<el-upload
|
|
|
ref="upload"
|
|
|
:action="uploadObj.url"
|
|
@@ -253,6 +274,7 @@
|
|
|
<script>
|
|
|
// import { updateNoticeMgr } from "@/api/system/noticeMgr";
|
|
|
import { saveAndEdit, getSelectById } from '@/api/programmeMr/programmeMr'
|
|
|
+import { ticketPageList } from '@/api/ticketMr/ticketMr'
|
|
|
import Editor from "@/components/Editor";
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
import { pageList } from '@/api/performMr/performMr'
|
|
@@ -292,11 +314,13 @@ export default {
|
|
|
{id: 1, name: '是', value: 1},
|
|
|
{id: 2, name: '否', value: 2},
|
|
|
],
|
|
|
- performList: []
|
|
|
+ performList: [],
|
|
|
+ ticketList: []
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- this.getList()
|
|
|
+ this.getList();
|
|
|
+ this.ticketPageListApi();
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询主办方列表 */
|
|
@@ -307,6 +331,14 @@ export default {
|
|
|
}
|
|
|
);
|
|
|
},
|
|
|
+ /** 查询票务列表 */
|
|
|
+ ticketPageListApi() {
|
|
|
+ ticketPageList({pageNum: 1, pageSize: 100, goodsType: 2, classifyId: 1, status: 1})
|
|
|
+ .then(response => {
|
|
|
+ this.ticketList = response.data.rows;
|
|
|
+ }
|
|
|
+ );
|
|
|
+ },
|
|
|
/** 主办方选择事件 */
|
|
|
changePerform(val) {
|
|
|
this.performList.forEach(item => {
|
|
@@ -315,6 +347,14 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ /** 价格输入事件 */
|
|
|
+ changePriceAmount(key) {
|
|
|
+ if(this.form[key] * 1 < 0){
|
|
|
+ this.$message.error("输入需大于或等于0!");
|
|
|
+ this.$set(this.form, key, '');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ },
|
|
|
/**
|
|
|
* 打开弹框
|
|
|
* @date 2023-11-22
|
|
@@ -432,6 +472,7 @@ export default {
|
|
|
// this.form.mainImg = res?.data?.url;
|
|
|
this.$set(this.form, 'showImg', res?.data?.url)
|
|
|
}
|
|
|
+ console.log(this.form.photoList)
|
|
|
},
|
|
|
/**
|
|
|
* 剧目海报上传成功
|
|
@@ -443,12 +484,14 @@ export default {
|
|
|
if (res.code === 200) {
|
|
|
let photo = {
|
|
|
imageUrl: res?.data?.url,
|
|
|
+ url: res?.data?.url,
|
|
|
photoType: '2'
|
|
|
}
|
|
|
if(!this.form.photoList){
|
|
|
this.form.photoList = []
|
|
|
}
|
|
|
- this.form.photoList.push(photo);
|
|
|
+ // this.form.photoList.push(photo);
|
|
|
+ this.$set(this.form.photoList, this.form.photoList.length, photo);
|
|
|
}
|
|
|
},
|
|
|
handleRemove(file, fileList) {
|
|
@@ -457,12 +500,14 @@ export default {
|
|
|
let res = item.response.data;
|
|
|
let photo = {
|
|
|
imageUrl: res?.data?.url,
|
|
|
+ url: res?.data?.url,
|
|
|
photoType: '2'
|
|
|
}
|
|
|
if(!this.form.photoList){
|
|
|
this.form.photoList = []
|
|
|
}
|
|
|
- this.form.photoList.push(photo);
|
|
|
+ // this.form.photoList.push(photo);
|
|
|
+ this.$set(this.form.photoList, this.form.photoList.length, photo);
|
|
|
}
|
|
|
})
|
|
|
},
|