123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <template>
- <a-card size="small" :bordered="false" class="promotionList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <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="5" :sm="24">
- <a-form-item label="创建时间">
- <rangeDate ref="rangeDate" @change="dateChange" />
- </a-form-item>
- </a-col>
- <a-col :md="5" :sm="24">
- <a-form-item label="促销名称">
- <a-input id="promotionList-title" v-model.trim="queryParam.title" allowClear placeholder="请输入促销名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="5" :sm="24">
- <a-form-item label="发布状态">
- <v-select
- v-model="queryParam.publishStatus"
- ref="publishStatus"
- id="promotionList-publishStatus"
- code="SPARE_PARTS_RETURN_REASON"
- placeholder="请选择发布状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="5" :sm="24">
- <a-form-item label="活动状态">
- <v-select
- v-model="queryParam.state"
- ref="state"
- id="promotionList-state"
- code="SPARE_PARTS_RETURN_STATE"
- placeholder="请选择活动状态"
- allowClear
- ></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="4" :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>
- <!-- 操作按钮 -->
- <div class="table-operator">
- <!-- v-if="$hasPermissions('B_promotionListAdd')" -->
- <a-button id="promotionList-add" type="primary" class="button-error" @click="handleAdd">新增</a-button>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+84.5+'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 class="link-bule nameBox text-overflows2" @click="handleDetail(record)">{{ 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">
- <div @click="handleCustomers(record)">共有<span style="color:#39f;vertical-align:top;">{{ record.dealerSnList?record.dealerSnList.length:0 }}</span>个客户</div>
- </template>
- <!-- 发布状态 -->
- <template slot="releaseStatus" slot-scope="text, record">
- <a-switch
- v-if="record.enabledFlag"
- id="promotionList-enable"
- @change="changeStatus(record)"
- :checked="record.enabledFlag == 1 ? true : false"></a-switch>
- </template>
- <!-- 操作 -->
- <!-- state 待提交 WAIT_SUBMIT 待审核 WAIT_AUDIT 未开始 NO_START 进行中 A_FOOT 已完结 FINISH 审核不通过 AUDIT_REJECT -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-warning"
- @click="handleSetRules(record)"
- v-if="record.state =='WAIT_SUBMIT'"
- id="allocateBillList-examine-btn">规则设置</a-button>
- <a-button
- size="small"
- type="link"
- v-if="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="record.state == 'WAIT_AUDIT'"
- @click="handleCheck(record)"
- class="button-info"
- id="promotionList-edit-btn">审核</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.state == 'NO_START' || record.state=='A_FOOT'"
- @click="handleTime(record)"
- class="button-info"
- id="promotionList-edit-btn">促销时间变更</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.state == 'NO_START' || record.state=='A_FOOT'"
- @click="handleEnd(record)"
- class="button-info"
- id="promotionList-edit-btn">终止</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.state == 'WAIT_SUBMIT'||record.state == 'AUDIT_REJECT'"
- @click="handleDel(record)"
- class="button-error"
- id="promotionList-del-btn">删除</a-button>
- <div v-if="record.state == 'FINISH'">--</div>
- </template>
- </s-table>
- </a-spin>
- <!-- 参与客户 -->
- <lookUp-customers-modal ref="lookUpCustomers" :openModal="openCustomerModal" @close="openCustomerModal = false"></lookUp-customers-modal>
- <!-- 新增/编辑弹窗-->
- <add-modal v-drag :itemSn="itemSn" :openModal="openModal" @ok="handleOk" @close="openModal=false" />
- <!-- 促销时间变更 -->
- <edit-active-end-time v-drag :openModal="editEndModal" @ok="handleEditOk" @close="editEndModal=false" />
- </a-card>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import addModal from './addModal.vue'
- import lookUpCustomersModal from '../promotionManagement/lookUpCustomersModal'
- // import detailModal from './detailModal.vue'
- import rangeDate from '@/views/common/rangeDate.vue'
- // import chooseDepartUserModal from './chooseDepartUserModal.vue'
- import editActiveEndTime from './editActiveEndTime.vue'
- import reportModal from '@/views/common/reportModal.vue'
- import { hdExportExcel } from '@/libs/exportExcel'
- import supplier from '@/views/common/supplier.js'
- import warehouse from '@/views/common/chooseWarehouse.js'
- import { dealerPromotionList, dealerPromotionDel, sparePartsReturnExportDetail, againSubmit } from '@/api/promotion'
- export default {
- name: 'PromotionManagementList',
- mixins: [commonMixin],
- components: { STable, supplier, VSelect, reportModal, rangeDate, warehouse, lookUpCustomersModal, addModal, editActiveEndTime },
- data () {
- return {
- spinning: false,
- disabled: false, // 查询、重置按钮是否可操作
- openModal: false, // 新增弹框是否显示
- openCustomerModal: false, // 参与客户弹窗
- editEndModal: false,
- openDetailModal: false, // 详情弹窗
- showExport: false,
- exportLoading: false,
- tableHeight: 0,
- // 查询参数
- queryParam: {
- beginDate: undefined,
- endDate: undefined,
- title: '',
- publishStatus: undefined, // 发布状态
- state: 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: '14%', align: 'center' },
- { title: '促销时间', scopedSlots: { customRender: 'promotionTime' }, width: '15%', align: 'center' },
- { title: '参与客户', scopedSlots: { customRender: 'joinCustomers' }, width: '12%', align: 'center', ellipsis: true },
- { title: '促销描述', dataIndex: 'description', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '活动状态', dataIndex: 'stateDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '发布状态', scopedSlots: { customRender: 'releaseStatus' }, width: '9%', align: 'center', ellipsis: true },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- 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
- })
- },
- itemSnSh: null,
- itemSn: null, // 经销商促销活动SN
- auditTime: null// 审核时间
- }
- },
- methods: {
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'dealerPromotionManagementDetail', query: { sn: row.promotionSn } })
- },
- // 创建时间
- dateChange (date) {
- this.queryParam.beginDate = date[0]
- this.queryParam.endDate = date[1]
- },
- // 导出
- handleExport () {
- const _this = this
- _this.$store.state.app.curActionPermission = 'B_promotionListExport'
- _this.exportLoading = true
- _this.spinning = true
- hdExportExcel(sparePartsReturnExportDetail, _this.queryParam, '采购退货', function () {
- _this.exportLoading = false
- _this.spinning = false
- _this.showExport = true
- _this.$store.state.app.curActionPermission = ''
- })
- },
- // 新增
- handleAdd () {
- this.itemSn = null
- this.openModal = true
- },
- // 参与客户
- handleCustomers (row) {
- this.openCustomerModal = true
- // this.$nextTick(() => {
- // this.$refs.lookUpCustomers.pageInit({ dealerSnList: row.promoBuyerSnSet ? row.promoBuyerSnSet : undefined, promoActiveSn: row.promoActiveSn })
- // })
- },
- // 基本信息 保存
- handleOk () {
- this.itemSn = null
- this.resetSearchForm()
- },
- // 编辑
- handleEdit (row) {
- this.openModal = true
- this.itemSn = row.promotionSn
- },
- // 发布状态
- changeStatus (record) {
- const params = {
- id: record.id,
- flag: record.loginFlag == 1 ? '0' : '1'
- }
- this.spinning = true
- dealerUserEnable(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 } })
- },
- // 审核
- handleCheck (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '请点击下方按钮确认操作?',
- cancelText: '审核不通过',
- okText: '审核通过',
- centered: true,
- closable: true,
- onOk () {
- _this.spinning = true
- sparePartsReturnDelete({ sn: row.sparePartsReturnSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- },
- onCancel (e) {
- console.log('不通过', e)
- }
- })
- },
- // 促销时间变更
- handleTime () {
- this.editEndModal = true
- },
- handleEditOk () {},
- // 终止
- handleEnd (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确定要终止该促销?',
- centered: true,
- onOk () {
- _this.spinning = true
- sparePartsReturnDelete({ sn: row.sparePartsReturnSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 再次提交
- handleResubmit (row) {
- const _this = this
- this.$confirm({
- title: '操作提示',
- content: '系统将自动生成一个新的采购退货单,新单据中的产品申退数量将以最大可用库存为准,最大可用库存为0时,系统将强制删除已选的对应产品。您可以对新单据进行编辑、提交等操作,原单据保持不变,确认操作吗?',
- centered: true,
- onOk () {
- _this.spinning = true
- againSubmit({ sparePartsReturnSn: row.sparePartsReturnSn }).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
- }
- })
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.queryParam = {
- beginDate: undefined,
- endDate: undefined,
- sparePartsReturnNo: undefined,
- supplierSn: undefined,
- returnReason: undefined,
- warehouseSn: undefined, // 仓库
- state: 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.rowSelectionInfo = null
- this.$refs.table.clearTable()
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 240
- }
- },
- 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">
- .promotionList-wrap{
- .nameBox{
- padding:0 5px;
- }
- .common{
- color: rgba(0, 0, 0);
- }
- }
- </style>
|