123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- $title = '资料认证';
- $view
- ->import('inc/head')
- ->set('title', $title)
- ->set('name', 'certify-result')
- ->fetch('header span', $title)
- ->fetch('header .back@href', '<{Dever::url("user/account", "main")}>')
- ->set('info', 'task/user.info_check')
- ->render('info', array
- (
- '.wrapper' => array
- (
- 'h3 span' => array
- (
- 'html' => '$v.truename',
- ),
- '.mini-button' => array
- (
- 'html' => '$v.show',
- 'class' => 'mini-button <{$v.class}>',
- ),
- '.tips' => array
- (
- 'style' => '<{$v.status == 3 ? "" : "display:none;"}>',
- 'html' => '未通过原因:<{$v.status_desc}>',
- ),
- 'span|1' => array
- (
- 'html' => '$v.card',
- ),
- 'span|2' => array
- (
- 'html' => '$v.wechat',
- ),
- 'span|3' => array
- (
- 'html' => '$v.alipay',
- ),
- '.button' => array
- (
- 'href' => '<{Dever::url("user/info_certify", "main")}>',
- ),
- ),
- ))
- ->import('inc/foot')
- ->display();
|