Commit b05613a1 authored by xd's avatar xd

移动修改

parent b3df9f32
......@@ -549,6 +549,7 @@ export default {
id: "id"
},
type: 1,
sType: 1,
idList: [],
storeId: "",
groupId: "",
......@@ -589,7 +590,7 @@ export default {
},
getGroupMember(page,ctPage) {
this.page.currentPage = ctPage
this.type = 3
this.type = this.sType = 3
let params = {
pageNum: page,
shopId: this.groupId
......@@ -601,7 +602,7 @@ export default {
},
getStoreMember(page,ctPage) {
this.page.currentPage = ctPage
this.type = 4
this.type = this.sType = 5
let params = {
pageNum: page,
stallId: this.storeId
......@@ -630,7 +631,7 @@ export default {
getMailList(page,ctPage) {
this.formData.keywords = ''
this.title = "全部"
this.type = 1;
this.type = this.sType = 1;
this.page.currentPage = ctPage
let params = {
pageNum: page
......@@ -646,7 +647,7 @@ export default {
this.formData.keywords = ''
this.page.currentPage = ctPage
this.title = "未分组"
this.type = 2;
this.type = this.sType = 2;
let params = {
pageNum: page
};
......@@ -683,7 +684,7 @@ export default {
handleSearch(page,ctPage) {
this.type = 4
this.page.currentPage = ctPage
switch (this.type) {
switch (this.sType) {
case 1:
this.counterId = 0;
break
......@@ -693,6 +694,8 @@ export default {
case 3:
this.counterId = this.groupId;
break
case 5:
this.counterId = this.groupId;
}
let params = {
keyWords: this.formData.keywords,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment