addAndEdit.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. <!--
  2. * @Description: 新增/编辑弹框
  3. * @Author: Sugar.
  4. * @Date: 2023-11-24 13:55:00
  5. * @LastEditors: Sugar.
  6. * @LastEditTime: 2023-11-24 13:55:00
  7. * @FilePath: \cattle_webui\src\views\programmeMr\dialog\AddOrEditDialog.vue
  8. * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
  9. -->
  10. <template>
  11. <el-dialog
  12. :title="title"
  13. :visible.sync="open"
  14. width="700px"
  15. append-to-body
  16. :close-on-click-modal="false"
  17. @close="cancel"
  18. >
  19. <div class="dialog">
  20. <el-form :model="form" ref="form" :rules="rules" label-width="80px">
  21. <el-tabs v-model="activeName">
  22. <!-- 基础信息 -->
  23. <el-tab-pane label="基础信息" name="01">
  24. <el-form-item label="剧目名称" prop="name" style="margin-top: 20px">
  25. <el-input
  26. v-model="form.name"
  27. placeholder="剧目名称"
  28. clearable
  29. />
  30. </el-form-item>
  31. <el-form-item label="主办方" prop="sponsorId">
  32. <el-select
  33. v-model="form.sponsorId"
  34. placeholder="主办方"
  35. clearable
  36. style="width: 100%"
  37. @change="changePerform"
  38. >
  39. <el-option
  40. v-for="dict in performList"
  41. :key="dict.id"
  42. :label="dict.name"
  43. :value="dict.id"
  44. />
  45. </el-select>
  46. </el-form-item>
  47. <el-form-item label="票务选择" prop="goodsIdList">
  48. <el-select
  49. v-model="form.goodsIdList"
  50. placeholder="票务选择"
  51. clearable
  52. multiple
  53. style="width: 100%"
  54. @change="changePerform"
  55. >
  56. <el-option
  57. v-for="dict in ticketList"
  58. :key="dict.id"
  59. :label="dict.goodsName"
  60. :value="dict.id"
  61. />
  62. </el-select>
  63. </el-form-item>
  64. <el-form-item label="是否启用" prop="status">
  65. <el-select
  66. v-model="form.status"
  67. placeholder="状态"
  68. clearable
  69. style="width: 100%"
  70. >
  71. <el-option
  72. v-for="dict in statusList"
  73. :key="dict.value"
  74. :label="dict.name"
  75. :value="dict.value"
  76. />
  77. </el-select>
  78. </el-form-item>
  79. </el-tab-pane>
  80. <!-- 演出信息 -->
  81. <el-tab-pane label="演出信息" name="02">
  82. <el-form-item label="上映日期" style="margin-top: 20px">
  83. <el-date-picker
  84. v-model="form.releaseDate"
  85. type="date"
  86. value-format="yyyy-MM-dd"
  87. style="width: 240px;"
  88. placeholder="选择上映日期">
  89. </el-date-picker>
  90. </el-form-item>
  91. <el-form-item label="演出时长">
  92. <el-input
  93. placeholder="演出时长"
  94. type="number"
  95. v-model="form.showDuration"
  96. @change="changePriceAmount('showDuration')"
  97. clearable
  98. style="width: 240px;margin-right: 10px"
  99. />
  100. <span>分钟</span>
  101. </el-form-item>
  102. <el-form-item label="演出人数">
  103. <el-input
  104. type="number"
  105. v-model="form.peopleNum"
  106. placeholder="演出人数"
  107. @change="changePriceAmount('peopleNum')"
  108. clearable
  109. style="width: 240px;margin-right: 10px"
  110. />
  111. <span>人</span>
  112. </el-form-item>
  113. <el-form-item label="演员信息">
  114. <el-button type="text" @click="performerOpen">添加</el-button>
  115. </el-form-item>
  116. <el-form-item label="剧目海报">
  117. <el-upload
  118. ref="upload"
  119. class="avatar-uploader"
  120. :action="uploadObj.url"
  121. :headers="uploadObj.headers"
  122. :show-file-list="false"
  123. accept=".jpg,.png"
  124. :on-success="handleAvatarSuccess"
  125. :before-upload="beforeAvatarUpload"
  126. >
  127. <div class="avatar" v-if="form.posterImg">
  128. <el-image
  129. style="width: 100px; height: 100px"
  130. :src="form.posterImg"
  131. fit="cover"
  132. />
  133. </div>
  134. <div class="upload-btn" v-else>
  135. <i class="el-icon-plus"></i>
  136. <div class="upload-btn-text">上传照片</div>
  137. </div>
  138. <div class="el-upload__tip" slot="tip">只能上传.jpg或.png格式</div>
  139. </el-upload>
  140. </el-form-item>
  141. <el-form-item label="宣传图">
  142. <el-upload
  143. ref="upload"
  144. :action="uploadObj.url"
  145. :headers="uploadObj.headers"
  146. accept=".jpg,.png"
  147. :on-success="handlePhotoListSuccess"
  148. :before-upload="beforeAvatarUpload"
  149. list-type="picture-card"
  150. :file-list="form.photoList"
  151. :on-remove="handleRemove"
  152. >
  153. <i class="el-icon-plus"></i>
  154. </el-upload>
  155. </el-form-item>
  156. <el-form-item label="剧情介绍">
  157. <editor v-model="form.performSnapshot" :fileSize="20" :min-height="200" />
  158. </el-form-item>
  159. </el-tab-pane>
  160. <!-- 观影须知 -->
  161. <el-tab-pane label="观影须知" name="03">
  162. <el-form-item label="观影须知" style="margin-top: 20px">
  163. <editor v-model="form.performNotice" :fileSize="20" :min-height="200" />
  164. </el-form-item>
  165. </el-tab-pane>
  166. </el-tabs>
  167. </el-form>
  168. </div>
  169. <span slot="footer" class="dialog-footer">
  170. <el-button @click="cancel">取消</el-button>
  171. <el-button
  172. type="primary"
  173. @click="submitForm"
  174. v-loading.fullscreen.lock="loading"
  175. element-loading-text="提交中..."
  176. element-loading-spinner="el-icon-loading"
  177. element-loading-background="rgba(0, 0, 0, 0.8)"
  178. >
  179. <span v-if="loading">提交中...</span>
  180. <span v-else>保存</span>
  181. </el-button>
  182. </span>
  183. <el-dialog
  184. title="添加演员信息"
  185. :visible.sync="performerVisible"
  186. width="800px"
  187. append-to-body
  188. :destroy-on-close="true"
  189. :close-on-click-modal="false"
  190. >
  191. <div>
  192. <el-row :gutter="10" class="mb8">
  193. <el-col :span="1.5">
  194. <el-button
  195. type="primary"
  196. plain
  197. icon="el-icon-plus"
  198. size="mini"
  199. @click="handleAdd"
  200. >新增</el-button>
  201. </el-col>
  202. </el-row>
  203. <el-table ref="tables" :data="performerList" border>
  204. <el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
  205. <el-table-column label="姓名" align="center">
  206. <template slot-scope="scope">
  207. <el-input
  208. v-model="scope.row.performerName"
  209. placeholder="姓名"
  210. clearable
  211. />
  212. </template>
  213. </el-table-column>
  214. <el-table-column label="图片" align="center">
  215. <template slot-scope="scope">
  216. <el-upload
  217. ref="upload"
  218. class="avatar-uploader"
  219. :action="uploadObj.url"
  220. :headers="uploadObj.headers"
  221. :show-file-list="false"
  222. accept=".jpg,.png"
  223. :on-success="handlePerformerAvatarSuccess"
  224. :before-upload="beforeAvatarUpload"
  225. >
  226. <div class="avatar" v-if="scope.row.performerHead" @click="changeIndexEven(scope)">
  227. <el-image
  228. style="width: 100px; height: 100px"
  229. :src="scope.row.performerHead"
  230. fit="cover"
  231. />
  232. </div>
  233. <div class="upload-btn" v-else @click="changeIndexEven(scope)">
  234. <i class="el-icon-plus"></i>
  235. <div class="upload-btn-text">上传照片</div>
  236. </div>
  237. <div class="el-upload__tip" slot="tip">只能上传.jpg或.png格式</div>
  238. </el-upload>
  239. </template>
  240. </el-table-column>
  241. <el-table-column label="角色名" align="center">
  242. <template slot-scope="scope">
  243. <el-input
  244. v-model="scope.row.performerRole"
  245. placeholder="角色名"
  246. clearable
  247. />
  248. </template>
  249. </el-table-column>
  250. <el-table-column label="操作" align="center" width="80" class-name="small-padding fixed-width">
  251. <template slot-scope="scope">
  252. <el-button
  253. size="mini"
  254. type="text"
  255. @click="handleDelete(scope.row,scope.$index)"
  256. >删除</el-button>
  257. </template>
  258. </el-table-column>
  259. </el-table>
  260. </div>
  261. <div slot="footer" class="dialog-footer">
  262. <el-button @click="performerVisible = false">取 消</el-button>
  263. <el-button type="primary" @click="performerEven">确 定</el-button>
  264. </div>
  265. </el-dialog>
  266. </el-dialog>
  267. </template>
  268. <script>
  269. // import { updateNoticeMgr } from "@/api/system/noticeMgr";
  270. import { saveAndEdit, getSelectById } from '@/api/programmeMr/programmeMr'
  271. import { ticketPageList } from '@/api/ticketMr/ticketMr'
  272. import Editor from "@/components/Editor";
  273. import { getToken } from "@/utils/auth";
  274. import { pageList } from '@/api/performMr/performMr'
  275. export default {
  276. name: "addAndEdit",
  277. components: {
  278. Editor,
  279. },
  280. data() {
  281. return {
  282. title: "编辑",
  283. model: "EDIT",
  284. activeName: '01',
  285. // 演员信息弹窗
  286. performerVisible: false,
  287. // 演员信息
  288. performerList: [],
  289. // 演员上传图片索引
  290. performerIndex: 0,
  291. open: false,
  292. loading: false,
  293. form: {
  294. id: undefined,
  295. type: "",
  296. content: "",
  297. },
  298. rules: {
  299. name: [{ required: true, message: "请输入剧目名称", trigger: "blur" }],
  300. sponsorId: [{ required: true, message: "请选择主办方", trigger: "blur" }],
  301. goodsIdList: [{ required: true, message: "请选择票务信息", trigger: "blur" }],
  302. status: [{ required: true, message: "请选择是否启用状态", trigger: "blur" }]
  303. },
  304. uploadObj: {
  305. url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
  306. Headers: { Authorization: "Bearer " + getToken() },
  307. },
  308. statusList: [
  309. {id: 1, name: '是', value: 1},
  310. {id: 2, name: '否', value: 2},
  311. ],
  312. performList: [],
  313. ticketList: []
  314. };
  315. },
  316. created() {
  317. this.getList();
  318. this.ticketPageListApi();
  319. },
  320. methods: {
  321. /** 查询主办方列表 */
  322. getList() {
  323. pageList({pageNum: 1, pageSize: 100})
  324. .then(response => {
  325. this.performList = response.data.rows;
  326. }
  327. );
  328. },
  329. /** 查询票务列表 */
  330. ticketPageListApi() {
  331. ticketPageList({pageNum: 1, pageSize: 100, goodsType: 2, classifyId: 1, status: 0})
  332. .then(response => {
  333. this.ticketList = response.data.rows;
  334. }
  335. );
  336. },
  337. /** 主办方选择事件 */
  338. changePerform(val) {
  339. this.performList.forEach(item => {
  340. if(item.id == val){
  341. this.form.sponsorName = item.name
  342. }
  343. })
  344. },
  345. /** 价格输入事件 */
  346. changePriceAmount(key) {
  347. if(this.form[key] * 1 < 0){
  348. this.$message.error("输入需大于或等于0!");
  349. this.$set(this.form, key, '');
  350. return false
  351. }
  352. },
  353. /**
  354. * 打开弹框
  355. * @date 2023-11-22
  356. * @param {any} obj
  357. * @returns {any}
  358. */
  359. openDialog(title, obj) {
  360. this.open = true;
  361. this.reset();
  362. this.activeName = '01';
  363. if (obj){
  364. this.title = "编辑剧目管理";
  365. this.getSelectByIdApi(obj)
  366. }else{
  367. this.title = "添加剧目管理";
  368. this.$nextTick(() => {
  369. this.$refs["form"].clearValidate();
  370. });
  371. }
  372. },
  373. /** 获取详情 */
  374. getSelectByIdApi(row) {
  375. const id = row.id
  376. getSelectById(id).then(response => {
  377. const obj = response.data;
  378. this.$nextTick(() => {
  379. this.$set(this.form, 'id', obj.id);
  380. // 基础信息
  381. this.$set(this.form, 'name', obj.name);
  382. this.$set(this.form, 'sponsorId', obj.sponsorId);
  383. this.$set(this.form, 'sponsorName', obj.sponsorName);
  384. let goodsIdList = []
  385. obj.goodsList.forEach(item => {
  386. goodsIdList.push(item.goodsId);
  387. })
  388. this.$set(this.form, 'goodsIdList', goodsIdList);
  389. this.$set(this.form, 'status', obj.status);
  390. // 演出信息
  391. this.$set(this.form, 'releaseDate', obj.releaseDate);
  392. this.$set(this.form, 'showDuration', obj.showDuration);
  393. this.$set(this.form, 'peopleNum', obj.peopleNum);
  394. this.$set(this.form, 'posterImg', obj.posterImg);
  395. this.$set(this.form, 'performSnapshot', obj.performSnapshot);
  396. // this.performerList = obj.performerList || [];
  397. this.$set(this.form, 'performerList', obj.performerList || []);
  398. obj.photoList.forEach(item => {
  399. item.url = item.imageUrl
  400. })
  401. this.$set(this.form, 'photoList', obj.photoList);
  402. // 观影须知
  403. this.$set(this.form, 'performNotice', obj.performNotice);
  404. });
  405. });
  406. },
  407. /**
  408. * 保存
  409. * @date 2023-11-22
  410. * @returns {any}
  411. */
  412. submitForm() {
  413. this.$refs["form"].validate(async (valid) => {
  414. if (valid) {
  415. if(this.form.photoList && this.form.photoList.length > 0 && this.form.photoList.length < 3) {
  416. this.$message.error("上传的宣传图不能少于三张!");
  417. return false
  418. }
  419. if(this.form.photoList && this.form.photoList.length > 2) {
  420. this.form.showImg = this.form.photoList[0].url
  421. }
  422. try {
  423. this.loading = true;
  424. const { code } = await saveAndEdit({ ...this.form });
  425. if (code === 200) {
  426. this.$message.success("操作成功!");
  427. this.$emit("getList");
  428. this.cancel();
  429. }
  430. } catch (error) {
  431. } finally {
  432. this.loading = false;
  433. }
  434. }
  435. });
  436. },
  437. /**
  438. * 演员信息添加
  439. * @date 2023-11-22
  440. * @returns {any}
  441. */
  442. performerEven() {
  443. let target=[...this.performerList];
  444. this.form.performerList = JSON.parse(JSON.stringify(target));
  445. this.performerVisible = false;
  446. },
  447. /**
  448. * 重置
  449. * @date 2023-11-22
  450. * @returns {any}
  451. */
  452. reset() {
  453. this.$set(this.form, 'id', '');
  454. // 基础信息
  455. this.$set(this.form, 'name', '');
  456. this.$set(this.form, 'sponsorId', '');
  457. this.$set(this.form, 'sponsorName', '');
  458. let goodsIdList = []
  459. this.$set(this.form, 'goodsIdList', []);
  460. this.$set(this.form, 'status', '');
  461. // 演出信息
  462. this.$set(this.form, 'releaseDate', '');
  463. this.$set(this.form, 'showDuration', '');
  464. this.$set(this.form, 'peopleNum', '');
  465. this.$set(this.form, 'posterImg', '');
  466. this.$set(this.form, 'performSnapshot', '');
  467. this.$set(this.form, 'photoList', []);
  468. // 观影须知
  469. this.$set(this.form, 'performNotice', '');
  470. },
  471. /**
  472. * 关闭弹框
  473. * @date 2023-11-22
  474. * @returns {any}
  475. */
  476. cancel() {
  477. this.reset();
  478. this.open = false;
  479. },
  480. /**
  481. * 上传成功
  482. * @date 2023-11-22
  483. * @param {any} res
  484. * @returns {any}
  485. */
  486. handleAvatarSuccess(res) {
  487. if (res.code === 200) {
  488. // this.form.mainImg = res?.data?.url;
  489. this.$set(this.form, 'posterImg', res?.data?.url)
  490. }
  491. console.log(this.form.photoList)
  492. },
  493. /**
  494. * 剧目海报上传成功
  495. * @date 2023-11-22
  496. * @param {any} res
  497. * @returns {any}
  498. */
  499. handlePhotoListSuccess(res) {
  500. if (res.code === 200) {
  501. let photo = {
  502. imageUrl: res?.data?.url,
  503. url: res?.data?.url,
  504. photoType: '2'
  505. }
  506. if(!this.form.photoList){
  507. this.form.photoList = []
  508. }
  509. // this.form.photoList.push(photo);
  510. this.$set(this.form.photoList, this.form.photoList.length, photo);
  511. }
  512. },
  513. handleRemove(file, fileList) {
  514. this.form.photoList.forEach((item, index) => {
  515. if(item.uid == file.uid){
  516. this.form.photoList.splice(index, 1)
  517. }
  518. })
  519. },
  520. /**
  521. * 上传文件之前之前
  522. * @date 2023-11-22
  523. * @param {any} file
  524. * @returns {any}
  525. */
  526. beforeAvatarUpload(file) {
  527. const isJPG = file.type === "image/jpeg" || "image/png";
  528. if (!isJPG) {
  529. this.$message.error("上传头像图片只能是jpg或png格式!");
  530. }
  531. return isJPG;
  532. },
  533. /**
  534. * 演员新增
  535. * @date 2023-11-22
  536. */
  537. handleAdd() {
  538. if(!this.performerList){
  539. this.performerList = []
  540. }
  541. this.performerList.push({})
  542. },
  543. /**
  544. * 演员删除
  545. * @date 2023-11-22
  546. */
  547. handleDelete(row, index) {
  548. this.$confirm('是否确认删当前数据?', '提示', {
  549. confirmButtonText: '确定',
  550. cancelButtonText: '取消',
  551. type: 'warning'
  552. }).then(() => {
  553. this.performerList.splice(index, 1);
  554. this.$message({
  555. type: 'success',
  556. message: '删除成功!'
  557. });
  558. }).catch(() => {
  559. this.$message({
  560. type: 'info',
  561. message: '已取消删除'
  562. });
  563. });
  564. },
  565. /**
  566. * 演员弹窗打开
  567. * @date 2023-11-22
  568. */
  569. performerOpen() {
  570. if(!this.form.performerList){
  571. this.form.performerList = []
  572. }
  573. let target=[...this.form.performerList];
  574. this.performerList = JSON.parse(JSON.stringify(target));
  575. this.performerVisible = true;
  576. },
  577. /**
  578. * 演员图片上传成功
  579. * @date 2023-11-22
  580. * @param {any} res
  581. * @returns {any}
  582. */
  583. handlePerformerAvatarSuccess(res) {
  584. if (res.code === 200) {
  585. // this.form.mainImg = res?.data?.url;
  586. this.$set(this.performerList[this.performerIndex], 'performerHead', res?.data?.url);
  587. }
  588. },
  589. /**
  590. * 演员图片上传点击记录当前索引
  591. * @date 2023-11-22
  592. * @param {any} row
  593. * @returns {any}
  594. */
  595. changeIndexEven(row) {
  596. this.performerIndex = row.$index;
  597. }
  598. },
  599. };
  600. </script>
  601. <style lang="scss" scoped>
  602. .dialog {
  603. padding: 0 30px;
  604. max-height: 65vh;
  605. overflow-y: auto;
  606. }
  607. .dialog {
  608. padding: 0 30px;
  609. .upload-btn {
  610. width: 100px;
  611. height: 100px;
  612. background-color: #fbfdff;
  613. border: dashed 1px #c0ccda;
  614. border-radius: 5px;
  615. i {
  616. font-size: 30px;
  617. margin-top: 20px;
  618. }
  619. &-text {
  620. margin-top: -10px;
  621. }
  622. }
  623. .avatar {
  624. cursor: pointer;
  625. }
  626. }
  627. .el-table{
  628. .upload-btn {
  629. width: 100px;
  630. height: 100px;
  631. background-color: #fbfdff;
  632. border: dashed 1px #c0ccda;
  633. border-radius: 5px;
  634. i {
  635. font-size: 30px;
  636. margin-top: 20px;
  637. }
  638. &-text {
  639. margin-top: -10px;
  640. }
  641. }
  642. .avatar {
  643. cursor: pointer;
  644. }
  645. }
  646. </style>