123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748 |
- <!--
- * @Description: 新增/编辑弹框
- * @Author: Sugar.
- * @Date: 2023-11-24 13:55:00
- * @LastEditors: Sugar.
- * @LastEditTime: 22023-11-24 13:55:00
- * @FilePath: \cattle_webui\src\views\team\applicationMr\addAndEdit.vue
- * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
- -->
- <template>
- <el-dialog
- :title="title"
- :visible.sync="open"
- width="800px"
- append-to-body
- :close-on-click-modal="false"
- @close="cancel"
- >
- <div
- class="dialog"
- v-loading="loading1"
- element-loading-text="拼命加载中..."
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- >
- <el-form :model="form" ref="form" size="mini" :rules="rules" label-width="200px">
- <el-form-item label="选择团队:" prop="teamId">
- <el-select
- v-model="form.teamId"
- placeholder="请点击输入框后输入关键词进行查询"
- clearable
- filterable
- remote
- reserve-keyword
- :remote-method="teamPageListApi"
- @change="teamChange"
- :loading="teamIdLoading"
- style="width: 100%;"
- >
- <el-option
- v-for="dict in teamList"
- :key="dict.id"
- :label="dict.name"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="带队负责人:" prop="linkName">
- <el-input
- v-model="form.linkName"
- placeholder="请输入带队负责人"
- clearable
- style="width: 260px;"
- >
- </el-input>
- </el-form-item>
- <el-form-item label="带队负责人联系电话:" prop="linkPhone">
- <el-input
- v-model="form.linkPhone"
- placeholder="请输入带队负责人联系电话"
- clearable
- style="width: 260px;"
- >
- </el-input>
- </el-form-item>
- <el-form-item label="选择场馆:" prop="theatreId">
- <el-select
- v-model="form.theatreId"
- placeholder="选择场馆"
- clearable
- @change="changeTheatre"
- style="width: 100%;"
- >
- <el-option
- v-for="dict in theatreList"
- :key="dict.id"
- :label="dict.name"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="选择演出厅:" prop="auditoriumId">
- <el-select
- v-model="form.auditoriumId"
- placeholder="选择演出厅"
- @change="auditoriumChange"
- clearable
- style="width: 100%;"
- >
- <el-option
- v-for="dict in merchantList"
- :key="dict.id"
- :label="dict.name"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="选择剧目:" prop="performId">
- <el-select
- v-model="form.performId"
- placeholder="选择剧目"
- clearable
- @change="performChangeEven"
- style="width: 100%;"
- >
- <el-option
- v-for="dict in goodsList"
- :key="dict.id"
- :label="dict.name"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <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.performTimeId"
- placeholder="预约场次"
- clearable
- style="width: 100%;"
- @change="performTimeIdEven"
- >
- <el-option
- v-for="dict in performTimeList"
- :key="dict.id"
- :label="dict.timeSnapshot + '场次: ' + dict.performDate + ' 开始时间' + dict.performTimeStart + ', 结束时间' + dict.performTimeEnd"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="票务管理:" prop="goodsId">
- <el-select
- v-model="form.goodsId"
- placeholder="票务管理"
- clearable
- @change="goodsChangeEven"
- style="width: 100%;"
- >
- <el-option
- v-for="dict in ticketList"
- :key="dict.goodsId"
- :label="dict.goodsName"
- :value="dict.goodsId"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="座位类型:" prop="seatTypeId">
- <el-select
- v-model="form.seatTypeId"
- placeholder="座位类型"
- clearable
- @change="seatChangeEven"
- style="width: 100%;"
- >
- <el-option
- v-for="dict in seatList"
- :key="dict.seatTypeId"
- :label="dict.seatTypeName"
- :value="dict.seatTypeId"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="团购单价:" prop="price">
- <el-input
- type="number"
- disabled
- v-model="form.price"
- placeholder=""
- clearable
- @change="changePriceAmount('salePrice')"
- style="width: 260px;"
- >
- <template slot="append">元/人</template>
- </el-input>
- </el-form-item>
-
- <el-form-item label="观影人员:" prop="viewerList">
- <el-upload
- class="upload-demo"
- :action="uploadObj.url"
- :headers="uploadObj.headers"
- :auto-upload="false"
- :disabled="uploadLoading"
- :show-file-list="false"
- :on-change="beforeAvatarUpload"
- :file-list="form.fileList">
- <el-button size="small" type="primary" :loading="uploadLoading">{{form.viewerList && form.viewerList.length == 0 ? '导入excel' : '重新导入excel'}}</el-button>
- <div slot="tip" class="el-upload__tip">
- 上传excel文件,导入模板表头序号、姓名、身份证号码
- <i @click="handleExport" style="color: #1890ff;cursor: pointer;">下载模板</i>
- </div>
- </el-upload>
- <div v-if="form.viewerList && form.viewerList.length > 0">
- <el-table :data="form.viewerList" style="width: 100%" border>
- <el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
- <el-table-column prop="name" label="姓名" align="center" ></el-table-column>
- <el-table-column prop="cardId" label="身份证号码" align="center"> </el-table-column>
- </el-table>
- </div>
- </el-form-item>
- </el-form>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="cancel">取消</el-button>
- <el-button
- type="primary"
- @click="submitForm"
- v-loading="loading"
- element-loading-text="拼命加载中..."
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- >
- <span v-if="loading">提交中...</span>
- <span v-else>保存</span>
- </el-button>
- </span>
- </el-dialog>
- </template>
- <script>
- import { saveAndEdit, getSelectById, uploadExcel, queryPrice,downloadModel,selectRegionApi,selectRegionNewApi } 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'
- import { seatPricePageList } from '@/api/distribution/ticketMr'
- import { merchantPageList } from '@/api/performanceHallMr/performanceHallMr'
- import { pageList } from "@/api/venueMr/venueMr";
- import { teamPageList } from '@/api/team/teamMr'
- export default {
- name: "addAndEdit",
- props: {
- dict: {
- type: Object,
- default: () => [],
- },
- },
- components: {
- Editor,
- },
- data() {
- return {
- title: "编辑",
- model: "EDIT",
- activeName: '01',
- open: false,
- loading: false,
- loading1: false,
- uploadLoading: false,
- form: {
- id: undefined,
- },
- rules: {
- teamId: [{ required: true, message: "请选择团队", trigger: ["change","blur"] }],
- linkName: [{ required: true, message: "请输入带队负责人", trigger: ["change","blur"] }],
- linkPhone: [{ required: true, message: "请输入带队负责人联系电话", trigger: ["change","blur"] }],
- theatreId: [{ required: true, message: "请选择场馆", trigger: ["change","blur"] }],
- auditoriumId: [{ required: true, message: "请选择演出厅", trigger: ["change","blur"] }],
- performId: [{ required: true, message: "请选择选择剧目", trigger: ["change","blur"] }],
- goodsId: [{ required: true, message: "请选择票务", trigger: ["change","blur"] }],
- seatTypeId: [{ required: true, message: "请选择座位类型", trigger: ["change","blur"] }],
- price: [{ required: true, message: "请输入团购单价", trigger: ["change","blur"] }],
- teamPersonNum: [{ required: true, message: "请输入人数", trigger: ["change","blur"] }],
- performTimeId: [{ required: true, message: "请选择预约场次", trigger: ["change","blur"] }],
- viewerList: [{ required: true, message: "请上传观影人员excel", trigger: ["change","blur"] }],
- performDate: [{ required: true, message: "请选择日期", trigger: ["change","blur"] }]
- },
- uploadObj: {
- url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
- Headers: { Authorization: "Bearer " + getToken() },
- },
- goodsList: [],
- ticketList: [],
- seatList: [],
- merchantList: [],
- theatreList: [],
- teamList: [],
- sessionList: [],
- performTimeList: [],
- teamIdLoading: false,
- };
- },
- methods: {
- /**
- * 打开弹框
- * @date 2023-11-22
- * @param {any} obj
- * @returns {any}
- */
- openDialog(title, obj) {
- this.open = true;
- this.teamPageListApi();
- this.getList();
- this.goodsPageList();
- this.reset();
- if (obj){
- this.title = "编辑报名";
- this.getSelectByIdApi(obj);
- }else{
- this.title = "添加报名";
- this.$nextTick(() => {
- this.$refs["form"].clearValidate();
- });
- }
- },
- /** 获取详情 */
- async getSelectByIdApi(row) {
- try {
- const id = row.id
- this.loading1 = true
- let response = await getSelectById(id)
- let obj = response.data;
- this.$set(this,'form',{
- ...obj,
- viewerList: obj.viewersList,
- applyId: obj.id?obj.id:null
- })
- //this.ticketListApi();
- //this.getSeatTypeList({goodsId: this.form.goodsId, performId: this.form.performId});
- await this.merchantPageList(this.form.theatreId) // 获取演出厅
- await this.selectRegionFun() // 获取票务管理
- await this.getPerformTimeList() // 预约场次列表
- this.setGoodsChangeEven(this.form.goodsId) // 座位类型
- this.loading1 = false
- } catch (error) {
- console.error("error====",error)
- this.loading1 = false
- this.open = false
- }
-
- },
- /** 团队列表查询 */
- teamPageListApi(key) {
- console.log("fadsfasdf====",key)
- this.teamIdLoading = true
- teamPageList(this.addDateRange({pageNum: 1, pageSize: 900,name:key}))
- .then(response => {
- // let teamArr = []
- // teamArr = response.data.rows || []
- // if(teamArr.length != 0) {
- // teamArr.forEach(ele => {
- // if(ele.remark) {
- // ele.name = ele.name + '(' + ele.remark +')'
- // }
- // })
- // }
- // this.teamList = teamArr
- this.teamList = response.data.rows
- this.teamIdLoading = false
- }).catch(()=>{
- this.teamIdLoading = true
- })
- },
- /** 场馆列表查询 */
- getList(name) {
- pageList(this.addDateRange({pageNum: 1, pageSize: 100}))
- .then(response => {
- this.theatreList = response.data.rows;
- });
- },
- /** 团队选择 */
- teamChange(val) {
- if(!val) {
- this.teamPageListApi()
- }
- this.teamList.forEach(item => {
- if(val == item.id){
- this.$set(this.form, 'teamName', item.name)
- }
- })
- this.$set(this.form, 'goodsId', '')
- this.$set(this.form, 'goodsName', '')
- this.$set(this.form, 'seatTypeId', '')
- this.$set(this.form, 'price', '')
- this.selectRegionFun()
- },
- /** 场馆选择 */
- changeTheatre(id) {
- this.theatreList.forEach(item => {
- if(id == item.id){
- this.$set(this.form, 'theatreName', item.name)
- }
- })
- this.$set(this.form, 'auditoriumId', '')
- this.$set(this.form, 'performId', '')
- this.$set(this.form, 'goodsId', '')
- this.$set(this.form, 'goodsName', '')
- this.$set(this.form, 'seatTypeId', '')
- this.$set(this.form, 'price', '')
- this.$set(this.form, 'performDate', '');
- this.$set(this.form, 'performTimeId', '');
- this.merchantList = [] // 演出厅
- //this.goodsList = [] // 剧目
- this.performTimeList = [] // 场次
- this.ticketList = [] // 票务
- this.seatList = [] // 座位类型
- this.merchantPageList(id) // 获取演出厅
- },
- /** 演出厅选择 */
- 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.goodsList = [] // 剧目
- this.performTimeList = [] // 场次
- this.ticketList = [] // 票务
- this.seatList = [] // 座位类型
- //this.getPerformTimeList();
- },
- /** 演出厅列表查询 */
- merchantPageList(id) {
- merchantPageList(this.addDateRange({theatreId: id, pageNum: 1, pageSize: 100}))
- .then(response => {
- this.merchantList = response.data.rows;
- });
- },
- /** 剧目列表查询 */
- goodsPageList() {
- goodsPageList(this.addDateRange({pageNum: 1, pageSize: 100, status: 1}))
- .then(response => {
- this.goodsList = response.data.rows;
- });
- },
- /** 票务列表查询 */
- ticketListApi(performId) {
- this.ticketList = []
- seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, performId: performId}))
- .then(response => {
- let ticketList = []
- response.data.rows.forEach(item => {
- if(ticketList.indexOf(item.goodsId) == -1){
- this.ticketList.push(item);
- ticketList.push(item.goodsId);
- }
- })
- });
- },
- /** 座位类型列表 */
- getSeatTypeList(obj) {
- seatPricePageList({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId})
- .then(response => {
- let ticketList = []
- response.data.rows.forEach(item => {
- if(ticketList.indexOf(item.seatTypeId) == -1){
- this.seatList.push(item);
- ticketList.push(item.seatTypeId);
- }
- })
- });
- },
- /** 团购价格查询 */
- queryPriceApi() {
- let postMap = {
- teamId: this.form.teamId,
- goodsId: this.form.goodsId,
- performId: this.form.performId,
- seatTypeId: this.form.seatTypeId,
- }
- queryPrice(postMap)
- .then(response => {
- if(response.data){
- let data = response.data;
- this.$set(this.form, 'price', data.salePrice);
- }
- });
- },
- /** 预约场次列表 */
- 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.performTimeList = response.data.rows;
- });
- },
- /** 价格输入事件 */
- changePriceAmount(key) {
- if(this.form[key] * 1 < 0){
- this.$message.error("输入需大于或等于0!");
- this.$set(this.form, key, '');
- return false
- }
- },
- /** 剧目改变事件 */
- performChangeEven(val) {
- this.seatList = [];
- this.ticketList = [];
- 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(); // 场次
- },
-
- // 预约时间
- performDateEven() {
- console.log("获取场次====")
- this.$set(this.form, 'performTimeId', '')
- this.$set(this.form, 'goodsId', '');
- this.$set(this.form, 'seatTypeId', '');
- this.$set(this.form, 'price', '')
- this.performTimeList = [] // 场次
- this.ticketList = [] // 票务
- this.seatList = [] // 座位类型
- this.getPerformTimeList(); // 获取场次
- },
- /** 选择场次 */
- performTimeIdEven(val){
- this.$set(this.form, 'goodsId', '');
- this.$set(this.form, 'goodsName', '')
- this.$set(this.form, 'seatTypeId', '');
- this.$set(this.form, 'price', '')
- this.ticketList = [] // 票务
- this.seatList = [] // 座位类型
- this.selectRegionFun() // 获取票务管理
- },
- // 票务改变事件
- goodsChangeEven(id) {
- let list = []
- this.ticketList.forEach(item => {
- if(item.goodsId == id){ // item.goodsId == id
- this.$set(this.form, 'goodsName', item.goodsName)
- list = item.seatList//item.regionList
- }
- })
- this.$set(this.form, 'price', '');
- this.$set(this.form, 'seatTypeId', '');
- this.seatList = [];
- console.log("ffffffffff=====",list)
- //let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
- //this.getSeatTypeList(selectMap); 获取走位
- this.seatList = [].concat(list)
- },
- // 座位类型改变事件
- seatChangeEven(val) {
- this.seatList.forEach(item =>{
- if(item.seatTypeId == val){
- this.$set(this.form, 'seatTypeName', item.seatTypeName);
- this.$set(this.form, 'price', item.salePrice);
- }
- })
- //this.queryPriceApi();
- },
- setGoodsChangeEven(id) {
- let list = []
- this.ticketList.forEach(item => {
- if(item.id == id){
- list = item.regionList
- }
- })
- this.seatList = [];
- this.seatList = [].concat(list)
- },
- /**
- * 保存
- * @date 2023-11-22
- * @returns {any}
- */
- submitForm() {
- this.$refs["form"].validate(async (valid) => {
- if (valid) {
- try {
- this.loading = true;
- let params = JSON.parse(JSON.stringify(this.form))
- delete params.viewersList
- const { code } = await saveAndEdit({ ...params });
- if (code === 200) {
- this.$message.success("操作成功!");
- this.$emit("getList");
- this.cancel();
- }
- } catch (error) {
- } finally {
- this.loading = false;
- }
- }
- });
- },
- /**
- * 重置
- * @date 2023-11-22
- * @returns {any}
- */
- reset() {
- this.$set(this.form, 'id', '');
- this.$set(this.form, 'teamId', '');
- this.$set(this.form, 'linkName', '');
- this.$set(this.form, 'linkPhone', '');
- 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, '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', []);
- },
- /**
- * 关闭弹框
- * @date 2023-11-22
- * @returns {any}
- */
- cancel() {
- this.reset();
- this.open = false;
- },
- /**
- * 上传文件之前之前
- * @date 2023-11-22
- * @param {any} file
- * @returns {any}
- */
- beforeAvatarUpload(file) {
- 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) {
- } finally {
- this.uploadLoading = false;
- }
- },
- /** 导出按钮操作 */
- async handleExport() {
- //this.downloadGet('member/marketTeamApply/downTeamApplyTemplate', {}, `观影人员上传模板_${new Date().getTime()}.xlsx`)
- try {
- let res = await downloadModel()
- let fileName = `观影人员上传模板_${new Date().getTime()}.xlsx`
- let blob=new Blob([res])
- let href=window.URL.createObjectURL(blob)
- // 创建下载按钮a标签进行自动点击下载,下载完后移除按钮a标签
- let downloadDom=document.createElement('a')
- downloadDom.href=href
- downloadDom.download=fileName //--不是必须 若需要【前端重命名文件夹】的话这句代码就需要
- document.body.appendChild(downloadDom)
- downloadDom.click()
- document.body.removeChild(downloadDom)
- window.URL.revokeObjectURL(href)
- } catch (error) {
-
- }
- },
- // 获取票务管理
- async selectRegionFun(){
- try {
- if(!this.form.teamId||!this.form.auditoriumId||!this.form.performId||!this.form.performTimeId){
- return
- }
- let res = await selectRegionNewApi({
- "teamId": this.form.teamId,
- "auditoriumId": this.form.auditoriumId,
- "performId": this.form.performId,
- "performTimeId": this.form.performTimeId,
- "timeId": this.form.performTimeId,
- "channelType": "group"
- })
- if( res.code == 200 ) {
- this.ticketList = res.data.list
- }
- } catch (error) {
- console.error(error)
- }
- }
- },
- };
- </script>
- <style lang="scss" scoped>
- .dialog {
- padding: 0 30px;
- max-height: 65vh;
- overflow-y: auto;
- }
- .dialog {
- padding: 0 30px;
- .upload-btn {
- width: 100px;
- height: 100px;
- background-color: #fbfdff;
- border: dashed 1px #c0ccda;
- border-radius: 5px;
- i {
- font-size: 30px;
- margin-top: 20px;
- }
- &-text {
- margin-top: -10px;
- }
- }
- .avatar {
- cursor: pointer;
- }
- }
- </style>
|