Merge branch 'bd-test' of gitee.com:cabbage_qd/web-base-admin into bd-online
This commit is contained in:
commit
75bfa5da2a
|
@ -25,13 +25,13 @@ function getNestedValue(obj, path) {
|
|||
// 替换文件内容
|
||||
function replaceContent(content) {
|
||||
// 替换模板中的 $t('key')
|
||||
content = content.replace(
|
||||
/(?<!this\.|that\.)\$t\(['"]([^'"]+)['"]\)/g,
|
||||
(match, key) => {
|
||||
const value = getNestedValue(zhCN, key)
|
||||
return value ? `'${value}'` : match
|
||||
}
|
||||
)
|
||||
// content = content.replace(
|
||||
// /(?<!this\.|that\.)\$t\(['"]([^'"]+)['"]\)/g,
|
||||
// (match, key) => {
|
||||
// const value = getNestedValue(zhCN, key)
|
||||
// return value ? `'${value}'` : match
|
||||
// }
|
||||
// )
|
||||
|
||||
// 替换 JavaScript 中的 this.$t('key')
|
||||
content = content.replace(/this\.\$t\(['"]([^'"]+)['"]\)/g, (match, key) => {
|
||||
|
|
|
@ -64,6 +64,14 @@ export function supplierProduct(params) {
|
|||
})
|
||||
}
|
||||
|
||||
// 供应商类型
|
||||
export function getCustTypeList(params) {
|
||||
return request({
|
||||
url: '/system/pub/enums/supply-type',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// 供应商管理列表
|
||||
export function getSupplierList(params) {
|
||||
return request({
|
||||
|
|
|
@ -0,0 +1,58 @@
|
|||
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 新零售门票活动-列表
|
||||
export function ticketList(params) {
|
||||
return request({
|
||||
url: '/activity/manage/ticket/list',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// 新零售门票活动-新增
|
||||
export function ticketSave(data) {
|
||||
return request({
|
||||
url: '/activity/manage/ticket/save',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 新零售门票活动-修改
|
||||
export function ticketUpdate(data) {
|
||||
return request({
|
||||
url: '/activity/manage/ticket/update',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 新零售门票活动-删除
|
||||
export function delTicket(id) {
|
||||
return request({
|
||||
url: '/activity/manage/ticket/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
// 获取单条门票活动
|
||||
export function getOneTicket(id) {
|
||||
return request({
|
||||
url: '/activity/manage/ticket/getOne/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
// 会员消费赠送-查看
|
||||
export function memberConsumeRule(params) {
|
||||
return request({
|
||||
url: '/activity/manage/member-consume-rule/detail',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// 自助购票-列表
|
||||
export function ticketQuery(data) {
|
||||
return request({
|
||||
url: '/sale/manage/ticket/query?pageNum=' + data.pageNum + '&pageSize=' + data.pageSize,
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
|
@ -8,7 +8,7 @@ import Vue from 'vue'
|
|||
import Router from 'vue-router'
|
||||
import i18n from '@/assets/i18n/index'
|
||||
Vue.use(Router)
|
||||
|
||||
import { tickets } from './module/tickets'
|
||||
/* Layout */
|
||||
import Layout from '@/layout'
|
||||
import ParentView from '@/components/ParentView'
|
||||
|
@ -1820,6 +1820,7 @@ export const constantRoutes = [
|
|||
name: 'Activity',
|
||||
meta: { title: '营销管理', icon: 'yx', icon1: 'yxSel' },
|
||||
children: [
|
||||
...tickets,
|
||||
{
|
||||
path: 'giftGoods',
|
||||
name: 'GiftGoods',
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
import ParentView from '@/components/ParentView'
|
||||
export const tickets = [
|
||||
{
|
||||
path: 'ticket',
|
||||
name: 'Ticket',
|
||||
component: ParentView,
|
||||
hidden: false,
|
||||
children: [
|
||||
{
|
||||
path: 'ticketList',
|
||||
name: 'TicketList',
|
||||
component: () => import('@/views/marketing/ticket/index'),
|
||||
meta: { title: '门票活动' },
|
||||
hidden: false
|
||||
},
|
||||
{
|
||||
path: 'addTicket',
|
||||
name: 'AddTicket',
|
||||
component: () => import('@/views/marketing/ticket/addTicket'),
|
||||
meta: { title: '基本信息' },
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: 'ticketQuery',
|
||||
name: 'TicketQuery',
|
||||
component: ParentView,
|
||||
hidden: false,
|
||||
children: [
|
||||
{
|
||||
path: 'ticketQueryList',
|
||||
name: 'TickeQuerytList',
|
||||
component: () => import('@/views/marketing/ticketQueryList/index'),
|
||||
meta: { title: '自助购票' },
|
||||
hidden: false
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,462 @@
|
|||
<template>
|
||||
<div class="page">
|
||||
<div class="topbox">
|
||||
<div
|
||||
v-for="(item, index) in topList"
|
||||
:key="index"
|
||||
class="levelList_i"
|
||||
:class="tabActive == item.id ? 'act' : ''"
|
||||
@click.prevent="handleLink(item.id)"
|
||||
>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="main_a"> -->
|
||||
<div class="main">
|
||||
<div v-show="tabActive == 0">
|
||||
<div class="tit">{{ '基本信息' }}</div>
|
||||
<div class="xian" />
|
||||
<el-form
|
||||
ref="ruleForm"
|
||||
:model="ruleForm"
|
||||
:rules="rules"
|
||||
label-width="auto"
|
||||
class="demo-ruleForm"
|
||||
>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="'活动名称'" prop="actName">
|
||||
<el-input
|
||||
v-model="ruleForm.actName"
|
||||
clearable
|
||||
:disabled="lookOver"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="隶属体系" prop="pkVertex">
|
||||
<!-- <imageUpload v-model="ruleForm.pkVertex" /> -->
|
||||
<el-select v-model="ruleForm.pkVertex" placeholder="全部" clearable multiple>
|
||||
<el-option
|
||||
v-for="item in vertexList"
|
||||
:key="item.pkId"
|
||||
:label="item.vertexName"
|
||||
:value="item.pkId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="16">
|
||||
<el-form-item :label="'活动说明'" prop="actExplain">
|
||||
<el-input
|
||||
v-model="ruleForm.actExplain"
|
||||
type="textarea"
|
||||
:rows="6"
|
||||
placeholder="请输入活动说明"
|
||||
:disabled="lookOver"
|
||||
/>
|
||||
<!-- <editor
|
||||
ref="sptwEditor"
|
||||
v-model="ruleForm.actExplain"
|
||||
:read-only="lookOver"
|
||||
:min-height="196"
|
||||
:upload-url="uploadImgUrl"
|
||||
/> -->
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="'活动封面'" prop="actCover">
|
||||
<imageUpload v-model="ruleForm.actCover" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="$t('门票金额')" required>
|
||||
<el-input
|
||||
v-model="ruleForm.payMoney"
|
||||
:disabled="lookOver"
|
||||
clearable
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="$t('数量')" required>
|
||||
<el-input
|
||||
v-model="ruleForm.quantity"
|
||||
:disabled="lookOver"
|
||||
clearable
|
||||
type="number"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="$t('限购数量')" required>
|
||||
<el-input
|
||||
v-model="ruleForm.limitQuantity"
|
||||
:disabled="lookOver"
|
||||
clearable
|
||||
type="number"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="'活动时间'" prop="ruleFormTime">
|
||||
<el-date-picker
|
||||
v-model="ruleForm.ruleFormTime"
|
||||
:disabled="lookOver"
|
||||
value-format="yyyy-MM-dd"
|
||||
type="daterange"
|
||||
:range-separator="'至'"
|
||||
:start-placeholder="'开始日期'"
|
||||
:end-placeholder="'结束日期'"
|
||||
@change="changeTime"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="'展示时间'" prop="ruleFormTime1">
|
||||
<el-date-picker
|
||||
v-model="ruleForm.ruleFormTime1"
|
||||
:disabled="lookOver"
|
||||
value-format="yyyy-MM-dd"
|
||||
type="daterange"
|
||||
:range-separator="'至'"
|
||||
:start-placeholder="'开始日期'"
|
||||
:end-placeholder="'结束日期'"
|
||||
@change="changeTime1"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
<!-- <directUpdata v-show="tabActive==2"
|
||||
ref="directUpdata"></directUpdata> -->
|
||||
</div>
|
||||
<div v-show="controlType != 4" class="footer">
|
||||
<el-button size="small" class="cancelBtn" @click="cancel">
|
||||
{{ '取消' }}
|
||||
</el-button>
|
||||
<el-button size="small" class="sureBtn" @click="submit('ruleForm')">
|
||||
{{ '确认' }}
|
||||
</el-button>
|
||||
</div>
|
||||
<!-- </div> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Editor from '@/components/Editor'
|
||||
|
||||
import * as api from '@/api/ticket.js'
|
||||
import ImageUpload from '@/components/ImageUpload'
|
||||
import { vertexList } from '@/api/settle.js'
|
||||
// import directUpdata from '@/views/marketing/benefitsGift/directUpdata'
|
||||
export default {
|
||||
name: 'AddTicket',
|
||||
components: {
|
||||
ImageUpload,
|
||||
// directUpdata,
|
||||
Editor
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
tabActive: 0,
|
||||
uploadImgUrl: process.env.VUE_APP_BASE_API + '/system/upload',
|
||||
ruleForm: {
|
||||
payMoney: '',
|
||||
quantity: '',
|
||||
pkVertex: '',
|
||||
limitQuantity: '',
|
||||
ruleFormTime: [],
|
||||
ruleFormTime1: []
|
||||
},
|
||||
vertexList: [],
|
||||
rules: {
|
||||
actName: [
|
||||
{ required: true, message: this.$t('请输入活动名称'), trigger: 'blur' }
|
||||
],
|
||||
actExplain: [
|
||||
{ required: true, message: this.$t('请输入活动说明'), trigger: 'blur' }
|
||||
],
|
||||
actCover: [
|
||||
{ required: true, message: this.$t('请上传活动封面'), trigger: 'change' }
|
||||
],
|
||||
payMoney: [
|
||||
{ required: true, message: this.$t('请输入金额'), trigger: 'blur' }
|
||||
],
|
||||
quantity: [
|
||||
{ required: true, message: this.$t('请输入数量'), trigger: 'blur' },
|
||||
{ type: 'number', min: 1, max: 999999, message: this.$t('数量必须在1~999999之间'), trigger: 'blur' }
|
||||
],
|
||||
limitQuantity: [
|
||||
{ required: true, message: this.$t('请输入限购数量'), trigger: 'blur' },
|
||||
{ type: 'number', min: 1, max: 999999, message: this.$t('限购数量必须在1~999999之间'), trigger: 'blur' }
|
||||
],
|
||||
ruleFormTime: [
|
||||
{ required: true, message: this.$t('请输入活动时间'), trigger: 'change' }
|
||||
],
|
||||
ruleFormTime1: [
|
||||
{ required: true, message: this.$t('请输入展示时间'), trigger: 'change' }
|
||||
]
|
||||
},
|
||||
lookOver: false,
|
||||
pkId: '',
|
||||
controlType: '',
|
||||
addData: {}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// (1=新增,2=修改,3=删除)4查看
|
||||
if (
|
||||
this.$route.query.controlType == 4 ||
|
||||
this.$route.query.controlType == 3
|
||||
) {
|
||||
this.lookOver = true
|
||||
} else {
|
||||
this.lookOver = false
|
||||
}
|
||||
this.controlType = this.$route.query.controlType
|
||||
this.pkId = this.$route.query.pkId || ''
|
||||
this.getVertexList()
|
||||
if (this.pkId) {
|
||||
this.getDetails()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getVertexList() {
|
||||
vertexList().then((res) => {
|
||||
this.vertexList = res.data
|
||||
})
|
||||
},
|
||||
cancel() {
|
||||
this.$router.go(-1)
|
||||
},
|
||||
getDetails() {
|
||||
api.getOneTicket(this.pkId).then((res) => {
|
||||
this.addData = res.data
|
||||
this.$set(this.ruleForm, 'actName', res.data.actName)
|
||||
this.$set(this.ruleForm, 'actExplain', res.data.actExplain)
|
||||
this.$set(this.ruleForm, 'actCover', res.data.actCover)
|
||||
this.ruleForm.pkId = res.data.pkId
|
||||
|
||||
// 处理时间字段,去掉时分秒部分,只保留日期
|
||||
const formatDateOnly = (datetime) => {
|
||||
if (!datetime) return ''
|
||||
return datetime.split(' ')[0] // 去掉时分秒,只保留日期部分
|
||||
}
|
||||
|
||||
this.ruleForm.actStartDate = formatDateOnly(res.data.actStartDate)
|
||||
this.ruleForm.actEndDate = formatDateOnly(res.data.actEndDate)
|
||||
this.ruleForm.disStartDate = formatDateOnly(res.data.disStartDate)
|
||||
this.ruleForm.disEndDate = formatDateOnly(res.data.disEndDate)
|
||||
|
||||
this.ruleForm.payMoney = res.data.payMoney
|
||||
this.ruleForm.quantity = res.data.quantity
|
||||
this.ruleForm.limitQuantity = res.data.limitQuantity
|
||||
this.ruleForm.pkVertex = res.data.pkVertex ? res.data.pkVertex.split(',').map(item => Number(item)) : []
|
||||
this.$set(this.ruleForm, 'ruleFormTime', [
|
||||
this.ruleForm.actStartDate,
|
||||
this.ruleForm.actEndDate
|
||||
])
|
||||
this.$set(this.ruleForm, 'ruleFormTime1', [
|
||||
this.ruleForm.disStartDate,
|
||||
this.ruleForm.disEndDate
|
||||
])
|
||||
// let that = this;
|
||||
// setTimeout(() => {
|
||||
// that.getCheck();
|
||||
// }, 50);
|
||||
})
|
||||
},
|
||||
// 切换tab
|
||||
handleLink(id) {
|
||||
this.tabActive = id
|
||||
},
|
||||
changeTime(val) {
|
||||
this.ruleForm.actStartDate = val[0]
|
||||
this.ruleForm.actEndDate = val[1]
|
||||
},
|
||||
changeTime1(val) {
|
||||
this.ruleForm.disStartDate = val[0]
|
||||
this.ruleForm.disEndDate = val[1]
|
||||
},
|
||||
|
||||
submit() {
|
||||
this.$refs['ruleForm'].validate((valid) => {
|
||||
if (valid) {
|
||||
let params = {}
|
||||
|
||||
// 处理时间格式,补充时分秒
|
||||
const formatDateTime = (date, isEndTime = false) => {
|
||||
if (!date) return ''
|
||||
const timeStr = isEndTime ? ' 23:59:59' : ' 00:00:00'
|
||||
return date + timeStr
|
||||
}
|
||||
|
||||
params = {
|
||||
...this.ruleForm,
|
||||
pkVertex: this.ruleForm.pkVertex ? this.ruleForm.pkVertex.join(',') : '',
|
||||
// 处理活动时间,补充时分秒
|
||||
actStartDate: formatDateTime(this.ruleForm.actStartDate, false),
|
||||
actEndDate: formatDateTime(this.ruleForm.actEndDate, true),
|
||||
// 处理展示时间,补充时分秒
|
||||
disStartDate: formatDateTime(this.ruleForm.disStartDate, false),
|
||||
disEndDate: formatDateTime(this.ruleForm.disEndDate, true)
|
||||
}
|
||||
|
||||
if (this.controlType == 1) {
|
||||
api.ticketSave(params).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.$message({
|
||||
message: res.msg,
|
||||
type: 'success'
|
||||
})
|
||||
this.$router.push({
|
||||
path: 'TicketList'
|
||||
})
|
||||
}
|
||||
})
|
||||
} else {
|
||||
api.ticketUpdate(params).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.$message({
|
||||
message: res.msg,
|
||||
type: 'success'
|
||||
})
|
||||
this.$router.push({
|
||||
path: 'TicketList'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.page {
|
||||
padding: 20px;
|
||||
background: #f9f9f9;
|
||||
font-size: 14px;
|
||||
|
||||
.main_a {
|
||||
height: calc(100vh - 144px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.main {
|
||||
background: #ffffff;
|
||||
border-radius: 8px;
|
||||
// height: calc(100vh - 124px);
|
||||
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
|
||||
}
|
||||
|
||||
::v-deep .el-select {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
height: 68px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px -3px 20px 0px rgba(204, 204, 204, 0.5);
|
||||
// margin: 0 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.thebtn1 {
|
||||
background: #3181e5;
|
||||
color: #ffffff;
|
||||
padding: 9px 45px;
|
||||
}
|
||||
|
||||
.thebtn2 {
|
||||
background: #cccccc;
|
||||
color: #ffffff;
|
||||
padding: 9px 45px;
|
||||
}
|
||||
}
|
||||
|
||||
.tit {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
padding: 0 20px;
|
||||
border-left: 5px solid #c8161d;
|
||||
margin: 20px 0 10px 0;
|
||||
}
|
||||
|
||||
.xian {
|
||||
height: 1px;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.demo-ruleForm {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
::v-deep .el-date-editor--datetimerange {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.flexed {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flexed_l {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.topbox {
|
||||
align-items: center;
|
||||
padding: 0px 0 5px 0;
|
||||
display: flex;
|
||||
// background: skyblue;
|
||||
.levelList_i {
|
||||
padding: 4px 15px;
|
||||
margin-left: 20px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
min-width: 88px;
|
||||
// height: 28px;
|
||||
border-radius: 17px;
|
||||
border: 1px solid #cccccc;
|
||||
font-size: 12px;
|
||||
font-family: MicrosoftYaHei;
|
||||
text-align: center;
|
||||
// line-height: 28px;
|
||||
}
|
||||
|
||||
.act {
|
||||
color: #ffffff;
|
||||
background: #c8161d;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .el-form-item {
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
</style>
|
|
@ -0,0 +1,335 @@
|
|||
<template>
|
||||
<div class="page">
|
||||
<topBar
|
||||
v-if="topList.length > 0"
|
||||
:top-list="topList"
|
||||
:moren="moren"
|
||||
/>
|
||||
<div class="main">
|
||||
<div class="form_all">
|
||||
<el-form ref="select" :model="select" label-width="auto">
|
||||
<el-row :gutter="40">
|
||||
<!-- 一层 -->
|
||||
<el-col :span="4">
|
||||
<el-form-item :label="'活动名称'">
|
||||
<el-input v-model="select.actName" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item :label="$t('活动时间')">
|
||||
<el-date-picker
|
||||
v-model="creationTime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
type="datetimerange"
|
||||
:range-separator="'至'"
|
||||
:start-placeholder="'开始日期'"
|
||||
:end-placeholder="'结束日期'"
|
||||
@change="changeTime"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-button type="primary" size="small" @click="getDataList">
|
||||
{{ '搜索' }}</el-button>
|
||||
<el-button size="small" class="resetBtn" @click="reset">
|
||||
{{ '重置' }}</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="main_a">
|
||||
<div class="mainbtn">
|
||||
<el-button
|
||||
v-hasButtons="['TourismActAdd']"
|
||||
size="small"
|
||||
class="addBtn"
|
||||
@click="openDig"
|
||||
>{{ '添加' }}</el-button>
|
||||
</div>
|
||||
<div class="maintable">
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="tableData"
|
||||
style="width: 100%"
|
||||
height="710px"
|
||||
:header-cell-style="{ background: '#EEEEEE' }"
|
||||
:row-class-name="tableRowClassName"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actName"
|
||||
width="160"
|
||||
:label="'活动名称'"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actCover"
|
||||
:label="$t('活动封面')"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<img
|
||||
style="width: 48px; height: 48px"
|
||||
:src="scope.row.actCover"
|
||||
alt=""
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="payMoney"
|
||||
width="120"
|
||||
:label="$t('门票金额')"
|
||||
/>
|
||||
|
||||
<el-table-column align="center" prop="quantity" :label="$t('数量')" width="120" />
|
||||
|
||||
<el-table-column align="center" prop="limitQuantity" :label="$t('限购数量')" width="120" />
|
||||
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actStartDate"
|
||||
width="160"
|
||||
:label="$t('活动开始时间')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actEndDate"
|
||||
width="160"
|
||||
:label="$t('活动结束时间')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="disStartDate"
|
||||
width="160"
|
||||
:label="$t('活动显示开始时间')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="disEndDate"
|
||||
width="160"
|
||||
:label="$t('活动显示结束时间')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="time"
|
||||
:label="'操作'"
|
||||
fixed="right"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
style="color: #48b2fd"
|
||||
size="small"
|
||||
@click="toFixed(scope.row.pkId, 4)"
|
||||
>
|
||||
{{ '查看' }}
|
||||
</el-button>
|
||||
<el-button
|
||||
v-hasButtons="['TourismActUp']"
|
||||
type="text"
|
||||
style="color: #f3a900"
|
||||
size="small"
|
||||
@click="toFixed(scope.row.pkId, 2)"
|
||||
>
|
||||
{{ '修改' }}
|
||||
</el-button>
|
||||
<el-button
|
||||
v-hasButtons="['TourismActDel']"
|
||||
type="text"
|
||||
size="small"
|
||||
style="color: #c8161d"
|
||||
@click="toFixed(scope.row.pkId, 3)"
|
||||
>
|
||||
{{ '删除' }}
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getDataList"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import topBar from '@/components/topBar'
|
||||
import * as api from '@/api/ticket.js'
|
||||
export default {
|
||||
name: 'Bzpz',
|
||||
components: {
|
||||
topBar
|
||||
},
|
||||
filters: {
|
||||
isAgree(val) {
|
||||
if (!val) {
|
||||
return '允许'
|
||||
} else {
|
||||
return '禁止'
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
creationTime: [],
|
||||
creationTime1: [],
|
||||
creationTime2: [],
|
||||
select: {},
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 50
|
||||
},
|
||||
addOrEdit: '',
|
||||
total: 0,
|
||||
dialogVisible: false,
|
||||
tableData: [],
|
||||
loading: false,
|
||||
moren: 'ticketList',
|
||||
topList: [
|
||||
{
|
||||
name: '门票活动',
|
||||
path: 'ticketList'
|
||||
}
|
||||
],
|
||||
form: {
|
||||
name: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// 获取列表
|
||||
this.getDataList()
|
||||
},
|
||||
methods: {
|
||||
// 重置
|
||||
reset() {
|
||||
this.select = {}
|
||||
this.creationTime = []
|
||||
this.creationTime1 = []
|
||||
this.creationTime2 = []
|
||||
this.getDataList()
|
||||
},
|
||||
|
||||
changeTime(val) {
|
||||
this.select.actStartDate = val ? val[0] : ''
|
||||
this.select.actEndDate = val ? val[1] : ''
|
||||
},
|
||||
// 点击修改
|
||||
toFixed(id, index) {
|
||||
if (index == 3) {
|
||||
this.$confirm('是否确认删除该活动?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
})
|
||||
.then(() => {
|
||||
api.delTicket(id).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.$message({
|
||||
message: res.msg,
|
||||
type: 'success'
|
||||
})
|
||||
this.getDataList()
|
||||
}
|
||||
})
|
||||
})
|
||||
.catch(() => {})
|
||||
} else {
|
||||
this.$router.push({
|
||||
path: 'AddTicket',
|
||||
query: {
|
||||
pkId: id,
|
||||
controlType: index
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
openDig() {
|
||||
this.$router.push({
|
||||
path: 'AddTicket',
|
||||
query: {
|
||||
controlType: 1
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 获取列表
|
||||
getDataList() {
|
||||
this.loading = true
|
||||
api
|
||||
.ticketList(Object.assign({}, this.queryParams, this.select))
|
||||
.then((res) => {
|
||||
this.tableData = res.rows
|
||||
this.total = res.total
|
||||
this.loading = false
|
||||
})
|
||||
},
|
||||
tableRowClassName({ row, rowIndex }) {
|
||||
if (rowIndex % 2 == 1) {
|
||||
return 'warning-row'
|
||||
} else if (rowIndex % 2 == 0) {
|
||||
return 'success-row'
|
||||
}
|
||||
return ''
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
::v-deep .el-table .warning-row {
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
::v-deep .el-table .success-row {
|
||||
background: #ffffff;
|
||||
}
|
||||
::v-deep .el-table thead {
|
||||
color: #000000;
|
||||
}
|
||||
::v-deep .el-select {
|
||||
width: 100%;
|
||||
}
|
||||
.page {
|
||||
padding: 20px;
|
||||
background: #f9f9f9;
|
||||
font-size: 14px;
|
||||
.main {
|
||||
// background: #ffffff;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.main_a {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
|
||||
}
|
||||
.mainbtn {
|
||||
padding: 0;
|
||||
}
|
||||
.maintable {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
::v-deep .el-date-editor.el-input,
|
||||
.el-date-editor.el-input__inner {
|
||||
width: 100%;
|
||||
}
|
||||
.form_all {
|
||||
padding: 0 20px;
|
||||
margin-bottom: 10px;
|
||||
background: #fff;
|
||||
}
|
||||
</style>
|
|
@ -0,0 +1,373 @@
|
|||
<template>
|
||||
<div class="page">
|
||||
<topBar
|
||||
v-if="topList.length > 0"
|
||||
:top-list="topList"
|
||||
:moren="moren"
|
||||
/>
|
||||
<div class="main">
|
||||
<div class="form_all">
|
||||
<el-form ref="select" :model="select" label-width="auto">
|
||||
<el-row :gutter="40">
|
||||
<el-col :span="4">
|
||||
<el-form-item label="会员编号">
|
||||
<el-input v-model="select.memberCode" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item label="会员姓名">
|
||||
<el-input v-model="select.memberName" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="4">
|
||||
<el-form-item label="活动名称">
|
||||
<el-input v-model="select.actName" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item label="订单编号">
|
||||
<el-input v-model="select.orderCode" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item label="姓名">
|
||||
<el-input v-model="select.buyName" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-form-item label="手机号">
|
||||
<el-input v-model="select.phone" clearable />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="隶属体系">
|
||||
<el-select
|
||||
v-model="select.pkTeamListStr"
|
||||
multiple
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in options"
|
||||
:key="item.pkId"
|
||||
:label="item.vertexName"
|
||||
:value="item.pkId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="隶属团队">
|
||||
<el-select
|
||||
v-model="select.pkTeamCodeListStr"
|
||||
multiple
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in teamNameList"
|
||||
:key="item.pkId"
|
||||
:label="`${item.vertexName}--${item.teamName} `"
|
||||
:value="item.pkId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-button type="primary" size="small" @click="getDataList">
|
||||
{{ '搜索' }}</el-button>
|
||||
<el-button size="small" class="resetBtn" @click="reset">
|
||||
{{ '重置' }}</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="main_a">
|
||||
<div class="mainbtn">
|
||||
<el-button
|
||||
v-hasButtons="['TicketQueryExport']"
|
||||
size="small"
|
||||
class="addBtn"
|
||||
@click="handleExport"
|
||||
>导出</el-button>
|
||||
</div>
|
||||
<div class="maintable">
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="tableData"
|
||||
style="width: 100%"
|
||||
height="710px"
|
||||
:header-cell-style="{ background: '#EEEEEE' }"
|
||||
:row-class-name="tableRowClassName"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actName"
|
||||
width="150"
|
||||
:label="'活动名称'"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actStartDate"
|
||||
width="150"
|
||||
:label="$t('门票开始日期')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="actEndDate"
|
||||
width="150"
|
||||
:label="$t('门票结束日期')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="memberCode"
|
||||
:label="$t('会员编号')"
|
||||
min-width="120"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="memberName"
|
||||
:label="$t('会员姓名')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="orderCode"
|
||||
:label="$t('订单编号')"
|
||||
min-width="170"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="orderAmount"
|
||||
:label="$t('订单金额')"
|
||||
min-width="150"
|
||||
/>
|
||||
<el-table-column align="center" prop="price" :label="$t('单价')" />
|
||||
<!-- <el-table-column align="center" prop="quantity" :label="$t('数量')">
|
||||
</el-table-column> -->
|
||||
<el-table-column align="center" prop="buyName" :label="$t('姓名')" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="phone"
|
||||
width="150"
|
||||
:label="$t('手机号')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="idCard"
|
||||
width="190"
|
||||
:label="$t('身份证号')"
|
||||
/>
|
||||
<el-table-column align="center" prop="sexVal" :label="$t('性别')" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="clothSize"
|
||||
:label="$t('尺码')"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="cohabitant"
|
||||
:label="$t('同住人')"
|
||||
min-width="150"
|
||||
/>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="emergencyPhone"
|
||||
width="150"
|
||||
:label="$t('紧急联系人')"
|
||||
/>
|
||||
<el-table-column align="center" prop="vertexName" label="隶属体系" width="120" />
|
||||
<el-table-column align="center" prop="teamName" label="隶属团队" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="creationTime"
|
||||
label="支付时间"
|
||||
width="160"
|
||||
/>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getDataList"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import topBar from '@/components/topBar'
|
||||
import * as api from '@/api/ticket.js'
|
||||
import { vertexList, memberTeam } from '@/api/settle.js'
|
||||
export default {
|
||||
name: 'Bzpz',
|
||||
components: {
|
||||
topBar
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
creationTime: [],
|
||||
creationTime1: [],
|
||||
creationTime2: [],
|
||||
select: {},
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 50
|
||||
},
|
||||
addOrEdit: '',
|
||||
total: 0,
|
||||
dialogVisible: false,
|
||||
tableData: [],
|
||||
loading: false,
|
||||
moren: 'ticketQueryList',
|
||||
topList: [
|
||||
{
|
||||
name: '自助购票',
|
||||
path: 'ticketQueryList'
|
||||
}
|
||||
],
|
||||
form: {
|
||||
name: ''
|
||||
},
|
||||
actStatus: [],
|
||||
teamNameList: [],
|
||||
options: []
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// 获取下拉
|
||||
this.getData()
|
||||
// 获取列表
|
||||
this.getDataList()
|
||||
},
|
||||
methods: {
|
||||
// 重置
|
||||
reset() {
|
||||
this.select = {}
|
||||
this.creationTime = []
|
||||
this.creationTime1 = []
|
||||
this.creationTime2 = []
|
||||
this.getDataList()
|
||||
},
|
||||
getData() {
|
||||
vertexList().then((res) => {
|
||||
this.options = res.data
|
||||
})
|
||||
memberTeam().then((res) => {
|
||||
this.teamNameList = res.rows
|
||||
})
|
||||
},
|
||||
changeTime(val) {
|
||||
this.select.actStartDate = val ? val[0] : ''
|
||||
this.select.actEndDate = val ? val[1] : ''
|
||||
},
|
||||
handleClose() {
|
||||
this.dialogVisible = false
|
||||
this.$refs['form'].clearValidate()
|
||||
this.$refs['form'].resetFields()
|
||||
},
|
||||
// 获取列表
|
||||
getDataList() {
|
||||
this.loading = true
|
||||
api
|
||||
.ticketQuery(Object.assign({}, this.queryParams, this.select))
|
||||
.then((res) => {
|
||||
this.tableData = res.rows
|
||||
this.total = res.total
|
||||
this.loading = false
|
||||
})
|
||||
},
|
||||
handleSelectionChange(val) {},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.$confirm('是否确认导出所有数据项?', '警告', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then((_) => {
|
||||
this.download(
|
||||
'/sale/manage/ticket/export',
|
||||
Object.assign(
|
||||
{},
|
||||
{
|
||||
actType: 22
|
||||
},
|
||||
this.queryParams,
|
||||
this.select
|
||||
),
|
||||
`自助购票${new Date().getTime()}.xlsx`
|
||||
)
|
||||
})
|
||||
},
|
||||
tableRowClassName({ row, rowIndex }) {
|
||||
if (rowIndex % 2 == 1) {
|
||||
return 'warning-row'
|
||||
} else if (rowIndex % 2 == 0) {
|
||||
return 'success-row'
|
||||
}
|
||||
return ''
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
::v-deep .el-table .warning-row {
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
::v-deep .el-table .success-row {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
::v-deep .el-table thead {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
::v-deep .el-select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.page {
|
||||
padding: 20px;
|
||||
background: #f9f9f9;
|
||||
font-size: 14px;
|
||||
|
||||
.main {
|
||||
// background: #ffffff;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.main_a {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
|
||||
}
|
||||
|
||||
.mainbtn {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.maintable {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .el-date-editor.el-input,
|
||||
.el-date-editor.el-input__inner {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form_all {
|
||||
padding: 0 20px;
|
||||
margin-bottom: 10px;
|
||||
background: #fff;
|
||||
}
|
||||
</style>
|
|
@ -351,6 +351,12 @@ export default {
|
|||
site.areaList().then((res) => {
|
||||
this.areaData = res.data
|
||||
})
|
||||
this.getCustTypeList()
|
||||
},
|
||||
getCustTypeList() {
|
||||
api.getCustTypeList().then((res) => {
|
||||
this.custTypeList = res.data
|
||||
})
|
||||
},
|
||||
reset() {
|
||||
this.select = {}
|
||||
|
|
Loading…
Reference in New Issue