




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
題目基于jquery和php的超市銷售系統的設計與實現系別數學與信息工程系專業年級計算機科學與技術2012級(移動互聯網專業)第1章概論1.1Jquery和php簡介JQuery是繼prototype之后又一個優秀的Javascript庫。它是輕量級的js庫,它兼容css3,還兼容各種瀏覽器(IE6.0+,FF1.5+,safria2.0+,opera9.0+),jQuery2.0及后續版本將不再支持IE6/7/8瀏覽器。jQuery使用戶能更方便地處理HTML(標準通用標記下的一個應用)、events、實現動畫效果,并且方便地為網站提供AJAX交互。jQuery還有一個比較大的優勢是,它的文檔說明很全,而且各種應用也說得很詳細,同時還有許多成熟的插件可供選擇。jQuery能夠使用戶的html頁面保持代碼和html內容分離,也就是說,不用再在html里面插入一堆js來調用命令了,只需要定義id即可。jQuery是一個兼容多瀏覽器的javascript庫,核心理念是writeless,domore(寫得更少,做得更多)。jQuery在2006年1月由美國人johnresig在紐約的barcamp發布,吸引了來自世界各地的眾多JavaScript高手加入,由DaveMethvin率領團隊進行開發。如今,jQuery已經成為最流行的javascript庫,在世界前10000個訪問最多的網站中,有超過55%在使用jQuery。jQuery是免費、開源的,使用MIT許可協議。jQuery的語法設計可以使開發更加便捷,例如操作文檔對象、選擇DOM元素、制作動畫效果、事件處理、使用Ajax以及其他功能。除此以外,jQuery提供API讓開發者編寫插件。其模塊化的使用方式使開發者可以很輕松的開發出功能強大的靜態或動態網頁。PHP(外文名:PHP:HypertextPreprocessor,中文名:“\t"/subview/99/_blank"超文本\t"/subview/99/_blank"預處理器”)是一種通用\t"/subview/99/_blank"開源\t"/subview/99/_blank"腳本語言。\t"/subview/99/_blank"語法吸收了\t"/subview/99/_blank"C語言、\t"/subview/99/_blank"Java和\t"/subview/99/_blank"Perl的特點,利于學習,使用\t"/subview/99/_blank"廣泛,主要適用于\t"/subview/99/_blank"Web開發領域。PHP獨特的\t"/subview/99/_blank"語法混合了\t"/subview/99/_blank"C、\t"/subview/99/_blank"Java、\t"/subview/99/_blank"Perl以及\t"/subview/99/_blank"PHP自創的語法。它可以比\t"/subview/99/_blank"CGI或者\t"/subview/99/_blank"Perl更快速地執行\t"/subview/99/_blank"動態網頁。用PHP做出的\t"/subview/99/_blank"動態頁面與其他的\t"/subview/99/_blank"編程語言相比,\t"/subview/99/_blank"PHP是將\t"/subview/99/_blank"程序嵌入到\t"/subview/99/_blank"HTML(\t"/subview/99/_blank"標準通用標記語言下的一個應用)文檔中去執行,執行效率比完全生成\t"/subview/99/_blank"HTML標記的\t"/subview/99/_blank"CGI要高許多;PHP還可以執行\t"/subview/99/_blank"編譯后代碼,編譯可以達到\t"/subview/99/_blank"加密和\t"/subview/99/_blank"優化代碼運行,使代碼運行更快。第2章超市銷售系統分析2.1網站功能概述超市銷售系統為了方便使用和管理者,具有以下功能:1、將電腦調到合適分辨率,運行火狐瀏覽器,輸入網站,打開網址2、新用戶首次使用網站,如果只使用瀏覽功能,則無需注冊,如需使用具體功能則需按照提示操作進行注冊,并且依照不同權限,將用戶于管理員分類3、普通用戶登錄后,可查看,瀏覽和購買商品。4、管理用戶登錄可以進行商品添加減少,以及價格修改等一系列操作5、購買成功后,商品會依照地址當天或者隔天由小區就近地址發貨2.2用戶需求系統主要是為了方便生活節奏比較快的用戶,其功能一定要簡單,易操作,能夠快速的購買商品,并且能相對準確快速的得到商品信息,實現商品購物車添加以及購買等超市購物系統總體設計總體設計也稱概要設計,在這個階段將劃分出組成網站的元素:網站素材、網站素材配置文件、網站配置,的總體結構等等。確定網站由哪些模塊組成,并且網站各個模塊之間的關系[8]。3.1購物網站業務流程根據用戶需求以及具有類似功能的網站分析,最后得出以下網站業務流程。普通網民瀏覽,用戶注冊,登陸,獲得購物或者管理權限。普通用戶:分類瀏覽網站,獲得通知,搜索需要購買物品,將物品添加至購物車,完成物品購買后,付款,物品將按照地址配送。管理者:以管理者用戶進行登陸,進行物品管理,以及物品更改,價格更改,或者用戶權限更改。3.2超市銷售系統功能模塊結構圖依據需求分析階段得到的用戶需求,在保證系統基本功能要求的前提下,結合銷售業務流程確定系統必須具備的所有功能,總體為以下模塊圖:網站基本功能與實體超市類似,其優點是利用網絡虛擬空間代替部分實體超市購物空間以及功能,實現更快的響應,更小的面積占用,只需要進行簡單的用戶注冊登錄,就可以類似于其他電商平臺進行所需商品購買3.3數據庫功能設計針對銷售系統功能設計如下數據庫:用戶:普通用戶為2,管理用戶設定為1,不同權限賬戶登錄訂單:用戶將物品添加至訂單銷售:顯示已銷售物品,數量等物品類型:進行物品類型管理物品基庫:儲存物品總體數量第4章網站設計4.1網站概要說明本程序是在dreamwear環境下編寫的網站,網站運用了mysql數據庫進行數據存儲,利用easyui里的jquery(javascript的類庫)和html進行網站前端開發,利用php實現手誤以及管理交互4.2搭載開發環境1、安裝myql安裝mysql進行數據存儲安裝phpmyadmin進行數據庫的可視化操作安裝dreamweaver進行php以及html編寫配置easyui配置easyui框架,方便各個功能管理4.3主要功能署名整個網站主要分為以下幾個模塊,網站環境配置,登陸,注冊,購物車添加,分頁瀏覽4.3.1數據庫連接配置:利用php語言驗證數據庫用戶名,密碼,鏈接數據庫。<?php$db_host="localhost";$db_user="root";$db_pass="root";$db_name="shopping";$table_user="user";$table_type="type";$table_thing="thing";$table_order="order";$table_sale="sale";$link=mysql_connect($db_host,$db_user,$db_pass);mysql_select_db($db_name,$link);?>4.3.2網站安裝<?phperror_reporting(0);echo"<html>";echo"<head>";echo"<title>安裝程序</title>";echo"</head>";echo"<body>";echo"<LINKhref=\"style.css\"rel=stylesheet>";if(!$_POST['admin']){ echo"<scriptlanguage=\"javasript\">"; echo"functionjuge(theForm)"; echo"{"; echo"if(theForm.admin.value==\"\")"; echo"{"; echo"alert(\"請輸入管理員名稱!\");"; echo"theForm.admin.focus();";/*獲取表單焦點*/ echo"return(false);"; echo"}"; echo"if(theForm.pass.value==\"\")"; echo"{"; echo"alert(\"請輸入管理員密碼1!\");"; echo"theForm.pass.focus();"; echo"return(false);"; echo"}"; echo"if(theForm.pass.value.length<8)"; echo"{"; echo"alert(\"密碼至少要八位!\");"; echo"theForm.pass.focus();"; echo"return(false);"; echo"}"; echo"if(theForm.re_pass.value!=theForm.pass.value)";/*驗證配置密碼輸入是否一致*/ echo"{"; echo"alert(\"確認密碼與密碼不一致\");"; echo"theForm.re_pass.focus();"; echo"return(false);"; echo"}"; echo"if(theForm.pre.value==\"\")"; echo"{"; echo"alert(\"請輸入表前綴!\");"; echo"theForm.pre.focus();"; echo"return(false);"; echo"}"; echo"}"; echo"functions_photo(the)"; echo"{"; echo"document.img.src='images/'+the.photo.value+'.bmp';";/*獲取配置圖片*/ echo"}"; echo"</script>"; echo"<center>"; echo"<tablewidth\"%80\"cellpadding=\"1\"cellspacing\"1\">"; echo"<formmethod=\"post\"action=\"$PATH_INFO\"onsubmit\"returnjuge(this)\">"; echo"<tr>"; echo"<tdcolspan=\"2\"align=\"center\"><fontsize=\"5px\">安裝程序</font></td>"; echo"</tr>"; echo"<tr>"; echo"<td>管理員:(后臺登陸)</td>"; echo"<td><inputtype=\"text\"name=\"admin\"></td>"; echo"</tr>"; echo"<tr>"; echo"<td>管理員密碼:(不小于八位)</td>"; echo"<td><inputtype=\"password\"name=\"pass\"size=\"21\"></td>"; echo"</tr>"; echo"<tr>"; echo"<td>確認密碼:</td>"; echo"<td><inputtype=\"password\"name=\"re_pass\"size=\"21\"></td>"; echo"</tr>"; echo"<tr>"; echo"<td>管理員郵箱:(可選)</td>"; echo"<td><inputtype=\"text\"name=\"email\"></td>"; echo"</tr>"; echo"<tr>"; echo"<td>可選擇的圖像:</td>"; echo"<td>"; echo"<selectname=\"photo\"size=\"1\"onchange=\"s_photo(this.form)\">"; for($i=1;$i<21;$i++) { echo"<opionvalue=".$i.">".$i."</option>";; } echo"</select>"; echo"<imgsrc=\"images/1.bmp\"name=\"img\">"; echo"</td>"; echo"</tr>"; echo"<tr>"; echo"<td>用戶地址:</td>"; echo"<td><inputtype=\"text\"name=\"address\"></td>"; echo"</tr>"; echo"<tr>"; echo"<tdcolspan=\"2\"><center>"; echo"<inputtype=\"submit\"value=\"下一步\">"; echo"<inputtype=\"reset\"value=\"重新填\">"; echo"</center><td/>"; echo"</tr>"; echo"</form>"; echo"</table>"; echo"</center>"; echo"</body>"; echo"</html>"; }else{ $name=$_POST['admin'];/*利用post方法保密傳遞用戶名*/ $password=md5($_POST['pass']);/*利用post方法保密傳遞密碼*/ $email=$_POST['email']; $photo=$_POST['photo']; $pre=$_POST['pre']; require"relate.php";/*利用前面php鏈接數據庫*/ $table_user=$pre.$table_user; $table_type=$pre.$table_type; $table_thing=$pre.$table_thing; $table_order=$pre.$table_order; $table_sale=$pre.$table_sale; $time=date("Y年m月d日"); $sql="createtable$table_user( idint(5)notnullauto_incrementprimarykey, namevarchar(15)notnull, passwordvarchar(40)notnull, photovarchar(80)notnull, addressvarchar(80)notnull, emailvarchar(80)notnull, qqvarchar(15), msnvarchar(80), reg_datevarchar(20)notnull, post_numint(5)notnulldefault0, adminint(1)nutnull )"; mysql_query($sql,$link)ordie(mysql_error()); $sql="createtable$table_thing( idint(5)notnullauto_incrementprimarykey, p_idint(5)notnull, type_namevarchar(12)notnull, type_descriptionvarchar(80)notnull, type_numint(5)notnulldefault0 )"; mysql_query($sql,$link)ordie(mysql_error()); $sql="createtable$table_thing( idint(5)notnullauto_incrementprimarykey, thing_namevarchar(40)notnull, thing_authorvarchar(20)notnull, thing_pubvarchar(40)notnull, thing_nameint(5)notnull, thing_costvarchar(6)notnull, thing_descriptionvarchar(200)notnull, thing_photovachar(80)notnull, thing_sale_numint(5)notnull, thing_numint(5)notnull )"; mysql_query($sql,$link)ordie(mysql_error()); $sql="createtable$table_order( idint(5)notnullauto_incrementprimarykey, order_user_idint(5)notnull, order_user_namevarchar(12)notnull, order_thing_idint(5)notnull, order_thing_numint(5)notnull, order_contentvarchar(80)notnull, order_costvarchar(10)notnull, order_stateenum('true','false')notnulldefault'false', order_datevarchar(40)notnull )"; mysql_query($sql,$link)ordie(mysql_error()); $sql="createtable$table_sale( idint(5)notnullauto_incrementprimarykey, sale_order_idint(5)notnull, sale_datevarchar(40)notnull )"; mysql_query($sql,$link)ordie(mysql_error());$sql="insertinto$table_type(p_id,type_name,type_decription)values('0','主類別1','系統創建的默認主類別')"; $sql="insertinto$table_type(p_id,type_name,type_decription)values('0','分類別1','系統創建的默認分類別')";mysql_query($sql,$link)ordie(mysql_error()); $sql="insertinto$table_user(name,password,photo,address,,email,qq,msn,reg_date,admin) values('$name','$password','$photo','$email','$time''3')"; mysql_query($sql,$link)ordie(mysql_error()); $fp=fopen("relate.php","w+"); fputs($fp,"<?php"); fputs($fp,"\$db_host=\"localhost\";"); fputs($fp,"\$db_user=\"root\";"); fputs($fp,"\$db_pass=\"root\";"); fputs($fp,"\$db_name=\"shopping\";"); fputs($fp,"\$db_user=\"$table_user\";"); fputs($fp,"\$db_type=\"$table_type\";"); fputs($fp,"\$db_thing=\"$table_thing\";"); fputs($fp,"\$db_order=\"$table_order\";"); fputs($fp,"\$db_sale=\"$table_sale\";"); fputs($fp,"\$link=mysql_connect(\$db_hsot,\$db_user,\$db_pass);"); fputs($fp,"mysql_select_db(\$db_name,\$link);"); fputs($fp,"?>"); fclose($fp); echo"<center>"; echo"<tablewidth\"%80\"cellpadding=\"1\"cellspacing=\"1\">"; echo"<tr>"; echo"<tdalign=\"center\"><fontsize=\"5px\">安裝程序</font></td>"; echo"</tr>"; echo"<tr>"; echo"<tdalign=\"center\"><fontsize=\"3px\">安裝成功</font></td>"; echo"</tr>"; echo"<tr>"; echo"<tdalign=\"center\"><fontsize=\"3px\">刪除文件減少風險</font></td>"; echo"</tr>"; echo"<tr>"; echo"<tdalign=\"center\">點<ahref=\".php\">擊</a></td>"; echo"</tr>" echo"</table>"; echo"</center>"; echo"</body>";echo"</html>"; }?>4.3.3登陸功能<form
action="logincheck.php"
method="post">
用戶名:<input
type="text"
name="username"
/>
<br
/>
密碼:<input
type="password"
name="password"
/>
<br
/>
<input
type="submit"
name="submit"
value="登陸"
/>
<a
href="register.php">注冊</a>
</form>/*基本表單*/
登錄處理界面logincheck.php<?php
if(isset($_POST["submit"])
&&
$_POST["submit"]
==
"登陸")
{
$user
=
$_POST["username"];/*利用post方法傳遞用戶名,密碼,與數據庫數據進行驗證*/
$psw
=
$_POST["password"];
if($user
==
""
||
$psw
==
"")
{
echo
"<script>alert('請輸入用戶名或密碼!');
history.go(-1);</script>";
}
else
{
mysql_connect("localhost","root","sixx");
mysql_select_db("vt");
mysql_query("set
names
'gbk'");
$sql
=
"select
username,password
from
user
where
username
=
'$_POST[usernae]'
and
password
=
'$_POST[password]'";
$result
=
mysql_query($sql);
$num
=
mysql_num_rows($result);
if($num)
{
$row
=
mysql_fetch_array($result);
//將數據以索引方式儲存在數組中
echo
$row[0];
}
else
{
echo
"<script>alert('用戶名或密碼不正確!');history.go(-1);</script>";
}
}
}
else
{
echo
"<script>alert('提交未成功!');
history.go(-1);</script>";
}
?>
4.3.4注冊<form
action="regcheck.php"
method="post">
用戶名:<input
type="text"
name="username"/>
<br/>
密碼:<input
type="password"
name="password"/>
<br/>
確認密碼:<input
type="password"
name="confirm"/>
<br/>
<input
type="Submit"
name="Submit"
value="注冊"/>
</form>
注冊處理界面regcheck.php<?php
if(isset($_POST["Submit"])
&&
$_POST["Submit"]
==
"注冊")
{
$user
=
$_POST["username"];
$psw
=
$_POST["password"];
$psw_confirm
=
$_POST["confirm"];
if($user
==
""
||
$psw
==
""
||
$psw_confirm
==
"")
{
echo
"<script>alert('請確認信息完整性!');
history.go(-1);</script>";
}
else
{
if($psw
==
$psw_confirm)
{
mysql_connect("localhost","root","sixx");
//連接數據庫
mysql_select_db("vt");
//選擇數據庫
mysql_query("set
names
'gdk'");
//設定字符集
$sql
=
"select
username
from
user
where
username
=
'$_POST[username]'";
//SQL語句
$result
=
mysql_query($sql);
//執行SQL語句
$num
=
mysql_num_rows($result);
//統計執行結果影響的行數
4.3.5分頁功能<?php
/*
*
Created
on
2013-12-3
*
分頁類
*
To
change
the
template
for
this
generated
file
go
to
*
Window
-
Preferences
-
PHPeclipse
-
PHP
-
Code
Templates
*/
class
Pagination
{
private
$each_disNums;
//每頁顯示的條目數
private
$nums;
//總條目數
private
$current_page;
//當前被選中的頁
private
$sub_pages;
//每次顯示的頁數
private
$pageNums;
//總頁數
private
$page_array
=
array
();
//用來構造分頁的數組
private
$subPage_link;
//每個分頁的鏈接
private
$subPage_type;
//顯示分頁的類型
/*
__construct是SubPages的構造函數,用來在創建類的時候自動運行.
@$each_disNums
每頁顯示的條目數
@nums
總條目數
@current_num
當前被選中的頁
@sub_pages
每次顯示的頁數
@subPage_link
每個分頁的鏈接
@subPage_type
顯示分頁的類型
當@subPage_type=1的時候為普通分頁模式
example:
共4523條記錄,每頁顯示10條,當前第1/453頁
[首頁]
[上頁]
[下頁]
[尾頁]
當@subPage_type=2的時候為經典分頁樣式
example:
當前第1/453頁
[首頁]
[上頁]
1
2
3
4
5
6
7
8
9
10
[下頁]
[尾頁]
*/
function
__construct($each_disNums,
$nums,
$current_page,
$sub_pages,
$subPage_link,
$subPag_type)
{
$this->each_disNums
=
intval($each_disNums);
$this->nums
=
intval($nums);
if
(!$current_page)
{
$this->current_page
=
1;
}
else
{
$this->current_page
=
intval($current_page);
}
$this->sub_pages
=
intval($sub_pages);
$this->pageNums
=
ceil($nums
/
$each_disNums);
$this->subPage_link
=
$subPage_link;
$this->show_SubPages($subPage_type);
//echo
$this->pageNums."--".$this->sub_pages;
}
/*
__destruct析構函數,當類不在使用的時候調用,該函數用來釋放資源。
*/
function
__destruct()
{
unset
($each_disNums);
unset
($nums);
unset
($current_page);
unset
($sub_pages);
unset
($pageNums);
unset
($page_array);
unset
($subPage_link);
unset
($subPage_type);
}
/*
show_SubPages函數用在構造函數里面。而且用來判斷顯示什么樣子的分頁
*/
function
show_SubPages($subPage_type)
{
if
($subPage_type
==
1)
{
$this->subPageCss1();
}
elseif
($subPage_type
==
2)
{
$this->subPageCss2();
}
}
/*
用來給建立分頁的數組初始化的函數。
*/
function
initArray()
{
for
($i
=
0;
$i
<
$this->sub_pages;
$i++)
{
$this->page_array[$i]
=
$i;
}
return
$this->page_array;
}
/*
construct_num_Page該函數使用來構造顯示的條目
即使:[1][2][3][4][5][6][7][8][9][10]
*/
function
construct_num_Page()
{
if
($this->pageNums
<
$this->sub_pages)
{
$current_array
=
array
();
for
($i
=
0;
$i
<
$this->pageNums;
$i++)
{
$current_array[$i]
=
$i
+1;
}
}
else
{
$current_array
=
$this->initArray();
if
($this->current_page
<=
3)
{
for
($i
=
0;
$i
<
count($current_array);
$i++)
{
$current_array[$i]
=
$i
+1;
}
}
elseif
($this->current_page
<=
$this->pageNums
&&
$this->current_page
>
$this->pageNums
$this->sub_pages
+
1)
{
for
($i
=
0;
$i
<
count($current_array);
$i++)
{
$current_array[$i]
=
($this->pageNums)
-
($this->sub_pages)
+
1
+
$i;
}
}
else
{
for
($i
=
0;
$i
<
count($current_array);
$i++)
{
$current_array[$i]
=
$this->current_page
-
2
+
$i;
}
}
}
return
$current_array;
}
/*
構造普通模式的分頁
共4523條記錄,每頁顯示10條,當前第1/453頁
[首頁]
[上頁]
[下頁]
[尾頁]
*/
function
subPageCss1()
{
$subPageCss1Str
=
"";
$subPageCss1Str
.=
"共"
.
$this->nums
.
"條記錄,";
$subPageCss1Str
.=
"每頁顯示"
.
$this->each_disNums
.
"條,";
$subPageCss1Str
.=
"當前第"
.
$this->current_page
.
"/"
.
$this->pageNums
.
"頁
";
if
($this->current_page
>
1)
{
$firstPageUrl
=
$this->subPage_link
.
"1";
$prewPageUrl
=
$this->subPage_link
.
($this->current_page
-
1);
$subPageCss1Str
.=
"[<a
href='$firstPageUrl'>首頁</a>]
";
$subPageCss1Str
.=
"[<a
href='$prewPageUrl'>上一頁</a>]
";
}
else
{
$subPageCss1Str
.=
"[首頁]
";
$subPageCss1Str
.=
"[上一頁]
";
}
if
($this->current_page
<
$this->pageNums)
{
$lastPageUrl
=
$this->subPage_link
.
$this->pageNums;
$nextPageUrl
=
$this->subPage_link
.
($this->current_page
+
1);
$subPageCss1Str
.=
"
[<a
href='$nextPageUrl'>下一頁</a>]
";
$subPageCss1Str
.=
"[<a
href='$lastPageUrl'>尾頁</a>]
";
}
else
{
$subPageCss1Str
.=
"[下一頁]
";
$subPageCss1Str
.=
"[尾頁]
";
}
echo
$subPageCss1Str;
}
/*
構造經典模式的分頁
當前第1/453頁
[首頁]
[上頁]
1
2
3
4
5
6
7
8
9
10
[下頁]
[尾頁]
*/
function
subPageCss2()
{
$subPageCss2Str
=
"";
$subPageCss2Str
.=
"當前第"
.
$this->current_page
.
"/"
.
$this->pageNums
.
"頁
";
if
($this->current_page
>
1)
{
$firstPageUrl
=
$this->subPage_link
.
"1";
$prewPageUrl
=
$this->subPage_link
.
($this->current_page
-
1);
$subPageCss2Str
.=
"
<a
href='$firstPageUrl'>首頁</a>
";
$subPageCss2Str
.=
"
<a
href='$prewPageUrl'>上一頁</a>
";
}
else
{
$subPageCss2Str
.=
"
首頁
";
$subPageCss2Str
.=
"
上一頁
";
}
$a
=
$this->construct_num_Page();
for
($i
=
0;
$i
<
count($a);
$i++)
{
$s
=
$a[$i];
i
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 李國章詩歌中的田園意象研究-全面剖析
- 2024年6月份墻體廣告與土壤濕度監測聯動合同
- 預埋件基礎施工方案
- 區間問題求解技巧-全面剖析
- 智能配送系統的動態路徑規劃-全面剖析
- 植物抗蟲性機理探討-全面剖析
- 生育政策與社會福利-全面剖析
- 測繪數據處理算法-全面剖析
- 人工智能在社會福利精準幫扶中的應用-全面剖析
- 房頂加固施工方案
- 幼兒園小班班本課程果然有趣
- 《黑神話:悟空》跨文化傳播策略與路徑研究
- 消防設施操作和維護保養規程
- 醫療器械委托生產質量協議模版
- (高清版)AQ 2065-2018 地下運礦車安全檢驗規范
- 2024年典型事故案例警示教育手冊15例
- DL∕T 1882-2018 驗電器用工頻高壓發生器
- 2024年北京電子科技職業學院高職單招筆試歷年職業技能測驗典型例題與考點解析含答案
- 大學生心理健康教育(山東聯盟)智慧樹知到期末考試答案章節答案2024年德州學院
- 標準航海用語
- 稀土礦采選安全事故防范與應急管理
評論
0/150
提交評論