You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

332 lines
10 KiB

<template>
<div>
<form-container label="名称" @submit="submitForm" @resetForm="resetForm"></form-container>
<div class="table">
<el-row>
<router-link :to="`/marketingCenter/salesPromotion/salesPromotionDetails`" class="resetWH">
<el-button type="primary">
添加活动
</el-button>
</router-link>
</el-row>
<el-table
:data="lists"
style="width: 100%">
<el-table-column
prop="name"
label="名称">
</el-table-column>
<el-table-column
prop="state"
label="状态">
<template slot-scope="lists">
{{lists.row.state | filterState}}
</template>
</el-table-column>
<el-table-column
prop="date"
label="有效期">
</el-table-column>
<el-table-column
prop="createdDate"
label="创建时间">
<template slot-scope="lists">
{{lists.row.createdDate | filterCreatedDate}}
</template>
</el-table-column>
<el-table-column
fixed="right"
label="操作"
>
<template slot-scope="lists">
<span
size="small"
class="option-span"
style="margin: 0 5px;"
@click="editItem(lists.row)">
编辑
</span>
<span
v-if="lists.row.state != 'DISABLED'"
size="small"
style="margin: 0 5px;"
class="option-span"
@click="enabledItem(lists.row)">
失效
</span>
<span
type="text"
size="small"
style="margin: 0 5px;"
class="option-span"
@click="removeItem(lists.row.id)"
>
删除
</span>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination
background
:page-size="params.size"
layout="prev, pager, next"
:total="count"
@current-change="currentChange"
>
</el-pagination>
</div>
</div>
<el-dialog
width="815px"
:show-close="false"
:visible.sync="addMerchandise">
2323
<div slot="footer" class="dialog-footer">
<el-button @click="resetFormDialog('ruleForm'), addMerchandise = false">取消</el-button>
<el-button type="primary" @click="determine" :loading="isLoading">确定</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
GET_discountOffers_LIST as GET_LIST,
DELETE_discountOffers as DELETE_ITEM,
COUNT_discountOffers as COUNT,
disable_discountOffers
} from '@/api/marketingCenter'
import Alert from "@/utils/alert";
import {pageSize} from '../../../config';
const FormContainer = () => import('./form.vue');
import {dateTimeFormate} from "@/filters/index";
export default {
name: "index",
data() {
return {
isLoading: false,
hackReset: true,
addMerchandise: false,
lists: [],
count: 0,
id: '',
params: {
from: 0,
size: pageSize,
query: '',
state: ''
}
}
},
mounted() {
this.getList();
this.getCount();
},
components: {
FormContainer
},
methods: {
/**
* 获取列表数据
*/
getList() {
GET_LIST(this.params).then(res => {
res.map((item) => {
if (item.permanent) {
item.date = '永久有效';
} else {
item.date = dateTimeFormate(item.startDate) + ' 至 ' + dateTimeFormate(item.endDate);
}
return item
});
this.lists = res
});
},
/**
* 获取总数
*/
getCount() {
COUNT(this.params).then(res => {
this.count = res
});
},
/**
* 查询
*/
submitForm(res) {
this.params = {
...this.params,
query: res.name,
state: res.state
};
this.getList();
this.getCount();
},
/**
* 重置
*/
resetForm() {
this.params = {
from: 0,
size: pageSize,
query: ''
};
this.getList();
this.getCount();
},
/**
* 翻页
*/
currentChange(res) {
this.params = {
...this.params,
from: parseInt(res - 1) * this.params.size,
size: pageSize,
};
this.getList()
},
enabledItem(row) {
disable_discountOffers(row.id).then(res => {
Alert.success("操作成功");
this.getList();
});
},
/**
* 删除商品
*/
removeItem(id) {
this.$confirm('确定删除此商品嘛?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
DELETE_ITEM(id).then((res) => {
let lists = [];
this.lists.map((item) => {
if (item.id != id) {
lists.push(item)
}
return item;
});
this.lists = lists;
});
Alert.success("删除成功");
}).catch(() => {
})
},
/**
* 编辑商品
*/
editItem(row) {
this.$router.push('/marketingCenter/salesPromotion/salesPromotionDetails?id=' + row.id + '&state=' + row.state);
},
/**
* 确定保存
*/
determine() {
let that = this;
let commodityDetails = this.$refs['commodityDetails'].$refs['ruleForm'];
commodityDetails.validate((val) => {
if (val) {
that.isLoading = true;
let list = this.$refs['commodityDetails'].ruleForm;
if (!list.id) {
ADD_ITEM(list).then(res => {
setTimeout(() => {
Alert.success('新建成功');
that.addMerchandise = false;
that.hackReset = false;
that.isLoading = false;
}, 1500);
})
} else {
UPDATE_ITEM(list).then(res => {
setTimeout(() => {
Alert.success('更新成功');
that.addMerchandise = false;
that.hackReset = false;
that.isLoading = false;
}, 1500);
})
}
setTimeout(() => {
that.getList();
that.isLoading = false;
}, 1500);
}
});
},
/**
* 取消弹层
*/
resetFormDialog() {
this.hackReset = false;//销毁组件
this.$refs['commodityDetails'].$refs['ruleForm'].resetFields();
}
},
filters: {
filterState(val) {
switch (val) {
case 'PENDING':
return '未开始';
case 'ACTIVE':
return '进行中';
case 'DISABLED':
return '已失效';
case 'ENDED':
return '已结束';
case '':
return '全部';
}
},
filterCreatedDate(val) {
return dateTimeFormate(val)
}
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.table {
margin-top: 20px;
padding: 30px;
background: #fff;
.option-span {
color: #409EFF;
cursor: pointer;
}
}
.pagination {
margin-top: 20px;
}
</style>