addAndEdit.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. <!--
  2. * @Description: 新增/编辑弹框
  3. * @Author: Sugar.
  4. * @Date: 2023-11-24 13:55:00
  5. * @LastEditors: Sugar.
  6. * @LastEditTime: 22023-11-24 13:55:00
  7. * @FilePath: \cattle_webui\src\views\distribution\personnelMr\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="120px">
  21. <el-form-item label="选择剧目:" prop="performId">
  22. <el-select
  23. v-model="form.performId"
  24. placeholder="选择剧目"
  25. clearable
  26. @change="performChangeEven"
  27. style="width: 100%;"
  28. >
  29. <el-option
  30. v-for="dict in goodsList"
  31. :key="dict.id"
  32. :label="dict.name"
  33. :value="dict.id"
  34. />
  35. </el-select>
  36. </el-form-item>
  37. <el-form-item label="票务管理:" prop="goodsId">
  38. <el-select
  39. v-model="form.goodsId"
  40. placeholder="票务管理"
  41. clearable
  42. @change="goodsChangeEven"
  43. style="width: 100%;"
  44. >
  45. <el-option
  46. v-for="dict in ticketList"
  47. :key="dict.id"
  48. :label="dict.goodsName"
  49. :value="dict.goodsId"
  50. />
  51. </el-select>
  52. </el-form-item>
  53. <el-form-item label="座位类型:" prop="seatTypeId">
  54. <el-select
  55. v-model="form.seatTypeId"
  56. placeholder="座位类型"
  57. clearable
  58. @change="seatChangeEven"
  59. style="width: 100%;"
  60. >
  61. <el-option
  62. v-for="dict in seatList"
  63. :key="dict.seatTypeId"
  64. :label="dict.seatTypeName"
  65. :value="dict.seatTypeId"
  66. />
  67. </el-select>
  68. </el-form-item>
  69. <el-form-item label="销售价:" prop="originalSalePrice">
  70. <el-input
  71. disabled
  72. v-model="form.originalSalePrice"
  73. placeholder="销售价"
  74. clearable
  75. style="width: 100%;"
  76. />
  77. </el-form-item>
  78. <el-form-item label="团购单价:" prop="salePrice">
  79. <el-input
  80. type="number"
  81. v-model="form.salePrice"
  82. placeholder=""
  83. clearable
  84. @change="changePriceAmount('salePrice')"
  85. style="width: 260px;"
  86. >
  87. <template slot="append">元/人</template>
  88. </el-input>
  89. </el-form-item>
  90. <el-form-item label="成团人数:" prop="teamPersonNum">
  91. <el-input
  92. type="number"
  93. v-model="form.teamPersonNum"
  94. placeholder=""
  95. clearable
  96. @change="changePriceAmount('teamPersonNum')"
  97. style="width: 260px;"
  98. >
  99. </el-input>
  100. <span style="margin-left: 5px">人起成团</span>
  101. </el-form-item>
  102. </el-form>
  103. </div>
  104. <span slot="footer" class="dialog-footer">
  105. <el-button @click="cancel">取消</el-button>
  106. <el-button
  107. type="primary"
  108. @click="submitForm"
  109. v-loading.fullscreen.lock="loading"
  110. element-loading-text="提交中..."
  111. element-loading-spinner="el-icon-loading"
  112. element-loading-background="rgba(0, 0, 0, 0.8)"
  113. >
  114. <span v-if="loading">提交中...</span>
  115. <span v-else>保存</span>
  116. </el-button>
  117. </span>
  118. </el-dialog>
  119. </template>
  120. <script>
  121. // import { updateNoticeMgr } from "@/api/system/noticeMgr";
  122. import { saveAndEdit, getSelectById } from "@/api/team/ticketMr";
  123. import Editor from "@/components/Editor";
  124. import { getToken } from "@/utils/auth";
  125. import { goodsPageList } from '@/api/programmeMr/programmeMr'
  126. import { ticketPageList } from '@/api/ticketMr/ticketMr'
  127. import { SeatTypeList } from '@/api/seatTypeMr/seatTypeMr'
  128. import { seatPricePageList } from '@/api/distribution/ticketMr'
  129. export default {
  130. name: "addAndEdit",
  131. props: {
  132. dict: {
  133. type: Object,
  134. default: () => [],
  135. },
  136. },
  137. components: {
  138. Editor,
  139. },
  140. data() {
  141. return {
  142. title: "编辑",
  143. model: "EDIT",
  144. activeName: '01',
  145. open: false,
  146. loading: false,
  147. form: {
  148. id: undefined,
  149. },
  150. rules: {
  151. performId: [{ required: true, message: "请选择选择剧目", trigger: "blur" }],
  152. goodsId: [{ required: true, message: "请选择票务", trigger: "blur" }],
  153. seatTypeId: [{ required: true, message: "请选择座位类型", trigger: "blur" }],
  154. salePrice: [{ required: true, message: "请输入团购单价", trigger: "blur" }],
  155. originalSalePrice: [{ required: true, message: "请输入销售价", trigger: "blur" }],
  156. teamPersonNum: [{ required: true, message: "请输入人数", trigger: "blur" }],
  157. },
  158. uploadObj: {
  159. url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
  160. Headers: { Authorization: "Bearer " + getToken() },
  161. },
  162. goodsList: [],
  163. ticketList: [],
  164. seatList: []
  165. };
  166. },
  167. methods: {
  168. /**
  169. * 打开弹框
  170. * @date 2023-11-22
  171. * @param {any} obj
  172. * @returns {any}
  173. */
  174. openDialog(title, obj) {
  175. this.open = true;
  176. this.goodsPageList();
  177. this.reset();
  178. if (obj){
  179. this.title = "编辑票务管理";
  180. this.getSelectByIdApi(obj);
  181. }else{
  182. this.title = "添加票务管理";
  183. this.$nextTick(() => {
  184. this.$refs["form"].clearValidate();
  185. });
  186. }
  187. },
  188. /** 获取详情 */
  189. getSelectByIdApi(row) {
  190. const id = row.id
  191. getSelectById(id).then(response => {
  192. const obj = response.data;
  193. this.$nextTick(() => {
  194. this.$set(this.form, 'id', obj.id);
  195. this.$set(this.form, 'goodsId', obj.goodsId);
  196. this.$set(this.form, 'seatTypeId', obj.seatTypeId);
  197. this.$set(this.form, 'performId', obj.performId);
  198. this.$set(this.form, 'originalSalePrice', obj.originalSalePrice);
  199. this.$set(this.form, 'salePrice', obj.salePrice);
  200. this.$set(this.form, 'brokeragePrice', obj.brokeragePrice);
  201. this.ticketListApi();
  202. this.getSeatTypeList({goodsId: this.form.goodsId, performId: this.form.performId});
  203. });
  204. });
  205. },
  206. /** 剧目列表查询 */
  207. goodsPageList() {
  208. goodsPageList(this.addDateRange({pageNum: 1, pageSize: 100, status: 1}))
  209. .then(response => {
  210. this.goodsList = response.data.rows;
  211. });
  212. },
  213. /** 票务列表查询 */
  214. ticketListApi(performId) {
  215. this.ticketList = []
  216. seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, performId: performId}))
  217. .then(response => {
  218. let ticketList = []
  219. response.data.rows.forEach(item => {
  220. if(ticketList.indexOf(item.goodsId) == -1){
  221. this.ticketList.push(item);
  222. ticketList.push(item.goodsId);
  223. }
  224. })
  225. });
  226. },
  227. /** 座位类型列表 */
  228. getSeatTypeList(obj) {
  229. seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
  230. .then(response => {
  231. let ticketList = []
  232. response.data.rows.forEach(item => {
  233. if(ticketList.indexOf(item.seatTypeId) == -1){
  234. this.seatList.push(item);
  235. ticketList.push(item.seatTypeId);
  236. }
  237. })
  238. });
  239. },
  240. /** 价格输入事件 */
  241. changePriceAmount(key) {
  242. if(this.form[key] * 1 < 0){
  243. this.$message.error("输入需大于或等于0!");
  244. this.$set(this.form, key, '');
  245. return false
  246. }
  247. },
  248. // 剧目改变事件
  249. performChangeEven(val) {
  250. this.seatList = [];
  251. this.ticketList = [];
  252. this.$set(this.form, 'originalSalePrice', '')
  253. this.$set(this.form, 'goodsId', '');
  254. this.$set(this.form, 'seatTypeId', '');
  255. this.ticketListApi(val);
  256. },
  257. // 票务改变事件
  258. goodsChangeEven() {
  259. this.seatList = [];
  260. this.$set(this.form, 'originalSalePrice', '');
  261. this.$set(this.form, 'seatTypeId', '');
  262. let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
  263. this.getSeatTypeList(selectMap);
  264. },
  265. // 座位类型改变事件
  266. seatChangeEven(val) {
  267. this.seatList.forEach(item => {
  268. if(item.seatTypeId == val){
  269. this.$set(this.form, 'originalSalePrice', item.priceAmount);
  270. }
  271. })
  272. },
  273. /**
  274. * 保存
  275. * @date 2023-11-22
  276. * @returns {any}
  277. */
  278. submitForm() {
  279. this.$refs["form"].validate(async (valid) => {
  280. if (valid) {
  281. try {
  282. this.loading = true;
  283. const { code } = await saveAndEdit({ ...this.form });
  284. if (code === 200) {
  285. this.$message.success("操作成功!");
  286. this.$emit("getList");
  287. this.cancel();
  288. }
  289. } catch (error) {
  290. } finally {
  291. this.loading = false;
  292. }
  293. }
  294. });
  295. },
  296. /**
  297. * 重置
  298. * @date 2023-11-22
  299. * @returns {any}
  300. */
  301. reset() {
  302. this.$set(this.form, 'id', '');
  303. this.$set(this.form, 'goodsId', '');
  304. this.$set(this.form, 'seatTypeId', '');
  305. this.$set(this.form, 'performId', '');
  306. this.$set(this.form, 'originalSalePrice', '');
  307. this.$set(this.form, 'salePrice', '');
  308. this.$set(this.form, 'brokeragePrice', '');
  309. this.$set(this.form, 'teamPersonNum', '');
  310. },
  311. /**
  312. * 关闭弹框
  313. * @date 2023-11-22
  314. * @returns {any}
  315. */
  316. cancel() {
  317. this.reset();
  318. this.open = false;
  319. },
  320. /**
  321. * 上传成功
  322. * @date 2023-11-22
  323. * @param {any} res
  324. * @returns {any}
  325. */
  326. handleAvatarSuccess(res) {
  327. if (res.code === 200) {
  328. // this.form.mainImg = res?.data?.url;
  329. this.$set(this.form, 'mainImg', res?.data?.url)
  330. }
  331. },
  332. /**
  333. * 上传文件之前之前
  334. * @date 2023-11-22
  335. * @param {any} file
  336. * @returns {any}
  337. */
  338. beforeAvatarUpload(file) {
  339. const isJPG = file.type === "image/jpeg" || "image/png";
  340. if (!isJPG) {
  341. this.$message.error("上传头像图片只能是jpg或png格式!");
  342. }
  343. return isJPG;
  344. },
  345. /**
  346. * 剧目海报上传成功
  347. * @date 2023-11-22
  348. * @param {any} res
  349. * @returns {any}
  350. */
  351. handlePhotoListSuccess(res) {
  352. if (res.code === 200) {
  353. let photo = {
  354. imageUrl: res?.data?.url,
  355. url: res?.data?.url,
  356. photoType: '2'
  357. }
  358. if(!this.form.photoList){
  359. this.form.photoList = []
  360. }
  361. // this.form.photoList.push(photo);
  362. this.$set(this.form.photoList, this.form.photoList.length, photo);
  363. }
  364. },
  365. handleRemove(file, fileList) {
  366. this.form.photoList.forEach((item, index) => {
  367. if(item.uid == file.uid){
  368. this.form.photoList.splice(index, 1)
  369. }
  370. })
  371. },
  372. },
  373. };
  374. </script>
  375. <style lang="scss" scoped>
  376. .dialog {
  377. padding: 0 30px;
  378. max-height: 65vh;
  379. overflow-y: auto;
  380. }
  381. .dialog {
  382. padding: 0 30px;
  383. .upload-btn {
  384. width: 100px;
  385. height: 100px;
  386. background-color: #fbfdff;
  387. border: dashed 1px #c0ccda;
  388. border-radius: 5px;
  389. i {
  390. font-size: 30px;
  391. margin-top: 20px;
  392. }
  393. &-text {
  394. margin-top: -10px;
  395. }
  396. }
  397. .avatar {
  398. cursor: pointer;
  399. }
  400. }
  401. </style>