e935027e by simon

平安福 参数修改

1 parent db98d45f
......@@ -185,7 +185,7 @@ export default {
}
},
initActivity() {
let d = localStorage.getItem("voluntaryInfo");
let d = localStorage.getItem("pinganfuInfo");
if (d) {
try {
this.sourceData = JSON.parse(d);
......@@ -201,11 +201,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();
......