1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- // by 请勿倒卖,已申请软著,否则追究法律责任
- namespace app\index;
- class apps_cancelMerge 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');
- $result = db('appid')->where('in_uid', $this->userid)->where('in_form', '<>', $row['in_form'])->where('in_id', $row['in_kid'])->find();
- ?> <div class="col-md-5 text-center">
- <div class="funny-boxes-img">
- <a href="<?php echo getlink($row['in_id']);?>" target="_blank">
- <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'"
- class="appicon" style="margin-top:0px;margin-bottom:14px;">
- </a>
- <p class="text-center app-name">
- <a href="<?php echo getlink($row['in_id']);?>" target="_blank"><?php echo $row['in_name'];?></a>
- </p>
- <p class="text-center app-name">
- <span class="ios"><?php echo $row['in_form'];?></span>
- </p>
- </div>
- </div>
- <div class="col-md-2 text-center">
- <span aria-hidden="true" class="icon-link" style="line-height:118px;font-size:30px;"></span>
- </div>
- <div class="col-md-5 text-center">
- <div class="funny-boxes-img">
- <a href="<?php echo getlink($result['in_id']);?>" target="_blank">
- <img src="<?php echo geticon($result['in_icon']);?>"
- onerror="javascript:this.src='<?php echo IN_PATH;?>static/index/image/<?php echo $result['in_form'];?>.png'"
- class="appicon" style="margin-top:0px;margin-bottom:14px;">
- </a>
- <p class="text-center app-name">
- <a href="<?php echo getlink($result['in_id']);?>"
- target="_blank"><?php echo $result['in_name'];?></a>
- </p>
- <p class="text-center app-name">
- <span class="ios"><?php echo $result['in_form'];?></span>
- </p>
- </div>
- </div>
- <div class="row" style="padding:20px 50px 50px 50px;">
- <div class="col-md-10 col-md-offset-1">
- <p>温馨提示:</p>
- <p>合并后的两个应用,进入任一个应用的单页,扫描二维码,会根据你的手机系统自动帮你下载相应的版本。</p>
- </div>
- </div>
- <?php
- }
- }
|