123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- <template>
- <a-modal
- centered
- class="promotionAdd-modal"
- :footer="null"
- :maskClosable="false"
- :title="itemSn?'编辑':'新增'"
- v-model="isShow"
- @cancel="isShow=false"
- width="70%">
- <a-spin :spinning="spinning" tip="Loading...">
- <div class="promotionAdd-con">
- <a-form-model
- id="promotionAdd-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol">
- <a-row>
- <a-col :xs="12" :sm="12" :md="12" :lg="12" :xl="12">
- <a-form-model-item label="促销名称" prop="promoName" :label-col="{span:6}" :wrapper-col="{span:14}">
- <a-input
- id="promotionAdd-promoName"
- :maxLength="20"
- v-model.trim="form.promoName"
- placeholder="请输入促销名称(最多20个字符)"
- allowClear/>
- </a-form-model-item>
- </a-col>
- <a-col :xs="12" :sm="12" :md="12" :lg="12" :xl="12">
- <a-form-model-item label="促销时间" prop="time" :label-col="{span:6}" :wrapper-col="{span:14}">
- <a-range-picker
- style="width:100%"
- id="promotionAdd-time"
- v-model="form.time"
- :format="dateFormat"
- :disabled-date="disabledDate"
- @change="dateChange"
- :placeholder="['开始时间', '结束时间']" />
- </a-form-model-item>
- </a-col>
- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <a-form-model-item label="排序" prop="sort">
- <a-input-number
- style="width:37%"
- id="promotionAdd-sort"
- allowClear
- placeholder="请输入排序数字(数字越大越靠后)"
- v-model="form.sort"
- :min="0"
- :max="99999999"/>
- </a-form-model-item>
- </a-col>
- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <a-form-model-item label="参与经销商" prop="allDealerFlag">
- <a-row :gutter="15">
- <a-col :md="10" :sm="24">
- <a-select
- style="width:90%;"
- id="promotionAdd-allDealerFlag"
- v-model="form.allDealerFlag"
- placeholder="请选择参与经销商"
- @change="changeDealerScope"
- allowClear>
- <a-select-option id="promotionAdd-dealerScope-all" value="1">全部经销商</a-select-option>
- <a-select-option id="promotionAdd-dealerScope-some" value="0">部分经销商</a-select-option>
- </a-select>
- </a-col>
- <a-col :md="3" :sm="24" v-show="form.allDealerFlag && form.allDealerFlag!='1' ">
- <a-button id="promotionAdd-dealerScope" type="primary" :loading="spinning" @click="handleDealerModal">选择</a-button>
- </a-col>
- <a-col :md="5" :sm="24" v-show="chooseDealerList && chooseDealerList.length>0">
- 已 {{ chooseDealerList.length }} 选项
- </a-col>
- <a-col :md="24" :sm="24" v-show="chooseDealerList && chooseDealerList.length>0">
- <div class="buyerBox">
- <a-tag closable v-for="con in chooseDealerList" id="promotionAdd-dealerSn" :key="con.dealerSn" @close="delBuyerName(con)">
- {{ con.dealerName }}
- </a-tag>
- </div>
- </a-col>
- </a-row>
- </a-form-model-item>
- </a-col>
- <a-col
- :xs="24"
- :sm="24"
- :md="24"
- :lg="24"
- :xl="24"
- class="imageUrl_box">
- <a-form-model-item label="封面图片" prop="imageUrl">
- <Upload
- class="upload"
- id="promotionAdd-imageUrl"
- v-model="form.imageUrl"
- ref="imageSet"
- :fileSize="10"
- :maxNums="1"
- @change="changeImage"
- listType="picture-card"></Upload>
- <div class="upload-desc">说明:单张大小小于10Mb;建议尺寸:宽(420px)*高(230px)</div>
- </a-form-model-item>
- </a-col>
- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <a-form-model-item label="促销描述" prop="description">
- <a-input
- v-model="form.description"
- type="textarea"
- id="promotionAdd-description"
- placeholder="请输入促销描述(最多500个字符)"
- :maxLength="500" />
- </a-form-model-item>
- </a-col>
- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <a-form-model-item label="加盟商开关权限" prop="dealerOpenFlag">
- <v-select
- v-model="form.dealerOpenFlag"
- id="promotionAdd-dealerOpenFlag"
- code="FLAG"
- showType="radio"
- allowClear></v-select>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- <div class="btn-cont">
- <a-button id="promotionAdd-close-btn" style="margin-right: 15px;" @click="isShow = false">取消</a-button>
- <a-button
- type="primary"
- class="button-primary"
- :disabled="spinning"
- id="promotionAdd-submit-btn"
- @click="handleSave()">保存</a-button>
- </div>
- </div>
- </a-spin>
- <!-- 选择经销商 -->
- <chooseDealer ref="chooseDearler" :openModal="openDealerModal" :chooseInfo="chooseSnList" @close="closeDealerModal" @ok="addDealerOk"></chooseDealer>
- </a-modal>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import moment from 'moment'
- // 组件
- import { STable, VSelect, Upload } from '@/components'
- import chooseDealer from '@/views/easyPassManagement/homepageCarouselImg/chooseDealer'
- // 接口
- import { shopPromoDetail, saveShopPromo } from '@/api/shopPromo'
- export default {
- name: 'AddPromotionModal',
- mixins: [commonMixin],
- components: { STable, VSelect, Upload, chooseDealer },
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- itemSn: {// 活动sn
- type: String,
- default: ''
- },
- typeVal: {// 添加活动类型
- type: String,
- default: ''
- },
- chooseProductNum: {
- type: [String, Number],
- default: null
- }
- },
- data () {
- return {
- isShow: this.openModal, // 是否打开弹框
- spinning: false, // 页面加载状态
- // form表单label布局
- formItemLayout: {
- labelCol: { span: 3 },
- wrapperCol: { span: 19 }
- },
- dateFormat: 'YYYY-MM-DD', // 促销时间显示格式
- chooseDealerList: [], // 已选择的经销商列表
- chooseSnList: [], // 已选经销商sn集合
- openDealerModal: false, // 经销商弹窗
- hasEq: null, // 选择经销商数据是否发生变化
- oldDealerFlag: null, // 编辑页面,初始选择经销商值
- isAllDealerFlag: null, // 是否是全部经销商
- form: {
- promoType: undefined, // 促销类型
- promoName: '', // '促销名称'
- time: [], // 促销时间
- promoStartDate: undefined, // 促销时间-开始
- promoEndDate: undefined, // 促销时间-结束
- sort: undefined, // 排序
- allDealerFlag: '1', // 全部经销商 1 部分经销商0'
- imageUrl: undefined, // 促销封面图
- description: '', // '促销描述'
- dealerEditFlag: '0', // 加盟商编辑 0否 1是
- dealerOpenFlag: '0' // 加盟商开关权限 0否 1是
- },
- // 表单验证规则
- rules: {
- promoName: [{ required: true, message: '请输入促销名称', trigger: 'blur' }],
- time: [{ required: true, message: '请选择促销时间', trigger: 'change' }],
- sort: [{ required: true, message: '请输入排序数字', trigger: 'blur' }],
- allDealerFlag: [{ required: true, message: '请选择参与经销商', trigger: 'change' }],
- imageUrl: [{ required: true, message: '请选择要上传的封面图片', trigger: 'change' }],
- description: [{ required: true, message: '请输入促销描述内容', trigger: 'blur' }],
- dealerOpenFlag: [{ required: true, message: '请选择加盟商开关权限', trigger: 'change' }]
- }
- }
- },
- methods: {
- // 封面图片上传
- changeImage (file) {
- this.form.imageUrl = file
- },
- // 参与经销商 change
- changeDealerScope (val) {
- // 全部切部分
- if (this.isAllDealerFlag == '1' && this.isAllDealerFlag != val) {
- this.oldDealerFlag = '1'
- } else {
- this.oldDealerFlag = '0'
- }
- const _this = this
- _this.form.allDealerFlag = val
- if (val == '1' || !val) {
- _this.chooseDealerList = []
- }
- },
- // 部分 打开选择经销商弹窗
- handleDealerModal () {
- this.chooseSnList = this.chooseDealerList.map(item => item.dealerSn)
- this.openDealerModal = true
- },
- // 关闭 选择经销商弹窗
- closeDealerModal () {
- this.chooseSnList = []
- this.openDealerModal = false
- },
- // 部分经销商 选择经销商成功
- addDealerOk (list) {
- const _this = this
- if (this.chooseDealerList && this.chooseDealerList.length == 0 && this.oldDealerFlag === '1') {
- _this.hasEq = []
- } else {
- _this.hasEq = list.filter(item => !this.chooseDealerList.map(k => k.dealerSn).includes(item.dealerSn))
- }
- _this.chooseDealerList = list
- _this.openDealerModal = false
- },
- // 部分经销商 删除
- delBuyerName (row) {
- const pos = this.chooseDealerList.findIndex(item => item.dealerSn == row.dealerSn)
- if (pos >= 0) {
- this.chooseDealerList.splice(pos, 1)
- }
- },
- // 禁用日期时间
- disabledDate (current) {
- return current && current < moment().startOf('day')
- },
- // 促销时间 change
- dateChange (date, dateStrings) {
- if (dateStrings && dateStrings[0]) {
- this.form.time = dateStrings
- this.form.promoStartDate = date.length ? dateStrings[0] + ' 00:00:00' : ''
- this.form.promoEndDate = date.length ? dateStrings[1] + ' 23:59:59' : ''
- } else {
- this.form.time = []
- }
- },
- // 保存
- handleSave () {
- const _this = this
- // 验证组件必填项
- _this.$refs.ruleForm.validate(valid => {
- if (valid) {
- _this.form.promoType = _this.typeVal
- var formData = JSON.parse(JSON.stringify(_this.form))
- // 部分经销商
- if (formData.allDealerFlag == '0') {
- if (_this.chooseDealerList && _this.chooseDealerList.length == 0) {
- _this.$message.warning('请选择参与经销商!')
- return
- }
- formData.dealerSnList = _this.chooseDealerList.map(con => con.dealerSn)
- }
- delete formData.time
- delete formData.shopPromoDealerList
- if (_this.itemSn && _this.itemSn.length > 0) {
- if (_this.chooseProductNum > 0 && ((_this.hasEq && _this.hasEq.length > 0) || _this.oldDealerFlag != '1')) {
- _this.$confirm({
- title: '提示',
- content: <div>变更【参与经销商】后将会【<span style="color:red">清空</span>】已选产品列表,确定变更吗?</div>,
- centered: true,
- onOk () {
- _this.saveSuccess(formData, '1')
- },
- onCancel () {
- console.log('取消变更经销商')
- }
- })
- } else {
- _this.saveSuccess(formData, '0')
- }
- } else {
- _this.saveSuccess(formData, '0')
- }
- }
- })
- },
- saveSuccess (ajaxData, type) {
- const _this = this
- _this.spinning = true
- ajaxData.saveType = 'alone'
- saveShopPromo(ajaxData).then(res => {
- if (res.status == 200) {
- _this.spinning = false
- if (res.data.errorMsg && res.data.errorMsg.length > 0) {
- this.$confirm({
- title: '提示',
- content: res.data.errorMsg.map((item, i) => { return <p>{i * 1 + 1}、{item}</p> }),
- centered: true,
- okText: '知道了',
- cancelText: '取消', // 将cancelText设置为空字符串或去掉该属性可以隐藏取消按钮
- cancelButtonProps: {
- style: {
- display: 'none' // 通过设置样式隐藏取消按钮
- }
- },
- onOk () {
- console.log('知道了')
- }
- })
- return
- }
- _this.$message.success(res.message)
- _this.$nextTick(() => {
- _this.isShow = false
- _this.$emit('ok', type)
- })
- } else {
- _this.spinning = false
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.form = {
- promoType: undefined, // 促销类型
- promoName: '', // '促销名称'
- time: [], // 促销时间
- promoStartDate: undefined, // 促销时间-开始
- promoEndDate: undefined, // 促销时间-结束
- sort: undefined, // 排序
- allDealerFlag: '1', // 全部经销商 1 部分经销商0'
- imageUrl: undefined, // 促销封面图
- description: '', // '促销描述'
- dealerEditFlag: '0', // 加盟商编辑 0否 1是
- dealerOpenFlag: '0' // 加盟商开关权限 0否 1是
- }
- this.chooseDealerList = []
- if (this.$refs.imageSet) {
- this.$refs.imageSet.setFileList('')
- }
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields()
- }
- },
- // 详情
- async getDetail () {
- const _this = this
- const res = await shopPromoDetail({ sn: _this.itemSn })
- if (res.status == 200) {
- if (res.data.promoStartDate && res.data.promoEndDate) {
- const startTime = res.data.promoStartDate.split(' ')[0]
- const endTime = res.data.promoEndDate.split(' ')[0]
- res.data.time = [startTime, endTime]
- }
- if (res.data.imageUrl) {
- _this.$refs.imageSet.setFileList(res.data.imageUrl)
- }
- _this.form = res.data
- _this.isShowNextStep = true
- if (_this.$route.params.pageType === 'edit') {
- _this.pageType = res.data.promoType
- _this.promotionName = res.data.promoName
- }
- _this.isAllDealerFlag = _this.form.allDealerFlag // 存储是否是全部经销商
- // 部分经销商
- if (_this.form.allDealerFlag == 0) {
- _this.chooseDealerList = _this.form.shopPromoDealerList
- }
- }
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- this.resetSearchForm()
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .promotionAdd-modal{
- /deep/.imageUrl_box .ant-form-item-control{
- line-height:0 !important;
- }
- .upload-desc{// 商品图片描述
- padding-top:10px;
- font-size: 12px;
- color: #808695;
- }
- .buyerBox{
- border:1px solid #d9d9d9;
- margin-top:10px;
- border-radius:4px;
- padding:4px 10px;
- background:#f2f2f2;
- max-height:130px;
- overflow-y:scroll;
- scrollbar-width: none;
- }
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- }
- </style>
|