提交 367f6fcf 编写于 作者: zhongyao.qiao's avatar zhongyao.qiao

Merge branch 'feature/bestcovered' into 'release'

feat 博斯腾页面

See merge request !299
...@@ -27,6 +27,7 @@ import { bestcoveredStatusCheck } from '@/api/appoint'; ...@@ -27,6 +27,7 @@ import { bestcoveredStatusCheck } from '@/api/appoint';
export default { export default {
data() { data() {
return { return {
type: '',
url: '', url: '',
showBtn: false, showBtn: false,
content: '', content: '',
...@@ -35,10 +36,13 @@ export default { ...@@ -35,10 +36,13 @@ export default {
}; };
}, },
created() { created() {
const { url, yunOrderNo } = this.$route.query; const { url, yunOrderNo, type = 1 } = this.$route.query;
this.url = decodeURIComponent(url); this.url = decodeURIComponent(url);
this.yunOrderNo = yunOrderNo; this.yunOrderNo = yunOrderNo;
this.type = +type;
if (this.type === 1) {
this.loopStatus(); this.loopStatus();
}
}, },
mounted() { mounted() {
document.title = this.$route.meta.title; document.title = this.$route.meta.title;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册