easyjweb入门手册

easyjweb入门手册

ID:1355414

大小:313.00 KB

页数:21页

时间:2017-11-10

上传者:U-2988
easyjweb入门手册_第1页
easyjweb入门手册_第2页
easyjweb入门手册_第3页
easyjweb入门手册_第4页
easyjweb入门手册_第5页
资源描述:

《easyjweb入门手册》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

·EasyJWeb入门手册作者:本站会员 来源:easyjf 发布时间:2007-10-1216:04:00· 一、简介EasyJWeb是基于java技术,应用于WEB应用程序快速开发的MVC框架,框架设计构思来源于国内众多项目实践,充分借签了当前主流的开源Web框架(Struts、JSF、Tapestry、Webwork),吸取了其优点及精华,利用Velocity作为模板页面引擎,是一个实现了页面及代码完全分离的MVC开发框架,是一个旨在为中小型Web应用系统提供快速开发实践的简易Web框架。(为了能让用户快速地掌握并使用EasyJweb框架,在开发EasyJWeb的同时开发了EasyJWebTools。)通过EasyJWebTools提供的配套开发工具,可以实现基于EasyJWeb框架的Web应用项目快速开发,包括常用应用软件的代码自动生成、数据库添删改查(CRUD)代码生成、自动页面模版生成、配置文件管理等。框架特点:1、零配置文件支持。以前我们每接触一个框架,开始总是被他的配置文件折腾一番。EasyJWeb实现零配置支持,可以不写一句配置文件就在框架基础上构建你的应用。(适合小型网站系统)。2、简易的模板页面设计支持。放弃使用jsp,使用简单Velocity脚本语言作为页面模板。3、页面程序完全分离。实现显示页面与程序逻辑的完全分离,克服了传统jsp页面难于维护的问题。4、基于页面组件的框架。灵活的页面组件配置,可以直接通过配置文件设置字段及表属性的事件等。5、快速开发支持。通过EasyJWebTools,可以自动生成应用软件模板代码,定制并管理自己的J2EE代码模板,代码生成模板扩展支持最流行的实用Java开发框架(如hibernate、Spring等),实现快速开发。  EasyJWeb的MVC框架简单流程图二、环境需求三、安装配置EasyJWeb获取EasyJWebSDKEasyJWeb是一个开源项目,你可以从EasyJF官方网站下载。下载地址:http://www.easyjf.com/easyjweb/download.htm。其中,EasyJWebX_src.zip为源代码,EasyJWebX_lib.zip为编译后的jar包及运行EasyJWeb所需要的基本包。安装EasyJWeb只是一个Web应用程序MVC框架,其主要作为一般应用程序的基础框架,是以一个jar文件的形式伴随在用户的JavaWeb程序中执行,不需要进行专门的安装操作。只需要把easyjweb.jar文件及附属文件(lib中的所有jar文件)拷到javaweb应用程序类路径中即可。我们一般是放到Web应用程序目录的Web-inflib目录下,也可以拷到TomcatCommonlib目录下,这样使得所有TomcatWeb应用程序都可以使用EasyJWeb。我们推荐放到web-inflib目录下,这样可以使得你不用理会具体的Web应用服务器.当开发EasyJWeb应用的时候,只要把EasyJWeb.jar包导入到工程中即可执行应用程序的调试及测试等工作。配置web.xml文件EasyJWeb是一个Web应用程序的核心骨架,为了能在浏览器中访问EasyJWeb应用程序,需要配置应用程序中的web.xml文件,使得用户的Web应用程序知道何时使用EasyJWeb应用程序处理用户请求。 只有通过配置Web应用程序中的web.xml文件,才能使得EasyJWeb能正常的使用。EasyJWeb应用程序默认以.ejf为扩展名,在用户地址栏中输入与.ejf结尾URL路径的时候,为了使得EasyJWeb能处理用户的请求,需要在web.xml文件中加如下的配置信息:easyjfservlet-name>com.easyjf.web.ActionServletservlet-class>1load-on-startup>servlet>easyjfservlet-name>*.ejfurl-pattern>servlet-mapping>由于Java是外国人发明的,其以unicode为默认编码,并且很多JavaWeb应用服务器也是泊来之品。因此我们在进行JavaWeb应用开发的时候经常会遇到中文字符处理的问题。比如显示在页码上的中文信息成乱码、或者保存到数据库的变成乱码等。因此,为了让JavaWeb应用能更好的处理中文,EasyJWeb默认情况下使用utf-8作为标准编码。这样需要通过在web.xml文件加入下面的设置,使得转码程序能正确运行,显示正确的文字字符。CharsetFilterfilter-name>com.easyjf.web.CharsetFilterfilter-class>encodingparam-name>UTF-8param-value>init-param> ignoreparam-name>trueparam-value>init-param>filter>CharsetFilterfilter-name>/*url-pattern>filter-mapping>这样,一个基于EasyJWeb的JavaWeb应用程序的web.xml文件全部内容如下:xmlversion="1.0"encoding="UTF-8"?>easyjfservlet-name>com.easyjf.web.ActionServletservlet-class>1load-on-startup>servlet>easyjfservlet-name>*.ejfurl-pattern>servlet-mapping>easyjfservlet-name> /ejf/*url-pattern>servlet-mapping>CharsetFilterfilter-name>com.easyjf.web.CharsetFilterfilter-class>encodingparam-name>UTF-8param-value>init-param>ignoreparam-name>trueparam-value>init-param>filter>CharsetFilterfilter-name>/*url-pattern>filter-mapping>web-app>若web.xml文件配置成功,并把EasyJWeb.jar文件及相关jar文件拷到了web-inflib目录下,启动Web用户服务器。在地址栏中随便输入http://localhost:8080/hello.ejf类似以.ejf为扩展名的地址。则会得到一个如下的EasyJWeb错误反馈提示信息:友情提示!frameworkException:没有找到处理模板的类:com.easyjweb.action.HelloAction详细请查询http://www.easyjf.com 如下图所示:虽然提示框架错误,但既然有了EasyJWeb字眼,这即表示您的EasyJWeb应用程序已经配置成功,下一步就是开始激动人心的EasyJWeb应用开发了。若没能正确的配置Web.xml,当用户在地址栏中输入EasyJWeb应用程序扩展名的*.ejf时候,将会产生404的错误提示。如下图所示:四、快速入门与示例4.1、EasyJWeb版的HelloWorld! 下面,我们以一个老掉牙的示例"HelloWorld!"来开始EasyJWeb的应用程序,我们这里把"HelloWorld!"改成"喂,您好,EasyJWeb1.0发布了,请支持国产开源项目!",另外还将显示一个系统当前的时间。第一步,建立java代码程序目录:在您的源代码目录下,建一个如下的目录comeasyjwebaction。第二步,写EasyJWebActionhelloAction.java:在comeasyjwebaction目录下建一个名为helloAction.java的文件。内容如下:packagecom.easyjweb.action;importjava.util.Date;importcom.easyjf.web.IWebAction;importcom.easyjf.web.Module;importcom.easyjf.web.Page;importcom.easyjf.web.WebForm;publicclassHelloActionimplementsIWebAction{publicPageexecute(WebFormform,Modulemodule)throwsException{form.addResult("msg","喂,您好,EasyJWeb1.0发布了,请支持国产开源项目!");//设置VO对象msg的值。form.addResult("time",newDate());//设置VO对象time的值为当前时间returnnewPage("hello","/hello.html");}}写完后通过使用命令行的javac或者编译工具编译helloAction.java。若对java的编译不熟悉,请先跳到后面的《EasyJWeb 应用开发指南》章有关工具使用的介绍,或者直接执行EasyJWeb的示例程序中的helloAction.class拷到您的web-infclassescomeasyjwebaction目录下即可。第三步,建立EasyJWeb显示页面模板文件用记事本在/web-inf/easyjweb/建一个名为hello.html的文件,注意保存的时候请选择utf-8编码,helllo.html文件的全部内容如下:我的第一个EasyJWeb程序界面title><metahttp-equiv="Content-Type"content="text/html;charset=utf-8">head><body>$!msg<br>当前时间:$!timebody>html>把文件保存为utf-8编码的操作如下所示:最后一步:启动Tomcat并运行HelloEasyJWeb应用程序重新启动Tomcat,然后在地址栏中输入http://localhost:8080/hello.ejf即可看到如下图所示的运行结果: 接下来我们来简单介绍一下这个简单的EasyJWeb应用。在上面这个应用中,我们可以看到,EasyJWeb应用主要包括两个部分:用Java实现的Action以及业务逻辑和一个Html模板(这里并不是使用的单纯的Html,还有Velocity脚本)。这里我们简单介绍一下Action部分,Velocity部分请参考《EasyJWeb-Velocity脚本简明教程》,你可以通过这个地址下载该教程:http://www.easyjf.com/easyjweb/EasyJWeb-Velocity.pdf。在这个Action实现IWebAction接口,IWebAction接口只有一个方法execute。这个方法有两个参数:WebForm和Module,返回一个Page对象。WebForm负责封装用于用户端显示的数据,程序对WebForm进行处理,并根据Module封装的该模块的配置信息返回一个Page对象(本例中使用的是手动创建一个Page对象,也可以通过使用module.findPage("")方法来获取一个配置好的Page对象),告诉框架返回哪个页面。在程序中用到了WebForm的addResult方法,这个方法主要是用来添加要在客户端显示的数据。以这个程序为例,在执行了form.addResult("time",newDate());这一句之后,就可以在模板中使用$!time来调用这个Date对象。一个简单的例子,相信大家对EasyJWeb有了大概了解。好的,我们再稍微深入一点,将这个例子改造一下,实现稍微复杂一些的功能。我们在客户端增加一个文本框,输入用户名,提交到后台处理。我们先看看模板页:<html><head><title>我的第一个EasyJWeb程序界面title><metahttp-equiv="Content-Type"content="text/html;charset=utf-8">head> <body><formaction="/hello.ejf"><inputname="userName"type="text"value="$!userName"/><br><inputtype="submit"value="提交"/>form>$!msg<br>当前时间:$!timebody>html>现在我们看看修改后的Action:publicclassHelloActionimplementsIWebAction{publicPageexecute(WebFormform,Modulemodule)throwsException{StringuserName=(String)form.get("userName");if(userName!=null&&!("".equals(userName))){form.addResult("msg",""+userName+",您好,EasyJWeb1.0发布了,请支持国产开源项目!");}else{form.addResult("msg","喂,您好,EasyJWeb1.0发布了,请支持国产开源项目!");}form.addResult("time",newDate());returnnewPage("hello","/hello.html");}}这里多了一句“StringuserName=(String)form.get("userName");”,这里的form.get("userName" )用来获取客户端表单域里的userName文本框的值。现在我们来运行一下这个例子。在客户端输入http://localhost:8080/hello.ejf,界面如下:我们输入“friend”,然后提交,会出现下面的界面:到这里,相信大家应该了解了在EasyJWeb应用中如何获取客户端数据和向客户端传递数据。接下来我们再深入一点,将这个例子改为用户登录并显示用户的用户名和密码的例子,进一步的了解在EasyJWeb中是如何将对象数据传递给客户端并显示出来的。在这个例子中我们首先创建一个domain——User.java,代码如下:publicclassUser{ privateStringname;privateStringpassword;publicStringgetName(){return"tianyi";}publicvoidsetName(Stringname){this.name=name;}publicStringgetPassword(){return"123";}publicvoidsetPassword(Stringpassword){this.password=password;}}然后我们看看修改后的Action,代码如下:publicclassHelloActionimplementsIWebAction{publicPageexecute(WebFormform,Modulemodule)throwsException{StringuserName=(String)form.get("userName");Stringpassword=(String)form.get("passsword");Useruser=newUser();if(userName!=null&&!(user.getName().equals(userName))&&password!=null&&user.getPassword().equals(password)){form.addPo(user);form.addResult("msg","登录成功!");}else{ form.addResult("msg","登录失败!");}form.addResult("time",newDate());returnnewPage("hello","/hello.html");}}这里有一条语句form.addPo(user),这天语句用来将对象user的每一个属性值都传递到客户端。执行了这条语句之后在模板中可以直接使用$!name来显示user的name属性值。这里还可以这样写form.addResult("user",user),然后在模板中这样调用:$!user.name,$!user.password。具体的Velocity用法请参考EasyJF官方网站上的教程。最后我们修改一下模板文件,代码如下:<html><head><title>我的第一个EasyJWeb程序界面title><metahttp-equiv="Content-Type"content="text/html;charset=utf-8">head><body><formaction="/hello.ejf"><inputname="userName"type="text"/><br><inputname="password"type="text"/><br><inputtype="submit"value="提交"/>form>您的用户名为:$!name<br>您的密码为:$!password<br>$!msg<br> 当前时间:$!timebody>html>在浏览器中输入http://localhost:8080/hello.ejf访问,界面如下:在输入框中分别输入tianyi和123,提交,返回界面如下:到这里相信大家对EasyJWeb的基本使用方法已经了解了,下面我们将介绍EasyJWebTools的用法。 4.2、EasyJWebTools前面我们创建了一个最简单的应用HelloWorld,现在我们来创建一个完整的EasyJWeb应用。在这里我们将要用到EasyJWebTools这个包。EasyJWebTools是EasyJWeb的一个重要部分。通常在Action层我们需要对客户端提交的数据做判断,进行流程控制,因此会有大量的ifelse语句。通过EasyJWebTools的业务引擎基本模型,只要编程者按照我们的模型规范进行编程,即可去除烦琐的ifelse语句。下面我们用一个例子来做简要说明。AbstractCmdAction、AbstractPageCmdAction、AbstractCrudAction这三个类是EasyJWebTools中最重要的三个抽象Action类,这三个类又以AbstractCmdAction为基础类。AbstractCmdAction类对Action命令进行封装,用于为提供命令式WebAction的写法,用户直接调用,可以减少书写繁锁的if语句。如果不使用AbstractCmdAction,那么就像struts一样每一个操作都要写一个Action,开发效率比较低。如果使用AbstractCmdAction,就可以在一个Action中执行多个操作,只需要在客户端传递一个名为easyJWebCommand的参数即可,AbstractCmdAction会根据这个参数来选择执行哪个方法。假设现在客户端传递来的参数值是save,那么将会执行doSave()方法,其它的以此类推。AbstractPageCmdAction类继承自AbstractCmdAction类。AbstractPageCmdAction对返回的Page对象进行了处理,用来支持更加灵活的参数调用。使用这个类可以实现零配置,并且不用显示的返回Page对象,它会根据类名、命令参数值和配置好的view路径来自动创建一个Page对象。AbstractCrudAction继承自AbstractPageCmdAction类,AbstractCrudAction类中对一些常用的、通用性比较强的业务逻辑方法如简单的添删改查操作进行了封装。如doEdit()方法,这个方法通常用来指向一个编辑页面,通用性很高,因此做了封装,类似的还有很多,这里不一一列举。下面我们将分别举例对这三个类的用法进行简要讲解。这是一个数据字典的添删改查应用,这里我们对只对字典目录进行添删改查操作。我们将分别使用这三个类来实现这个应用,比较这几个类的不同作用。现在我们来看看使用AbstractCmdAction类时的Action,以下是Action的全部代码:publicclassSystemDictionaryActionextendsAbstractCmdAction{ privateISystemDictionaryServiceservice;publicvoidsetService(ISystemDictionaryServiceservice){this.service=service;}publicPagedoList(WebFormform,Modulemodule){QueryObjectquery=newQueryObject();form.toPo(query);IPageListpageList=service.getSystemDictionaryBy(query);CommUtil.saveIPageList2WebForm(pageList,form);returnnewPage("list","/news/dictionaryList.html");}publicPagedoAdd(WebFormform,Modulemodule){returnnewPage("edit","/news/dictionaryEdit.html");}publicPagedoEdit(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));form.addPo(this.service.getSystemDictionary(id));returnnewPage("edit","/news/dictionaryEdit.html");}publicPagedoSave(WebFormform,Modulemodule){SystemDictionarydic=form.toPo(SystemDictionary.class);this.service.addSystemDictionary(dic); returnthis.doList(form,module);}publicPagedoDel(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));this.service.delSystemDictionary(id);returnthis.doList(form,module);}publicPagedoUpdate(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));SystemDictionarydic=this.service.getSystemDictionary(id);form.toPo(dic);this.service.updateSystemDictionary(id,dic);returnthis.doList(form,module);}}AbstractCmdAction实现了IWebAction,在它的execute方法里边根据easyJWebCommand的值来判断应该执行哪个方法。因此继承自这个类的Action就不需要再实现execute方法,只需要编写与操作相对应的doXxxx()方法。以doSave()方法为例,当easyJWebCommand参数值为save时就会执行doSave()方法。在这个Action中,代码已经比较简洁了,也没有了ifelse语句,并且在一个Action里实现了关于SystemDictionary这个对象的添删改查操作。但是我们的目标是要越来越简单,越来越快捷,我们并不满足于此,接下来我们看看AbstractPageCmdAction类的使用。下面同样是数据字典的添删改查操作,不同的是这个Action继承自AbstractPageCmdAction类,我们先看看这个Action的代码: publicclassSystemDictionaryActionextendsAbstractPageCmdAction{privateISystemDictionaryServiceservice;publicvoidsetService(ISystemDictionaryServiceservice){this.service=service;}publicvoiddoList(WebFormform,Modulemodule){QueryObjectquery=newQueryObject();form.toPo(query);IPageListpageList=service.getSystemDictionaryBy(query);CommUtil.saveIPageList2WebForm(pageList,form);}publicvoiddoEdit(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));form.addPo(this.service.getSystemDictionary(id));}publicvoiddoSave(WebFormform,Modulemodule){SystemDictionarydic=form.toPo(SystemDictionary.class);this.service.addSystemDictionary(dic);}publicvoiddoDel(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));this.service.delSystemDictionary(id);} publicvoiddoUpdate(WebFormform,Modulemodule){Longid=Long.parseLong(CommUtil.null2String(form.get("id")));SystemDictionarydic=this.service.getSystemDictionary(id);form.toPo(dic);this.service.updateSystemDictionary(id,dic);}}AbstractPageCmdAction类继承自AbstractCmdAction,这个类里边重写了execute方法,它先调用父类的execute方法,然后对父类的execute方法返回的值进行判断,如果为空并且easyJWebCommand参数值不为空,就会根据调用的Action类的名字和easyJWebCommand参数的值来创建一个Page对象返回给框架。这个Action与前一个Action相比,可以看出来,所有的doXxxx()方法都是void的了,不再return一个Page对象了。这就是AbstractPageCmdAction的作用,它会根据你调用的Action类的名字和客户端提交进来的命令参数的值自动创建一个Page对象,从而实现零配置,开发人员可以专注于业务逻辑,不用再关心流程控制。这样一来开发是不是又变得简单了一些、快捷了一些?但是我们的目标是不断前进的,我们不会满足现状,我们要越来越快。好的,激动人心的时刻到来了,前面我们讲解的两个类虽然使开发已经很方便了,但是我们可以看到,Action中还充斥着大量的form.get()、form.addResult()等方法,并且很多方法中都有着这样一些相同的代码,那么我们是否能够再封装一下呢?现在我们来看看AbstractCrudAction类的使用。还是同样的应用:publicclassSystemDictionaryActionextendsAbstractCrudAction{privateISystemDictionaryServiceservice;publicvoidsetService(ISystemDictionaryServiceservice){this.service=service;}@SuppressWarnings("unchecked") protectedClassentityClass(){returnSystemDictionary.class;}protectedObjectfindEntityObject(Serializableid){returnservice.getSystemDictionary((Long)id);}protectedIPageListqueryEntity(IQueryObjectqueryObject){returnservice.getSystemDictionaryBy(queryObject);}protectedvoidremoveEntity(Serializableid){service.delSystemDictionary((Long)id);}protectedvoidsaveEntity(Objectobject){service.addSystemDictionary((SystemDictionary)object);}protectedvoidupdateEntity(Objectobject){service.updateSystemDictionary(((SystemDictionary)object).getId(),(SystemDictionary)object);}}我们可以看到Action的代码少了很多,业务逻辑的处理完全封装了,每个操作都只需要一条调用语句即可。现在我们来分析一下代码。首先,Action里多出了一个方法entityClass(),这个方法是AbstractCrudAction里申明的一个抽象方法,它在没个Action里边的实现都不一样,分别返回各自要操作的类,提供给AbstractCrudAction里实现的一些业务逻辑方法使用。接下来,我们会发现方法的命名也和以前不一样了,这里没有了doXxxx()方法,取而代之的是xxxxEntity()方法。这些方法都是在父类AbstractCrudAction里申明的抽象方法,在每个不同的Action里实现,AbstractCrudAction 里的业务逻辑方法调用这些不同的实现分别执行不同的操作,巧妙的对通用性比较强的代码进行了封装,使开发变得更加简单快捷。假设命令参数值为save,在这里将不再执行doSave()方法,而是执行saveEntity()方法。这里并不是去掉了doXxxx()方法,而是将这些方法放到了AbstractCrudAction类里边,这里的saveEntyti()方法会被父类的doSave()方法调用,因此实际上还是调用了doSave()方法,只不过这个方法不需要开发人员自己来申明和实现了。</p> </div> <div class="mt-3 bg-white"> <div class="d-lg-block d-none px-3 px-lg-4 py-3 border-bottom text-center font-18"> 当前文档最多预览五页,下载文档查看全文 </div> <div class="detail-fixed-feature d-none d-lg-block" id="detailFixedFeatureBox"> <div class="px-3 px-lg-4 py-3 d-flex align-items-center justify-content-between fixed-feature-box" id="detailFixedFeature"> <div class="d-lg-flex d-none align-items-center"> <div> <a class="btn btn-outline-danger article-state" href="javascript:;" data-id="1355414" data-code="438274" data-title="easyjweb入门手册"> <span>侵权申诉</span> </a> <button type="button" class="btn btn-outline-secondary with-light ml-2" data-toggle="modal" data-target="#reportModal" data-id="1355414"><span>举报</span></button> </div> <nav class="d-flex align-items-center ml-4" id="anchorPoint"> <a href="javascript:;" class="btn btn-light anchor-pre px-2"><i class="iconfont text-muted"></i></a> <div class="text-muted mb-0 pre-point-list" id="prePointList"> <a class="px-2 active nav-link" href="#anchorImg0">1</a> <a class="px-2 nav-link" href="#anchorImg1">1</a> <a class="px-2 nav-link" href="#anchorImg2">2</a> <a class="px-2 nav-link" href="#anchorImg3">3</a> <a class="px-2 nav-link" href="#anchorImg4">4</a> <a class="px-2 nav-link" href="#anchorImg5">5</a> / <span class="px-2" id="prePageNums">21</span> </div> <a href="javascript:;" class="btn btn-light anchor-next px-2"><i class="iconfont text-muted"></i></a> </nav> </div> <div class="d-flex align-items-center"> <p class="d-lg-block d-none font-14 text-black-50 mb-0 mr-2">此文档下载收益归作者所有</p> <button class="btn btn-danger detail-download-btn px-3 ml-0 font-16" data-btn="downloadfile" style="width:128px;height:40px;" data-id="1355414" data-price="1000" data-size="313.00 KB" data-page="21页" data-type="doc" data-binddown="true" data-isold="new_content" data-vip="0" data-title="easyjweb入门手册">下载文档</button> </div> </div> </div> </div> <div class="d-block d-lg-none px-3 px-lg-4 py-3 border-bottom text-center font-14" style="color:#999">当前文档最多预览五页,下载文档查看全文</div> <button class="btn d-block w-100 d-lg-none btn-danger detail-download-btn px-3 ml-0 font-16" data-btn="downloadfile" data-id="1355414" data-price="1000" data-size="313.00 KB" data-page="21页" data-type="doc" data-binddown="true" data-isold="new_content" data-vip="0" data-title="easyjweb入门手册">点击下载本文档 </button> </div> <div class="px-3 px-lg-4 py-3 bg-white mt-3"> <ul class="nav custom-tab border-bottom" id="myTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active px-0 mr-4 font-16 font-weight-light pb-3" id="tips-tab" data-toggle="tab" href="#showTips" role="tab" aria-controls="showTips" aria-selected="true">版权提示</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link px-0 pb-3 font-16 font-weight-light text-black-50" href="/d-1355414.html" >下载文档</a> </li> <dl class="flex-grow-1 mb-0 d-lg-none"> <li class="ml-3 float-right"> <button type="button" class="btn btn-light" data-toggle="modal" data-target="#reportModal" data-id="1355414"><span>举报</span></button> </li> </dl> </ul> <div class="tab-content with-content pt-3" id="myTabContent"> <div class="tab-pane fade show active font-14" id="showTips" role="tabpanel" aria-labelledby="showTips-tab"> 温馨提示: <br> 1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。<br> 2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。<br> 3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。<br> 4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。 <br> </div> </div> </div> <div class="mt-3 bg-white"> <div class="px-3 px-lg-4"> <div class=" py-2 border-bottom d-flex align-items-center justify-content-between"> <h5 class="font-16 my-2">最近更新</h5> <a class="font-14 hover-letter-spacing" href="/sitemaps/index.html" target="_blank" rel="nofollow">更多<i class="iconfont font-12 pl-1"></i></a> </div> </div> <ul class="mx-75 px-0 py-3 mb-0 row img-item-list"> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625333.html" title="湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测物理 Word版无答案.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测物理 Word版无答案.docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625583.html" title="海南省海南中学2023-2024学年高一上学期期末考试 化学 Word版含答案.docx" target="_blank">海南省海南中学2023-2024学年高一上学期期末考试 化学 Word版含答案.docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-66657776.html" title="2019雕塑之美美术教案" target="_blank">2019雕塑之美美术教案</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83623588.html" title="湖南省常德市第一中学2021-2022学年高一下学期期末考试化学(原卷版).docx" target="_blank">湖南省常德市第一中学2021-2022学年高一下学期期末考试化学(原卷版).docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-67637979.html" title="幼儿园美术教案" target="_blank">幼儿园美术教案</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625559.html" title="湖北省武汉市华中师范大学第一附属中学2023-2024学年高二上学期期末英语 Word版含答案.docx" target="_blank">湖北省武汉市华中师范大学第一附属中学2023-2024学年高二上学期期末英语 Word版含答案.docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625361.html" title="湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测物理Word版含解析.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测物理Word版含解析.docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625328.html" title="湖南省湘西土家族苗族自治州2023-2024学年高二上学期1月期末质量检测物理 Word版无答案.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高二上学期1月期末质量检测物理 Word版无答案.docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83623655.html" title="湖南师范大学附属中学2021-2022学年高一下学期期末数学(解析版).docx" target="_blank">湖南师范大学附属中学2021-2022学年高一下学期期末数学(解析版).docx</a> </li> <li class="font-14 col-lg-6 col-12 mx-0 my-0"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625323.html" title="湖南省湘西土家族苗族自治州2023-2024学年高二上学期1月期末质量检测物理 Word版含解析.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高二上学期1月期末质量检测物理 Word版含解析.docx</a> </li> </ul> </div> <div class="detail-yourlike px-3 px-lg-4"> <div class="border-bottom d-flex align-items-center justify-content-between py-2"> <h5 class="font-16">大家都在看</h5> <a class="font-14 hover-letter-spacing" href="/today.html" target="_blank" rel="nofollow">近期热门<i class="iconfont font-12 pl-1"></i></a> </div> <ul class="row font-14" id="mayBeFllowArticle"> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-83621971.html" title="小学美术教案六年级水族箱.doc" target="_blank">小学美术教案六年级水族箱.doc</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-68433550.html" title="小班美术教案40篇" target="_blank">小班美术教案40篇</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625553.html" title="湖北省武汉市华中师范大学第一附属中学2023-2024学年高一上学期期末考试语文Word版含答案.docx" target="_blank">湖北省武汉市华中师范大学第一附属中学2023-2024学年高一上学期期末考试语文Word版含答案.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-68433554.html" title="小班美术教案50篇" target="_blank">小班美术教案50篇</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-69448272.html" title="幼儿园美术教案" target="_blank">幼儿园美术教案</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-ppt" href="/p-65431365.html" title="国庆快乐-美术教案ppt" target="_blank">国庆快乐-美术教案ppt</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625284.html" title="湖南省衡阳市第八中学2023-2024学年高三上学期1月月考英语 Word版无答案.docx" target="_blank">湖南省衡阳市第八中学2023-2024学年高三上学期1月月考英语 Word版无答案.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-doc" href="/p-68433553.html" title="小班美术教案40篇设计意图" target="_blank">小班美术教案40篇设计意图</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625332.html" title="湖南省湘西土家族苗族自治州2023-2024学年高二上学期期末考试历史试题 Word版无答案.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高二上学期期末考试历史试题 Word版无答案.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625835.html" title="湖北省荆州中学2023-2024学年高一上学期期末考试英语Word版.docx" target="_blank">湖北省荆州中学2023-2024学年高一上学期期末考试英语Word版.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83619062.html" title="甘肃省临夏回族自治州2022-2023学年高二上学期1月期末英语试题(解析版).docx" target="_blank">甘肃省临夏回族自治州2022-2023学年高二上学期1月期末英语试题(解析版).docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-69216230.html" title="大班教案教学夏天的味道模板_夏天的味道美术教案教学" target="_blank">大班教案教学夏天的味道模板_夏天的味道美术教案教学</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83623189.html" title="湖北省华中师范大学第一附属中学2023-2024学年高一上学期阶段性检测一英语(解析版).docx" target="_blank">湖北省华中师范大学第一附属中学2023-2024学年高一上学期阶段性检测一英语(解析版).docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83623592.html" title="湖南省常德市第一中学2021-2022学年高一下学期期末考试化学(解析版).docx" target="_blank">湖南省常德市第一中学2021-2022学年高一下学期期末考试化学(解析版).docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83620128.html" title="四川省成都市金牛区成都外国语学校2023-2024学年高二上学期1月期末模拟考试语文 教师版.docx" target="_blank">四川省成都市金牛区成都外国语学校2023-2024学年高二上学期1月期末模拟考试语文 教师版.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83621810.html" title="《马背上的民族—蒙古族耸肩基础训练》教案 六年级舞蹈美育(表格式).docx" target="_blank">《马背上的民族—蒙古族耸肩基础训练》教案 六年级舞蹈美育(表格式).docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83623627.html" title="湖南师范大学附属中学2021-2022学年高一下学期期末考试英语(解析版).docx" target="_blank">湖南师范大学附属中学2021-2022学年高一下学期期末考试英语(解析版).docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83620896.html" title="广西河池市都安瑶族自治县民族实验初级中学2021-2022学年八年级下学期第二次学情调查语文试题.docx" target="_blank">广西河池市都安瑶族自治县民族实验初级中学2021-2022学年八年级下学期第二次学情调查语文试题.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-83625314.html" title="湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测历史 Word版含解析.docx" target="_blank">湖南省湘西土家族苗族自治州2023-2024学年高一上学期期末质量检测历史 Word版含解析.docx</a> </li> <li class="col-lg-6 px-0 px-lg-3"> <a class="text-ellipsis office-icon text-dark py-2 office-icon-docx" href="/p-69396886.html" title="2021幼儿园中班优秀美术教案精选" target="_blank">2021幼儿园中班优秀美术教案精选</a> </li> </ul> </div> </div> <div class="detail-sidebar d-none d-lg-block"> <div id="columnDetailSiderRight"> <div class="detail-yourlike mt-0 pb-2" id="relativeArticle"> <div class="border-bottom py-2 d-flex align-items-center justify-content-between"> <h5 class="font-16">相关文章</h5> <a class="font-14 hover-letter-spacing" href="/ucenter/search/index.html?text=easyjweb入门手册" target="_blank" rel="nofollow">更多<i class="iconfont font-12 pl-1"></i></a> </div> <ul class="font-14 like-list"> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-9768288.html" title="easyjweb 上手指南" target="_blank"><span class="text-danger">e</span><span class="text-danger">a</span><span class="text-danger">s</span><span class="text-danger">y</span><span class="text-danger">j</span><span class="text-danger">w</span><span class="text-danger">e</span><span class="text-danger">b</span>上<span class="text-danger">手</span>指南</a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-19452910.html" title="佛学入门手册" target="_blank">佛学<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span></a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-21926702.html" title="microsofteasyassist入门手册" target="_blank">micro<span class="text-danger">s</span>oft<span class="text-danger">e</span><span class="text-danger">a</span><span class="text-danger">s</span><span class="text-danger">y</span><span class="text-danger">a</span><span class="text-danger">s</span><span class="text-danger">s</span>i<span class="text-danger">s</span>t<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span></a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-26447472.html" title="easyjweb开发者指南" target="_blank"><span class="text-danger">e</span><span class="text-danger">a</span><span class="text-danger">s</span><span class="text-danger">y</span><span class="text-danger">j</span><span class="text-danger">w</span><span class="text-danger">e</span><span class="text-danger">b</span>开发者指南</a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-docx" href="/p-35447537.html" title="HAM入门手册-业余无线电台入门手册" target="_blank">HAM<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span>-业余无线电台<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span></a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-47061667.html" title="HCNA入门实验手册(入门)" target="_blank">HCNA<span class="text-danger">入</span><span class="text-danger">门</span>实验<span class="text-danger">手</span><span class="text-danger">册</span>(<span class="text-danger">入</span><span class="text-danger">门</span>)</a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-docx" href="/p-47105198.html" title="HCNA入门实验手册(入门)" target="_blank">HCNA<span class="text-danger">入</span><span class="text-danger">门</span>实验<span class="text-danger">手</span><span class="text-danger">册</span>(<span class="text-danger">入</span><span class="text-danger">门</span>)</a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-47199901.html" title="HCNA入门实验手册簿(入门)" target="_blank">HCNA<span class="text-danger">入</span><span class="text-danger">门</span>实验<span class="text-danger">手</span><span class="text-danger">册</span>簿(<span class="text-danger">入</span><span class="text-danger">门</span>)</a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-doc" href="/p-47851004.html" title="HAM入门手册--业余无线电台入门手册" target="_blank">HAM<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span>--业余无线电台<span class="text-danger">入</span><span class="text-danger">门</span><span class="text-danger">手</span><span class="text-danger">册</span></a> </li> <li class=""> <a class="text-ellipsis office-icon text-dark office-icon-docx" href="/p-52783522.html" title="HCNA入门实验手册(入门).docx" target="_blank">HCNA<span class="text-danger">入</span><span class="text-danger">门</span>实验<span class="text-danger">手</span><span class="text-danger">册</span>(<span class="text-danger">入</span><span class="text-danger">门</span>).docx</a> </li> </ul> </div> <div class="detail-yourlike pb-2"> <div class="border-bottom py-2"> <h5 class="font-16">相关标签</h5> </div> <ul class="font-14 like-list d-flex flex-wrap"> <a class="search-tag" href="/tags/1565921/" target="_blank">入门</a> <a class="search-tag" href="/tags/540250/" target="_blank">手册</a> </ul> </div> <a class="detail-sidebar-gg d-block rounded" href="https://www.ttzyw.com/" target="_blank"><img src="https://www.wenku365.com/d/file/2021/09-08/8ae594f962021288bbd21ce8e5e2f6e6.jpg"></a> </div> </div> </div> <!--底部悬浮--> <div class="d-lg-none m-footer"> <div class="container d-flex justify-content-between align-items-center bg-white border-top flex-nowrap pr-3"> <div class="flex-1 pr-3 text-secondary d-flex align-items-center" style="line-height: 1"> <a class="text-center px-3 d-block mr-2" href="/"> <i class="iconfont d-block font-24 text-muted"></i> <p class="font-12 text-muted mb-0 mt-1">首页</p> </a> <div class="text-center px-3 mr-2" id="shareModal"> <i class="iconfont d-block font-24 text-muted"></i> <p class="font-12 text-muted mb-0 mt-1">分享</p> </div> <div class="text-center px-3 copyWebsite"> <i class="iconfont d-block font-24 text-muted"></i> <p class="font-12 text-muted mb-0 mt-1">客服</p> </div> </div> <button class="btn btn-danger px-4 py-2 flex-shrink-0" data-btn="downloadfile" data-mobile="true" data-id="1355414" data-price="1000" data-size="313.00 KB" data-page="21页" data-type="doc" data-binddown="true" data-isold="new_content" data-vip="0" data-title="easyjweb入门手册">下载本文档</button> </div> </div> <!--toast列表区域--> <div aria-live="polite" aria-atomic="true" class="toast-area"></div> <!--左侧悬浮框--> <!--预览弹窗--> <div class="modal m-fullscreen-modal" id="viewModal" tabindex="-1" role="dialog" aria-labelledby="viewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-scrollable modal-dialog-centered"> <div class="modal-content pt-0"> <div class="modal-header"> <h5 class="modal-title text-ellipsis">暂无标题</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body empty-box-2" data-target="#dataLoading"> <div id="viewImgBox"></div> <button class="btn" id="dataLoading" data-close="#viewModal"> </button> </div> </div> </div> <div class="view-modal-features"> <div> <a class="btn btn-light article-viewall" target="_blank"><i class="iconfont"></i></a> </div> <div> <a class="btn btn-light article-collection" tabindex="-1" role="button" aria-disabled="false" data-close="#viewModal"><i class="iconfont"></i></a> </div> <div> <a class="btn btn-light article-download" data-body="true" data-btn="downloadfile" data-dismiss="modal"><i class="iconfont"></i></a> </div> </div> </div> <!--举报弹窗--> <div class="modal fade m-fullscreen-modal" id="reportModal" tabindex="-1" role="dialog" aria-labelledby="reportModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-scrollable modal-dialog-centered"> <div class="modal-content pt-0"> <div class="modal-header"> <h5 class="mb-0">举报</h5> <button type="button" id="closeReportModal" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> <div class="modal-custom-box px-0 px-lg-4"> <form id="reportForm" data-logintype="normal"> <div class="d-flex mb-4 align-items-center"> <p class="require flex-shrink-0">举报原因</p> <label class="flex-grow-1"> <select class="custom-select" id="reportReason" name="title" class="rounded"> <option selected hidden disabled value="" class="text-secondary">请选择举报原因</option> <option value="涉及党政历史">涉及党政历史</option> <option value="歪曲党史、新中国史、改革开放史、社会主义发展史">歪曲党史、新中国史、改革开放史、社会主义发展史</option> <option value="文档内容质量低下无意义">文档内容质量低下无意义</option> <option value="内容中含有违法信息如(涉恐,色情,低俗等)">内容中含有违法信息如(涉恐,色情,低俗等)</option> </select> <div></div> </label> </div> <input type="hidden" name="id" value="1355414"/> <div class="d-flex mb-4 align-items-center"> <p class="require">联系方式</p> <label class="flex-grow-1"> <input type="text" placeholder="请输入您的手机号" id="reportContract" name="tel" class="rounded"> <div></div> </label> </div> <div class="d-flex align-items-center mb-4"> <p class="require">详细说明</p> <label class="flex-grow-1"> <textarea type="text" placeholder="请输入举报原因" id="reportDetail" name="content" class="rounded"></textarea> <div></div> </label> </div> <div class="mt-4 d-flex align-items-center justify-content-between" style="padding-left: 83px"> <button class="btn btn-primary submit mt-0 px-5 flex-shrink-0" style="width: auto" type="button">提交</button> <p class="mb-0 ml-3">内容无法转码请<button type="button" class="btn btn-sm btn-outline-primary ml-2" id="reEncode">点击此处</button></p> </div> </form> </div> </div> </div> </div> </div> <!--登录以及金币充足 支付弹窗--> <div class="modal fade m-fullscreen-modal" id="rechargeEnoughModal" tabindex="-1" role="dialog" aria-labelledby="rechargeEnoughModaLabel" data-backdrop="static" data-keyboard="false" aria-hidden="true"> <div class="modal-dialog modal-dialog-scrollable modal-dialog-centered"> <div class="modal-content pt-0"> <div class="modal-header"> <h5 class="mb-0">文档下载</h5> <button type="button" id="closeRechargeEnoughModal" class="close" data-dismiss="modal" aria-label="Close"> × </button> </div> <div class="modal-body"> <div class="px-3 py-2 bg-light"> <a href="" class="font-14 text-ellipsis-2 mb-0 text-dark">easyjweb入门手册</a> </div> <div class="text-dark font-14 text-center mt-3"> 我的金币余额:<b class="text-danger user-balance">0.00</b></div> <div class="text-dark text-center mt-2 font-16">下载文档需要支付金币<b class="text-danger user-pay-money">10</b></div> <div class="mt-5 text-center"> <button class="btn btn-primary px-5 lianquanPay" data-id="1355414" data-price="10" data-page="21页" data-type="doc" data-binddown="true" data-isold="new_content" data-vip="0" data-title="easyjweb入门手册">确定支付并下载</button> </div> </div> </div> </div> </div> <!--移动端未登录 输入手机号弹窗--> <div class="modal fade m-half-fullscreen-modal custom-modal-dialog" id="rechargeUnLoginImportPhone" tabindex="-1" role="dialog" aria-labelledby="rechargeEnoughModaLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header w-100"> <h5 class="mb-0">请先输入手机号</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button> </div> <div class="modal-body"> <form> <label> <i class="iconfont text-secondary"></i> <input type="text" placeholder="请输入手机号" id="importPhone" name="phone"> </label> </form> <div class="mt-5 text-center"> <button class="btn btn-primary px-5" id="rechargeUnLoginSurePhone">确定</button> </div> </div> </div> </div> </div> <div id="mobilePayBox" class="mobile-pay-box"></div> <div id="closeAlipay" class="close-ali-pay">关闭</div> <footer> <div class="container d-none d-lg-block mb-4"> <div class="d-flex justify-content-between footer-nav"> <ul class="d-flex foot-nav"> <li> <h5>常见问题</h5> <a class="text-decoration-none help-nav-item" href="/help/wenti/upload/" data-name="关于上传" target="_blank">关于上传</a><a class="text-decoration-none help-nav-item" href="/help/wenti/xiazai/" data-name="关于下载" target="_blank">关于下载</a><a class="text-decoration-none help-nav-item" href="/help/wenti/qinquan/" data-name="关于侵权" target="_blank">关于侵权</a><a class="text-decoration-none help-nav-item" href="/help/wenti/fenxaing/" data-name="文档上传教程" target="_blank">文档上传教程</a> </li> <li> <h5>关于我们</h5> <a class="text-decoration-none help-nav-item" href="/help/about/wzjs/" data-name="网站介绍" target="_blank">网站介绍</a><a class="text-decoration-none help-nav-item" href="/help/about/gywm/" data-name="关于我们" target="_blank">关于我们</a><a class="text-decoration-none help-nav-item" href="/help/about/lxwm/" data-name="联系我们" target="_blank">联系我们</a> </li> <li> <h5>版权问题</h5> <a class="text-decoration-none help-nav-item" href="/help/banquan/bqsm/" data-name="版权声明" target="_blank">版权声明</a><a class="text-decoration-none help-nav-item" href="/help/banquan/qqcl/" data-name="侵权处理" target="_blank">侵权处理</a><a class="text-decoration-none help-nav-item" href="/help/banquan/mzsm/" data-name="免责声明" target="_blank">免责声明</a> </li> <li> <h5>协议条款</h5> <a class="text-decoration-none help-nav-item" href="/help/xieyi/yhxy/" data-name="用户协议" target="_blank">用户协议</a><a class="text-decoration-none help-nav-item" href="/help/xieyi/fwtk/" data-name="用户服务条款" target="_blank">用户服务条款</a><a class="text-decoration-none help-nav-item" href="/help/xieyi/ysbh/" data-name="用户隐私保护" target="_blank">用户隐私保护</a> </li> <li> <h5>网站导航</h5> <a class="text-decoration-none help-nav-item" href="/sitemaps.xml" data-name="网站地图" target="_blank">网站地图</a> <a class="text-decoration-none help-nav-item" href="/list.html" data-name="全部分类" target="_blank">全部分类</a> <a class="text-decoration-none help-nav-item" href="/sitemaps/index.html" data-name="资源地图" target="_blank">资源地图</a> </li> </ul> <div class="foot-qrcode d-flex"> <div> <div class="subsitute-bg"><img src="https://www.wenku365.com/d/file/2022/07-08/f23df57d987ef7ad9acb33fe5abf9854.jpg"></div> <p>关注公众号<br></p> </div> </div> </div> </div> <div class="footer-copyright"> <p><a href="/" target="_blank">天天文库</a>定位于知识共享平台,用户可以上传优质的文档内容,提供知识服务,本平台完成后续的宣传推广、内容分发、知识创收等工作,为更多的知识创作者创造价值。</p> <p>本平台严格对内容的质量进行把关,为了能够健康、平衡的发展。如果您的权利被侵害,请联系我们的客服进行举报。客服QQ:3074922707 欢迎举报。</p> <p>Copyright 2004-2023 <a href="https://www.wenku365.com/" target="_blank">wenku365.com</a> All Rights Reserved <a href="https://beian.miit.gov.cn/#/Integrated/index" rel="nofollow" target="_blank">闽ICP备15016911号-5 </a></p> <p>闽公网安备 <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=35052402000320" rel="nofollow" target="_blank">35052402000320</a></p> <p> <a href="https://www.wenku365.com/zt.html" target="_blank">专题文集</a> <a href="https://www.wenku365.com/zt-90007.html" target="_blank">丨职业培训</a> <a href="https://www.wenku365.com/zt-90005.html" target="_blank">丨实用范文</a> <a href="https://www.wenku365.com/zt-90010.html" target="_blank">丨商业材料</a> <a href="https://www.wenku365.com/zt-90013.html" target="_blank">丨合同协议</a> <a href="https://www.wenku365.com/zt-90009.html" target="_blank">丨PPT专题</a></p> </div> </footer> <script> if (/Android|webOS|iPhone|iPod|mobile|BlackBerry|ucweb|SymbianOS/i.test(navigator.userAgent)) { var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?4632cf11732a8c1c3d1dc47558ae7444"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); } else{ var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3b8c97f8bd7ac4a9ba9ae67ec48cab62"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); } </script> </body> <script src="//static.wenku365.com/wenku365/js/global.min.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/clipboard.min.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/jquery.treeview.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/jquery.share.min.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/common.min.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/downloadFile.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/loginWindow.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/windowRecharge.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/viewer.min.js?1.0.7"></script> <script src="//static.wenku365.com/wenku365/js/detail.js?1.0.7"></script> <script src='/wenku/onclick/1355414'></script> </html>