29c430bd by joe
2 parents 9f5f5094 e935027e
......@@ -204,7 +204,7 @@ export default {
}
},
initActivity() {
let d = localStorage.getItem("voluntaryInfo");
let d = localStorage.getItem("pinganfuInfo");
if (d) {
try {
this.sourceData = JSON.parse(d);
......@@ -220,11 +220,11 @@ export default {
httpGet({
url: api.productInfo,
data: {
code: "voluntary"
code: "pinganfu"
}
}).then(res => {
if (res) {
localStorage.setItem("voluntaryInfo", JSON.stringify(res));
localStorage.setItem("pinganfuInfo", JSON.stringify(res));
this.sourceData = res;
}
this.initData();
......