canyin-project/ybcy/views/admin/app/administration_goupgrade.php
2024-11-01 16:07:54 +08:00

168 lines
4.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="renderer" content="webkit">
<?php if($this->params['site_image']):?>
<link rel="shortcut icon" type="image/x-icon" href="<?php echo $this->params['site_image'];?>" />
<?php else:?>
<link rel="shortcut icon" type="image/x-icon" href="<?=Yii::$app->request->baseUrl?>/web/favicon.ico" />
<?php endif;?>
<title> <?php if($this->params['site_title']):?>
<?php echo $this->params['site_title']; ?>
<?php else:?>
应用管理后台
<?php endif;?>-管理设置-升级</title>
<link rel="stylesheet" type="text/css" href="<?=Yii::$app->request->baseUrl?>/web/static/css/globle.css"/>
<script src="<?=Yii::$app->request->baseUrl?>/web/static/js/config.js" type="text/javascript" charset="utf-8"></script>
</head>
<style>
.imgbox {
width: 100px;
height: 100px;
}
.checkbox .el-checkbox {
border: 1px solid #F3F6FB;
position: relative;
width: 100px;
height: 100px;
}
.checklabel-zjtd {
left: 0px;
}
.checkbox .el-checkbox .el-checkbox__input {
position: absolute;
bottom: 5px;
left: 42px;
}
.channel-icon img {
width: 32px;
height: 32px;
}
.namelogo {
width: 54px;
height: 54px;
border-radius: 50%;
}
.hed-right .el-button {
height: 38px;
}
.hed-right .btn-jrpt {
width: 130px;
}
.hed-right .btn-ty {
width: 104px;
}
.textbutton .el-button{
width: 130px;
height: 38px;
}
.main_sj{
width: 90%;
margin: 0 auto;
}
.tishi{
margin: 30px 0 20px 0;
line-height: 24px;
background-color: #FFF5F0;
}
.tishi2{
line-height: 24px;
background-color: #F4F8FE;
color: #3F83E8;
}
.upgradeicon img{
width: 190px;
height: 190px;
}
</style>
<body>
<div class="head">
<div class="publicHeader"><?php echo $this->render('@app/views/admin/public/publicHeader.html');?></div>
</div>
<div class="left">
<div class="publicAside"><?php echo $this->render('@app/views/admin/public/publicAside.html');?></div>
</div>
<div class="yb_body">
<div class="layout" id="platformList">
<el-container>
<el-container>
<el-main>
<div class="main" style="min-width: 800px">
<div class="ba_f bor_rad5 pad_20 mar_b30">
<div class="main-search-tit t_l fon_16 wei">应用升级</div>
<div class="main_sj">
<div class="upgradeicon pad_30"><img src="../images/administration/upgrade.png"></div>
<div class="tishi pad_20 fon_12 ba_fe t_l maincolor">正在更新系统文件,请不要关闭窗口</div>
<div class="tishi2 pad_20 fon_12 ba_fe t_l">
<p>整体进度3/32</p>
<p>正在下载文件:/web/fun/functiom.php</p>
</div>
</div>
</div>
</div>
</el-main>
</el-container>
</el-container>
</div>
</div>
<script>
new Vue({
el: '#platformList',
data: function () {
return {
activeName: 'upgrade',
formInline: {
solt: '',
name: '',
number: '',
times: true,
plug1: false,
plug2: true,
plug3: false,
channel1: true,
channel2: false,
channel3: false,
channel4: false,
channel5: false,
},
edition: '1',
tableData: [{
image: '云贝优品',
starDate: '1.7.3',
admin: '1.7.3',
operation: {
value: '进入微信小程序',
value2: '升级'
}
},
],
}
},
methods: {
handleClick(tab, event) {
if (tab.name == 'base') {
location.href = "<?= Yii::$app->urlManager->createUrl('admin/app/administration_set');?>";
}
if (tab.name == 'upgrade') {
location.href = "<?= Yii::$app->urlManager->createUrl('admin/app/administration_upgrade');?>";
}
},
}
})
</script>
</body>
</html>