123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625 |
- <template>
- <div>
- <a-card size="small" :bordered="false" class="promotionList-wrap searchBoxNormal">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="创建时间">
- <rangeDate ref="rangeDate" @change="dateChange" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="促销名称/简称">
- <a-input id="promotionList-queryWord" v-model.trim="queryParam.queryWord" allowClear placeholder="请输入促销名称/简称"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="发布状态">
- <v-select
- v-model="queryParam.enabledFlag"
- ref="enabledFlag"
- id="promotionList-enabledFlag"
- code="PUBLISH_STATE"
- placeholder="请选择发布状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="活动状态">
- <v-select
- v-model="queryParam.state"
- ref="state"
- id="promotionList-state"
- code="PROMOTION_STATE"
- placeholder="请选择活动状态"
- allowClear
- ></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="创建人">
- <creatorList ref="creatorList" id="promotionList-creatorId" @change="creatorChange" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="promotionList-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="promotionList-reset">重置</a-button>
- <!-- <a-button
- style="margin-left: 10px"
- type="primary"
- class="button-warning"
- @click="handleExport"
- :disabled="disabled"
- :loading="exportLoading"
- >导出</a-button> -->
- <!-- v-if="$hasPermissions('B_promotionListExport')" -->
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-card>
- <a-card size="small" :bordered="false">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 操作按钮 -->
- <div class="table-operator tableBtnSet" >
- <a-button v-if="$hasPermissions('B_dealerPromotionAdd')" id="promotionList-add" type="primary" @click="handleAdd">新增</a-button>
- <a-checkbox @change="handleDealerAudit" v-if="$hasPermissions('B_dealerAudit')" :checked="queryParam.dealerAuditFlag &&queryParam.dealerAuditFlag==1">
- 待审核(修改参与客户)
- </a-checkbox>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+70+'px' }"
- size="small"
- :rowKey="(record) => record.sparePartsReturnNo"
- :columns="columns"
- :data="loadData"
- :scroll="{ y: tableHeight }"
- :defaultLoadData="false"
- bordered>
- <!-- 促销名称 -->
- <template slot="promotionName" slot-scope="text, record">
- <div v-if="$hasPermissions('B_dealerPromotionDetail')" class="link-bule nameBox text-overflows2" @click="handleDetail(record)">{{ record.title }}</div>
- <div v-else class="nameBox text-overflows2">{{ record.title }}</div>
- </template>
- <!-- 促销时间-->
- <template slot="promotionTime" slot-scope="text, record">
- <div>{{ record.promotionDateStart }}-{{ record.promotionDateEnd }}</div>
- </template>
- <!-- 参与客户 -->
- <template slot="joinCustomers" slot-scope="text, record">
- <span class="joinCustomer" v-if="record.dealerScope ==='ALL_DEALER'" @click="handleCustomers(record)">全部客户</span>
- <span class="joinCustomer" v-else @click="handleCustomers(record)">共有<span style="color:#39f;vertical-align:top;">{{ record.dealerSnList?record.dealerSnList.length:0 }}</span>个客户</span>
- <a-badge count="审" v-show="record.dealerAuditFlag == 1" :number-style="{ backgroundColor: '#f30', zoom:'80%' }" />
- <!-- dealerAuditFlag 1 是 0否 -->
- </template>
- <!-- 发布状态 -->
- <template slot="releaseStatus" slot-scope="text, record">
- <a-switch
- v-if="$hasPermissions('B_dealerPromotionStatus')"
- id="promotionList-enable"
- @change="changeStatus(record)"
- :disabled="record.state!='NOT_START' && record.state!='RUNNING'"
- :checked="record.enabledFlag == 1 ? true : false"></a-switch>
- <span v-else>--</span>
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-warning"
- @click="handleSetRules(record)"
- v-if="$hasPermissions('B_dealerPromotionRules')&&(record.state =='WAIT_SUBMIT'||record.state == 'AUDIT_REJECT')"
- id="allocateBillList-examine-btn">规则设置</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_dealerPromotionEdit')&&(record.state == 'WAIT_SUBMIT' ||record.state == 'AUDIT_REJECT')"
- @click="handleEdit(record)"
- class="button-info"
- id="promotionList-edit-btn">编辑</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_dealerPromotionAudit')&&record.state == 'WAIT_AUDIT'"
- @click="handleCheck(record)"
- class="button-info"
- id="promotionList-edit-btn">审核</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_editTime')&&(record.state == 'NOT_START' || record.state=='RUNNING' ||record.state == 'IS_OVER')"
- @click="handleTime(record)"
- class="button-info"
- id="promotionList-edit-btn">时间变更</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_overActive')&&(record.state == 'NO_START' || record.state=='RUNNING')"
- @click="handleEnd(record)"
- class="button-info"
- id="promotionList-edit-btn">终止</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_dealerPromotionDel')&&(record.state == 'WAIT_SUBMIT'||record.state == 'AUDIT_REJECT')"
- @click="handleDel(record)"
- class="button-error"
- id="promotionList-del-btn">删除</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.state != 'AUDIT_REJECT' &&$hasPermissions('B_dealerPromotionCopy')"
- @click="handleCopyModal(record)"
- class="button-info"
- id="promotionList-edit-btn">复制</a-button>
- </template>
- </s-table>
- </a-spin>
- <!-- 参与客户 -->
- <lookUp-customers-modal
- :itemSn="itemPromotionSn"
- :showType="itemStatusType"
- ref="lookUpCustomers"
- :openModal="openCustomerModal"
- :chooseDealerList="chooseDealerArr"
- @submitAudit="editCustomerOk"
- @handleAudit="auditCustomerOk"
- @close="closeCustomer"></lookUp-customers-modal>
- <!-- 新增/编辑弹窗-->
- <add-modal v-drag :itemSn="itemSn" :openModal="openModal" @ok="handleOk" @close="openModal=false" />
- <!-- 促销时间变更 -->
- <edit-active-end-time ref="editTime" v-drag :openModal="editEndModal" @ok="$refs.table.refresh()" @close="editEndModal=false" />
- <!-- 审核弹窗 -->
- <a-modal
- closable
- v-model="openAuditModal"
- :footer="null"
- width="416px"
- centered>
- <div style="display:flex;margin:30px 0 20px 20px;">
- <a-icon type="question-circle" :style="{fontSize:'23px',color:'#faad14'}"/>
- <div style="margin-left:10px;">
- <p style="font-size:16px;font-wight:bold;">提示</p>
- <p>请点击下方按钮确认操作?</p>
- </div>
- </div>
- <!-- 按钮 -->
- <div style="text-align: right;">
- <a-button
- id="auditModal-cancel"
- class="button-cancel"
- @click="closeAuditModal"
- style="margin-right: 15px;">审核不通过</a-button>
- <a-button
- type="primary"
- id="auditModal-save"
- class="button-primary"
- @click="handleAuditModal"
- >审核通过</a-button>
- </div>
- </a-modal>
- <!-- 复制弹窗 -->
- <a-modal
- closable
- v-model="openCopyModal"
- :footer="null"
- width="416px"
- centered>
- <div class="copyContent">
- <p>提示:</p>
- <p>复制选择的促销活动,将在列表生成一条相同的【待提交】的促销活动,可进行编辑!</p>
- <p>是否确认生成?</p>
- <p>附件无法复制,请重新上传</p>
- </div>
- <!-- 按钮 -->
- <div class="copyBtn">
- <a-button
- id="copyModal-cancel"
- class="button-cancel"
- @click="closeCopyModal"
- style="margin-right: 15px;">取消</a-button>
- <a-button
- type="primary"
- id="copyModal-save"
- class="button-primary"
- @click="handleCopy"
- >确定</a-button>
- </div>
- </a-modal>
- </a-card>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import addModal from './addModal.vue'
- import lookUpCustomersModal from './lookUpCustomersModal'
- import rangeDate from '@/views/common/rangeDate.vue'
- import creatorList from '@/views/common/creatorList.vue'
- import editActiveEndTime from './editActiveEndTime.vue'
- import supplier from '@/views/common/supplier.js'
- import warehouse from '@/views/common/chooseWarehouse.js'
- import { dealerPromotionList, dealerPromotionDel, modifyEnabledFlag, promotionAudit, promotionIsOver, handleCopyData, midwaySubmit, dealerMidwayAudit, allDealerSnList } from '@/api/promotion'
- export default {
- name: 'PromotionManagementList',
- mixins: [commonMixin],
- components: { STable, supplier, VSelect, rangeDate, warehouse, lookUpCustomersModal, addModal, editActiveEndTime, creatorList },
- data () {
- return {
- spinning: false,
- disabled: false, // 查询、重置按钮是否可操作
- openModal: false, // 新增弹框是否显示
- openCustomerModal: false, // 参与客户弹窗
- editEndModal: false, // 更改促销时间
- openDetailModal: false, // 详情弹窗
- tableHeight: 0,
- // 查询参数
- queryParam: {
- beginDate: undefined,
- endDate: undefined,
- queryWord: '',
- enabledFlag: undefined, // 发布状态
- state: undefined,
- creatorId: undefined,
- dealerAuditFlag: undefined
- },
- columns: [
- { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
- { title: '创建时间', dataIndex: 'createDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '促销名称', scopedSlots: { customRender: 'promotionName' }, width: '18%', align: 'left' },
- { title: '促销简称', dataIndex: 'description', width: '14%', align: 'left', customRender: function (text) { return text || '--' } },
- { title: '促销时间', scopedSlots: { customRender: 'promotionTime' }, width: '13%', align: 'center' },
- { title: '参与客户', scopedSlots: { customRender: 'joinCustomers' }, width: '7%', align: 'center', ellipsis: true },
- { title: '促销描述', dataIndex: 'content', width: '15%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '创建人', dataIndex: 'creatorName', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '活动状态', dataIndex: 'stateDictValue', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '发布状态', scopedSlots: { customRender: 'releaseStatus' }, width: '7%', align: 'center', ellipsis: true },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- console.log('1111111111:', this.queryParam)
- return dealerPromotionList(Object.assign(parameter, this.queryParam)).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- },
- itemSn: null, // 经销商促销活动SN
- openAuditModal: false, // 审核弹窗,
- openCopyModal: false, // 复制弹窗
- itemPromotionSn: '',
- itemStatusType: '',
- chooseDealerArr: [] // 所选择经销商列表
- }
- },
- methods: {
- // 创建人
- creatorChange (val) {
- this.queryParam.creatorId = val.key
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'dealerPromotionManagementDetail', query: { sn: row.promotionSn } })
- },
- // 创建时间
- dateChange (date) {
- this.queryParam.beginDate = date[0]
- this.queryParam.endDate = date[1]
- },
- // 新增
- handleAdd () {
- this.itemSn = null
- this.openModal = true
- },
- // 参与客户
- handleCustomers (row) {
- this.openCustomerModal = true
- this.itemPromotionSn = row.promotionSn
- if ((row.state === 'NOT_START' || row.state === 'RUNNING') && row.dealerAuditFlag && (row.dealerAuditFlag == 0 || row.dealerAuditFlag == 2)) {
- this.itemStatusType = 'isEdit'
- } else if ((row.state === 'NOT_START' || row.state === 'RUNNING') && row.dealerAuditFlag && row.dealerAuditFlag == 1) {
- this.itemStatusType = 'isAudit'
- } else {
- this.itemStatusType = 'isClose'
- }
- if (row.dealerScope != 'ALL_DEALER') {
- this.chooseDealerArr = row.dealerSnList
- } else {
- this.getAllDealerSnList()
- }
- },
- async getAllDealerSnList () {
- const dealerSnArr = await allDealerSnList({})
- this.chooseDealerArr = dealerSnArr.data
- },
- // 基本信息 保存
- handleOk () {
- this.itemSn = null
- this.resetSearchForm()
- },
- // 编辑
- handleEdit (row) {
- this.openModal = true
- this.itemSn = row.promotionSn
- },
- // 发布状态
- changeStatus (record) {
- const params = {
- promotionSn: record.promotionSn,
- enabledFlag: record.enabledFlag == 1 ? '0' : '1'
- }
- this.spinning = true
- modifyEnabledFlag(params).then(res => {
- if (res.status == 200) {
- this.$message.success(res.message)
- this.$refs.table.refresh()
- this.spinning = false
- } else {
- this.$refs.table.refresh()
- this.spinning = false
- }
- })
- },
- // 规则设置
- handleSetRules (row) {
- this.$router.push({ name: 'dealerPromotionManagementRule', query: { type: 'rule', sn: row.promotionSn } })
- },
- // 审核参与客户
- handleDealerAudit (val) {
- this.queryParam.dealerAuditFlag = val.target.checked ? '1' : undefined
- this.$nextTick(() => {
- this.$refs.table.refresh(true)
- })
- },
- // 审核
- handleCheck (row) {
- const _this = this
- _this.itemSn = row.promotionSn
- _this.openAuditModal = true
- },
- handleAuditModal () {
- this.handleAudit({ promotionSn: this.itemSn, auditFlag: 1 })
- },
- closeAuditModal () {
- this.handleAudit({ promotionSn: this.itemSn, auditFlag: 0 })
- },
- handleAudit (ajaxData) {
- const _this = this
- _this.spinning = true
- promotionAudit(ajaxData).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- _this.itemSn = null
- _this.openAuditModal = false
- _this.spinning = false
- })
- },
- // 复制
- handleCopyModal (row) {
- this.itemSn = row.promotionSn
- this.$nextTick(() => {
- this.openCopyModal = true
- })
- },
- handleCopy () {
- const _this = this
- _this.spinning = true
- handleCopyData({ promotionSn: this.itemSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- _this.itemSn = null
- _this.openCopyModal = false
- _this.spinning = false
- })
- },
- closeCopyModal () {
- this.itemSn = null
- this.openCopyModal = false
- },
- // 促销时间变更
- handleTime (row) {
- this.editEndModal = true
- const showData = {
- sn: row.promotionSn,
- name: row.title,
- timeStart: row.promotionDateStart,
- timeEnd: row.promotionDateEnd
- }
- this.$refs.editTime.setData(showData)
- },
- // 终止
- handleEnd (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确定要终止该促销?',
- centered: true,
- onOk () {
- _this.spinning = true
- promotionIsOver({ sn: row.promotionSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 关闭采购退货详情弹框
- closeDetailModal () {
- this.itemSn = null
- this.openDetailModal = false
- },
- // 删除
- handleDel (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确认要删除该活动吗?',
- centered: true,
- onOk () {
- _this.spinning = true
- dealerPromotionDel({ sn: row.promotionSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 修改参与客户 参与客户提交审核
- editCustomerOk () {
- const _this = this
- midwaySubmit({ promotionSn: _this.itemPromotionSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- })
- },
- auditCustomerOk (con) {
- const _this = this
- dealerMidwayAudit({ promotionSn: _this.itemPromotionSn, dealerAuditStatus: con }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- })
- },
- closeCustomer () {
- this.openCustomerModal = false
- this.itemPromotionSn = ''
- this.chooseDealerArr = []
- },
- // 重置
- resetSearchForm () {
- // 获取创建人默认值
- const creatorObj = this.$store.state.user.info
- const newObj = {
- key: creatorObj.userid,
- name: creatorObj.userNameCN,
- label: creatorObj.userNameCN
- }
- this.$refs.creatorList.setDefaultVal(newObj)
- this.queryParam = {
- beginDate: undefined,
- endDate: undefined,
- queryWord: '',
- enabledFlag: undefined, // 发布状态
- state: undefined,
- creatorId: creatorObj.userid,
- dealerAuditFlag: undefined
- }
- this.$refs.rangeDate.resetDate()
- this.$refs.table.refresh(true)
- },
- pageInit () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- this.openModal = false
- this.openDetailModal = false
- this.itemSn = null
- this.$refs.table.clearTable()
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 235
- }
- },
- watch: {
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- }
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.pageInit()
- this.resetSearchForm()
- }
- },
- activated () {
- // 如果是新页签打开,则重置当前页面
- if (this.$store.state.app.isNewTab) {
- this.pageInit()
- this.resetSearchForm()
- }
- // 仅刷新列表,不重置页面
- if (this.$store.state.app.updateList) {
- this.pageInit()
- this.$refs.table.refresh()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less" scoped>
- .promotionList-wrap{
- .nameBox{
- padding:0 5px;
- }
- }
- .joinCustomer{
- cursor:pointer;
- }
- .copyContent{
- margin:30px 10px 20px;
- p{
- margin-bottom:6px !important;
- font-size:14px;
- }
- p:last-child{
- font-size:12px;
- color:#666;
- text-align:right;
- }
- }
- .copyBtn{
- text-align:center;
- button{
- width: 45%;
- height:40px;
- line-height:40px;
- }
- }
- .tableBtnSet{
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- </style>
|