52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport"
|
||
|
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,viewport-fit=cover">
|
||
|
<title>兑换码已过期</title>
|
||
|
<link rel="stylesheet" href="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/css/index.css">
|
||
|
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/vue.min.js?v=1367936144322" type="text/javascript"
|
||
|
charset="utf-8"></script>
|
||
|
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/modelPop.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<!-- 弹出提示 -->
|
||
|
<model-pop :show.sync="popShow" :title="popTitle" :status="popStatus" :text="popText"
|
||
|
:show_close="true"></model-pop>
|
||
|
</div>
|
||
|
</body>
|
||
|
<script>
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
data() {
|
||
|
return {
|
||
|
/* 提示框状态 */
|
||
|
popShow: false,
|
||
|
popTitle: '',
|
||
|
popText: '',
|
||
|
popStatus: 1 /*1 成功 2提示 3失败 */
|
||
|
}
|
||
|
},
|
||
|
components: {
|
||
|
modelPop
|
||
|
},
|
||
|
created() {
|
||
|
this.openErrorDialog("当前链接已过期");
|
||
|
},
|
||
|
methods: {
|
||
|
//错误弹出框
|
||
|
openErrorDialog(tip) {
|
||
|
this.popTitle = '温馨提示';
|
||
|
this.popText = tip;
|
||
|
this.popStatus = 3;
|
||
|
this.popShow = true;
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
</html>
|