|
@@ -0,0 +1,580 @@
|
|
|
+<!--
|
|
|
+ * @Description: 新增/编辑弹框
|
|
|
+ * @Author: Sugar.
|
|
|
+ * @Date: 2023-11-24 13:55:00
|
|
|
+ * @LastEditors: Sugar.
|
|
|
+ * @LastEditTime: 22023-11-24 13:55:00
|
|
|
+ * @FilePath: \cattle_webui\src\views\distribution\personnelMr\AddOrEditDialog.vue
|
|
|
+ * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
|
|
|
+-->
|
|
|
+<template>
|
|
|
+ <el-dialog
|
|
|
+ :title="title"
|
|
|
+ :visible.sync="open"
|
|
|
+ width="700px"
|
|
|
+ append-to-body
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ @close="cancel"
|
|
|
+ >
|
|
|
+ <div class="dialog">
|
|
|
+ <el-form :model="form" ref="form" :rules="rules" label-width="120px">
|
|
|
+ <el-form-item label="选择团队:" prop="teamId">
|
|
|
+ <el-select
|
|
|
+ v-model="form.teamId"
|
|
|
+ placeholder="选择团队"
|
|
|
+ clearable
|
|
|
+ @change="teamChange"
|
|
|
+ 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="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="goodsId">
|
|
|
+ <el-select
|
|
|
+ v-model="form.goodsId"
|
|
|
+ placeholder="票务管理"
|
|
|
+ clearable
|
|
|
+ @change="goodsChangeEven"
|
|
|
+ style="width: 100%;"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in ticketList"
|
|
|
+ :key="dict.id"
|
|
|
+ :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="performDate">
|
|
|
+ <el-select
|
|
|
+ v-model="form.seatTypeId"
|
|
|
+ placeholder="座位类型"
|
|
|
+ clearable
|
|
|
+ @change="sessionChangeEven"
|
|
|
+ style="width: 100%;"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in sessionList"
|
|
|
+ :key="dict.id"
|
|
|
+ :label="dict.name"
|
|
|
+ :value="dict.id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="观影人员:" prop="performDate">
|
|
|
+ <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文件,导入模板表头序号、姓名、身份证号码</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.fullscreen.lock="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 } from "@/api/team/applicationMr";
|
|
|
+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,
|
|
|
+ uploadLoading: false,
|
|
|
+ form: {
|
|
|
+ id: undefined,
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ teamId: [{ required: true, message: "请选择团队", trigger: "blur" }],
|
|
|
+ theatreId: [{ required: true, message: "请选择场馆", trigger: "blur" }],
|
|
|
+ auditoriumId: [{ required: true, message: "请选择演出厅", trigger: "blur" }],
|
|
|
+ performId: [{ required: true, message: "请选择选择剧目", trigger: "blur" }],
|
|
|
+ goodsId: [{ required: true, message: "请选择票务", trigger: "blur" }],
|
|
|
+ seatTypeId: [{ required: true, message: "请选择座位类型", trigger: "blur" }],
|
|
|
+ price: [{ required: true, message: "请输入团购单价", trigger: "blur" }],
|
|
|
+ teamPersonNum: [{ required: true, message: "请输入人数", trigger: "blur" }],
|
|
|
+ },
|
|
|
+ uploadObj: {
|
|
|
+ url: process.env.VUE_APP_UPLOAD_FILE_API + "/upload/single/minio",
|
|
|
+ Headers: { Authorization: "Bearer " + getToken() },
|
|
|
+ },
|
|
|
+ goodsList: [],
|
|
|
+ ticketList: [],
|
|
|
+ seatList: [],
|
|
|
+ merchantList: [],
|
|
|
+ theatreList: [],
|
|
|
+ teamList: [],
|
|
|
+ sssionList: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ 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();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /** 获取详情 */
|
|
|
+ getSelectByIdApi(row) {
|
|
|
+ const id = row.id
|
|
|
+ getSelectById(id).then(response => {
|
|
|
+ const obj = response.data;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$set(this.form, 'id', obj.id);
|
|
|
+ this.$set(this.form, 'goodsId', obj.goodsId);
|
|
|
+ this.$set(this.form, 'seatTypeId', obj.seatTypeId);
|
|
|
+ this.$set(this.form, 'performId', obj.performId);
|
|
|
+ this.$set(this.form, 'originalSalePrice', obj.originalSalePrice);
|
|
|
+ this.$set(this.form, 'salePrice', obj.salePrice);
|
|
|
+ this.$set(this.form, 'brokeragePrice', obj.brokeragePrice);
|
|
|
+
|
|
|
+ this.ticketListApi();
|
|
|
+ this.getSeatTypeList({goodsId: this.form.goodsId, performId: this.form.performId});
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 团队列表查询 */
|
|
|
+ teamPageListApi() {
|
|
|
+ teamPageList(this.addDateRange({pageNum: 1, pageSize: 100}))
|
|
|
+ .then(response => {
|
|
|
+ this.teamList = response.data.rows;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 场馆列表查询 */
|
|
|
+ getList(name) {
|
|
|
+ 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)
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 团队选择 */
|
|
|
+ teamChange(val) {
|
|
|
+ this.teamList.forEach(item => {
|
|
|
+ if(val == item.id){
|
|
|
+ this.$set(this.form, 'teamName', item.name)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 场馆选择 */
|
|
|
+ changeTheatre(id) {
|
|
|
+ this.merchantPageList(id)
|
|
|
+ this.theatreList.forEach(item => {
|
|
|
+ if(id == item.id){
|
|
|
+ this.$set(this.form, 'theatreName', item.name)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.$set(this.form, 'auditoriumId', '')
|
|
|
+ },
|
|
|
+ /** 演出厅选择 */
|
|
|
+ auditoriumChange(id) {
|
|
|
+ this.merchantList.forEach(item => {
|
|
|
+ if(id == item.id){
|
|
|
+ this.$set(this.form, 'auditoriumName', item.name)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 演出厅列表查询 */
|
|
|
+ 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(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
|
|
|
+ .then(response => {
|
|
|
+ this.seatList = response.data.rows;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 预约场次列表 */
|
|
|
+ getSessionList(obj) {
|
|
|
+ seatPricePageList(this.addDateRange({pageNum: 1, pageSize: 100, goodsId: obj.goodsId, performId: obj.performId}))
|
|
|
+ .then(response => {
|
|
|
+ this.sessionList = response.data.rows;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 价格输入事件 */
|
|
|
+ changePriceAmount(key) {
|
|
|
+ if(this.form[key] * 1 < 0){
|
|
|
+ this.$message.error("输入需大于或等于0!");
|
|
|
+ this.$set(this.form, key, '');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /** 预约场次改变事件 */
|
|
|
+ sessionChangeEven(val) {
|
|
|
+
|
|
|
+ },
|
|
|
+ // 剧目改变事件
|
|
|
+ performChangeEven(val) {
|
|
|
+ this.seatList = [];
|
|
|
+ this.ticketList = [];
|
|
|
+ this.$set(this.form, 'originalSalePrice', '')
|
|
|
+ this.goodsList.forEach(item => {
|
|
|
+ if(item.id == val){
|
|
|
+ this.$set(this.form, 'performName', item.name)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.ticketListApi(val);
|
|
|
+ },
|
|
|
+ // 票务改变事件
|
|
|
+ goodsChangeEven(id) {
|
|
|
+ this.seatList = [];
|
|
|
+ this.ticketList.forEach(item => {
|
|
|
+ if(item.id == val){
|
|
|
+ this.$set(this.form, 'goodsName', item.goodsName)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.$set(this.form, 'originalSalePrice', '');
|
|
|
+ this.$set(this.form, 'seatTypeId', '');
|
|
|
+
|
|
|
+ let selectMap = {goodsId: this.form.goodsId, performId: this.form.performId}
|
|
|
+ this.getSeatTypeList(selectMap);
|
|
|
+ },
|
|
|
+ // 座位类型改变事件
|
|
|
+ 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, 'seatTypeName', item.seatTypeName);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 座位类型名称
|
|
|
+ seatTypeNameEven(val) {
|
|
|
+ let seatTypeName = '';
|
|
|
+ this.seatList.forEach(item =>{
|
|
|
+ if(item.seatTypeId == val){
|
|
|
+ seatTypeName = item.seatTypeName;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ seatTypeName
|
|
|
+ },
|
|
|
+ // 预约时间
|
|
|
+ performDateEven(val) {
|
|
|
+
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 保存
|
|
|
+ * @date 2023-11-22
|
|
|
+ * @returns {any}
|
|
|
+ */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(async (valid) => {
|
|
|
+ if (valid) {
|
|
|
+ try {
|
|
|
+ this.loading = true;
|
|
|
+ const { code } = await saveAndEdit({ ...this.form });
|
|
|
+ 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, 'goodsId', '');
|
|
|
+ this.$set(this.form, 'seatTypeId', '');
|
|
|
+ this.$set(this.form, 'performId', '');
|
|
|
+ this.$set(this.form, 'originalSalePrice', '');
|
|
|
+ this.$set(this.form, 'salePrice', '');
|
|
|
+ this.$set(this.form, 'brokeragePrice', '');
|
|
|
+ this.$set(this.form, 'viewerList', []);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 关闭弹框
|
|
|
+ * @date 2023-11-22
|
|
|
+ * @returns {any}
|
|
|
+ */
|
|
|
+ cancel() {
|
|
|
+ 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
|
|
|
+ * @param {any} file
|
|
|
+ * @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;
|
|
|
+ },
|
|
|
+ // 上传图片
|
|
|
+ uploadExcelApi(file) {
|
|
|
+ try {
|
|
|
+ let formData = new FormData();
|
|
|
+ formData.append("file", file);
|
|
|
+ this.uploadLoading = true;
|
|
|
+ uploadExcel(formData).then(response => {
|
|
|
+ this.$set(this.form, 'viewerList', response.data)
|
|
|
+ });
|
|
|
+ } catch (e) {
|
|
|
+ } finally {
|
|
|
+ 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>
|
|
|
+
|
|
|
+<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>
|