提交 93b38936 编写于 作者: xinglee23's avatar xinglee23

fix: bugfix

上级 a73e5925
...@@ -35,6 +35,10 @@ ...@@ -35,6 +35,10 @@
v-if="picaWechat !== 'wechat'" v-if="picaWechat !== 'wechat'"
> >
<span>预约权益</span> <span>预约权益</span>
<!-- <img
:src="insuranceInfo.descBottomList[0]"
alt=""
/> -->
</div> </div>
<wx-open-launch-weapp <wx-open-launch-weapp
v-else v-else
...@@ -95,6 +99,7 @@ export default { ...@@ -95,6 +99,7 @@ export default {
bgPath: '', bgPath: '',
insuranceInfo: { insuranceInfo: {
descList: [], descList: [],
descBottomList: [],
}, },
}; };
}, },
...@@ -127,17 +132,15 @@ export default { ...@@ -127,17 +132,15 @@ export default {
}, },
async mounted() { async mounted() {
document.title = this.headerInfo.title; document.title = this.headerInfo.title;
let { rightsNo, projectEquityNo } = this.$route.query; const { rightsNo } = this.$route.query;
const result = await getInsProjectInfo({ rightsNo }); const result = await getInsProjectInfo({ rightsNo });
if (result.code === '000000') { if (result.code === '000000') {
rightsNo = result.data.rightsNo;
projectEquityNo = result.data.projectEquityNo;
this.insuranceInfo = result.data.insuranceExplainInfoResp; this.insuranceInfo = result.data.insuranceExplainInfoResp;
} }
this.openWebAppConfigPositive.path = `pagesInsurance/exclusively-activity/submit?projectEquityNo=${projectEquityNo}&rightsNo=${rightsNo}&source=h5`; this.openWebAppConfigPositive.path = `pagesInsurance/exclusively-activity/submit?rightsNo=${rightsNo}&source=h5`;
this.$sendBuriedData( this.$sendBuriedData(
{ {
...@@ -151,11 +154,6 @@ export default { ...@@ -151,11 +154,6 @@ export default {
); );
}, },
methods: { methods: {
getProjectInfo() {
getInsProjectInfo({ rightsNo: 'RZH2024042650031001' }).then((res) => {
console.log('res', res);
});
},
handleErrorFn(e) { handleErrorFn(e) {
console.log('handleErrorFn', e); console.log('handleErrorFn', e);
}, },
...@@ -164,7 +162,7 @@ export default { ...@@ -164,7 +162,7 @@ export default {
}, },
handleBanner(index) { handleBanner(index) {
console.log('index', index); console.log('index', index);
window.location.href = this.staticINFO2.descBottomList[index]; // window.location.href = this.staticINFO2.descBottomList[index];
}, },
}, },
}; };
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册