修改bug
This commit is contained in:
parent
981b6d40a3
commit
0d7caa02e8
@ -52,6 +52,9 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
query: {
|
||||||
|
storeId: ''
|
||||||
|
},
|
||||||
title: '',
|
title: '',
|
||||||
activityList: [],
|
activityList: [],
|
||||||
}
|
}
|
||||||
@ -60,6 +63,7 @@
|
|||||||
|
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
this.query.storeId = uni.getStorageSync("storeId");
|
||||||
this.getData();
|
this.getData();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -75,6 +79,7 @@
|
|||||||
request({
|
request({
|
||||||
url: 'business/marketingActivity/activeExchange/applet',
|
url: 'business/marketingActivity/activeExchange/applet',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res);
|
console.log(res);
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
|
@ -190,6 +190,9 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
query: {
|
||||||
|
storeId: ''
|
||||||
|
},
|
||||||
oilName: [],
|
oilName: [],
|
||||||
title: '',
|
title: '',
|
||||||
datas: [],
|
datas: [],
|
||||||
@ -200,6 +203,7 @@
|
|||||||
|
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
this.query.storeId = uni.getStorageSync("storeId");
|
||||||
this.title = option.name
|
this.title = option.name
|
||||||
console.log(option.name);
|
console.log(option.name);
|
||||||
this.getData(option.name);
|
this.getData(option.name);
|
||||||
@ -224,6 +228,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/activeConsumption/appletList',
|
url: '/business/marketingActivity/activeConsumption/appletList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data,
|
this.datas = res.data,
|
||||||
@ -236,6 +241,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/activeDiscount/appletList',
|
url: '/business/marketingActivity/activeDiscount/appletList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data
|
this.datas = res.data
|
||||||
@ -247,6 +253,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/activeRecommend/applet',
|
url: '/business/marketingActivity/activeRecommend/applet',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data
|
this.datas = res.data
|
||||||
@ -258,6 +265,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/activeNewlyweds/applet',
|
url: '/business/marketingActivity/activeNewlyweds/applet',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data
|
this.datas = res.data
|
||||||
@ -269,6 +277,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/activeFullminus/appletList',
|
url: '/business/marketingActivity/activeFullminus/appletList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data
|
this.datas = res.data
|
||||||
@ -280,6 +289,7 @@
|
|||||||
request({
|
request({
|
||||||
url: '/business/marketingActivity/cardValue/appletList',
|
url: '/business/marketingActivity/cardValue/appletList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
params: this.query
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.datas = res.data
|
this.datas = res.data
|
||||||
|
Loading…
Reference in New Issue
Block a user