addAndEdit.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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\ticketMr\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="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="brokeragePrice">
  91. <el-input
  92. type="number"
  93. v-model="form.brokeragePrice"
  94. placeholder=""
  95. clearable
  96. @change="changePriceAmount('brokeragePrice')"
  97. style="width: 260px;"
  98. >
  99. <template slot="append">元</template>
  100. </el-input>
  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, seatPricePageList } from "@/api/distribution/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. export default {
  129. name: "addAndEdit",
  130. props: {
  131. dict: {
  132. type: Object,
  133. default: () => [],
  134. },
  135. },
  136. components: {
  137. Editor,
  138. },
  139. data() {
  140. return {
  141. title: "编辑",
  142. model: "EDIT",
  143. activeName: '01',
  144. open: false,
  145. loading: false,
  146. form: {
  147. id: undefined,
  148. },
  149. rules: {
  150. performId: [{ required: true, message: "请选择剧目", trigger: "blur" }],
  151. goodsId: [{ required: true, message: "请选择票务", trigger: "blur" }],
  152. seatTypeId: [{ required: true, message: "请选择座位类型", trigger: "blur" }],
  153. originalSalePrice: [{ required: true, message: "请输入销售价", trigger: "blur" }],
  154. salePrice: [{ required: true, message: "请输入分销价", trigger: "blur" }],
  155. brokeragePrice: [{ required: true, message: "请输入佣金", trigger: "blur" }],
  156. },
  157. uploadObj: {
  158. url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
  159. Headers: { Authorization: "Bearer " + getToken() },
  160. },
  161. goodsList: [],
  162. ticketList: [],
  163. seatList: []
  164. };
  165. },
  166. methods: {
  167. /**
  168. * 打开弹框
  169. * @date 2023-11-22
  170. * @param {any} obj
  171. * @returns {any}
  172. */
  173. openDialog(title, obj) {
  174. this.open = true;
  175. this.goodsPageList();
  176. this.reset();
  177. if (obj){
  178. this.title = "编辑票务管理";
  179. this.getSelectByIdApi(obj);
  180. }else{
  181. this.title = "添加票务管理";
  182. this.$nextTick(() => {
  183. this.$refs["form"].clearValidate();
  184. });
  185. }
  186. },
  187. /** 获取详情 */
  188. getSelectByIdApi(row) {
  189. const id = row.id
  190. getSelectById(id).then(response => {
  191. const obj = response.data;
  192. this.$nextTick(() => {
  193. this.$set(this.form, 'id', obj.id);
  194. this.$set(this.form, 'goodsId', obj.goodsId);
  195. this.$set(this.form, 'seatTypeId', obj.seatTypeId);
  196. this.$set(this.form, 'performId', obj.performId);
  197. this.$set(this.form, 'originalSalePrice', obj.originalSalePrice);
  198. this.$set(this.form, 'salePrice', obj.salePrice);
  199. this.$set(this.form, 'brokeragePrice', obj.brokeragePrice);
  200. this.ticketListApi();
  201. this.getSeatTypeList({goodsId: this.form.goodsId, performId: this.form.performId});
  202. });
  203. });
  204. },
  205. /** 剧目列表查询 */
  206. goodsPageList() {
  207. goodsPageList(this.addDateRange({pageNum: 1, pageSize: 100, status: 1}))
  208. .then(response => {
  209. this.goodsList = response.data.rows;
  210. });
  211. },
  212. /** 票务列表查询 */
  213. ticketListApi(performId) {
  214. this.ticketList = []
  215. seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, performId: performId}))
  216. .then(response => {
  217. let ticketList = []
  218. response.data.rows.forEach(item => {
  219. if(ticketList.indexOf(item.goodsId) == -1){
  220. this.ticketList.push(item);
  221. ticketList.push(item.goodsId);
  222. }
  223. })
  224. });
  225. },
  226. /** 座位类型列表 */
  227. getSeatTypeList(obj) {
  228. seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
  229. .then(response => {
  230. let ticketList = []
  231. response.data.rows.forEach(item => {
  232. if(ticketList.indexOf(item.seatTypeId) == -1){
  233. this.seatList.push(item);
  234. ticketList.push(item.seatTypeId);
  235. }
  236. })
  237. });
  238. },
  239. /** 价格输入事件 */
  240. changePriceAmount(key) {
  241. if(this.form[key] * 1 < 0){
  242. this.$message.error("输入需大于或等于0!");
  243. this.$set(this.form, key, '');
  244. return false
  245. }
  246. },
  247. // 剧目改变事件
  248. performChangeEven(val) {
  249. this.seatList = [];
  250. this.ticketList = [];
  251. this.$set(this.form, 'goodsId', '')
  252. this.$set(this.form, 'seatTypeId', '')
  253. this.$set(this.form, 'originalSalePrice', '')
  254. this.ticketListApi(val);
  255. },
  256. // 票务改变事件
  257. goodsChangeEven() {
  258. this.seatList = [];
  259. this.$set(this.form, 'originalSalePrice', '');
  260. this.$set(this.form, 'seatTypeId', '');
  261. let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
  262. this.getSeatTypeList(selectMap);
  263. },
  264. // 座位类型改变事件
  265. seatChangeEven(val) {
  266. this.seatList.forEach(item => {
  267. if(item.seatTypeId == val){
  268. this.$set(this.form, 'originalSalePrice', item.priceAmount);
  269. }
  270. })
  271. },
  272. /**
  273. * 保存
  274. * @date 2023-11-22
  275. * @returns {any}
  276. */
  277. submitForm() {
  278. this.$refs["form"].validate(async (valid) => {
  279. if (valid) {
  280. try {
  281. this.loading = true;
  282. const { code } = await saveAndEdit({ ...this.form });
  283. if (code === 200) {
  284. this.$message.success("操作成功!");
  285. this.$emit("getList");
  286. this.cancel();
  287. }
  288. } catch (error) {
  289. } finally {
  290. this.loading = false;
  291. }
  292. }
  293. });
  294. },
  295. /**
  296. * 重置
  297. * @date 2023-11-22
  298. * @returns {any}
  299. */
  300. reset() {
  301. this.$set(this.form, 'id', '');
  302. this.$set(this.form, 'goodsId', '');
  303. this.$set(this.form, 'seatTypeId', '');
  304. this.$set(this.form, 'performId', '');
  305. this.$set(this.form, 'originalSalePrice', '');
  306. this.$set(this.form, 'salePrice', '');
  307. this.$set(this.form, 'brokeragePrice', '');
  308. },
  309. /**
  310. * 关闭弹框
  311. * @date 2023-11-22
  312. * @returns {any}
  313. */
  314. cancel() {
  315. this.reset();
  316. this.open = false;
  317. },
  318. /**
  319. * 上传成功
  320. * @date 2023-11-22
  321. * @param {any} res
  322. * @returns {any}
  323. */
  324. handleAvatarSuccess(res) {
  325. if (res.code === 200) {
  326. // this.form.mainImg = res?.data?.url;
  327. this.$set(this.form, 'mainImg', res?.data?.url)
  328. }
  329. },
  330. /**
  331. * 上传文件之前之前
  332. * @date 2023-11-22
  333. * @param {any} file
  334. * @returns {any}
  335. */
  336. beforeAvatarUpload(file) {
  337. const isJPG = file.type === "image/jpeg" || "image/png";
  338. if (!isJPG) {
  339. this.$message.error("上传头像图片只能是jpg或png格式!");
  340. }
  341. return isJPG;
  342. },
  343. /**
  344. * 剧目海报上传成功
  345. * @date 2023-11-22
  346. * @param {any} res
  347. * @returns {any}
  348. */
  349. handlePhotoListSuccess(res) {
  350. if (res.code === 200) {
  351. let photo = {
  352. imageUrl: res?.data?.url,
  353. url: res?.data?.url,
  354. photoType: '2'
  355. }
  356. if(!this.form.photoList){
  357. this.form.photoList = []
  358. }
  359. // this.form.photoList.push(photo);
  360. this.$set(this.form.photoList, this.form.photoList.length, photo);
  361. }
  362. },
  363. handleRemove(file, fileList) {
  364. this.form.photoList.forEach((item, index) => {
  365. if(item.uid == file.uid){
  366. this.form.photoList.splice(index, 1)
  367. }
  368. })
  369. },
  370. },
  371. };
  372. </script>
  373. <style lang="scss" scoped>
  374. .dialog {
  375. padding: 0 30px;
  376. max-height: 65vh;
  377. overflow-y: auto;
  378. }
  379. .dialog {
  380. padding: 0 30px;
  381. .upload-btn {
  382. width: 100px;
  383. height: 100px;
  384. background-color: #fbfdff;
  385. border: dashed 1px #c0ccda;
  386. border-radius: 5px;
  387. i {
  388. font-size: 30px;
  389. margin-top: 20px;
  390. }
  391. &-text {
  392. margin-top: -10px;
  393. }
  394. }
  395. .avatar {
  396. cursor: pointer;
  397. }
  398. }
  399. </style>