123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
- <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
- <meta name="format-detection"content="telephone=no">
- <title></title>
- <link rel="stylesheet" type="text/css" href="../../css/api.css"/>
- <link rel="stylesheet" type="text/css" href="../../css/style.css"/>
- <link rel="stylesheet" href="../../css/projeck.css">
- <style media="screen">
- body,html{
- margin: 0;
- background: #fff;
- }
- </style>
- </head>
- <body>
- <div class="api_layout">
- <header class="header-login">
- <img class="backBtn" src="../../image/btn_back.png" alt="" tapmode onclick="backIndex()">
- <p class="api_text">我的审核</p>
- </header>
- </div>
- </body>
- </html>
- <script type="text/javascript" src="../../script/api.js"></script>
- <script src="../../script/config.js"></script>
- <script type="text/javascript">
- apiready = function () {
- $api.fixStatusBar($api.dom('header') );
- api.parseTapmode();
- var info = $api.getStorage('data'),
- token = JSON.parse(info).data.access_token;
- if (api.pageParam.examineType === 1) {
- openEffciency(api.pageParam.ID)
- }else {
- openAlready(api.pageParam.ID)
- }
- }
- // 可审核详情
- function openEffciency(id) {
- // console.log(JSON.stringify(id));
- // console.log(JSON.stringify('可 审核详情'));
- $event.openFrameBounces('wordorderDetails','header','',{ID:id})
- }
- // 已审核详情
- function openAlready(id) {
- // console.log(JSON.stringify(id));
- // console.log(JSON.stringify('已 审核详情'));
- $event.openFrame('alreadyWordorderDetails','header','',{ID:id})
- }
- function backIndex() {
- // api.sendEvent({
- // name: 'userInfo',
- // extra: {
- // key1: 'value1',
- // key2: 'value2'
- // }
- // });
- api.closeWin();
- }
- </script>
|