123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
- namespace app\index;
- class publish_success extends BaseUser
- {
- function index()
- {
- $id = bees_decrypt(SafeRequest("id", "get"));
- $row = db('appid')->where('in_uid', $this->userid)->where('in_id', $id)->find();
- $row || exit(include_once dirname(__FILE__) . '/../pack/error/404.php');
- ?>
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0" />
- <meta name="keywords" content="<?php echo IN_KEYWORDS; ?>" />
- <meta name="description" content="<?php echo IN_DESCRIPTION; ?>" />
- <title><?php echo $row['in_name']; ?>发布成功 - <?php echo IN_NAME; ?> -
- 免费应用内测托管平台|iOS应用Beta测试分发|Android应用内测分发</title>
- <?php
- $this->static_();
- ?>
- <style>
- .release-app .uploaded-success .img-wrap {
- border: 1px solid rgba(221, 221, 221, 1);
- width: 100px;
- height: 100px;
- border-radius: 24px;
- padding: 0;
- box-shadow: unset;
- margin-bottom: 12px;
- overflow: hidden;
- }
- .release-app .uploaded-success .tit {
- background: unset;
- margin-bottom: 12px;
- color: rgba(0, 0, 0, 1);
- font-family: Source Han Sans SC;
- font-weight: 700;
- font-size: 16px;
- line-height: 25px;
- margin-bottom: 12px;
- }
- .release-app .uploaded-success .p1 {
- color: rgba(0, 0, 0, 1);
- font-family: Source Han Sans SC;
- font-weight: 400;
- font-size: 14px;
- line-height: 25px;
- margin-bottom: 30px;
- position: relative;
- padding-left: 28px;
- display: inline-block;
- }
- .release-app .uploaded-success .p1::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 20px;
- height: 25px;
- background: url(/static/index/image/my-app/icon-success.png) center/100% no-repeat;
- }
- .release-app .uploaded-success .iconfont {
- margin-right: 10px;
- font-size: 24px;
- width: 24px;
- height: 24px;
- line-height: 24px;
- position: relative;
- display: inline-block;
- }
- .release-app .uploaded-success .up-btn .ms-btn {
- font-size: 18px;
- line-height: 50px;
- height: 50px;
- border-radius: 4px;
- background-color: rgba(33, 104, 251, 1);
- color: #fff;
- margin: 0px 20px;
- padding: 0 20px;
- width: unset;
- }
- .iconfont::before {
- content: "";
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-position: center;
- width: 24px;
- height: 24px;
- display: inline-block;
- position: absolute;
- top: 5px;
- left: 0;
- background-image: url(/static/index/image/my-app/icon-update2.png);
- }
- .iconfont.icon-download::before {
- background-image: url(/static/index/image/my-app/icon-download.png);
- }
- .iconfont.icon-set::before {
- background-image: url(/static/index/image/my-app/icon-set.png);
- }
- .iconfont.icon-upload1::before {
- background-image: url(/static/index/image/my-app/icon-upload1.png);
- }
- </style>
- </head>
- <body>
- <?php
- $this->header();
- ?> <div class="release-app-wrap">
- <div class="container">
- <div class="release-app">
- <div class="crumbs">
- <a href="/index/apps/apps">我的应用</a><span>/</span>发布
- </div>
- <div class="uploaded-success">
- <div class="img-wrap">
- <img src="<?php echo geticon($row['in_icon']); ?>"
- onerror="javascript:this.src='<?php echo IN_PATH; ?>static/index/image/<?php echo $row['in_form']; ?>.png'"
- alt="" class="img-responsive">
- </div>
- <div class="tit">
- 发布成功
- </div>
- <div class="p1">
- 恭喜您,你的APP【<?php echo $row['in_name']; ?>】发布成功了!
- <?php
- if ($row['in_applock']) {
- ?><br>提示:此应用包含疑似违规信息,需人工审核,请耐心等待。<?php
- }
- ?> </div>
- <div class="up-btn">
- <a href="<?php echo getlink($row['in_id']); ?>" target="_blank"
- class="ms-btn ms-btn-secondary"><span class="iconfont icon-download"></span>查看下载页面</a>
- <a href="/index/publish/apps" class="ms-btn ms-btn-secondary"><span
- class="iconfont icon-upload1"></span>继续上传</a>
- <a href="/index/publish_setting?id=<?php echo bees_encrypt($row['in_id']); ?>"
- class="ms-btn ms-btn-secondary"><span class="iconfont icon-set"></span>APP设置</a>
- </div>
- </div>
- </div>
- </div>
- </div>
- <?php
- $this->footer();
- ?> </body>
- </html>
- <?php
- }
- }
|