123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {extend name="public/base_human"/}
- {block name="css"}
- <style>
- .icon{
- text-align:center;
- margin-top:50px;
- }
- .msg{
- text-align:center;
- margin:0;
- padding:0;
- font-size:24px;
- }
- .tips{
- text-align:center;
- margin-top:50px;
- font-size:14px;
- color:#aaa;
- }
- .tips .num{
- color:#FF589B;
- }
- .wechat {
- width: 80%;
- display: block;
- margin: 0 auto;
- }
- </style>
- {/block}
- {block name="body"}
- <van-nav-bar
- class="nav-theme"
- :fixed="true"
- :placeholder="true"
- >
- <template #title>
- <span class="text-white">提示</span>
- </template>
- </van-nav-bar>
- <div style="width:100%;height:46px;"></div>
- <h3 class="msg">{$msg}</h3>
- <p class="tips">如有疑问,请加下方工作人员微信</p>
- <img src="/static/mobile/images/wechat_qrcode.jpg" class="wechat" alt="">
- {/block}
- {block name="script"}
- <script>
- function v_setup() {
- let base = {};
- return base;
- }
- </script>
- {/block}
|