mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-21 10:25:53 +08:00
添加注释,删除无用代码
This commit is contained in:
@@ -96,13 +96,13 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
loading: false, // 表单加载状态
|
||||
searchForm: {
|
||||
searchForm: { // 请求参数
|
||||
pageNumber: 0,
|
||||
pageSize: 10,
|
||||
sort: "startTime",
|
||||
order: "desc",
|
||||
},
|
||||
columns: [
|
||||
columns: [ // 表头
|
||||
{
|
||||
title: "活动名称",
|
||||
key: "promotionName",
|
||||
|
||||
@@ -184,16 +184,15 @@ export default {
|
||||
name: "addFullCut",
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
form: { // 表单
|
||||
discountType: "isFullMinus",
|
||||
scopeType: "ALL",
|
||||
promotionGoodsList: [],
|
||||
},
|
||||
id: this.$route.query.id,
|
||||
couponList: [],
|
||||
giftList: [],
|
||||
giftLoading: false,
|
||||
couponList: false,
|
||||
id: this.$route.query.id, // 活动id
|
||||
couponList: [], // 优惠券列表
|
||||
giftList: [], // 赠品列表
|
||||
giftLoading: false, // 赠品加载状态
|
||||
columns: [
|
||||
{
|
||||
type: "selection",
|
||||
|
||||
Reference in New Issue
Block a user