main
tamguo 7 years ago
parent b51f833474
commit 772f1fed6e

@ -0,0 +1,8 @@
package com.tamguo.modules.tiku.dao;
import com.tamguo.config.dao.SuperMapper;
import com.tamguo.modules.tiku.model.QuestionEntity;
public interface QuestionMapper extends SuperMapper<QuestionEntity>{
}

@ -0,0 +1,159 @@
package com.tamguo.modules.tiku.model;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import com.tamguo.config.dao.SuperEntity;
/**
* The persistent class for the tiku_question database table.
*
*/
@TableName(value="tiku_question")
public class QuestionEntity extends SuperEntity<QuestionEntity> implements Serializable {
private static final long serialVersionUID = 1L;
private String analysis;
private String paperId;
private String answer;
private String chapterId;
private String questionType;
private String content;
private String subjectId;
private String courseId;
private String reviewPoint;
private String year;
private String score;
private String auditStatus;
@TableField(exist=false)
private String courseName;
@TableField(exist=false)
private String chapterName;
@TableField(exist=false)
private String subjectName;
public QuestionEntity() {
}
public String getAnalysis() {
return this.analysis;
}
public void setAnalysis(String analysis) {
this.analysis = analysis;
}
public String getAnswer() {
return this.answer;
}
public void setAnswer(String answer) {
this.answer = answer;
}
public String getChapterId() {
return this.chapterId;
}
public void setChapterId(String chapterId) {
this.chapterId = chapterId;
}
public String getQuestionType() {
return this.questionType;
}
public void setQuestionType(String questionType) {
this.questionType = questionType;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getReviewPoint() {
return reviewPoint;
}
public void setReviewPoint(String reviewPoint) {
this.reviewPoint = reviewPoint;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
public String getPaperId() {
return paperId;
}
public void setPaperId(String paperId) {
this.paperId = paperId;
}
public String getCourseId() {
return courseId;
}
public void setCourseId(String courseId) {
this.courseId = courseId;
}
public String getCourseName() {
return courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public String getChapterName() {
return chapterName;
}
public void setChapterName(String chapterName) {
this.chapterName = chapterName;
}
public String getSubjectId() {
return subjectId;
}
public void setSubjectId(String subjectId) {
this.subjectId = subjectId;
}
public String getSubjectName() {
return subjectName;
}
public void setSubjectName(String subjectName) {
this.subjectName = subjectName;
}
public String getAuditStatus() {
return auditStatus;
}
public void setAuditStatus(String auditStatus) {
this.auditStatus = auditStatus;
}
}

@ -2,9 +2,10 @@ package com.tamguo.modules.tiku.service;
import java.util.List;
import com.baomidou.mybatisplus.service.IService;
import com.tamguo.modules.tiku.model.PaperEntity;
public interface IPaperService {
public interface IPaperService extends IService<PaperEntity>{
List<PaperEntity> findHistoryPaper();

@ -0,0 +1,8 @@
package com.tamguo.modules.tiku.service;
import com.baomidou.mybatisplus.service.IService;
import com.tamguo.modules.tiku.model.QuestionEntity;
public interface IQuestionService extends IService<QuestionEntity>{
}

@ -0,0 +1,12 @@
package com.tamguo.modules.tiku.service.impl;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.tamguo.modules.tiku.dao.QuestionMapper;
import com.tamguo.modules.tiku.model.QuestionEntity;
import com.tamguo.modules.tiku.service.IQuestionService;
@Service
public class QuestionServiceImpl extends ServiceImpl<QuestionMapper, QuestionEntity> implements IQuestionService{
}

@ -0,0 +1,151 @@
package com.tamguo.utils;
import java.util.ArrayList;
import java.util.List;
import com.baomidou.mybatisplus.plugins.Page;
public class PageUtils {
// 是否下一页按钮
private Boolean isShowNextBtn = false;
// 是否上一页按钮
private Boolean isShowPreBtn = false;
// 当前页
private String currPageNum;
// 页码列表
private List<String> pageNums;
// 总页数
private String totalPage;
// 总数量
private String total;
// 数据
private List<?> list;
public static PageUtils getPage(Page<?> page){
PageUtils pg = new PageUtils();
if(page.getCurrent() > 1){
pg.setIsShowPreBtn(true);
}
if(page.getCurrent() < page.getPages()){
pg.setIsShowNextBtn(true);
}
List<String> pgNums = new ArrayList<>();
if(page.getPages() > 1){
if(page.getPages() > 10){
pgNums.add("1");
pgNums.add("2");
pgNums.add("3");
pgNums.add("...");
if(page.getCurrent() == page.getPages()){
pgNums.add(((Integer)(page.getCurrent() - 2)).toString());
pgNums.add(((Integer)(page.getCurrent() - 1)).toString());
pgNums.add(((Integer)page.getCurrent()).toString());
}else{
pgNums.add(((Integer)(page.getCurrent() - 1)).toString());
pgNums.add(((Integer)page.getCurrent()).toString());
pgNums.add(((Integer)(page.getCurrent() + 1)).toString());
}
}else{
Integer n = 1;
if(page.getTotal() > 0){
while(true){
pgNums.add(n.toString());
if(n >= page.getPages()){
break;
}
n ++;
}
}
}
} else {
Integer n = 1;
if(page.getTotal() > 0){
while(true){
pgNums.add(n.toString());
if(n >= page.getPages()){
break;
}
n ++;
}
}
}
pg.setPageNums(pgNums);
pg.setList(page.getRecords());
pg.setCurrPageNum(((Integer)page.getCurrent()).toString());
pg.setTotal(((Integer)page.getTotal()).toString());
pg.setTotalPage(((Integer)page.getPages()).toString());
return pg;
}
public Boolean getIsShowNextBtn() {
return isShowNextBtn;
}
public void setIsShowNextBtn(Boolean isShowNextBtn) {
this.isShowNextBtn = isShowNextBtn;
}
public List<String> getPageNums() {
return pageNums;
}
public void setPageNums(List<String> pageNums) {
this.pageNums = pageNums;
}
public List<?> getList() {
return list;
}
public void setList(List<?> list) {
this.list = list;
}
public Boolean getIsShowPreBtn() {
return isShowPreBtn;
}
public void setIsShowPreBtn(Boolean isShowPreBtn) {
this.isShowPreBtn = isShowPreBtn;
}
public String getCurrPageNum() {
return currPageNum;
}
public void setCurrPageNum(String currPageNum) {
this.currPageNum = currPageNum;
}
public String getTotalPage() {
return totalPage;
}
public void setTotalPage(String totalPage) {
this.totalPage = totalPage;
}
public String getTotal() {
return total;
}
public void setTotal(String total) {
this.total = total;
}
}

@ -0,0 +1,119 @@
package com.tamguo.web.tiku;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import com.baomidou.mybatisplus.mapper.Condition;
import com.baomidou.mybatisplus.plugins.Page;
import com.tamguo.common.utils.SystemConstant;
import com.tamguo.modules.sys.model.SysAreaEntity;
import com.tamguo.modules.sys.service.ISysAreaService;
import com.tamguo.modules.tiku.model.CourseEntity;
import com.tamguo.modules.tiku.model.PaperEntity;
import com.tamguo.modules.tiku.model.SubjectEntity;
import com.tamguo.modules.tiku.service.ICourseService;
import com.tamguo.modules.tiku.service.IPaperService;
import com.tamguo.modules.tiku.service.IQuestionService;
import com.tamguo.modules.tiku.service.ISubjectService;
import com.tamguo.utils.PageUtils;
/**
* Controller -
*
* @author candy.tam
*
*/
@Controller
public class PaperController {
@Autowired
private ICourseService iCourseService;
@Autowired
private ISysAreaService iSysAreaService;
@Autowired
private IPaperService iPaperService;
@Autowired
private IQuestionService iQuestionService;
@Autowired
private ISubjectService iSubjectService;
@SuppressWarnings("unchecked")
@RequestMapping(value = {"paperlist/{subjectId}-{courseId}-{paperType}-{year}-{area}-{pageNum}.html"}, method = RequestMethod.GET)
public ModelAndView indexAction(@PathVariable String subjectId , @PathVariable String courseId , @PathVariable String paperType,
@PathVariable String year , @PathVariable String area , @PathVariable Integer pageNum, ModelAndView model) {
try {
model.setViewName("paperlist");
CourseEntity course = iCourseService.selectById(courseId);
List<CourseEntity> courseList = iCourseService.selectList(Condition.create().eq("subject_id", subjectId));
SubjectEntity subject = iSubjectService.selectById(subjectId);
List<SysAreaEntity> areaList = iSysAreaService.selectList(Condition.create().eq("tree_level", "0"));
Page<PaperEntity> page = new Page<>(pageNum , 10);
Condition condition = Condition.create();
if(!StringUtils.isEmpty(subjectId) && !"0".equals(subjectId)) {
condition.eq("subject_id", subjectId);
}
if(!StringUtils.isEmpty(paperType) && !"0".equals(paperType)) {
condition.eq("type", paperType);
}
if(!StringUtils.isEmpty(year) && !"0".equals(year)) {
condition.eq("year", year);
}
if(!StringUtils.isEmpty(area) && !"0".equals(area)) {
condition.eq("area_id", area);
}
PageUtils result = PageUtils.getPage(iPaperService.selectPage(page , condition));
if(courseList.size() > 0) {
course = courseList.get(0);
}
Integer total = iPaperService.selectCount(Condition.EMPTY);
model.addObject("courseList", courseList);
model.addObject("subject", subject);
model.addObject("course", course);
model.addObject("areaList", areaList);
model.addObject("paperPage" , result);
model.addObject("total" , total);
model.addObject("courseId", courseId);
model.addObject("paperType", paperType);
model.addObject("year", year);
model.addObject("area", area);
return model;
} catch (Exception e) {
model.setViewName("404");
return model;
}
}
@SuppressWarnings("unchecked")
@RequestMapping(value = {"/paper/{paperId}.html"}, method = RequestMethod.GET)
public ModelAndView indexAction(@PathVariable String paperId , ModelAndView model){
try {
model.setViewName("paper");
PaperEntity paper = iPaperService.selectById(paperId);
model.addObject("paper", paper);
model.addObject("subject", StringUtils.isEmpty(paper.getSubjectId()) ? null : iSubjectService.selectById(paper.getSubjectId()));
model.addObject("course", StringUtils.isEmpty(paper.getCourseId()) ? null : iCourseService.selectById(paper.getCourseId()));
model.addObject("questionList", iQuestionService.selectList(Condition.create().eq("paper_id", paperId)));
// 获取推荐试卷
model.addObject("zhentiPaperList", iPaperService.selectList(Condition.create().eq("subject_id", paper.getSubjectId()).eq("type",SystemConstant.ZHENGTI_PAPER_ID)));
model.addObject("moniPaperList", iPaperService.selectList(Condition.create().eq("subject_id", paper.getSubjectId()).eq("type",SystemConstant.MONI_PAPER_ID)));
model.addObject("yatiPaperList", iPaperService.selectList(Condition.create().eq("subject_id", paper.getSubjectId()).eq("type",SystemConstant.YATI_PAPER_ID)));
model.addObject("hotPaperList", iPaperService.selectList(Condition.create().eq("subject_id", paper.getSubjectId()).eq("course_id", paper.getCourseId())));
return model;
} catch (Exception e) {
model.setViewName("404");
return model;
}
}
}

@ -0,0 +1,99 @@
package com.tamguo.web.tiku;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import com.baomidou.mybatisplus.mapper.Condition;
import com.baomidou.mybatisplus.plugins.Page;
import com.tamguo.common.utils.Result;
import com.tamguo.modules.tiku.model.ChapterEntity;
import com.tamguo.modules.tiku.model.CourseEntity;
import com.tamguo.modules.tiku.model.QuestionEntity;
import com.tamguo.modules.tiku.model.SubjectEntity;
import com.tamguo.modules.tiku.service.IChapterService;
import com.tamguo.modules.tiku.service.ICourseService;
import com.tamguo.modules.tiku.service.IQuestionService;
import com.tamguo.modules.tiku.service.ISubjectService;
@Controller
public class QuestionContrller {
@Autowired
private IQuestionService iQuestionService;
@Autowired
private IChapterService iChapterService;
@Autowired
private ISubjectService iSubjectService;
@Autowired
private ICourseService iCourseService;
@SuppressWarnings("unchecked")
@RequestMapping(value = {"questionlist/{chapterId}-{offset}-{limit}"}, method = RequestMethod.GET)
public ModelAndView questionList(@PathVariable String chapterId , @PathVariable Integer offset ,
@PathVariable Integer limit , ModelAndView model){
try {
model.setViewName("questionList");
ChapterEntity chapter = iChapterService.selectById(chapterId);
CourseEntity course = iCourseService.selectById(chapter.getCourseId());
SubjectEntity subject = iSubjectService.selectById(course.getSubjectId());
ChapterEntity parentChapter = iChapterService.selectById(chapter.getParentId());
ChapterEntity nextChapter = iChapterService.selectById(chapter.getParentId());
Page<QuestionEntity> page = new Page<>();
page.setCurrent(offset);
page.setSize(limit);
Page<QuestionEntity> questionList = iQuestionService.selectPage(page , Condition.create().eq("chapter_id", chapterId));
model.addObject("subject", subject);
model.addObject("course", course);
model.addObject("chapter", chapter);
model.addObject("parentChapter" , parentChapter);
model.addObject("nextChapter" , nextChapter);
model.addObject("questionList", questionList);
model.addObject("subjectId", course.getSubjectId());
model.addObject("courseId", course.getId());
return model;
} catch (Exception e) {
model.setViewName("404");
return model;
}
}
/**
* 访
* @param uid
* @param model
* @return
*/
@SuppressWarnings("unchecked")
@RequestMapping(value = {"/question/{uid}.html"}, method = RequestMethod.GET)
public ModelAndView question(@PathVariable String uid , ModelAndView model){
try {
model.setViewName("question");
QuestionEntity question = iQuestionService.selectById(uid);
question.setQuestionType(question.getQuestionType());
model.addObject("question", question);
// 推荐试题
model.addObject("featuredQuestionList", iQuestionService.selectList(Condition.create().eq("subject_id", question.getSubjectId()).eq("course_id", question.getCourseId())));
return model;
} catch (Exception e) {
model.setViewName("404");
return model;
}
}
@RequestMapping(value = {"question/getQuestion/{uid}"}, method = RequestMethod.GET)
@ResponseBody
public Result getQuestion(@PathVariable String uid , ModelAndView model){
return Result.successResult(iQuestionService.selectById(uid));
}
}

@ -107,14 +107,14 @@
<p class="title">试卷资源
<span class="detail">一考知底,高分必刷,全面提分</span>
<span class="area-content">当前位置:
<a class="more-area-link" th:href="${domainName+'paperlist/1017229051786862594-0-0-0-1-1.html'}" target="_blank">更多地区 &gt; </a>
<a class="more-area-link" th:href="${domainName+'paperlist/gaokao-0-0-0-1-1.html'}" target="_blank">更多地区 &gt; </a>
</span>
</p>
<div class="paper-main">
<div class="paper-box zhenti-box homepage-zhenti-box">
<div class="paper-list-wrap">
<h3 class="paper-title">历年真题
<a class="list-more-link" th:href="${domainName+'paperlist/1017229051786862594-0-1-0-0-1.html'}">更多真题试卷 &gt;</a>
<a class="list-more-link" th:href="${domainName+'paperlist/gaokao-0-1-0-0-1.html'}">更多真题试卷 &gt;</a>
</h3>
<ul class="paper-list paper-list-zhenti">
<li class="list-item" th:each="p,pStat:${historyPaperList}">
@ -131,7 +131,7 @@
<div class="paper-box moni-box homepage-moni-box">
<div class="paper-list-wrap">
<h3 class="paper-title">模拟试卷
<a class="list-more-link" th:href="${domainName+'paperlist/1017229051786862594-0-2-0-0-1.html'}">更多模拟试卷 &gt;</a>
<a class="list-more-link" th:href="${domainName+'paperlist/gaokao-0-2-0-0-1.html'}">更多模拟试卷 &gt;</a>
</h3>
<ul class="paper-list paper-list-moni">
<li class="list-item" th:each="p,pStat:${simulationPaperList}">
@ -147,7 +147,7 @@
</div>
<div class="homepage-paper-box shiti-box">
<div class="hotpaper-list-wrap">
<h3 class="hotpaper-title">热门试卷<a class="list-more-link" th:href="${domainName+'paperlist/1017229051786862594-0-0-0-1-1.html'}">更多热门试卷 &gt; </a>
<h3 class="hotpaper-title">热门试卷<a class="list-more-link" th:href="${domainName+'paperlist/gaokao-0-0-0-1-1.html'}">更多热门试卷 &gt; </a>
</h3>
<ul class="hotpaper-list">
<li class="hotpaper-list-item" th:each="p,pStat:${hotPaperList}">
@ -163,12 +163,12 @@
<div class="school-paper-main">
<div class="school-paper-container homepage-school-container">
<h3 class="school-container-title">名校精品试卷
<a class="school-paper-more-link" th:href="${domainName + 'paperlist/1017229051786862594-0-4-0-0-1.html'}">更多名校精品卷 &gt; </a>
<a class="school-paper-more-link" th:href="${domainName + 'paperlist/gaokao-0-4-0-0-1.html'}">更多名校精品卷 &gt; </a>
</h3>
<div class="school-list">
<div class="school-list-item " th:each="s,sStat:${eliteSchoolPaperList}">
<div class="school-wrap school-wrap-bg1">
<a class="famous-school-link" th:href="${domainName + 'paperlist/1017229051786862594-0-4-0-0-1.html'}" data-schoolid="924cf7ec4afe04a1b071de05">
<a class="famous-school-link" th:href="${domainName + 'paperlist/gaokao-0-4-0-0-1.html'}" data-schoolid="924cf7ec4afe04a1b071de05">
<div class="school-info">
<p class="name" th:text="${s.name}">北京大学附属中学</p>
<p class="info">
@ -194,7 +194,7 @@
</div>
<div class="more-school-list">
<a class="more-school-name" th:each="s,sStat:${eliteSchoolList}" th:text="${s.name}" th:href="${domainName + 'paperlist/1017229051786862594-0-4-0-0-1.html'}">
<a class="more-school-name" th:each="s,sStat:${eliteSchoolList}" th:text="${s.name}" th:href="${domainName + 'paperlist/gaokao-0-4-0-0-1.html'}">
北京市八一学校
</a>
</div>

@ -9,13 +9,13 @@
<meta name="copyright" content="Tamguo" />
<meta name="keywords" th:content="${paper.seoKeywords}" />
<meta name="description" th:content="${paper.seoDescription}" />
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/main.css'}"></link>
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/reset.css'}" />
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/iconfont.css'}" />
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/footer.css'}" />
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/paper.css'}" />
<link rel="stylesheet" type="text/css" th:href="${setting.domain + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${setting.domain + 'images/favicon.png'}" />
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/main.css'}"></link>
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/reset.css'}" />
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/iconfont.css'}" />
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/footer.css'}" />
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/paper.css'}" />
<link rel="stylesheet" type="text/css" th:href="${domainName + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${domainName + 'images/favicon.png'}" />
</head>
<body>
<!-- 头部-->
@ -70,7 +70,7 @@
<li class="paper-li" th:each="hot,hotStat:${hotPaperList}">
<i class="paper-icon paper-1"></i>
<a th:href="${setting.domain + 'paper/' + hot.uid + '.html'}" class="paper-contain" th:text="${hot.name}">
<a th:href="${domainName + 'paper/' + hot.id + '.html'}" class="paper-contain" th:text="${hot.name}">
2017年高考真题 物理 (海南卷)
</a>
</li>
@ -80,7 +80,7 @@
<span class="downleader-close">X</span>
<!-- <span class="downleader-ok">知道啦</span> -->
<span th:if="${paper.subjectId != ''}">
<a class="downleader-more" th:href="${setting.domain + 'paperlist/'+paper.subjectId+'/0-0-0-0-0.html'}">查看更多试卷</a>
<a class="downleader-more" th:href="${domainName + 'paperlist/'+paper.subjectId+'/0-0-0-0-0.html'}">查看更多试卷</a>
</span>
</div>
@ -92,7 +92,7 @@
<span class="que-type">单选题</span>
<span class="que-info" th:text="${p.title}">本大题共<span class="count">15</span>小题,每小题<span class="score">1</span>分,共<span class="total-score">15</span>分。在每小题给出的4个选项中有且只有一项是符合题目要求。</span>
</div>
<div th:attr="data-id=${q.uid},data-index=${q.uid}" class="question-box que-multi" th:if="${q.questionType == p.type}" th:each="q,qStat:${questionList}">
<div th:attr="data-id=${q.id},data-index=${q.id}" class="question-box que-multi" th:if="${q.questionType == p.type}" th:each="q,qStat:${questionList}">
<div class="question-box-inner" >
<span class="queindex-wrap"><span class="queindex" th:text="${qStat.index + 1}">1</span></span>
<span class="pieces">
@ -102,7 +102,7 @@
<div class="questem-inner bdjson" th:utext="${q.content }"><p><span>社会工作专业化是在长期社会服务实践中形成,在实践中被接受的。在专业化过程中,社会工作发展的重要特点包括( )。</span><br><br><span> A专业理论的完善</span><br><span>B专业方法的发展</span><br><span>C目标模式的变化</span><br><span>D工作对象的拓展</span><br><span>E理论派别的形成</span><br></p></div>
</div>
<div class="view-analyse">
<a class="view-link" th:href="${setting.domain + 'question/' + q.uid + '.html'}">查看题目解析 &gt;</a>
<a class="view-link" th:href="${domainName + 'question/' + q.id + '.html'}">查看题目解析 &gt;</a>
</div>
</div>
</div>
@ -121,43 +121,43 @@
<ul class="clearfix">
<li class="recp-contain-li" th:each="zhenti,zhentiStat:${zhentiPaperList}">
<i class="recp-icon repc-zhen"></i>
<a th:href="${setting.domain + 'paper/'+zhenti.uid+'.html'}" class="recp-link" data-class="zhenti" th:text="${zhenti.name}">
<a th:href="${domainName + 'paper/'+zhenti.id+'.html'}" class="recp-link" data-class="zhenti" th:text="${zhenti.name}">
2017年高考真题 英语 (浙江卷)
</a>
</li>
<a th:if="${paper.subjectId != null}" th:href="${setting.domain + 'paperlist/'+paper.subjectId+'/0-0-0-0-0.html'}" class="recp-more" data-class="zhenti">查看更多真题试卷 &gt;</a>
<a th:if="${paper.subjectId != null}" th:href="${domainName + 'paperlist/'+paper.subjectId+'/0-0-0-0-0.html'}" class="recp-more" data-class="zhenti">查看更多真题试卷 &gt;</a>
</ul>
</div>
<div class="recp-contain recp-dis-moni" style="display: none;">
<ul class="clearfix">
<li class="recp-contain-li" th:each="moni,moniStat:${moniPaperList}">
<i class="recp-icon repc-mo"></i>
<a th:href="${setting.domain + 'paper/'+moni.uid+'.html'}" class="recp-link" data-class="moni" th:text="${moni.name}">
<a th:href="${domainName + 'paper/'+moni.id+'.html'}" class="recp-link" data-class="moni" th:text="${moni.name}">
英语 2017年期末考试
</a>
</li>
<a th:if="${paper.subjectId != null}" th:href="${setting.domain + 'paperlist/'+paper.subjectId+'/0-1-0-0-0.html'}" class="recp-more" data-class="moni">查看更多模拟试卷 &gt;</a>
<a th:if="${paper.subjectId != null}" th:href="${domainName + 'paperlist/'+paper.subjectId+'/0-1-0-0-0.html'}" class="recp-more" data-class="moni">查看更多模拟试卷 &gt;</a>
</ul>
</div>
<div class="recp-contain recp-dis-yuce" style="display: none;">
<ul class="clearfix">
<li class="recp-contain-li" th:each="yati,yatiStat:${yatiPaperList}">
<i class="recp-icon repc-ya"></i>
<a th:href="${setting.domain + 'paper/'+yati.uid+'.html'}" class="recp-link" data-class="yuce" th:text="${yati.name}">
<a th:href="${domainName + 'paper/'+yati.id+'.html'}" class="recp-link" data-class="yuce" th:text="${yati.name}">
2015年高考权威预测卷 英语 (大纲全国卷)
</a>
</li>
</ul>
<a th:if="${paper.subjectId != null}" th:href="${setting.domain + 'paperlist/'+paper.subjectId+'/0-2-0-0-0.html'}" class="recp-more" data-class="yuce">查看更多预测试卷 &gt;</a>
<a th:if="${paper.subjectId != null}" th:href="${domainName + 'paperlist/'+paper.subjectId+'/0-2-0-0-0.html'}" class="recp-more" data-class="yuce">查看更多预测试卷 &gt;</a>
</div>
</div>
<div class="crumbs">
<a th:href="${setting.domain}" th:text="${subject != null}">探果题库</a>
<a th:href="${domainName}" th:text="${subject != null}">探果题库</a>
<span th:if="${subject != null}">
<a th:href="${setting.domain + 'subject/' + subject.uid + '.html'}" th:utext="${'&gt;' +subject.name}">社会工作师</a>
<a th:href="${domainName + 'subject/' + subject.id + '.html'}" th:utext="${'&gt;' +subject.name}">社会工作师</a>
</span>
<span th:if="${subject != null && course != null}">
<a th:if="${course != null}" th:href="${setting.domain + 'chapter/' + subject.uid + '/'+course.uid+'.html'}" th:utext="${course != null} ? '&gt;' + ${course.name}:''">综合能力(中级)</a>
<a th:if="${course != null}" th:href="${domainName + 'chapter/' + subject.id + '/'+course.id+'.html'}" th:utext="${course != null} ? '&gt;' + ${course.name}:''">综合能力(中级)</a>
</span>
<span th:utext="${'&gt;' +paper.name}">中国社会工作在不同发展阶段的特点</span>
</div>
@ -212,7 +212,7 @@
</body>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery-1.8.3.min.js" ></script>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery.iDialog.js"></script>
<script type="text/javascript" th:src="${setting.domain + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${setting.domain + 'js/paper.js'}" ></script>
<script type="text/javascript" th:src="${setting.domain + 'js/member/minlogin.js'}"></script>
<script type="text/javascript" th:src="${domainName + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${domainName + 'js/paper.js'}" ></script>
<script type="text/javascript" th:src="${domainName + 'js/member/minlogin.js'}"></script>
</html>

@ -5,13 +5,13 @@
<title>探果题库_聪明的学生都在这里</title>
<meta name="description" content="探果题库携手高校名师为考生提供高效的智能备考服务,涵括领域有高考、财会类、建筑工程、职业资格、医卫类、计算机类和学历类等热门考试题库。拥有高校名师丰富的经验,优质的学习资料和备考全阶段的高效服务,助您丰富自我,不断前行!"/>
<meta name="keyword" content="探果题库,数学试卷,高校试题,名校,名校试题,名校试卷,高校名师,名师专访,名师教案,名师课堂试题库,试卷库,智能题库,历年真题,模拟试题,押题,预测试题,高考,会计证,会计从业,会计师,经济师,施工员,建造师,建筑师,造价师,职业资格,证券资格,考研,计算机考试,建筑考试,财会类,医卫类,护士资格,公务员,知识点,试题,试卷"/>
<link rel="stylesheet" th:href="${setting.domain + 'css/main.css'}"></link>
<link rel="stylesheet" th:href="${setting.domain + 'css/reset.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/iconfont.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/paperlist.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/footer.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${setting.domain + 'images/favicon.png'}" />
<link rel="stylesheet" th:href="${domainName + 'css/main.css'}"></link>
<link rel="stylesheet" th:href="${domainName + 'css/reset.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/iconfont.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/paperlist.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/footer.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${domainName + 'images/favicon.png'}" />
</head>
<body>
@ -24,24 +24,24 @@
<div class="main-submenu">
<div class="submenu-contain clearfix">
<span class="contain-title">
<a th:href="${setting.domain + 'subject/' + subjectId + '.html'}" th:text="${subject.name}">高考</a>
<a th:href="${domainName + 'subject/' + subjectId + '.html'}" th:text="${subject.name}">高考</a>
</span>
<ul class="contain-ul">
<li class="contain-li">
<a th:href="${setting.domain + 'subject/' + subjectId + '.html'}" class="">考试首页</a>
<a th:href="${domainName + 'subject/' + subjectId + '.html'}" class="">考试首页</a>
</li>
<li class="contain-li">
<a class="" th:href="${setting.domain + 'course/'+courseId+'.html'}">章节学习</a>
<a class="" th:href="${domainName + 'course/'+courseId+'.html'}">章节学习</a>
</li>
<li class="contain-li">
<a th:class="${paperType == setting.PAPER_TYPE_ZHENTI} ? 'curr' : '' " th:href="${setting.domain + 'paperlist/' + subjectId + '-' +courseId+'-'+setting.PAPER_TYPE_ZHENTI+'-0-0-1.html'}">真题试卷</a>
<a th:class="${paperType == PAPER_TYPE_ZHENTI} ? 'curr' : '' " th:href="${domainName + 'paperlist/' + subjectId + '-' +courseId+'-'+PAPER_TYPE_ZHENTI+'-0-0-1.html'}">真题试卷</a>
</li>
<li class="contain-li">
<a th:class="${paperType == setting.PAPER_TYPE_MONI} ? 'curr' : '' " th:href="${setting.domain + 'paperlist/' + subjectId + '-' +courseId+'-'+setting.PAPER_TYPE_MONI+'-0-0-1.html'}">模拟试卷</a>
<a th:class="${paperType == PAPER_TYPE_MONI} ? 'curr' : '' " th:href="${domainName + 'paperlist/' + subjectId + '-' +courseId+'-'+PAPER_TYPE_MONI+'-0-0-1.html'}">模拟试卷</a>
</li>
<li class="contain-li">
<a th:class="${paperType == setting.PAPER_TYPE_YATI} ? 'curr' : '' " th:href="${setting.domain + 'paperlist/' + subjectId + '-' +courseId+'-'+setting.PAPER_TYPE_YATI+'-0-0-1.html'}">考前押题</a>
<a th:class="${paperType == PAPER_TYPE_YATI} ? 'curr' : '' " th:href="${domainName + 'paperlist/' + subjectId + '-' +courseId+'-'+PAPER_TYPE_YATI+'-0-0-1.html'}">考前押题</a>
</li>
</ul>
</div>
@ -59,13 +59,13 @@
<span class="sub">科目:</span>
<ul class="sc-list clearfix">
<li th:class="${courseId == '0'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist' + '/' + subjectId + '-0-' + paperType + '-' + year + '-' + area + '-1.html'}">
<a th:href="${domainName + 'paperlist' + '/' + subjectId + '-0-' + paperType + '-' + year + '-' + area + '-1.html'}">
全部
</a>
</li>
<li th:class="${c.uid == courseId} ? 'selected' : ''" th:each="c,cStat:${courseList}">
<a th:href="${setting.domain + 'paperlist' + '/' + subjectId + '-' + c.uid+'-' + paperType + '-' + year + '-' + area + '-1.html'}" th:text="${c.name}">
<li th:class="${c.id == courseId} ? 'selected' : ''" th:each="c,cStat:${courseList}">
<a th:href="${domainName + 'paperlist' + '/' + subjectId + '-' + c.id+'-' + paperType + '-' + year + '-' + area + '-1.html'}" th:text="${c.name}">
理科数学
</a>
</li>
@ -75,19 +75,19 @@
<span class="sub">类型:</span>
<ul class="sc-list clearfix">
<li th:class="${paperType == '0'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-0-' + year + '-' + area + '-1.html'}">全部</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-0-' + year + '-' + area + '-1.html'}">全部</a>
</li>
<li th:class="${paperType == setting.PAPER_TYPE_ZHENTI} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+setting.PAPER_TYPE_ZHENTI+'-' + year + '-' + area + '-1.html'}">真题试卷</a>
<li th:class="${paperType == PAPER_TYPE_ZHENTI} ? 'selected' : ''">
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+PAPER_TYPE_ZHENTI+'-' + year + '-' + area + '-1.html'}">真题试卷</a>
</li>
<li th:class="${paperType == setting.PAPER_TYPE_MONI} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+setting.PAPER_TYPE_MONI+'-' + year + '-' + area + '-1.html'}">模拟试卷</a>
<li th:class="${paperType == PAPER_TYPE_MONI} ? 'selected' : ''">
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+PAPER_TYPE_MONI+'-' + year + '-' + area + '-1.html'}">模拟试卷</a>
</li>
<li th:class="${paperType == setting.PAPER_TYPE_YATI} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+setting.PAPER_TYPE_YATI+'-' + year + '-' + area + '-1.html'}">押题预测</a>
<li th:class="${paperType == PAPER_TYPE_YATI} ? 'selected' : ''">
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+PAPER_TYPE_YATI+'-' + year + '-' + area + '-1.html'}">押题预测</a>
</li>
<li th:class="${paperType == setting.PAPER_TYPE_MINGXIAO} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+setting.PAPER_TYPE_MINGXIAO+'-' + year + '-' + area + '-1.html'}">名校精品</a>
<li th:class="${paperType == PAPER_TYPE_MINGXIAO} ? 'selected' : ''">
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+PAPER_TYPE_MINGXIAO+'-' + year + '-' + area + '-1.html'}">名校精品</a>
</li>
</ul>
@ -96,22 +96,22 @@
<span class="sub">年份:</span>
<ul class="sc-list clearfix">
<li th:class="${year == '0'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-0-' + area + '-1.html'}">全部</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-0-' + area + '-1.html'}">全部</a>
</li>
<li th:class="${year == '2017'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2017-' + area + '-1.html'}">2017</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2017-' + area + '-1.html'}">2017</a>
</li>
<li th:class="${year == '2016'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2016-' + area + '-1.html'}">2016</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2016-' + area + '-1.html'}">2016</a>
</li>
<li th:class="${year == '2015'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2015-' + area + '-1.html'}">2015</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2015-' + area + '-1.html'}">2015</a>
</li>
<li th:class="${year == '2014'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2014-' + area + '-1.html'}">2014</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2014-' + area + '-1.html'}">2014</a>
</li>
<li th:class="${year == '2013'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2013-' + area + '-1.html'}">2013</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-2013-' + area + '-1.html'}">2013</a>
</li>
</ul>
</div>
@ -119,11 +119,11 @@
<span class="sub">地区:</span>
<ul class="sc-list clearfix">
<li th:class="${area == '0'} ? 'selected' : ''">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-0-1.html'}">全部</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-0-1.html'}">全部</a>
</li>
<li th:class="${area == a.uid} ? 'selected' : ''" th:each="a,aStat:${areaList}">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-'+a.uid+'-1.html'}" th:text="${a.name}">北京</a>
<li th:class="${area == a.id} ? 'selected' : ''" th:each="a,aStat:${areaList}">
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-'+a.id+'-1.html'}" th:text="${a.areaName}">北京</a>
</li>
</ul>
@ -135,8 +135,8 @@
<div class="title">
<span class="all">全部试卷</span>
<div class="sort">
<a class="sort-down current" th:href="${setting.domain}">下载量<i class="iconfont icon-sort"></i></a>
<a class="sort-read " th:href="${setting.domain}">最新<i class="iconfont icon-sort"></i></a>
<a class="sort-down current" th:href="${domainName}">下载量<i class="iconfont icon-sort"></i></a>
<a class="sort-read " th:href="${domainName}">最新<i class="iconfont icon-sort"></i></a>
</div>
</div>
<div class="paperlist-content">
@ -144,12 +144,12 @@
<div class="paperlist" th:each="p,pStat:${paperPage.list}">
<div class="paper-title-content zhenti">
<h3 class="paper-title">
<a th:href="${setting.domain}" class="paper-a" th:text="${p.name}">2017年高考真题 理科数学 (全国I卷)</a>
<a th:href="${domainName}" class="paper-a" th:text="${p.name}">2017年高考真题 理科数学 (全国I卷)</a>
</h3>
<span class="read" th:text="${p.openHits}">0</span>
<span class="down" th:text="${p.downHits}">0</span>
</div>
<a class="paper-link" th:href="${setting.domain + 'paper/'+p.uid + '.html'}">查看套卷</a>
<a class="paper-link" th:href="${domainName + 'paper/'+p.id + '.html'}">查看套卷</a>
</div>
</div>
@ -159,15 +159,15 @@
<ul class="page-list">
<li class="page-num pre" th:if="${paperPage.isShowPreBtn}">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-' + area +'-1.html'}">&lt;</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-' + area +'-1.html'}">&lt;</a>
</li>
<li th:class="${paperPage.currPageNum == num} ? 'selected page-num' : 'page-num'" th:each="num,numStat:${paperPage.pageNums}">
<a th:href="${setting.domain + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-' + area +'-'+num+'.html'}" th:text="${num}">1</a>
<a th:href="${domainName + 'paperlist/' + subjectId + '-' + courseId+'-'+paperType+'-'+year+'-' + area +'-'+num+'.html'}" th:text="${num}">1</a>
</li>
<li class="page-num next" th:if="${paperPage.isShowNextBtn}">
<a th:href="${setting.domain + 'paperlist/' + subjectId +'-' + courseId+'-'+paperType+'-'+year+'-' + area +'-'+(paperPage.currPageNum+1)+'.html'}">&gt;</a>
<a th:href="${domainName + 'paperlist/' + subjectId +'-' + courseId+'-'+paperType+'-'+year+'-' + area +'-'+(paperPage.currPageNum+1)+'.html'}">&gt;</a>
</li>
</ul>
@ -190,8 +190,8 @@
<!--尾部 -->
<div class="foot">
<div class="crumbs">
<a th:href="${setting.domain}">探果题库</a> &gt;
<a th:href="${setting.domain + 'subject/' + subject.uid + '.html'}" th:text="${subject.name}">高考</a>
<a th:href="${domainName}">探果题库</a> &gt;
<a th:href="${domainName + 'subject/' + subject.id + '.html'}" th:text="${subject.name}">高考</a>
<span th:utext="${course != null} ? '&gt;' + ${course.name}:''">理科数学</span>
</div>
</div>
@ -205,6 +205,6 @@
</body>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery-1.8.3.min.js" ></script>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery.iDialog.js"></script>
<script type="text/javascript" th:src="${setting.domain + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${setting.domain + 'js/member/minlogin.js'}"></script>
<script type="text/javascript" th:src="${domainName + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${domainName + 'js/member/minlogin.js'}"></script>
</html>

@ -7,13 +7,13 @@
<meta name="keyword" content="探果题库,数学试卷,高校试题,名校,名校试题,名校试卷,高校名师,名师专访,名师教案,名师课堂试题库,试卷库,智能题库,历年真题,模拟试题,押题,预测试题,高考,会计证,会计从业,会计师,经济师,施工员,建造师,建筑师,造价师,职业资格,证券资格,考研,计算机考试,建筑考试,财会类,医卫类,护士资格,公务员,知识点,试题,试卷"/>
<meta name="author" content="Tamguo Team" />
<meta name="copyright" content="Tamguo" />
<link rel="stylesheet" th:href="${setting.domain + 'css/main.css'}"></link>
<link rel="stylesheet" th:href="${setting.domain + 'css/reset.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/iconfont.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/question.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/footer.css'}" />
<link rel="stylesheet" th:href="${setting.domain + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${setting.domain + 'images/favicon.png'}" />
<link rel="stylesheet" th:href="${domainName + 'css/main.css'}"></link>
<link rel="stylesheet" th:href="${domainName + 'css/reset.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/iconfont.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/question.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/footer.css'}" />
<link rel="stylesheet" th:href="${domainName + 'css/member/minilogin.css'}" />
<link type="favicon" rel="shortcut icon" th:href="${domainName + 'images/favicon.png'}" />
</head>
<body>
@ -47,7 +47,7 @@
<h3 class="point-title">相关例题</h3>
<ul class="recq-contain">
<li class="recq bdjson" th:each="q,qStat:${featuredQuestionList}">
<a class="recq-link " th:href="${setting.domain + 'question/' + q.uid + '.html'}" th:utext="${q.content}">
<a class="recq-link " th:href="${domainName + 'question/' + q.id + '.html'}" th:utext="${q.content}">
<p><span>在青少年社会工作中,社区层面的社会工作方法的运用包含一些特点,即( )。</span><br><br><span> A以社区为对象强调居民的参与</span><br><span>B以结构导向的角度分析问题</span><br><span>C介入的层面比较广泛</span><br><span>D社会资源的广泛运用</span><br><span>E以问题导向开展服务</span><br></p>
</a>
</li>
@ -81,34 +81,34 @@
<h1 class="hotexam-title">热门考试</h1>
<ul class="hotexam-content clearfix">
<li class="hotexam-item">
<a th:href="${setting.domain}">高考</a>
<a th:href="${domainName}">高考</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">一级建造师</a>
<a th:href="${domainName}">一级建造师</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">二级建造师</a>
<a th:href="${domainName}">二级建造师</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">初级经济师</a>
<a th:href="${domainName}">初级经济师</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">中级经济师</a>
<a th:href="${domainName}">中级经济师</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">教师资格证</a>
<a th:href="${domainName}">教师资格证</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">企业法律顾问</a>
<a th:href="${domainName}">企业法律顾问</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">注册会计师CPA</a>
<a th:href="${domainName}">注册会计师CPA</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">中级会计师</a>
<a th:href="${domainName}">中级会计师</a>
</li>
<li class="hotexam-item">
<a th:href="${setting.domain}">考研</a>
<a th:href="${domainName}">考研</a>
</li>
</ul>
</div>
@ -127,6 +127,6 @@
</body>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery-1.8.3.min.js" ></script>
<script type="text/javascript" src="http://static.tamguo.com/static/js/jquery.iDialog.js"></script>
<script type="text/javascript" th:src="${setting.domain + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${setting.domain + 'js/member/minlogin.js'}"></script>
<script type="text/javascript" th:src="${domainName + 'js/main.js'}" ></script>
<script type="text/javascript" th:src="${domainName + 'js/member/minlogin.js'}"></script>
</html>

Loading…
Cancel
Save