fixed
This commit is contained in:
11
admin/application/admin/controller/Development.php
Normal file
11
admin/application/admin/controller/Development.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\controller;
|
||||
use app\common\controller\Backend;
|
||||
class Development extends Backend
|
||||
{
|
||||
public function getdetails()
|
||||
{
|
||||
return $this->view->fetch();
|
||||
}
|
||||
}
|
||||
38
admin/application/admin/view/development/getdetails.html
Normal file
38
admin/application/admin/view/development/getdetails.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>项目详情</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
background-color: #f4f4f9;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.container h1 {
|
||||
color: #333;
|
||||
}
|
||||
.container p {
|
||||
color: #666;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<img src="../../assets/img/dev.png" alt="">
|
||||
<h1>项目开发中</h1>
|
||||
<p>敬请期待</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
admin/public/assets/img/dev.png
Normal file
BIN
admin/public/assets/img/dev.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Reference in New Issue
Block a user