Commit 4a4c2aa7 by golton_gao

fix: 解决ios系统下url中有空格会导致请求报错的问题

parent 88da5fb6
Showing with 3 additions and 3 deletions
...@@ -418,7 +418,7 @@ export default { ...@@ -418,7 +418,7 @@ export default {
params: { params: {
page: 1, page: 1,
rows: 5, rows: 5,
state: "0, 1, 2, 3, 4", state: "0,1,2,3,4",
fnumber: this.uid, fnumber: this.uid,
// complaintBeginDate:this.searchForm.complaintBeginDate, // complaintBeginDate:this.searchForm.complaintBeginDate,
// complaintEndDate:this.searchForm.complaintEndDate // complaintEndDate:this.searchForm.complaintEndDate
...@@ -803,7 +803,7 @@ export default { ...@@ -803,7 +803,7 @@ export default {
// this.projectNameSearchLoading = true; // this.projectNameSearchLoading = true;
// this.getProjectList(); // this.getProjectList();
let temp = []; let temp = [];
let data = this.projectListTemp let data = this.projectListTemp
for(let i = 0; i < data.length;i++ ){ for(let i = 0; i < data.length;i++ ){
temp.push({ temp.push({
text:data[i].text, text:data[i].text,
...@@ -1018,7 +1018,7 @@ export default { ...@@ -1018,7 +1018,7 @@ export default {
} }
this.searchForm.state = this.dealStateList.toString(); this.searchForm.state = this.dealStateList.toString();
this.showPickerForDealState = false; this.showPickerForDealState = false;
}, },
// 回访得分 // 回访得分
pickerForCallBack() { pickerForCallBack() {
......
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 sign in to comment