介紹
本系統(tǒng)是較為簡(jiǎn)單的一個(gè)可以完成學(xué)生信息、學(xué)生成績(jī)的增刪改查,按照班級(jí)學(xué)科查詢學(xué)生成績(jī),查看所有表單,簡(jiǎn)單的完成學(xué)生選課與刪除,查詢考課名單等功能。
本系統(tǒng)為本人的期末大作業(yè),所以有很多有待修改的bug以及很多有待優(yōu)化的功能。
界面與其代碼
1.主界面(index.php)
<html>
<head>
<title>學(xué)生信息管理系統(tǒng)</title>
</head>
<body>
<style type="text/css">
body{
background:url("bg.png") no-repeat;
background-size: 100%;
}
div{
font-size: 30px;
font-weight: bold;
color: #000000;
margin-bottom: 15px;
}
</style>
<div style="text-align: center;color: #000000;" >學(xué)生信息管理系統(tǒng)</div>
<div style="text-align: center;color: #000000;">
<a href="bd.php" target="test">表單</a>
<a href="cjcx.php" target="test">學(xué)生成績(jī)查詢</a>
<a href="xsb.php" target="test">學(xué)生表管理</a>
<a href="kcb.php" target="test">課程表管理</a>
<a href="xk.php" target="test">選課系統(tǒng)</a>
<a href="bk.php" target="test">補(bǔ)考名單</a>
<tr>
<td align="center" valign="middle">
<iframe src="" height="800px" width="1200px" name="test" id="test" scrolling="yes" frameborder="0"></iframe>
</td>
</tr>
</div>
</body>
</html>
2.表單界面(bd.php)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>補(bǔ)考</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">學(xué)生表</h1>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<tr backgorundcolor="#ffffff">
<td width="10%" ><p align="center">學(xué)號(hào)</td>
<td width="10%" ><p align="center">姓名</td>
<td width="10%" ><p align="center">性別</td>
<td width="10%" ><p align="center">年齡</td>
<td width="10%" ><p align="center">身份證</td>
<td width="10%" ><p align="center">專業(yè)編號(hào)</td>
<td width="10%" ><p align="center">班級(jí)</td>
<td width="10%" ><p align="center">聯(lián)系方式</td>
<td width="10%" ><p align="center">家庭住址</td>
<td width="10%" ><p align="center">備注</td>
<tr>
<?php
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select * from student";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
echo "<td height=24 >$s[5]</td>";
echo "<td height=24 >$s[6]</td>";
echo "<td height=24 >$s[7]</td>";
echo "<td height=24 >$s[8]</td>";
echo "<td height=24 >$s[9]</td>";
}
echo "</tr>";
?>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<h1 style="text-align: center;color: #000000;">課程表</h1>
<tr backgorundcolor="#ffffff">
<td width="10%" ><p align="center">學(xué)號(hào)</td>
<td width="10%" ><p align="center">姓名</td>
<td width="10%" ><p align="center">課程編號(hào)</td>
<td width="10%" ><p align="center">課程名</td>
<td width="10%" ><p align="center">分?jǐn)?shù)</td>
<tr>
<?php
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select * from course";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
}
echo "</tr>";
?>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<h1 style="text-align: center;color: #000000;">選課表</h1>
<tr backgorundcolor="#ffffff">
<td width="10%" ><p align="center">課程編號(hào)</td>
<td width="10%" ><p align="center">課程名</td>
<td width="10%" ><p align="center">主編</td>
<td width="10%" ><p align="center">出版社</td>
<td width="10%" ><p align="center">成績(jī)</td>
<tr>
<?php
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select student.sno,sname,course.cno,cname,degree from student,sc,course where student.sno=sc.sno and sc.cno =course.cno order by sno";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
}
echo "</tr>";
?>
</body>
</html>
3.學(xué)生成績(jī)查詢(cjcx.php)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>成績(jī)查詢</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">成績(jī)查詢</h1>
<form name="frm1" method="post" >
<table align="center" >
<tr>
<td width="100"><span>學(xué)生班級(jí):</span></td>
<td>
<input name="sclass" id="sclass" type="text">
</td>
<td width="100"><span>課程編號(hào):</span></td>
<td>
<input name="cno" id="cno" type="text">
<input type="submit" name="test" value="查找">
</td>
</tr>
</table>
</form>
<br>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<tr backgorundcolor="#ffffff">
<td width="15%" ><p align="center">班級(jí)</td>
<td width="15%" ><p align="center">學(xué)號(hào)</td>
<td width="20%" ><p align="center">姓名</td>
<td width="15%" ><p align="center">課程號(hào)</td>
<td width="20%" ><p align="center">課程名</td>
<td width="15%" ><p align="center">分?jǐn)?shù)</td>
<tr>
<?php
$sno = @$_POST['sno'];
$sclass = @$_POST['sclass'];
$cno = @$_POST['cno'];
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select sclass,student.sno,sname,course.cno,cname,degree from student,sc,course where student.sclass='$sclass' and student.sno=sc.sno and sc.cno='$cno'and sc.cno =course.cno";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
echo "<td height=24 >$s[5]</td>";
}
echo "</tr>";
?>
</body>
</html>
4.學(xué)生表管理(xsb.php)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>學(xué)生信息更新</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">學(xué)生表管理</h1>
<form name="frm1" method="post" >
<table align="center" >
<tr>
<td width="100"><span>根據(jù)學(xué)號(hào)查詢:</span></td>
<td>
<input name="sno" id="sno" type="text">
<input type="submit" name="test" value="查找">
</td>
</tr>
</table>
</form>
<br>
<?php
$conn = mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
session_start();
$number = @$_POST['sno'];
$_SESSION['number']=$number;
$sql = "select * from student where sno='$number'";
$result = mysqli_query($conn, $sql);
$row = @mysqli_fetch_array($result);
?>
<form name="frm2" method="post" enctype="multipart/form-data">
<table border="1" align="center">
<tr>
<td><span>學(xué)號(hào):</span></td>
<td>
<input name="sno" type="text" value="<?php echo $row['sno']; ?>">
<input name="h_sno" type="hidden" value="<?php echo $row['sno']; ?>">
</td>
</tr>
<tr>
<td><span>姓名:</span></td>
<td><input name="sname" type="text" value="<?php echo $row['sname']; ?>"></td>
</tr>
<tr>
<td><span>性別:</span></td>
<td><input name="ssex" type="text" value="<?php echo $row['ssex']; ?>"></td>
</tr>
<tr>
<td><span>年齡:</span></td>
<td><input name="sage" type="text" value="<?php echo $row['sage']; ?>"></td>
</tr>
<tr>
<td><span>身份證號(hào):</span></td>
<td><input name="sid" type="text" value="<?php echo $row['sid']; ?>"></td>
</tr>
<tr>
<td><span>專業(yè)編號(hào):</span></td>
<td><input name="sspeciality" type="text" value="<?php echo $row['sspeciality']; ?>"></td>
</tr>
<tr>
<td><span>班級(jí)編號(hào):</span></td>
<td><input name="sclass" type="text" value="<?php echo $row['sclass']; ?>"></td>
</tr>
<tr>
<td><span>聯(lián)系方式:</span></td>
<td><input name="sphone" type="text" value="<?php echo $row['sphone']; ?>"></td>
</tr>
<tr>
<td><span>家庭住址:</span></td>
<td><input name="saddress" type="text" value="<?php echo $row['saddress']; ?>"></td>
</tr>
<tr>
<td><span>備注:</span></td>
<td><input name="sremarks" type="text" value="<?php echo $row['sremarks']; ?>"></td>
</tr>
<td align="center" colspan="2">
<input name="b" type="submit" value="修改">
<input name="b" type="submit" value="添加">
<input name="b" type="submit" value="刪除">
</td>
</tr>
</table>
</form>
</body>
</html>
<?php
$num = @$_POST['sno'];
$XH=@$_POST['sno'];
$name = @$_POST['sname'];
$XB = @$_POST['ssex'];
$NL = @$_POST['sage'];
$SFZH = @$_POST['sid'];
$ZYBH = @$_POST['sspeciality'];
$BJBH = @$_POST['sclass'];
$LXFS = @$_POST['sphone'];
$JTZZ = @$_POST['saddress'];
$BZ = @$_POST['sremarks'];
if (@$_POST["b"] == '修改')
{
if ($num!=$XH){
echo "<script>alert('學(xué)號(hào)與原數(shù)據(jù)有異,無(wú)法修改!');location.href='xsb.php'</script>";
}
else {
$update_sql="update student set sname='$name',ssex='$XB',sage='$NL',sid='$SFZH',sspeciality='$ZYBH',sclass='$BJBH',sphone='$LXFS',saddress='$JTZZ',sremarks='$BZ' where sno='$XH'";
$update_result= mysqli_query($conn,$update_sql);
if (mysqli_affected_rows($conn) != 0){
echo "<script>alert('修改成功!');location.href='xsb.php'</script>";
} else {
echo "<script>alert('修改失敗!');location.href='xsb.php'</script>";
}
}
}
if (@$_POST["b"] == '添加') {
$insert_sql = "insert into student(sno,sname,ssex,sage,sid,sspeciality,sclass,sphone,saddress,sremarks) values('$XH','$name','$XB','$NL','$SFZH','$ZYBH','$BJBH','$LXFS','$JTZZ','$BZ')";
$insert_result = mysqli_query($conn, $insert_sql);
if (mysqli_affected_rows($conn) != 0){
echo "<script>alert('添加成功!');location.href='xsb.php'</script>";
} else {
echo "<script>alert('添加失敗!');location.href='xsb.php'</script>";
}
}
if (@$_POST["b"] == '刪除') {
if ($num==null) {
echo "<script>alert('請(qǐng)輸入要?jiǎng)h除的學(xué)號(hào)!')</script>";
} else {
$de_sql = "select sno from student where sno='$num'";
$de_result = mysqli_query($conn, $de_sql);
$de_row = mysqli_fetch_array($de_result);
if (!$de_row)
echo "<script>alert('學(xué)號(hào)不存在,無(wú)法刪除!')</script>";
else {
$del_sql = "delete from student where sno='$num'";
$del_result = mysqli_query($conn, $del_sql);
if (mysqli_affected_rows($conn) != 0)
echo "<script>alert('刪除學(xué)號(hào)為" . $num . "的學(xué)生成功!')</script>";
}
}
}
?>
5.課程表管理(kcb.php)
<html>
<head>
<meta charset="UTF-8">
<title>課程信息更新</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">課程表管理</h1>
<form name="frm1" method="post">
<table align="center">
<tr>
<td width="120"><span>根據(jù)課程號(hào)查詢:</span></td>
<td>
<input name="cno" id="cno" type="text">
<input type="submit" name="test" value="查找">
</td>
</tr>
</table>
</form>
<?php
$conn= mysqli_connect("localhost","root","123456","stumanage");
mysqli_set_charset($conn,"utf8");
$KCH=@$_POST['cno'];
$sql="select * from course where cno='$KCH'";
$result= mysqli_query($conn,$sql);
$row=@mysqli_fetch_array($result);
if (($cno!=NULL)&&(!$row))
echo "<script>alert('沒(méi)有該課程信息!')</script>";
?>
<form name="frm2" method="post">
<table border="1" align="center">
<tr>
<td><span>課程編號(hào):</span></td>
<td>
<input name="cno" type="text" value="<?php echo $row['cno'];?>">
<input name="h_cno" type="hidden" value="<?php echo $row['h_cno'];?>">
</td>
</tr>
<tr>
<td><span>課程名:</span></td>
<td><input name="cname" type="text" value="<?php echo $row['cname'];?>"></td>
</tr>
<tr>
<td><span>主編:</span></td>
<td><input name="ceditor" type="text" value="<?php echo $row['ceditor'];?>"></td>
</tr>
<tr>
<td><span>出版社:</span></td>
<td><input name="cpublish" type="text" value="<?php echo $row['cpublish'];?>"></td>
</tr>
<tr>
<td><span>學(xué)分:</span></td>
<td><input name="ccredit" type="text" value="<?php echo $row['ccredit'];?>"></td>
</tr>
<tr>
<td align="center" colspan="2">
<input name="b" type="submit" value="修改">
<input name="b" type="submit" value="添加">
<input name="b" type="submit" value="刪除">
</td>
</tr>
</table>
</form>
</body>
</html>
<?php
$KCH=@$_POST['cno'];
$h_KCH=@$_POST['cno'];
$KCM=@$_POST['cname'];
$ZB=@$_POST['ceditor'];
$CBS=@$_POST['cpublish'];
$XF=@$_POST['ccredit'];
if (@$_POST["b"]=='修改')
{
if($KCH!=$h_KCH)
echo "<script>alert('課程編號(hào)與原數(shù)據(jù)有異,無(wú)法修改!');</script>";
else {
$update_sql="update course set cname='$KCM',ceditor='$ZB',cpublish='$CBS',ccredit='$XF' where cno='$KCH'";
$update_result= mysqli_query($conn,$update_sql);
if (mysqli_affected_rows($conn)!=0)
echo "<script>alert('修改成功!');</script>";
else
echo "<script>alert('信息未修改!');</script>";
}
}
//單擊【添加】按鈕
if (@$_POST["b"]=='添加')
{
$insert_sql="insert into course(cno,cname,ceditor,cpublish,ccredit) values('$KCH','$KCM','$ZB','$CBS','$XF')";
$insert_result= mysqli_query($conn,$insert_sql)or die('添加失敗!');
if(mysqli_affected_rows($conn)!=0)
echo "<script>alert('添加成功!');</script>";
}
//單擊【刪除】按鈕
if (@$_POST["b"]=='刪除')
{
if(!$KCH)
{
echo "<script>alert('請(qǐng)輸入要?jiǎng)h除的課程號(hào)!');</script>";
}
else {
$d_sql="select cno from course where cno='$KCH'";
$d_result= mysqli_query($conn,$d_sql);
$d_row= mysqli_fetch_array($d_result);
if (!$d_row)
echo "<script>alert('課程編號(hào)不存在,無(wú)法刪除!');</script>";
else {
$del_sql="delete from course where cno='$KCH'";
$del_result= mysqli_query($conn,$del_sql)or die('刪除失敗!');
if (mysqli_affected_rows($conn)!=0)
echo "<script>alert('刪除課程".$KCH."成功!');</script>";
}
}
}
?>
6.選課系統(tǒng)(xk.php)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>補(bǔ)考</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">選課表</h1>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<tr backgorundcolor="#ffffff">
<td width="20%" ><p align="center">課程編號(hào)</td>
<td width="20%" ><p align="center">課程名</td>
<td width="20%" ><p align="center">老師</td>
<td width="20%" ><p align="center">教學(xué)用書出版社</td>
<td width="20%" ><p align="center">學(xué)分</td>
</tr>
<?php
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select * from course";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
}
echo "</tr>";
?>
<form name="frm1" method="post" >
<table align="center" >
<h2><p style="text-align: center;color: #000000;">選課</h2></p>
<tr>
<td width="100"><span>選課學(xué)生學(xué)號(hào):</span></td>
<td>
<input name="sno" id="sno" type="text">
</td>
<td width="100"><span>所選課編號(hào):</span></td>
<td>
<input name="cno" id="cno" type="text">
<input type="submit" name="test" value="選課">
</td>
</tr>
</table>
<?php
$sno = @$_POST['sno'];
$cno = @$_POST['cno'];
if (@$_POST["test"]=='選課')
{
$insert_sql="insert into sc(sno,cno) values('$sno','$cno')";
$insert_result= mysqli_query($conn,$insert_sql)or die('添加失敗!');
if(mysqli_affected_rows($conn)!=0)
echo "<script>alert('選課成功!');</script>";
}
?>
</form>
<h3 style="text-align: center;color: #000000;">修改選課</h3>
<form name="frm1" method="post">
<table align="center">
<tr>
<td width="100"><span>學(xué)號(hào):</span></td>
<td>
<input name="sno" id="sno" type="text">
</td>
<td width="100"><span>選錯(cuò)課程號(hào):</span></td>
<td>
<input name="cno" id="cno" type="text">
<input type="submit" name="test" value="查找">
</td>
</tr>
</table>
</form>
<?php
$conn= mysqli_connect("localhost","root","123456","stumanage");
mysqli_set_charset($conn,"utf8");
$cno=@$_POST['cno'];
$sno=@$_POST['sno'];
$sql="select * from sc where cno='$cno'AND sno='$sno'";
$result= mysqli_query($conn,$sql);
$row=@mysqli_fetch_array($result);
?>
<form name="frm2" method="post">
<table border="1" align="center">
<tr>
<td><span>學(xué)號(hào):</span></td>
<td>
<input name="sno" type="text" value="<?php echo $row[0];?>">
</td>
</tr>
<tr>
<td><span>課程號(hào):</span></td>
<td><input name="cno" type="text" value="<?php echo $row[1];?>"></td>
</tr>
<tr>
<td align="center" colspan="2">
<input name="b" type="submit" value="刪除">
</td>
</tr>
</table>
</form>
</body>
</html>
<?php
$sno=@$_POST['sno'];
$cno=@$_POST['cno'];
if (@$_POST["b"]=='刪除')
{
if(!$cno)
{
echo "<script>alert('請(qǐng)輸入要?jiǎng)h除的課程號(hào)!');</script>";
}
$del_sql="delete from sc where cno='$cno' and sno='$sno'";
$del_result= mysqli_query($conn,$del_sql)or die('刪除失敗!');
if (mysqli_affected_rows($conn)!=0)
echo "<script>alert('刪除成功!');</script>";
}
?>
</body>
</html>
7.補(bǔ)考名單(bk.php)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>補(bǔ)考</title>
<style type="text/css">
table{margin:0 auto;}
td{text-align:center;}
</style>
</head>
<body>
<h1 style="text-align: center;color: #000000;">以下學(xué)生需要補(bǔ)考</h1>
<table width="100%" border="1" cellpadding="0" cellspacing="0" height="21" bordercolor="#cccccc" style="border-collapse">
<tr backgorundcolor="#ffffff">
<td width="20%" ><p align="center">學(xué)號(hào)</td>
<td width="20%" ><p align="center">姓名</td>
<td width="20%" ><p align="center">課程號(hào)</td>
<td width="20%" ><p align="center">課程名</td>
<td width="20%" ><p align="center">分?jǐn)?shù)</td>
<tr>
<?php
$conn=mysqli_connect("localhost", "root", "123456", "stumanage");
mysqli_set_charset($conn, "set names 'utf8'");
$sql ="select sc.sno,sname,sc.cno,cname,degree from student,sc,course where sc.degree<60 and student.sno=sc.sno and sc.cno =course.cno order by sno";
$result= mysqli_query($conn, $sql);
while($s=mysqli_fetch_array($result)){
echo "<tr><td height=24>$s[0]</td>";
echo "<td height=24 >$s[1]</td>";
echo "<td height=24 >$s[2]</td>";
echo "<td height=24 >$s[3]</td>";
echo "<td height=24 >$s[4]</td>";
}
echo "</tr>";
?>
</body>
</html>
數(shù)據(jù)庫(kù)部分
學(xué)生表(student)
字段名稱 數(shù)據(jù)類型 長(zhǎng)度 是否為空
學(xué)號(hào) (sno) char 10 N
姓名( sname) varchar 8 N
性別(ssex) varchar 8 N
年齡(sage) varchar 8 N
身份證號(hào)(sid) varchar 8 N
專業(yè)編號(hào)(sspeciality) varchar 60 N
課程編號(hào)(sclass) varchar 8 N
聯(lián)系方式(sphone) varchar 12 N
家庭住址(saddress) varchar 60 N
備注(sremarks) Varchar 60 N
課程表(course)
字段名稱 數(shù)據(jù)類型 長(zhǎng)度 是否為空
課程編號(hào)(cno) varchar 8 N
課程名稱(cname) varchar 60 N
主編(ceditor) varchar 20 N
出版社(cpublish) varchar 20 N
學(xué)分(ccredut) decimal (4,1) N文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-777769.html
選課表(sc)
字段名稱 數(shù)據(jù)類型 長(zhǎng)度 是否為空
學(xué)號(hào)(sno) char 10 N
課程編號(hào)(cno) varchar 8 N
分?jǐn)?shù)(degree) decimal (4,1) N文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-777769.html
到了這里,關(guān)于學(xué)生信息管理系統(tǒng)(php+mysql)的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!