29c430bd by joe
2 parents 9f5f5094 e935027e
...@@ -204,7 +204,7 @@ export default { ...@@ -204,7 +204,7 @@ export default {
204 } 204 }
205 }, 205 },
206 initActivity() { 206 initActivity() {
207 let d = localStorage.getItem("voluntaryInfo"); 207 let d = localStorage.getItem("pinganfuInfo");
208 if (d) { 208 if (d) {
209 try { 209 try {
210 this.sourceData = JSON.parse(d); 210 this.sourceData = JSON.parse(d);
...@@ -220,11 +220,11 @@ export default { ...@@ -220,11 +220,11 @@ export default {
220 httpGet({ 220 httpGet({
221 url: api.productInfo, 221 url: api.productInfo,
222 data: { 222 data: {
223 code: "voluntary" 223 code: "pinganfu"
224 } 224 }
225 }).then(res => { 225 }).then(res => {
226 if (res) { 226 if (res) {
227 localStorage.setItem("voluntaryInfo", JSON.stringify(res)); 227 localStorage.setItem("pinganfuInfo", JSON.stringify(res));
228 this.sourceData = res; 228 this.sourceData = res;
229 } 229 }
230 this.initData(); 230 this.initData();
......