- 浏览: 153176 次
- 性别:
- 来自: 瑟孔达
最新评论
-
haihongxingzi:
妖孽r 写道long呢 已添加long和string的转换!
java中 String,Long,int类型转换 -
妖孽r:
long呢
java中 String,Long,int类型转换 -
h140465:
oracle创建同义词以及赋予权限 -
haihongxingzi:
dukun 写道grant all on b to a1
...
oracle创建同义词以及赋予权限 -
dukun:
grant all on b to a1
我测试的 o ...
oracle创建同义词以及赋予权限
<html>
<head>
<title>Agenda</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
BODY {
FONT-SIZE: 9pt; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px;
}
A {
FONT-SIZE: 9pt; TEXT-DECORATION: none; color: #000000
}
A:hover {
TEXT-DECORATION: none; color: #000000
}
A:link {
TEXT-DECORATION: none
}
A:visited {
TEXT-DECORATION: none
}
BR {
FONT-SIZE: 9pt; height: 15pt;
}
TD {
FONT-SIZE: 9pt; LINE-HEIGHT: 11pt;
}
input {
FONT-SIZE: 9pt; height: 15pt;
}
.SCROLLBAR {
SCROLLBAR-FACE-COLOR: #718698;
SCROLLBAR-HIGHLIGHT-COLOR: #899aa9;
SCROLLBAR-SHADOW-COLOR: #506981;
SCROLLBAR-3DLIGHT-COLOR: #5b7086;
SCROLLBAR-ARROW-COLOR: #506981;
SCROLLBAR-TRACK-COLOR: #5b7086;
SCROLLBAR-DARKSHADOW-COLOR: #5b7086
}
</style>
<script language="JavaScript1.2">
<!--
var Timer = new Date();
var years = Timer.getYear();
var months = (Timer.getMonth()+1);
var days = Timer.getDate();
var weeks = Timer.getDay();
var Rec_List = "";
Rec_List = ",20020202,20020608,20020815,20021219,20010125,20011105,2001706,20030715,20031203,20030416,";
function GetDays(the_year,the_month){
var Max_day = 31;
if (the_month==4 || the_month==6 || the_month==9 || the_month==11){
Max_day = 30;
}else if(the_month==2){
if(the_year%400==0){
Max_day = 29;
}else if(the_year%100==0){
Max_day = 28;
}else if(the_year%4==0){
Max_day = 29;
}else{
Max_day = 28;
}
}
return Max_day;
}
function ShowPlan(the_year,the_month,the_day){
var thisDate = the_year + "-" + (the_month+1) + "-" + the_day;
selDate.value=thisDate;
selDate.innerText=thisDate;
LayerDate.style.visibility='hidden';
}
function HideDate(){
if(LayerDate.style.visibility!='hidden'){
LayerDate.style.visibility='hidden';
}
}
function Calendar(the_year,the_month){
var i = 0;
var FontColor;
var DateStr;
var New_Date = new Date(the_year,the_month,1)
var the_week = New_Date.getDay();
var Max_day = GetDays(the_year,the_month+1)
var dummy = 7-(the_week+Max_day)%7;
var Cal_str = "";
Cal_str += "<table align=center width=100% border=0 cellpadding=1 cellspacing=1 bgcolor=#FF9900>";
Cal_str += "<tr bgcolor=#ffcc99>";
Cal_str += "<td width=14% align=center>星期日</td>";
Cal_str += "<td width=14% align=center>星期一</td>";
Cal_str += "<td width=14% align=center>星期二</td>";
Cal_str += "<td width=14% align=center>星期三</td>";
Cal_str += "<td width=14% align=center>星期四</td>";
Cal_str += "<td width=14% align=center>星期五</td>";
Cal_str += "<td width=14% align=center>星期六</td>";
Cal_str += "</tr><tr>\n";
for(i=0;i<the_week;i++){
Cal_str += "<td valign=top align=center bgcolor=#ffffff onmouseout=this.bgColor='#ffffff' onmouseover=this.bgColor='#f2f8ff'> </td>\n";
}
for(i=1;i<=Max_day;i++){
FontColor = ((i+the_week)%7==1||(i+the_week)%7==0)?"red":"black"
DateStr = "," + the_year + (the_month<9?("0"+(parseInt(the_month)+1)):(parseInt(the_month)+1)) + (i<10?("0"+i):i) + ",";
Cal_str += "<td valign=top align=center bgcolor=" + (Rec_List.search(DateStr)!=-1?"#FFCC33":"white") + ((i==days&&the_year==years&&the_month==months-1)?" background=image/now.gif":"") + " onmouseout=this.bgColor='" + (Rec_List.search(DateStr)!=-1?"#FFCC33":"#ffffff") + "' onmouseover=this.bgColor='#f2f8ff'>"
Cal_str += "<a href=javascript:ShowPlan(" + the_year + "," + the_month + "," + i + ") style='color: " + FontColor + ";'>" + i + "</a></td>\n";
if((the_week+i)%7==0 && i!=Max_day) Cal_str += "</tr><tr>\n";
}
if(dummy < 7){
for(i=1;i<=dummy;i++){
Cal_str += "<td valign=top align=center bgcolor=#ffffff onmouseout=this.bgColor='#ffffff' onmouseover=this.bgColor='#f2f8ff'> </td>\n";
}
}
Cal_str += "</tr></table>";
return(Cal_str);
}
function DateChange(mode){
var theYear=parseInt(ShowYear.innerText);
var theMonth=parseInt(ShowMon.innerText);
if(mode){
theMonth++;
if(theMonth>=13){
theYear++;
theMonth=1;
}
}else{
theMonth--;
if(theMonth<=0){
theYear--;
theMonth=12;
}
}
ShowYear.innerText=theYear;
ShowMon.innerText=theMonth;
Cal_Tab.innerHTML=Calendar(theYear,theMonth-1);
}
function YearChange(){
var theYear;
theYear=prompt("Please input the year: (0 - 3000)",ShowYear.innerText);
if(theYear==null || theYear=="") return false;
theYear=parseInt(theYear);
theMon=parseInt(ShowMon.innerText);
if((theYear+"a")=="NaNa" || theYear>3000 || theYear<0){
alert("输入错误!");
return false;
}else{
ShowYear.innerText=theYear;
ShowMon.innerText=theMon;
Cal_Tab.innerHTML=Calendar(theYear,theMon-1);
}
setTimeout("LayerDate.style.visibility='visible'",10);
}
function MonChange(){
var theMon;
theMon=prompt("Please input the Month: (1 - 12)",ShowMon.innerText);
if(theMon==null || theMon=="") return false;
theMon=parseInt(theMon);
theYear=parseInt(ShowYear.innerText);
if((theMon+"a")=="NaNa" || theMon>12 || theMon<1){
alert("输入错误!");
return false;
}else{
ShowYear.innerText=theYear;
ShowMon.innerText=theMon;
Cal_Tab.innerHTML=Calendar(theYear,theMon-1);
}
setTimeout("LayerDate.style.visibility='visible'",10);
}
function showCalendar(){
event.cancelBubble = true;
LayerDate.style.top = event.srcElement.offsetTop + event.srcElement.offsetHeight + 2;
LayerDate.style.left = event.srcElement.offsetLeft - 150;
if(parseInt(LayerDate.style.left)<0) LayerDate.style.left = 0;
LayerDate.style.visibility = LayerDate.style.visibility=='hidden'?'visible':'hidden';
return false;
}
//-->
</script>
</head>
<body onClick="HideDate()">
<p align=center> </p>
<p align=center>
<input type=text id=selDate value="" style="width: 80px" readonly><input type=button value="q" style="FONT-SIZE: 7pt; FONT-FAMILY: Wingdings 3; width: 15pt" onClick="showCalendar()">
</p>
<div id="LayerDate" onClick="event.cancelBubble=true" style="position:absolute; width:300px; height:115px; z-index:1; visibility: hidden; BORDER: 1 solid black;">
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="40" align="center" bgcolor="#000000" nowrap> <input type="button" value="|" style="FONT-FAMILY: Wingdings 3;width: 20px" onClick="DateChange(false)"></td>
<td width="100%" align="center" bgcolor="#000000" style="color: white;FONT-WEIGHT: bold; CURSOR: default" nowrap><span id="ShowYear" onClick="YearChange()"></span> 年 <span id="ShowMon" onClick="MonChange()"></span> 月</td>
<td width="40" align="center" bgcolor="#000000" nowrap><input type="button" value="}" style="FONT-FAMILY: Wingdings 3;width: 20px" onClick="DateChange(true)"> </td>
</tr>
<tr>
<td colspan="3" align="center"> <span id="Cal_Tab"></span> </td>
</tr>
<tr>
<td height=30 colspan="3" valign="middle" style="cursor: default" onClick="Cal_Tab.innerHTML=Calendar(years,months-1);ShowYear.innerText=years;ShowMon.innerText=months"><image src=image/now.gif height=12>
<b>今天:
<script>document.write(years + "-" + months + "-" + days)</script>
</b> </td>
</tr>
</table>
</div>
<script language="JavaScript1.2">
ShowYear.innerText=years;
ShowMon.innerText=months;
Cal_Tab.innerHTML=Calendar(years,months-1);
ShowPlan(years,(months-1),days);
</script>
</body>
</html>
<head>
<title>Agenda</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
BODY {
FONT-SIZE: 9pt; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px;
}
A {
FONT-SIZE: 9pt; TEXT-DECORATION: none; color: #000000
}
A:hover {
TEXT-DECORATION: none; color: #000000
}
A:link {
TEXT-DECORATION: none
}
A:visited {
TEXT-DECORATION: none
}
BR {
FONT-SIZE: 9pt; height: 15pt;
}
TD {
FONT-SIZE: 9pt; LINE-HEIGHT: 11pt;
}
input {
FONT-SIZE: 9pt; height: 15pt;
}
.SCROLLBAR {
SCROLLBAR-FACE-COLOR: #718698;
SCROLLBAR-HIGHLIGHT-COLOR: #899aa9;
SCROLLBAR-SHADOW-COLOR: #506981;
SCROLLBAR-3DLIGHT-COLOR: #5b7086;
SCROLLBAR-ARROW-COLOR: #506981;
SCROLLBAR-TRACK-COLOR: #5b7086;
SCROLLBAR-DARKSHADOW-COLOR: #5b7086
}
</style>
<script language="JavaScript1.2">
<!--
var Timer = new Date();
var years = Timer.getYear();
var months = (Timer.getMonth()+1);
var days = Timer.getDate();
var weeks = Timer.getDay();
var Rec_List = "";
Rec_List = ",20020202,20020608,20020815,20021219,20010125,20011105,2001706,20030715,20031203,20030416,";
function GetDays(the_year,the_month){
var Max_day = 31;
if (the_month==4 || the_month==6 || the_month==9 || the_month==11){
Max_day = 30;
}else if(the_month==2){
if(the_year%400==0){
Max_day = 29;
}else if(the_year%100==0){
Max_day = 28;
}else if(the_year%4==0){
Max_day = 29;
}else{
Max_day = 28;
}
}
return Max_day;
}
function ShowPlan(the_year,the_month,the_day){
var thisDate = the_year + "-" + (the_month+1) + "-" + the_day;
selDate.value=thisDate;
selDate.innerText=thisDate;
LayerDate.style.visibility='hidden';
}
function HideDate(){
if(LayerDate.style.visibility!='hidden'){
LayerDate.style.visibility='hidden';
}
}
function Calendar(the_year,the_month){
var i = 0;
var FontColor;
var DateStr;
var New_Date = new Date(the_year,the_month,1)
var the_week = New_Date.getDay();
var Max_day = GetDays(the_year,the_month+1)
var dummy = 7-(the_week+Max_day)%7;
var Cal_str = "";
Cal_str += "<table align=center width=100% border=0 cellpadding=1 cellspacing=1 bgcolor=#FF9900>";
Cal_str += "<tr bgcolor=#ffcc99>";
Cal_str += "<td width=14% align=center>星期日</td>";
Cal_str += "<td width=14% align=center>星期一</td>";
Cal_str += "<td width=14% align=center>星期二</td>";
Cal_str += "<td width=14% align=center>星期三</td>";
Cal_str += "<td width=14% align=center>星期四</td>";
Cal_str += "<td width=14% align=center>星期五</td>";
Cal_str += "<td width=14% align=center>星期六</td>";
Cal_str += "</tr><tr>\n";
for(i=0;i<the_week;i++){
Cal_str += "<td valign=top align=center bgcolor=#ffffff onmouseout=this.bgColor='#ffffff' onmouseover=this.bgColor='#f2f8ff'> </td>\n";
}
for(i=1;i<=Max_day;i++){
FontColor = ((i+the_week)%7==1||(i+the_week)%7==0)?"red":"black"
DateStr = "," + the_year + (the_month<9?("0"+(parseInt(the_month)+1)):(parseInt(the_month)+1)) + (i<10?("0"+i):i) + ",";
Cal_str += "<td valign=top align=center bgcolor=" + (Rec_List.search(DateStr)!=-1?"#FFCC33":"white") + ((i==days&&the_year==years&&the_month==months-1)?" background=image/now.gif":"") + " onmouseout=this.bgColor='" + (Rec_List.search(DateStr)!=-1?"#FFCC33":"#ffffff") + "' onmouseover=this.bgColor='#f2f8ff'>"
Cal_str += "<a href=javascript:ShowPlan(" + the_year + "," + the_month + "," + i + ") style='color: " + FontColor + ";'>" + i + "</a></td>\n";
if((the_week+i)%7==0 && i!=Max_day) Cal_str += "</tr><tr>\n";
}
if(dummy < 7){
for(i=1;i<=dummy;i++){
Cal_str += "<td valign=top align=center bgcolor=#ffffff onmouseout=this.bgColor='#ffffff' onmouseover=this.bgColor='#f2f8ff'> </td>\n";
}
}
Cal_str += "</tr></table>";
return(Cal_str);
}
function DateChange(mode){
var theYear=parseInt(ShowYear.innerText);
var theMonth=parseInt(ShowMon.innerText);
if(mode){
theMonth++;
if(theMonth>=13){
theYear++;
theMonth=1;
}
}else{
theMonth--;
if(theMonth<=0){
theYear--;
theMonth=12;
}
}
ShowYear.innerText=theYear;
ShowMon.innerText=theMonth;
Cal_Tab.innerHTML=Calendar(theYear,theMonth-1);
}
function YearChange(){
var theYear;
theYear=prompt("Please input the year: (0 - 3000)",ShowYear.innerText);
if(theYear==null || theYear=="") return false;
theYear=parseInt(theYear);
theMon=parseInt(ShowMon.innerText);
if((theYear+"a")=="NaNa" || theYear>3000 || theYear<0){
alert("输入错误!");
return false;
}else{
ShowYear.innerText=theYear;
ShowMon.innerText=theMon;
Cal_Tab.innerHTML=Calendar(theYear,theMon-1);
}
setTimeout("LayerDate.style.visibility='visible'",10);
}
function MonChange(){
var theMon;
theMon=prompt("Please input the Month: (1 - 12)",ShowMon.innerText);
if(theMon==null || theMon=="") return false;
theMon=parseInt(theMon);
theYear=parseInt(ShowYear.innerText);
if((theMon+"a")=="NaNa" || theMon>12 || theMon<1){
alert("输入错误!");
return false;
}else{
ShowYear.innerText=theYear;
ShowMon.innerText=theMon;
Cal_Tab.innerHTML=Calendar(theYear,theMon-1);
}
setTimeout("LayerDate.style.visibility='visible'",10);
}
function showCalendar(){
event.cancelBubble = true;
LayerDate.style.top = event.srcElement.offsetTop + event.srcElement.offsetHeight + 2;
LayerDate.style.left = event.srcElement.offsetLeft - 150;
if(parseInt(LayerDate.style.left)<0) LayerDate.style.left = 0;
LayerDate.style.visibility = LayerDate.style.visibility=='hidden'?'visible':'hidden';
return false;
}
//-->
</script>
</head>
<body onClick="HideDate()">
<p align=center> </p>
<p align=center>
<input type=text id=selDate value="" style="width: 80px" readonly><input type=button value="q" style="FONT-SIZE: 7pt; FONT-FAMILY: Wingdings 3; width: 15pt" onClick="showCalendar()">
</p>
<div id="LayerDate" onClick="event.cancelBubble=true" style="position:absolute; width:300px; height:115px; z-index:1; visibility: hidden; BORDER: 1 solid black;">
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="40" align="center" bgcolor="#000000" nowrap> <input type="button" value="|" style="FONT-FAMILY: Wingdings 3;width: 20px" onClick="DateChange(false)"></td>
<td width="100%" align="center" bgcolor="#000000" style="color: white;FONT-WEIGHT: bold; CURSOR: default" nowrap><span id="ShowYear" onClick="YearChange()"></span> 年 <span id="ShowMon" onClick="MonChange()"></span> 月</td>
<td width="40" align="center" bgcolor="#000000" nowrap><input type="button" value="}" style="FONT-FAMILY: Wingdings 3;width: 20px" onClick="DateChange(true)"> </td>
</tr>
<tr>
<td colspan="3" align="center"> <span id="Cal_Tab"></span> </td>
</tr>
<tr>
<td height=30 colspan="3" valign="middle" style="cursor: default" onClick="Cal_Tab.innerHTML=Calendar(years,months-1);ShowYear.innerText=years;ShowMon.innerText=months"><image src=image/now.gif height=12>
<b>今天:
<script>document.write(years + "-" + months + "-" + days)</script>
</b> </td>
</tr>
</table>
</div>
<script language="JavaScript1.2">
ShowYear.innerText=years;
ShowMon.innerText=months;
Cal_Tab.innerHTML=Calendar(years,months-1);
ShowPlan(years,(months-1),days);
</script>
</body>
</html>
发表评论
-
FCKEditor fckconfig.js配置 中文字体乱码问题解决
2010-09-17 16:10 1887转自:http://blog.csdn.net/ph1 ... -
网页变成黑白,flash变成黑白
2010-08-14 18:22 2058网页变成黑白css里面写 html { filter:prog ... -
弹出窗口
2009-11-24 14:15 1061<SCRIPT LANGUAGE="jav ... -
HTML滚动代码
2009-11-14 10:10 25811.Marquee标记用于在可用 ... -
javascript调用本地应用程序
2009-06-16 08:39 2319<!DOCTYPE HTML PUBLIC " ... -
制作Javascript弹出窗口技巧
2009-05-15 17:48 911制作Javascript弹出窗口技巧 1、最基本的弹出窗口代 ... -
WebBrowser控件实现对IE浏览器的各种控制
2009-05-14 17:18 1314WebBrowser控件实现对IE浏览器的各种控制 在不是j ... -
ie 打印
2009-05-11 16:40 1462IE打印window.print2008-09-30 17:3 ... -
打印指定区域的一个例子
2009-05-11 16:18 1520打印指定区域,页面设置 <%@ page content ... -
javascript调用本地exe
2009-05-08 14:31 2092只能调用本地的程序. <SCRIPT la ... -
页面跳转
2009-05-08 10:51 1283页面跳转 <meta HTTP-EQUIV=refre ... -
静态页面传参数
2009-05-08 10:23 1210index.htm <html> <h ... -
进入页面弹出窗口
2009-05-05 16:00 12421、最基本的弹出窗口 ... -
一个简单的树形结构代码
2009-04-25 09:23 1951一个简单的树形结构,在附件里! -
如何实现点击设为首页,加入收藏夹效果
2009-04-09 15:44 1863设为首页 <a href="#" ... -
鼠标控制图片缩放的代码
2009-03-24 11:40 1221鼠标控制图片缩放的代码(IE下面可以使用) <SCRIP ... -
Session超时处理
2009-03-24 11:25 1432<script language="j ...
相关推荐
【标题】"旅游门户网站源代码"是一个用于构建旅游信息展示平台的软件开发资源,它包含了一系列的网页文件和脚本,使用户能够搭建一个功能完善的旅游景点介绍网站。这个源代码设计得既美观又实用,提供了强大的后台...
标题中的“爬取九寨沟景区旅游人数的源代码和可执行文件”表明这是一个关于数据爬取的项目,专门用于获取九寨沟景区的游客数量信息。该项目包含两部分:Python编写的源代码和一个可执行文件。源代码是程序的基础,...
景点: 景区id,所在城市,景点类型,景点等级,景点名称,景区图片,景点介绍,门票价格,开放时间,景点地址 评论: 评论id,被评景点,评论内容,评论人,评论时间 订单: 订单id,预定景点,预定日期,预定价格,预定用户,下单时间...
根据提供的文件信息,我们可以分析出该段代码是一个简单的C++程序,主要实现了订票系统的功能。下面将对该程序的关键部分进行详细的解读。 ### 一、程序框架与数据结构 程序开始部分通过`#include`指令引入了多个...
景点: 景区id,所在城市,景点类型,景点等级,景点名称,景区图片,景点介绍,门票价格,开放时间,景点地址 评论: 评论id,被评景点,评论内容,评论人,评论时间 订单: 订单id,预定景点,预定日期,预定价格,预定用户,下单时间...
HTML5旅游景点模板是专为户外旅游公司设计的一款网页模板,它充分利用了HTML5的先进技术,为构建功能丰富且视觉吸引力强的旅游公司网站提供了便捷的解决方案。此模板旨在提升用户体验,展示旅游景点的魅力,同时方便...
毕业设计,基于Python+Django+MySql开发的旅游景点搜索网站,内含Python完整源代码,数据库脚本 Python基于Django旅游景点搜索网站设计毕业源码案例设计 技术环境: PyCharm + Django2.2 + Python3.7 + mysql 系统...
【桂林旅游网站asp源代码】是一个适用于开发和研究旅游类网站的开源项目,它使用了经典的ASP(Active Server Pages)技术。ASP是微软推出的一种服务器端脚本环境,用于生成动态网页,尤其在20世纪末到21世纪初非常...
在C语言课程设计中,构建一个景区管理系统是一个很好的实践项目,它能帮助学生深入理解和应用C语言的基本概念,同时还能接触到数据结构、文件操作以及用户交互等进阶主题。这个系统的目标是实现对景区信息的管理,...
HTML5旅游景点模板是针对移动设备优化的一种网页设计,它利用HTML5的新特性和功能,为用户在手机或平板电脑上浏览旅游景点信息提供了一种交互性更强、视觉效果更佳的方式。这款模板的设计旨在提升用户体验,使得游客...
由于只给出"1213"这一文件名,无法直接推断出具体内容,但通常在网站源代码中,这样的命名可能代表日期、版本号或者开发阶段,它可能是源代码文件的一部分,例如某个特定版本的更新包或者是开发过程中的一个备份文件...
毕业设计,基于HTML5+Bootstrap+SSM+mysql开发的校园导游咨询网,内含Java...景点: 景点id,景点类型,景区等级 ,景点名称,建造日期,景点照片,景点介绍,纬度,经度 路径: 路径id,起始景点,结束景点 留言: 留言id,留言标
订单: 订单id,旅游景点,出发日期,出行人数,总价格,联系电话,订单备注,订单用户,下单时间,审核状态,审核回复 留言: 留言id,留言标题,留言内容,留言人,留言时间,管理回复,回复时间 新闻公告: 公告id,标题,公告内容,...
毕业设计,基于SSM+MySql+Bootstrap开发的校园地图导航系统,内含Java完整源代码,数据库脚本,源码案例设计 ...景点: 景点id,景点类型,景区等级 ,景点名称,建造日期,景点照片,景点介绍,纬度,经度 路径: 路径i
这款名为“郊游旅行景点推荐网站模板”的资源是一款专为旅游旅行社设计的HTML5网站模板,旨在提供一种现代化、响应式的网页布局,以吸引游客并方便他们浏览和预订旅行服务。HTML5作为现代网页开发的标准,它引入了一...
首页有热门酒店、热门景点、景区游玩攻略、热门路线等模块;其次导航栏有景区游玩路线、我关注的路线;景区游玩攻略、我发布的攻略、我关注的攻略;在线酒店预订、景点预订、我的预订等; 后台管理主要功能有:用户...
景点: 景点id,景点类型,景区等级 ,景点名称,建造日期,景点照片,景点介绍,纬度,经度 路径: 路径id,起始景点,结束景点 留言: 留言id,留言标题,留言内容,留言人,留言时间,回复内容,回复时间 -------- 不懂运行,下载...
景点: 景点id,景点类型,景区等级 ,景点名称,建造日期,景点照片,景点介绍,纬度,经度 路径: 路径id,起始景点,结束景点 留言: 留言id,留言标题,留言内容,留言人,留言时间,回复内容,回复时间 -------- 不懂运行,下载...
3. **weui.wxss** 和 **app.wxss**:这两个文件是样式表文件,其中`weui.wxss`可能引用了WeUI框架的样式,WeUI是一款基于微信官方设计语言的小程序UI库,提供了大量预设的组件样式,帮助开发者快速构建美观的界面。...
景区介绍:展示兰州白塔山景区的自然风光、历史文化背景以及特色景点,通过图文结合的方式,让游客快速了解景区概况。 门票预订:提供在线门票预订服务,游客可以方便地选择游览日期、购买门票数量,并通过安全支付...