|
@@ -128,23 +128,31 @@
|
|
|
<template slot="append">元/人</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="预约场次:" prop="performDate">
|
|
|
+ <el-form-item label="选择日期" prop="performDate">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="form.performDate"
|
|
|
+ type="date"
|
|
|
+ @change="performDateEven"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预约场次:" prop="performTimeId">
|
|
|
<el-select
|
|
|
- v-model="form.seatTypeId"
|
|
|
- placeholder="座位类型"
|
|
|
+ v-model="form.performTimeId"
|
|
|
+ placeholder="预约场次"
|
|
|
clearable
|
|
|
- @change="sessionChangeEven"
|
|
|
style="width: 100%;"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="dict in sessionList"
|
|
|
+ v-for="dict in performTimeList"
|
|
|
:key="dict.id"
|
|
|
- :label="dict.name"
|
|
|
+ :label="dict.timeSnapshot + '场次: ' + dict.performDate + ' 开始时间' + dict.performTimeStart + ', 结束时间' + dict.performTimeEnd"
|
|
|
:value="dict.id"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="观影人员:" prop="performDate">
|
|
|
+ <el-form-item label="观影人员:" prop="viewerList">
|
|
|
<el-upload
|
|
|
class="upload-demo"
|
|
|
:action="uploadObj.url"
|
|
@@ -186,6 +194,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { saveAndEdit, getSelectById, uploadExcel } from "@/api/team/applicationMr";
|
|
|
+import { pagePerformTimeList } from '@/api/schedulingMr/schedulingMr'
|
|
|
import Editor from "@/components/Editor";
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
import { goodsPageList } from '@/api/programmeMr/programmeMr'
|
|
@@ -224,6 +233,8 @@ export default {
|
|
|
seatTypeId: [{ required: true, message: "请选择座位类型", trigger: "blur" }],
|
|
|
price: [{ required: true, message: "请输入团购单价", trigger: "blur" }],
|
|
|
teamPersonNum: [{ required: true, message: "请输入人数", trigger: "blur" }],
|
|
|
+ performTimeId: [{ required: true, message: "请选择预约场次", trigger: "blur" }],
|
|
|
+ viewerList: [{ required: true, message: "请上传观影人员excel", trigger: "blur" }],
|
|
|
},
|
|
|
uploadObj: {
|
|
|
url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
|
|
@@ -235,7 +246,8 @@ export default {
|
|
|
merchantList: [],
|
|
|
theatreList: [],
|
|
|
teamList: [],
|
|
|
- sssionList: []
|
|
|
+ sessionList: [],
|
|
|
+ performTimeList: []
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -292,12 +304,6 @@ export default {
|
|
|
pageList(this.addDateRange({pageNum: 1, pageSize: 100}))
|
|
|
.then(response => {
|
|
|
this.theatreList = response.data.rows;
|
|
|
- this.theatreList.forEach(item => {
|
|
|
- if(name == item.name){
|
|
|
- this.$set(this.form, 'venueId', item.id)
|
|
|
- }
|
|
|
- })
|
|
|
- this.merchantPageList(this.form.venueId)
|
|
|
});
|
|
|
},
|
|
|
/** 团队选择 */
|
|
@@ -317,14 +323,27 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
this.$set(this.form, 'auditoriumId', '')
|
|
|
+ this.$set(this.form, 'performId', '')
|
|
|
+ this.$set(this.form, 'goodsId', '')
|
|
|
+ this.$set(this.form, 'seatTypeId', '')
|
|
|
+ this.$set(this.form, 'price', '')
|
|
|
+ this.$set(this.form, 'performDate', '');
|
|
|
+ this.$set(this.form, 'performTimeId', '');
|
|
|
},
|
|
|
/** 演出厅选择 */
|
|
|
auditoriumChange(id) {
|
|
|
+ this.$set(this.form, 'performDate', '');
|
|
|
+ this.$set(this.form, 'performTimeId', '');
|
|
|
+ this.$set(this.form, 'performId', '');
|
|
|
+ this.$set(this.form, 'goodsId', '')
|
|
|
+ this.$set(this.form, 'seatTypeId', '')
|
|
|
+ this.$set(this.form, 'price', '')
|
|
|
this.merchantList.forEach(item => {
|
|
|
if(id == item.id){
|
|
|
this.$set(this.form, 'auditoriumName', item.name)
|
|
|
}
|
|
|
})
|
|
|
+ this.getPerformTimeList();
|
|
|
},
|
|
|
/** 演出厅列表查询 */
|
|
|
merchantPageList(id) {
|
|
@@ -356,16 +375,28 @@ export default {
|
|
|
},
|
|
|
/** 座位类型列表 */
|
|
|
getSeatTypeList(obj) {
|
|
|
- seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
|
|
|
+ seatPricePageList({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId})
|
|
|
.then(response => {
|
|
|
- this.seatList = response.data.rows;
|
|
|
+ let ticketList = []
|
|
|
+ response.data.rows.forEach(item => {
|
|
|
+ if(ticketList.indexOf(item.seatTypeId) == -1){
|
|
|
+ this.seatList.push(item);
|
|
|
+ ticketList.push(item.seatTypeId);
|
|
|
+ }
|
|
|
+ })
|
|
|
});
|
|
|
},
|
|
|
/** 预约场次列表 */
|
|
|
- getSessionList(obj) {
|
|
|
- seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
|
|
|
+ getPerformTimeList() {
|
|
|
+ if(this.form.performDate && this.form.performDate == '') {
|
|
|
+ this.$message.error("请选择日期!");
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ pagePerformTimeList(this.addDateRange(
|
|
|
+ {pageNum: 1, pageSize: 100, performDate: this.form.performDate, performId: this.form.performId, auditoriumId: this.form.auditoriumId, status: 1}
|
|
|
+ ))
|
|
|
.then(response => {
|
|
|
- this.sessionList = response.data.rows;
|
|
|
+ this.performTimeList = response.data.rows;
|
|
|
});
|
|
|
},
|
|
|
/** 价格输入事件 */
|
|
@@ -375,32 +406,33 @@ export default {
|
|
|
this.$set(this.form, key, '');
|
|
|
return false
|
|
|
}
|
|
|
- },
|
|
|
- /** 预约场次改变事件 */
|
|
|
- sessionChangeEven(val) {
|
|
|
-
|
|
|
},
|
|
|
// 剧目改变事件
|
|
|
performChangeEven(val) {
|
|
|
this.seatList = [];
|
|
|
this.ticketList = [];
|
|
|
- this.$set(this.form, 'originalSalePrice', '')
|
|
|
+ this.$set(this.form, 'performDate', '');
|
|
|
+ this.$set(this.form, 'performTimeId', '');
|
|
|
+ this.$set(this.form, 'goodsId', '');
|
|
|
+ this.$set(this.form, 'seatTypeId', '');
|
|
|
+ this.$set(this.form, 'price', '')
|
|
|
this.goodsList.forEach(item => {
|
|
|
if(item.id == val){
|
|
|
this.$set(this.form, 'performName', item.name)
|
|
|
}
|
|
|
})
|
|
|
this.ticketListApi(val);
|
|
|
+ this.getPerformTimeList()
|
|
|
},
|
|
|
// 票务改变事件
|
|
|
goodsChangeEven(id) {
|
|
|
this.seatList = [];
|
|
|
this.ticketList.forEach(item => {
|
|
|
- if(item.id == val){
|
|
|
+ if(item.id == id){
|
|
|
this.$set(this.form, 'goodsName', item.goodsName)
|
|
|
}
|
|
|
})
|
|
|
- this.$set(this.form, 'originalSalePrice', '');
|
|
|
+ this.$set(this.form, 'price', '');
|
|
|
this.$set(this.form, 'seatTypeId', '');
|
|
|
|
|
|
let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
|
|
@@ -408,30 +440,17 @@ export default {
|
|
|
},
|
|
|
// 座位类型改变事件
|
|
|
seatChangeEven(val) {
|
|
|
- this.ticketList.forEach(item => {
|
|
|
- if(item.seatTypeId == val){
|
|
|
- this.$set(this.form, 'originalSalePrice', item.priceAmount);
|
|
|
- }
|
|
|
- })
|
|
|
this.seatList.forEach(item =>{
|
|
|
if(item.seatTypeId == val){
|
|
|
+ this.$set(this.form, 'price', item.priceAmount);
|
|
|
this.$set(this.form, 'seatTypeName', item.seatTypeName);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- // 座位类型名称
|
|
|
- seatTypeNameEven(val) {
|
|
|
- let seatTypeName = '';
|
|
|
- this.seatList.forEach(item =>{
|
|
|
- if(item.seatTypeId == val){
|
|
|
- seatTypeName = item.seatTypeName;
|
|
|
- }
|
|
|
- })
|
|
|
- seatTypeName
|
|
|
- },
|
|
|
// 预约时间
|
|
|
- performDateEven(val) {
|
|
|
-
|
|
|
+ performDateEven() {
|
|
|
+ this.$set(this.form, 'performTimeId', '')
|
|
|
+ this.getPerformTimeList();
|
|
|
},
|
|
|
/**
|
|
|
* 保存
|
|
@@ -463,12 +482,24 @@ export default {
|
|
|
*/
|
|
|
reset() {
|
|
|
this.$set(this.form, 'id', '');
|
|
|
- this.$set(this.form, 'goodsId', '');
|
|
|
- this.$set(this.form, 'seatTypeId', '');
|
|
|
+ this.$set(this.form, 'teamId', '');
|
|
|
+ this.$set(this.form, 'teamName', '');
|
|
|
+ this.$set(this.form, 'theatreId', '');
|
|
|
+ this.$set(this.form, 'theatreName', '');
|
|
|
+ this.$set(this.form, 'auditoriumId', '');
|
|
|
+ this.$set(this.form, 'auditoriumName', '');
|
|
|
+
|
|
|
this.$set(this.form, 'performId', '');
|
|
|
- this.$set(this.form, 'originalSalePrice', '');
|
|
|
- this.$set(this.form, 'salePrice', '');
|
|
|
- this.$set(this.form, 'brokeragePrice', '');
|
|
|
+ this.$set(this.form, 'performName', '');
|
|
|
+ this.$set(this.form, 'seatTypeId', '');
|
|
|
+ this.$set(this.form, 'seatTypeName', '');
|
|
|
+ this.$set(this.form, 'goodsId', '');
|
|
|
+ this.$set(this.form, 'goodsName', '');
|
|
|
+
|
|
|
+ this.$set(this.form, 'performTimeId', '');
|
|
|
+ this.$set(this.form, 'performDate', '');
|
|
|
+ this.$set(this.form, 'price', '');
|
|
|
+
|
|
|
this.$set(this.form, 'viewerList', []);
|
|
|
},
|
|
|
/**
|
|
@@ -480,18 +511,6 @@ export default {
|
|
|
this.reset();
|
|
|
this.open = false;
|
|
|
},
|
|
|
- /**
|
|
|
- * 上传成功
|
|
|
- * @date 2023-11-22
|
|
|
- * @param {any} res
|
|
|
- * @returns {any}
|
|
|
- */
|
|
|
- handleAvatarSuccess(res) {
|
|
|
- if (res.code === 200) {
|
|
|
- // this.form.mainImg = res?.data?.url;
|
|
|
- this.$set(this.form, 'mainImg', res?.data?.url)
|
|
|
- }
|
|
|
- },
|
|
|
/**
|
|
|
* 上传文件之前之前
|
|
|
* @date 2023-11-22
|
|
@@ -499,20 +518,16 @@ export default {
|
|
|
* @returns {any}
|
|
|
*/
|
|
|
beforeAvatarUpload(file) {
|
|
|
- const isJPG = file.type === "image/jpeg" || "image/png";
|
|
|
- if (!isJPG) {
|
|
|
- this.$message.error("上传头像图片只能是jpg或png格式!");
|
|
|
- }
|
|
|
- this.uploadExcelApi(file.raw)
|
|
|
- return isJPG;
|
|
|
+ this.uploadExcelApi(file.raw);
|
|
|
},
|
|
|
- // 上传图片
|
|
|
+ // 上传
|
|
|
uploadExcelApi(file) {
|
|
|
try {
|
|
|
let formData = new FormData();
|
|
|
formData.append("file", file);
|
|
|
this.uploadLoading = true;
|
|
|
uploadExcel(formData).then(response => {
|
|
|
+ this.$message.success("上传成功!");
|
|
|
this.$set(this.form, 'viewerList', response.data)
|
|
|
});
|
|
|
} catch (e) {
|
|
@@ -520,33 +535,6 @@ export default {
|
|
|
this.uploadLoading = false;
|
|
|
}
|
|
|
},
|
|
|
- /**
|
|
|
- * 剧目海报上传成功
|
|
|
- * @date 2023-11-22
|
|
|
- * @param {any} res
|
|
|
- * @returns {any}
|
|
|
- */
|
|
|
- handlePhotoListSuccess(res) {
|
|
|
- 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.$set(this.form.photoList, this.form.photoList.length, photo);
|
|
|
- }
|
|
|
- },
|
|
|
- handleRemove(file, fileList) {
|
|
|
- this.form.photoList.forEach((item, index) => {
|
|
|
- if(item.uid == file.uid){
|
|
|
- this.form.photoList.splice(index, 1)
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
},
|
|
|
};
|
|
|
</script>
|