Commit c9f0ed91 by caoyanzhi

Merge branch 'feature/3.0节前需求-短信打开小程序' into dev

parents eb8d15c1 5af7d937
......@@ -278,7 +278,11 @@ export default {
}
this.loading = true;
const { type, dayNum } = this.transferLink;
getTransferLink(Object.assign({ type, dayNum }, { pageId: this.selectLink.linkData.params.pageId }), false, false, 'post')
const requestData = { type, dayNum, pageLink: JSON.stringify(this.selectLink.linkData) };
if (type == 2) {
delete requestData.dayNum;
}
getTransferLink(requestData, false, false, 'post')
.then(res => {
this.insertLink.link = res.result;
this.insertLink.show = true;
......
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 to comment