12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {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;
- }
- .click {
- text-align:center;
- margin-top:10px;
- font-size:14px;
- color:var(--blue);
- }
- .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="click" @click="toUrl">点我进入下一步</p>
- <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 = {};
- base.toUrl = () => {
- location.href = "{:url('human/index')}";
- };
- return base;
- }
- </script>
- {/block}
|