|
@@ -46,13 +46,27 @@
|
|
|
<img :src="login_center_bg" class="login-center-layout">
|
|
|
<el-dialog
|
|
|
title="特别赞助"
|
|
|
- :visible.sync="dialogVisible"
|
|
|
+ :visible.sync="supportDialogVisible"
|
|
|
width="30%">
|
|
|
<span>mall项目已由CODING特别赞助,点击去支持,页面加载完后点击<span class="color-main font-medium">免费体验</span>按钮即可完成支持,谢谢!</span>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialogCancel">残忍拒绝</el-button>
|
|
|
<el-button type="primary" @click="dialogConfirm">去支持</el-button>
|
|
|
- </span>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ title="公众号二维码"
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
+ :show-close="false"
|
|
|
+ :center="true"
|
|
|
+ width="30%">
|
|
|
+ <div style="text-align: center">
|
|
|
+ <span>mall全套学习教程连载中<span class="color-main font-medium">关注公众号</span>第一时间获取</span>
|
|
|
+ <img src="http://macro-oss.oss-cn-shenzhen.aliyuncs.com/mall/banner/qrcode_for_macrozheng_258.jpg" width="150" height="150" style="margin-top: 10px">
|
|
|
+ </div>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="dialogConfirm">确定</el-button>
|
|
|
+ </span>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -91,7 +105,8 @@
|
|
|
loading: false,
|
|
|
pwdType: 'password',
|
|
|
login_center_bg,
|
|
|
- dialogVisible:false
|
|
|
+ dialogVisible:false,
|
|
|
+ supportDialogVisible:false
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -126,7 +141,7 @@
|
|
|
dialogConfirm(){
|
|
|
this.dialogVisible =false;
|
|
|
setSupport(true);
|
|
|
- window.location.href=SupportUrl;
|
|
|
+ // window.location.href=SupportUrl;
|
|
|
},
|
|
|
dialogCancel(){
|
|
|
this.dialogVisible = false;
|