123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>商城-创业帮</title>
- <meta name="keywords" content="商城-创业帮">
- <meta name="description" content="商城-创业帮">
- <meta content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,shrink-to-fit=no,user-scalable=no" name="viewport" viewport="cover">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <meta content="telephone=no" name="format-detection">
- <meta content="email=no" name="format-detection">
- <meta name="apple-mobile-web-app-title" content="商城-创业帮">
- <meta http-equiv="Cache-Control" content="no-siteapp">
- <link rel="stylesheet" href="./static/css/main.css">
- </head>
- <body class="pt0 pb0 invited-old" style="padding-top:0;">
- <div class="iframe-page" id="app">
- <h1 @click="shareshow = true"></h1>
- <iframe class="iframe-container" :src="shareurl" frameborder="0"></iframe>
- <van-popup class="bgcf7f7f7" v-model="shareshow" position="bottom" :style="{ height: '29%' }">
- <div class="sharepanel rel">
- <div class="f12 c999 tc">分享到</div>
- <van-grid class="grad" :column-num="2">
- <van-grid-item text="微信" @click="weixin">
- <template #icon>
- <svg class="icon" aria-hidden="true">
- <use xlink:href="#icon-weixin"> </use>
- </svg>
- </template>
- </van-grid-item>
- <van-grid-item text="微信朋友圈" @click="weixinfriend">
- <template #icon>
- <svg class="icon" aria-hidden="true">
- <use xlink:href="#icon-pengyouquan"> </use>
- </svg>
- </template>
- </van-grid-item>
- </van-grid>
- <div class="tc mt16 cencal abs bgcfff f14 c333" @click="shareshow = false">取消</div>
- </div>
- </van-popup>
- </div>
- <script src="./static/js/klm-vv.min.js"></script>
- <script src="./static/js/appfunc.min.js"></script>
- <script src="./static/js/klm-axios-config.js"></script>
- <script src="./static/js/publicfn.js"> </script>
- <script src="./static/js/iconfont.js"></script>
- <script>
- function OnStart(){
- app.verificationrealauth();
- };
- // 通过 CDN 引入时不会自动注册 Lazyload 组件
- // 可以通过下面的方式手动注册
- Vue.use(vant.Lazyload);
-
- // 在 #app 标签下渲染一个按钮组件
- let app = new Vue({
- el: '#app',
- data() {
- return {
- shareshow:false,
- shareurl:'',
- };
- },
- created() {
- this.shareurl = PublicLib.getCookieInfo('articurl');
- },
- methods: {
- //- 我的订单
- rightbtn(){
- PublicLib.Goto({Url:'mall-deal-list'});
- },
- share(){
- this.shareshow = true;
- },
- //- 分享微信
- weixin(){
- PublicLib.ShareAppMessageImage({Title:'文章分享', Detail:'创业帮文章分享', Icon:'https://bs.kexiaoshuang.com/static/share-logo.png', Url:this.shareurl});
- },
- //- 分享微信朋友圈
- weixinfriend(){
- PublicLib.ShareTimeline({Title:'文章分享', Detail:'创业帮文章分享', Icon:'https://bs.kexiaoshuang.com/static/share-logo.png', Url:this.shareurl});
- },
-
- }
- });
- </script>
- </body>
- </html>
|