第12组项目代码

master
gemingyang 2 years ago
commit 7fc411dd1b

33
.gitignore vendored

@ -0,0 +1,33 @@
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/

@ -0,0 +1,118 @@
/*
* Copyright 2007-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.net.*;
import java.io.*;
import java.nio.channels.*;
import java.util.Properties;
public class MavenWrapperDownloader {
private static final String WRAPPER_VERSION = "0.5.6";
/**
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
*/
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
/**
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
* use instead of the default one.
*/
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
".mvn/wrapper/maven-wrapper.properties";
/**
* Path where the maven-wrapper.jar will be saved to.
*/
private static final String MAVEN_WRAPPER_JAR_PATH =
".mvn/wrapper/maven-wrapper.jar";
/**
* Name of the property which should be used to override the default download url for the wrapper.
*/
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
public static void main(String args[]) {
System.out.println("- Downloader started");
File baseDirectory = new File(args[0]);
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
// If the maven-wrapper.properties exists, read it and check if it contains a custom
// wrapperUrl parameter.
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
String url = DEFAULT_DOWNLOAD_URL;
if (mavenWrapperPropertyFile.exists()) {
FileInputStream mavenWrapperPropertyFileInputStream = null;
try {
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
Properties mavenWrapperProperties = new Properties();
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
} catch (IOException e) {
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
} finally {
try {
if (mavenWrapperPropertyFileInputStream != null) {
mavenWrapperPropertyFileInputStream.close();
}
} catch (IOException e) {
// Ignore ...
}
}
}
System.out.println("- Downloading from: " + url);
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
if (!outputFile.getParentFile().exists()) {
if (!outputFile.getParentFile().mkdirs()) {
System.out.println(
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
}
}
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
try {
downloadFileFromURL(url, outputFile);
System.out.println("Done");
System.exit(0);
} catch (Throwable e) {
System.out.println("- Error downloading");
e.printStackTrace();
System.exit(1);
}
}
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
String username = System.getenv("MVNW_USERNAME");
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
}
URL website = new URL(urlString);
ReadableByteChannel rbc;
rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(destination);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
fos.close();
rbc.close();
}
}

Binary file not shown.

@ -0,0 +1,2 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar

310
mvnw vendored

@ -0,0 +1,310 @@
#!/bin/sh
# ----------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Maven Start Up Batch script
#
# Required ENV vars:
# ------------------
# JAVA_HOME - location of a JDK home dir
#
# Optional ENV vars
# -----------------
# M2_HOME - location of maven2's installed home dir
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
# e.g. to debug Maven itself, use
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
# ----------------------------------------------------------------------------
if [ -z "$MAVEN_SKIP_RC" ] ; then
if [ -f /etc/mavenrc ] ; then
. /etc/mavenrc
fi
if [ -f "$HOME/.mavenrc" ] ; then
. "$HOME/.mavenrc"
fi
fi
# OS specific support. $var _must_ be set to either true or false.
cygwin=false;
darwin=false;
mingw=false
case "`uname`" in
CYGWIN*) cygwin=true ;;
MINGW*) mingw=true;;
Darwin*) darwin=true
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
if [ -z "$JAVA_HOME" ]; then
if [ -x "/usr/libexec/java_home" ]; then
export JAVA_HOME="`/usr/libexec/java_home`"
else
export JAVA_HOME="/Library/Java/Home"
fi
fi
;;
esac
if [ -z "$JAVA_HOME" ] ; then
if [ -r /etc/gentoo-release ] ; then
JAVA_HOME=`java-config --jre-home`
fi
fi
if [ -z "$M2_HOME" ] ; then
## resolve links - $0 may be a link to maven's home
PRG="$0"
# need this for relative symlinks
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
saveddir=`pwd`
M2_HOME=`dirname "$PRG"`/..
# make it fully qualified
M2_HOME=`cd "$M2_HOME" && pwd`
cd "$saveddir"
# echo Using m2 at $M2_HOME
fi
# For Cygwin, ensure paths are in UNIX format before anything is touched
if $cygwin ; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --unix "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
[ -n "$CLASSPATH" ] &&
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
fi
# For Mingw, ensure paths are in UNIX format before anything is touched
if $mingw ; then
[ -n "$M2_HOME" ] &&
M2_HOME="`(cd "$M2_HOME"; pwd)`"
[ -n "$JAVA_HOME" ] &&
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
fi
if [ -z "$JAVA_HOME" ]; then
javaExecutable="`which javac`"
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
# readlink(1) is not available as standard on Solaris 10.
readLink=`which readlink`
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
if $darwin ; then
javaHome="`dirname \"$javaExecutable\"`"
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
else
javaExecutable="`readlink -f \"$javaExecutable\"`"
fi
javaHome="`dirname \"$javaExecutable\"`"
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
JAVA_HOME="$javaHome"
export JAVA_HOME
fi
fi
fi
if [ -z "$JAVACMD" ] ; then
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
else
JAVACMD="`which java`"
fi
fi
if [ ! -x "$JAVACMD" ] ; then
echo "Error: JAVA_HOME is not defined correctly." >&2
echo " We cannot execute $JAVACMD" >&2
exit 1
fi
if [ -z "$JAVA_HOME" ] ; then
echo "Warning: JAVA_HOME environment variable is not set."
fi
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
# traverses directory structure from process work directory to filesystem root
# first directory with .mvn subdirectory is considered project base directory
find_maven_basedir() {
if [ -z "$1" ]
then
echo "Path not specified to find_maven_basedir"
return 1
fi
basedir="$1"
wdir="$1"
while [ "$wdir" != '/' ] ; do
if [ -d "$wdir"/.mvn ] ; then
basedir=$wdir
break
fi
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
if [ -d "${wdir}" ]; then
wdir=`cd "$wdir/.."; pwd`
fi
# end of workaround
done
echo "${basedir}"
}
# concatenates all lines of a file
concat_lines() {
if [ -f "$1" ]; then
echo "$(tr -s '\n' ' ' < "$1")"
fi
}
BASE_DIR=`find_maven_basedir "$(pwd)"`
if [ -z "$BASE_DIR" ]; then
exit 1;
fi
##########################################################################################
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
# This allows using the maven wrapper in projects that prohibit checking in binary data.
##########################################################################################
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
if [ "$MVNW_VERBOSE" = true ]; then
echo "Found .mvn/wrapper/maven-wrapper.jar"
fi
else
if [ "$MVNW_VERBOSE" = true ]; then
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
fi
if [ -n "$MVNW_REPOURL" ]; then
jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
else
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
fi
while IFS="=" read key value; do
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
esac
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
if [ "$MVNW_VERBOSE" = true ]; then
echo "Downloading from: $jarUrl"
fi
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
if $cygwin; then
wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
fi
if command -v wget > /dev/null; then
if [ "$MVNW_VERBOSE" = true ]; then
echo "Found wget ... using wget"
fi
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
wget "$jarUrl" -O "$wrapperJarPath"
else
wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
fi
elif command -v curl > /dev/null; then
if [ "$MVNW_VERBOSE" = true ]; then
echo "Found curl ... using curl"
fi
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
curl -o "$wrapperJarPath" "$jarUrl" -f
else
curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
fi
else
if [ "$MVNW_VERBOSE" = true ]; then
echo "Falling back to using Java to download"
fi
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
# For Cygwin, switch paths to Windows format before running javac
if $cygwin; then
javaClass=`cygpath --path --windows "$javaClass"`
fi
if [ -e "$javaClass" ]; then
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
if [ "$MVNW_VERBOSE" = true ]; then
echo " - Compiling MavenWrapperDownloader.java ..."
fi
# Compiling the Java class
("$JAVA_HOME/bin/javac" "$javaClass")
fi
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
# Running the downloader
if [ "$MVNW_VERBOSE" = true ]; then
echo " - Running MavenWrapperDownloader.java ..."
fi
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
fi
fi
fi
fi
##########################################################################################
# End of extension
##########################################################################################
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
if [ "$MVNW_VERBOSE" = true ]; then
echo $MAVEN_PROJECTBASEDIR
fi
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
[ -n "$M2_HOME" ] &&
M2_HOME=`cygpath --path --windows "$M2_HOME"`
[ -n "$JAVA_HOME" ] &&
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
[ -n "$CLASSPATH" ] &&
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
fi
# Provide a "standardized" way to retrieve the CLI args that will
# work with both Windows and non-Windows executions.
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
export MAVEN_CMD_LINE_ARGS
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
exec "$JAVACMD" \
$MAVEN_OPTS \
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"

182
mvnw.cmd vendored

@ -0,0 +1,182 @@
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF licenses this file
@REM to you under the Apache License, Version 2.0 (the
@REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at
@REM
@REM https://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@REM KIND, either express or implied. See the License for the
@REM specific language governing permissions and limitations
@REM under the License.
@REM ----------------------------------------------------------------------------
@REM ----------------------------------------------------------------------------
@REM Maven Start Up Batch script
@REM
@REM Required ENV vars:
@REM JAVA_HOME - location of a JDK home dir
@REM
@REM Optional ENV vars
@REM M2_HOME - location of maven2's installed home dir
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
@REM e.g. to debug Maven itself, use
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
@REM ----------------------------------------------------------------------------
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
@echo off
@REM set title of command window
title %0
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
@REM Execute a user defined script before this one
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
:skipRcPre
@setlocal
set ERROR_CODE=0
@REM To isolate internal variables from possible post scripts, we use another setlocal
@setlocal
@REM ==== START VALIDATION ====
if not "%JAVA_HOME%" == "" goto OkJHome
echo.
echo Error: JAVA_HOME not found in your environment. >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
:OkJHome
if exist "%JAVA_HOME%\bin\java.exe" goto init
echo.
echo Error: JAVA_HOME is set to an invalid directory. >&2
echo JAVA_HOME = "%JAVA_HOME%" >&2
echo Please set the JAVA_HOME variable in your environment to match the >&2
echo location of your Java installation. >&2
echo.
goto error
@REM ==== END VALIDATION ====
:init
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
@REM Fallback to current working directory if not found.
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
set EXEC_DIR=%CD%
set WDIR=%EXEC_DIR%
:findBaseDir
IF EXIST "%WDIR%"\.mvn goto baseDirFound
cd ..
IF "%WDIR%"=="%CD%" goto baseDirNotFound
set WDIR=%CD%
goto findBaseDir
:baseDirFound
set MAVEN_PROJECTBASEDIR=%WDIR%
cd "%EXEC_DIR%"
goto endDetectBaseDir
:baseDirNotFound
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
cd "%EXEC_DIR%"
:endDetectBaseDir
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
@setlocal EnableExtensions EnableDelayedExpansion
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
:endReadAdditionalConfig
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
)
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
if exist %WRAPPER_JAR% (
if "%MVNW_VERBOSE%" == "true" (
echo Found %WRAPPER_JAR%
)
) else (
if not "%MVNW_REPOURL%" == "" (
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
)
if "%MVNW_VERBOSE%" == "true" (
echo Couldn't find %WRAPPER_JAR%, downloading it ...
echo Downloading from: %DOWNLOAD_URL%
)
powershell -Command "&{"^
"$webclient = new-object System.Net.WebClient;"^
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
"}"^
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
"}"
if "%MVNW_VERBOSE%" == "true" (
echo Finished downloading %WRAPPER_JAR%
)
)
@REM End of extension
@REM Provide a "standardized" way to retrieve the CLI args that will
@REM work with both Windows and non-Windows executions.
set MAVEN_CMD_LINE_ARGS=%*
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
if ERRORLEVEL 1 goto error
goto end
:error
set ERROR_CODE=1
:end
@endlocal & set ERROR_CODE=%ERROR_CODE%
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
@REM check for post script, once with legacy .bat ending and once with .cmd ending
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
:skipRcPost
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
if "%MAVEN_BATCH_PAUSE%" == "on" pause
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
exit /B %ERROR_CODE%

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com</groupId>
<artifactId>forum</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>forum</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<!--redis-->
<dependencies>
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
<!-- </dependency>-->
<!--导入thymeleaf模板-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--数据库-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
#集成Mybatis
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<!-- 分页插件-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark-ext-heading-anchor</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark-ext-gfm-tables</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<dockerHost>http://ip:2375</dockerHost>
<imageName>javaboy/${project.artifactId}</imageName>
<imageTags>
<imageTag>${project.version}</imageTag>
</imageTags>
<forceTags>true</forceTags>
<dockerDirectory>src/main/docker</dockerDirectory>
<resources>
<resource>
<targetPath>target</targetPath>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</project>

@ -0,0 +1,13 @@
package com.forum;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ForumApplication {
public static void main(String[] args) {
SpringApplication.run(ForumApplication.class, args);
}
}

@ -0,0 +1,24 @@
package com.forum.config;
import com.forum.interceptor.LoginInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* @author
* @date 2021/3/24 7:59
*
*/
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginInterceptor())
.addPathPatterns("/admin/**")
.excludePathPatterns("/admin")
// 排除登录页面的拦截
.excludePathPatterns("/admin/login");
}
}

@ -0,0 +1,17 @@
package com.forum.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class AboutController {
@GetMapping("/about")
public String aboutMe(){
return "about";
}
}

@ -0,0 +1,28 @@
//package com.forum.controller;
//
//import com.forum.entity.Forum;
//import com.forum.service.ForumService;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.stereotype.Controller;
//import org.springframework.ui.Model;
//import org.springframework.web.bind.annotation.GetMapping;
//
//import java.util.List;
//import java.util.Map;
//
//@Controller
//public class ArchiveShowController {
//
// @Autowired
// private ForumService forumService;
//
// @GetMapping("/archives")
// public String archives(Model model) {
// Map<String, List<Forum>> forums = forumService.archiveForum();
// model.addAttribute("archiveMap", forums);
// model.addAttribute("forumCount", forumService.countForum());
//
//
// return "archives";
// }
//}

@ -0,0 +1,59 @@
package com.forum.controller;
import com.forum.entity.Comment;
import com.forum.entity.User;
import com.forum.service.ForumService;
import com.forum.service.CommentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import javax.servlet.http.HttpSession;
@Controller
public class CommentController {
@Autowired
private CommentService commentService;
@Autowired
private ForumService forumService;
// @Value("${comment.avatar}")
private String avatar;
@GetMapping("/comments/{forumId}") //展示
public String getComments(@PathVariable Long forumId, Model model){
model.addAttribute("comments", commentService.getCommentByForumId(forumId));
model.addAttribute("forum", forumService.getDetailedForum(forumId));
return "forum :: commentList";
}
@PostMapping("/comments") //提交
public String postComment(Comment comment, HttpSession session){
Long forumId = comment.getForum().getId();
comment.setForum(forumService.getDetailedForum(forumId)); //绑定评论
comment.setForumId(forumId);
User user = (User) session.getAttribute("user");
if (user != null){ //用户存在
comment.setAvatar(user.getAvatar());
comment.setUserComment(true);
}else {
comment.setAvatar(avatar);
}
System.out.println(comment);
String contents = comment.getContent();
String arr[]={"垃圾","滚","混蛋","王八蛋","有病","美白","祛痘","祛斑","纯天然","换肤","去除皱纹","防脱发","生发","无毒","安全","瘦脸","助眠",};
for (int i = 0; i < arr.length; i++) {
contents= contents.replaceAll(arr[i],"*");
System.out.println(contents);
comment.setContent(contents);
}
commentService.saveComment(comment);
return "redirect:/comments/" + forumId;
}
}

@ -0,0 +1,133 @@
package com.forum.controller;
import com.forum.entity.*;
import com.forum.service.*;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import javax.servlet.http.HttpSession;
import java.util.List;
@Controller
public class IndexController {
@Autowired
private ForumService forumService;
@Autowired
private NoticeService noticeService;
@Autowired
private TagService tagService;
@Autowired
private MessageService messageService;
@Autowired
private LinkService linkService;
private HttpSession session;
@GetMapping("/")
public String toIndex(@RequestParam(required = false,defaultValue = "1",value = "pageNum")int pagenum, Model model){
PageHelper.startPage(pagenum,5);
//
List<Forum> allForum = forumService.getIndexForum();
//
List<Tag> allTag = tagService.getForumTag(); //获取帖子的标签(联表查询)
//得到分页结果对象
PageInfo pageInfo = new PageInfo(allForum);
System.out.println(pageInfo);
List<RankForum> lankForums=forumService.findForumByLank();
List<RankForum> newForum = forumService.getNewForum();
model.addAttribute("lankForums", lankForums);
model.addAttribute("newForum",newForum);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("tags", allTag);
model.addAttribute("notices",noticeService.findAllNotice());
model.addAttribute("messages",messageService.getIndexMessage());
List<Link> allLink =linkService.getAllLink();
//得到分页结果对象
model.addAttribute("f", allLink);
return "index";
}
@PostMapping("/search")
public String toSearch(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum,
@RequestParam String query, Model model){
PageHelper.startPage(pagenum, 5);
List<Forum> searchForum = forumService.getSearchForum(query);
PageInfo pageInfo = new PageInfo(searchForum);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("query", query);
return "search";
}
@GetMapping("/forum/{id}")
public String toDetail(@PathVariable Long id, Model model, HttpSession session){
Forum forum = forumService.getDetailedForum(id);
forumService.updateView(id);
model.addAttribute("forum", forum);
return "forum";
}
@GetMapping("/forum/like/{id}")
public String getLike(@PathVariable Long id, Forum forum,HttpSession session){
forumService.addLike(id);
User user =(User)session.getAttribute("user");
session.setAttribute("user",user);
return "redirect:/forum/"+id;
}
public void findAllTag(Model model) {
model.addAttribute("tags", tagService.getAllTag());
}
@GetMapping("/publish")
public String toPublic(Model model,HttpSession session,RedirectAttributes attributes){
model.addAttribute("forum", new Forum()); //返回一个forum对象给前端th:object
findAllTag(model);
attributes.addFlashAttribute("msg1", "请先登录在发布哦");
User user = (User)session.getAttribute("user");
if (user==null){
return "redirect:/user";
}else {
return "publish";
}
}
@PostMapping("/add") //新增
public String addForum(@RequestParam(required = false,defaultValue = "1",value = "pageNum")int pagenum,Model model,Forum forum, HttpSession session, RedirectAttributes attributes){
//设置user属性
forum.setUser((User) session.getAttribute("user"));
//设置用户id
forum.setUserId(forum.getUser().getId());
// //设置forum的type
//给forum中的List<Tag>赋值
forum.setTags(tagService.getTagByString(forum.getTagIds()));
forumService.saveForum(forum);
attributes.addFlashAttribute("msg", "发布成功");
return "redirect:/";
}
}

@ -0,0 +1,92 @@
package com.forum.controller;
import com.forum.entity.User;
import com.forum.service.UserService;
import com.forum.utils.MD5;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import javax.servlet.http.HttpSession;
@Controller
@RequestMapping("/user")
public class LoginController {
@Autowired
private UserService userService;
@GetMapping()
public String loginPage(){
return "login";
}
@PostMapping("/toLogin")
public String frontLogin(@RequestParam String getUserName,
@RequestParam String getPassWord,
HttpSession session,
RedirectAttributes attributes){
User user = userService.checkUser(getUserName, getPassWord);
if(user != null && user.getType().equals(0)){
user.setPassword(null);
session.setAttribute("user", user);
return "redirect:/";
}else {
attributes.addFlashAttribute("msg", "用户名或密码错误");
return "redirect:/user";
}
}
@GetMapping("/logout")
public String logout(HttpSession session){
session.removeAttribute("user");
return "redirect:/";
}
//注册
@GetMapping("/register")
public String frontRegister(Model model){
return "register";
}
@PostMapping("/toRegister")
public String register(User user, RedirectAttributes attributes){
System.out.println(user.getUsername());
if (user!=null){
user.setPassword(MD5.code(user.getPassword()));
userService.addUser(user);
attributes.addFlashAttribute("msg", "恭喜注册成功,快去登录吧!");
return "redirect:/user";
}else {
return "/register";
}
}
@GetMapping("/toUpdatePage")
public String toUpdatePage(){
return "update";
}
@PostMapping ("/toUpdate")
public String updatePass(@RequestParam String newPassword,
@RequestParam String oldPassword,
@RequestParam String username,
User user,
RedirectAttributes attributes){
if (oldPassword!=null&&newPassword!=null){
userService.update(MD5.code(newPassword),username);
attributes.addFlashAttribute("msg","密码修改成功!");
return "redirect:/user";
}else {
attributes.addFlashAttribute("msg","密码修改失败!");
return "update";
}
}
}

@ -0,0 +1,52 @@
package com.forum.controller;
import com.forum.entity.Message;
import com.forum.entity.Reply;
import com.forum.entity.User;
import com.forum.service.MessageService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpSession;
import java.util.List;
@Controller
@RequestMapping("/message")
public class MessageController {
@Autowired
private MessageService messageService;
@GetMapping("/allMessage")
public String findAllMessage (Model model) {
List<Message> messages=messageService.findAllMessage();
model.addAttribute("messages",messages);
return "message";
}
@PostMapping("/save")
public String saveMessage(Message message, HttpSession session)
{
User user= (User) session.getAttribute("user");
message.setMsg_avatar(user.getAvatar());
message.setName(user.getUsername());
messageService.saveMessage(message);
return "redirect:/message/allMessage";
}
@PostMapping("/reply/save")
public String saveReply(Reply reply, HttpSession session)
{
User user= (User) session.getAttribute("user");
System.out.println(user.getAvatar());
reply.setNames(user.getUsername());
reply.setAvatar(user.getAvatar());
messageService.saveReplyMessage(reply);
return "redirect:/message/allMessage";
}
}

@ -0,0 +1,38 @@
//package com.forum.controller;
//
//
//
//import com.forum.service.ForumService;
//import com.forum.utils.RedisUtil;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.stereotype.Controller;
//import org.springframework.web.bind.annotation.GetMapping;
//import org.springframework.web.bind.annotation.ResponseBody;
//
//
//@Controller
//public class RedisController {
// @Autowired
// private RedisUtil redisUtil;
// @Autowired
// private ForumService forumService;
//
//
//
//
// @GetMapping("/redis")
// @ResponseBody
// private String connection(){
//
//
//
//
//// redisUtil.lSet("blogs",rankBlogs,60*60*24);
//// List<Object> list=redisUtil.lGetRankBlog("blogs",0,-1);
//// List<RankBlog> blogList= (List<RankBlog>) list.get(0);
//
//
// // System.out.println( ":"+redisUtil.getExpire("rank"));
// return "success";
// }
//}

@ -0,0 +1,51 @@
package com.forum.controller;
import com.forum.entity.Forum;
import com.forum.entity.RankForum;
import com.forum.entity.Tag;
import com.forum.service.ForumService;
import com.forum.service.TagService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@Controller
public class TagShowController {
@Autowired
private TagService tagService;
@Autowired
private ForumService forumService;
@GetMapping("/tags/{id}")
public String findTypes(@PathVariable Long id, @RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum,
Model model){
PageHelper.startPage(pagenum, 100); //开启分页
List<Tag> tags = tagService.getForumTag();
//-1从导航点过来的
if (id == -1){
// 如果id=-1表示这是从导航栏进的从数据库查找排在第一位的标签get(0)精妙
id = tags.get(0).getId();
}
List<Forum> forums = forumService.getByTagId(id);
for (Forum forum : forums) {
System.out.println(forum);
}
PageInfo<Forum> pageInfo = new PageInfo<>(forums);
List<RankForum> lankForums=forumService.findForumByLank();
model.addAttribute("lankForums", lankForums);
model.addAttribute("tags", tags);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("activeTagId", id);
return "tags";
}
}

@ -0,0 +1,77 @@
package com.forum.controller.admin;
import com.forum.entity.User;
import com.forum.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import javax.servlet.http.HttpSession;
@Controller
@RequestMapping("/admin")
public class AdminLoginController {
@Autowired
private UserService userService;
@Autowired
private ForumService forumService;
@Autowired
private TagService tagService;
@Autowired
private NoticeService noticeService;
@Autowired
private LinkService linkService;
@GetMapping()
public String loginPage() {
return "admin/admin-login";
}
@PostMapping("/login")
public String login(@RequestParam String username,
@RequestParam String password,
HttpSession session,
RedirectAttributes attributes, Model model) {
User admin = userService.checkUser(username, password);
if (admin != null && admin.getType() == 1) {
session.setAttribute("admin", admin);
return "admin/admin-index";
} else {
attributes.addFlashAttribute("msgs", "用户名或密码错误");
return "redirect:/admin";
}
}
@RequestMapping("/welcome")
public String welcome(Model model) {
int count = userService.count();
int a = forumService.countForum();
int b = forumService.countView();
int c = tagService.countTag();
int d = noticeService.countNotice();
int e = linkService.countLink();
model.addAttribute("userCount", count);
model.addAttribute("forumCount", a);
model.addAttribute("forumView", b);
model.addAttribute("tagCount", c);
model.addAttribute("noticeCount", d);
model.addAttribute("linkCount", e);
return "admin/welcome";
}
@GetMapping("/logout")
public String logout(HttpSession session) {
session.removeAttribute("admin");
return "redirect:/admin";
}
}

@ -0,0 +1,38 @@
package com.forum.controller.admin;
import com.forum.entity.Comment;
import com.forum.service.CommentService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* @author
* @date 2021/4/1 23:39
*/
@Controller
@RequestMapping("/admin")
public class CommentsController {
@Autowired
CommentService commentService;
@GetMapping("/comment")
public String findAll(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
List<Comment> allComment = commentService.getAllComment();
PageHelper.startPage(pagenum,5);
PageInfo<Comment> commentPageInfo = new PageInfo<>(allComment);
model.addAttribute("pageInfo",commentPageInfo);
model.addAttribute("page",pagenum);
return "admin/comment";
}
@GetMapping("/comment/{id}/delete")
public String del(@PathVariable Integer id){
commentService.delById(id);
return "redirect:/admin/comment";
}
}

@ -0,0 +1,110 @@
package com.forum.controller.admin;
import com.forum.entity.Forum;
import com.forum.entity.User;
import com.forum.service.ForumService;
import com.forum.service.TagService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import javax.servlet.http.HttpSession;
import java.util.List;
@Controller
@RequestMapping("/admin")
public class ForumController {
@Autowired
private ForumService forumService;
@Autowired
private TagService tagService;
public void setTypeAndTag(Model model) {
model.addAttribute("tags", tagService.getAllTag());
}
@GetMapping("/forums") //后台显示帖子列表
public String forums(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<Forum> allForum = forumService.getAllForum();
//得到分页结果对象
PageInfo pageInfo = new PageInfo(allForum);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("page",pagenum);
setTypeAndTag(model); //查询类型和标签
return "admin/forums";
}
@GetMapping("/forums/input") //去新增帖子页面
public String toAddForum(Model model){
model.addAttribute("forum", new Forum()); //返回一个forum对象给前端th:object
setTypeAndTag(model);
return "admin/forums-input";
}
@PostMapping("/forums") //新增
public String addForum(Forum forum, HttpSession session, RedirectAttributes attributes){
//设置user属性
forum.setUser((User) session.getAttribute("admin"));
//设置用户id
forum.setUserId(forum.getUser().getId());
// //设置forum的type
//给forum中的List<Tag>赋值
forum.setTags(tagService.getTagByString(forum.getTagIds()));
forumService.saveForum(forum);
attributes.addFlashAttribute("msg", "新增成功");
return "redirect:/admin/forums";
}
@GetMapping("/forums/{id}/edit") //去编辑帖子页面
public String toEditForum(@PathVariable Long id, Model model){
Forum forum = forumService.getForum(id);
forum.init(); //将tags集合转换为tagIds字符串
model.addAttribute("forum", forum); //返回一个forum对象给前端th:object
setTypeAndTag(model);
return "admin/forums-edit";
}
@PostMapping("/forums/edit") //编辑
public String editForum(Forum forum, HttpSession session, RedirectAttributes attributes){
//设置user属性
forum.setUser((User) session.getAttribute("admin"));
//设置用户id
forum.setUserId(forum.getUser().getId());
// //设置forum的type
//给forum中的List<Tag>赋值
forum.setTags(tagService.getTagByString(forum.getTagIds()));
System.out.println(forum);
forumService.updateForum(forum);
attributes.addFlashAttribute("msg", "编辑成功");
return "redirect:/admin/forums";
}
@GetMapping("/forums/{id}/delete")
public String deleteForums(@PathVariable Long id, RedirectAttributes attributes){
forumService.deleteForum(id);
attributes.addFlashAttribute("msg", "删除成功");
return "redirect:/admin/forums";
}
@PostMapping("/forums/search") //按条件查询帖子
public String searchForums(Forum forum, @RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<Forum> allForum = forumService.searchAllForum(forum);
//得到分页结果对象
PageInfo pageInfo = new PageInfo(allForum);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("message", "查询成功");
setTypeAndTag(model);
return "forums";
}
}

@ -0,0 +1,74 @@
package com.forum.controller.admin;
import com.forum.entity.Link;
import com.forum.entity.Tag;
import com.forum.entity.User;
import com.forum.service.LinkService;
import com.forum.service.UserService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.util.Date;
import java.util.List;
/**
* @author
* @date 2021/3/30 15:24
*/
@Controller
@RequestMapping("/admin")
public class LinkController {
@Autowired
private LinkService linkService;
@GetMapping("/link")
public String listLink(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<Link> allLink =linkService.getAllLink();
//得到分页结果对象
PageInfo<Link> pageInfo = new PageInfo<>(allLink);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("page",pagenum);
return "admin/linkAdmin";
}
/**
*
* @param id
* @param attributes
* @return
*/
@GetMapping("/linkAll/{id}/delete")
public String delete(@PathVariable Integer id, RedirectAttributes attributes){
linkService.deleteLink(id);
attributes.addFlashAttribute("msg", "删除成功");
return "redirect:/admin/link";
}
@GetMapping("/linkAll//input")
public String toEditTag(){
return "admin/link-input";
}
/**
*
* @param
* @param attributes
* @return
*/
@PostMapping("/input")
public String addTag(Link link, RedirectAttributes attributes){ //新增
linkService.saveLink(link);
return "redirect:/admin/link"; //不能直接跳转到tags页面否则不会显示tag数据(没经过tags方法)
}
}

@ -0,0 +1,51 @@
package com.forum.controller.admin;
import com.forum.entity.Link;
import com.forum.entity.Message;
import com.forum.entity.Notice;
import com.forum.entity.Reply;
import com.forum.service.MessageService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
/**
* @author
* @date 2021/4/1 15:25
*/
@Controller
@RequestMapping("/admin")
public class MessagesController {
@Autowired
private MessageService messageService;
@GetMapping("/message")
public String find (@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum,Model model) {
PageHelper.startPage(pagenum, 5);
List<Message> messages=messageService.findAll();
PageInfo<Message> pageInfo = new PageInfo<>(messages);
model.addAttribute("pageInfo",pageInfo);
model.addAttribute("page",pagenum);
return "admin/message";
}
/**
*
* @returnid
*/
@GetMapping("/message/{id}/delete")
public String delete(@PathVariable int id){
messageService.deleteById(id);
return "redirect:/admin/message";
}
}

@ -0,0 +1,64 @@
package com.forum.controller.admin;
import com.forum.entity.Notice;
import com.forum.service.NoticeService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@Controller
@RequestMapping("/admin")
public class NoticeController {
@Autowired
private NoticeService noticeService;
@GetMapping("/notices")
public String notices(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 8);
List<Notice> allNotice = noticeService.findAllNotice();
//得到分页结果对象
PageInfo<Notice> pageInfo = new PageInfo<>(allNotice);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("page",pagenum);
return "admin/notice";
}
/**
*
* @param model
* @return
*/
@GetMapping("/notices/input")
public String toNotices(Model model){
return "admin/notices-input";
}
/**
*
* @param notice
* @return
*/
@PostMapping("/notices")
public String addTag(Notice notice){ //新增
noticeService.addNotices(notice);
return "redirect:/admin/notices"; //不能直接跳转到tags页面否则不会显示tag数据(没经过tags方法)
}
/**
*
* @return
*/
@GetMapping("/notices/{id}/delete")
public String delete(@PathVariable int id){
noticeService.deleteNotice(id);
return "redirect:/admin/notices";
}
}

@ -0,0 +1,43 @@
package com.forum.controller.admin;
import com.forum.entity.Message;
import com.forum.entity.Reply;
import com.forum.service.ReplyService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.util.List;
/**
* @author
* @date 2021/4/1 21:57
*/
@Controller
@RequestMapping("/admin")
public class ReplyController {
@Autowired
ReplyService replyService;
@GetMapping("/reply")
public String all(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<Reply> messages=replyService.findAll();
PageInfo<Reply> pageInfo = new PageInfo<>(messages);
model.addAttribute("pageInfo",pageInfo);
model.addAttribute("page",pagenum);
return "admin/reply";
}
@GetMapping("/replyAll/{id}/delete")
public String del(@PathVariable Integer id , RedirectAttributes attributes){
replyService.del(id);
attributes.addFlashAttribute("msg", "删除成功");
return "redirect:/admin/reply";
}
}

@ -0,0 +1,112 @@
package com.forum.controller.admin;
import com.forum.entity.Tag;
import com.forum.service.TagService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.util.List;
@Controller
@RequestMapping("/admin")
public class TagController {
@Autowired
TagService tagService;
@GetMapping("/tags")
public String tags(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<Tag> allTag = tagService.getAllTag();
//得到分页结果对象
PageInfo<Tag> pageInfo = new PageInfo<>(allTag);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("page",pagenum);
model.addAttribute("page",pagenum);
return "admin/admin-tags";
}
/**
*
* @param model
* @return
*/
@GetMapping("/tags/input")
public String toAddTag(Model model){
model.addAttribute("tag", new Tag()); //返回一个tag对象给前端th:object
return "admin/tags-input";
}
/**
*
* @param id
* @param model
* @return
*/
@GetMapping("/tags/{id}/input")
public String toEditTag(@PathVariable Long id, Model model){
model.addAttribute("tag", tagService.getTag(id));
return "admin/tags-input";
}
/**
*
* @param tag
* @param attributes
* @return
*/
@PostMapping("/addTags")
public String addTag(Tag tag, RedirectAttributes attributes){ //新增
Tag t = tagService.getTagByName(tag.getName());
if(t != null){
attributes.addFlashAttribute("msg", "模块已经存在");
return "redirect:/admin/tags/input";
}else {
attributes.addFlashAttribute("msg", "添加成功");
}
tagService.saveTag(tag);
return "redirect:/admin/tags"; //不能直接跳转到tags页面否则不会显示tag数据(没经过tags方法)
}
/**
*
* @param id
* @param attributes
* @return
*/
@GetMapping("/tags/{id}/delete")
public String delete(@PathVariable Long id, RedirectAttributes attributes){
tagService.deleteTag(id);
attributes.addFlashAttribute("msg", "删除成功");
return "redirect:/admin/tags";
}
/**
*
* @param id
* @param tag
* @param attributes
* @return
*/
@PostMapping("/tags/{id}")
public String editTag(@PathVariable Long id, Tag tag, RedirectAttributes attributes){ //修改
Tag t = tagService.getTagByName(tag.getName());
if(t != null){
attributes.addFlashAttribute("msg", "不能添加重复的标签");
return "redirect:/admin/tags/input";
}else {
attributes.addFlashAttribute("msg", "修改成功");
}
tagService.updateTag(tag);
return "redirect:/admin/tags"; //不能直接跳转到tags页面否则不会显示tag数据(没经过tags方法)
}
}

@ -0,0 +1,51 @@
package com.forum.controller.admin;
import com.forum.entity.Tag;
import com.forum.entity.User;
import com.forum.service.UserService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.util.List;
/**
* @author
* @date 2021/3/30 14:31
*/
@Controller
@RequestMapping("/admin")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/userAll")
public String listUser(@RequestParam(required = false,defaultValue = "1",value = "pagenum")int pagenum, Model model){
PageHelper.startPage(pagenum, 5);
List<User> allUser = userService.getAllUser();
//得到分页结果对象
PageInfo<User> pageInfo = new PageInfo<>(allUser);
model.addAttribute("pageInfo", pageInfo);
model.addAttribute("page",pagenum);
return "admin/user";
}
/**
*
* @param id
* @param attributes
* @return
*/
@GetMapping("/userAll/{id}/delete")
public String delete(@PathVariable Integer id, RedirectAttributes attributes){
userService.deleteUser(id);
attributes.addFlashAttribute("msg", "删除成功");
return "redirect:/admin/userAll";
}
}

@ -0,0 +1,4 @@
package com.forum.dao;
public interface AboutDao {
}

@ -0,0 +1,26 @@
package com.forum.dao;
import com.forum.entity.Comment;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface CommentDao {
//根据创建时间倒序来排
List<Comment> findByForumIdAndParentCommentNull(@Param("forumId") Long forumId, @Param("forumParentId") Long forumParentId);
//查询父级对象
Comment findByParentCommentId(@Param("parentCommentId")Long parentcommentid);
//添加一个评论
int saveComment(Comment comment);
List<Comment> getAllComment();
void delById(Integer id);
}

@ -0,0 +1,61 @@
package com.forum.dao;
import com.forum.entity.Forum;
import com.forum.entity.ForumAndTag;
import com.forum.entity.RankForum;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface ForumDao {
Forum getForum(Long id); //后台展示帖子
void updateView(Long id);
Forum getDetailedForum(@Param("id") Long id); //帖子详情
//获取所有帖子
List<Forum> getAllForum();
List<Forum> getByTypeId(Long typeId); //根据类型id获取帖子
List<Forum> getByTagId(Long tagId); //根据标签id获取帖子
List<Forum> getIndexForum(); //主页帖子展示
List<Forum> getAllRecommendForum(); //推荐帖子展示
List<Forum> getSearchForum(String query); //全局搜索帖子
List<Forum> searchAllForum(Forum forum); //后台根据标题、分类、推荐搜索帖子
List<String> findGroupYear(); //查询所有年份,返回一个集合
List<Forum> getForumTadIds();
List<Forum> findForumAndTagsByYear(@Param("year") String year);
int saveForum(Forum forum);
int saveForumAndTag(ForumAndTag forumAndTag);
int updateForum(Forum forum);
int deleteForum(Long id);
List<RankForum> findForumByRank();
List<RankForum> getNewForum();
// 点赞相关
Long getLike(Long id);
// void addLike(Long forumId);
// int getLikeByUser(Long userId,Long forumId);
// void addForum_Like(Long forumId,Long userId);
// void removeForum_Like(Long forumId,Long userId);
// void cancelLike(Long forumId);
int countView();
void addLike(Long id);
}

@ -0,0 +1,24 @@
package com.forum.dao;
import com.forum.entity.Link;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* @author
* @date 2021/3/30 15:51
*/
@Mapper
@Repository
public interface LinkDao {
public int deleteLink(Integer id);
int saveLink(Link link);
List<Link> getAllLink();
int countLink();
}

@ -0,0 +1,24 @@
package com.forum.dao;
import com.forum.entity.Message;
import com.forum.entity.Reply;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface MessageDao {
List<Message> findAllMessage();
List<Message> getIndexMessage();
void saveMessage(Message message);
void saveReplyMessage(Reply reply);
List<Message> findAll();
void deleteById(int id);
}

@ -0,0 +1,17 @@
package com.forum.dao;
import com.forum.entity.Notice;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
@Mapper
public interface NoticeDao {
public List<Notice> findAllNotice();
public void addNotices(Notice notice);
public void deleteNotice(int id);
int countNotice();
}

@ -0,0 +1,19 @@
package com.forum.dao;
import com.forum.entity.Reply;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* @author
* @date 2021/4/1 22:08
*/
@Repository
@Mapper
public interface ReplyDao {
List<Reply> findAll();
void del(int id);
}

@ -0,0 +1,36 @@
package com.forum.dao;
import com.forum.entity.Tag;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface TagDao {
/**
*
* @param tag
* @return
*/
int saveTag(Tag tag);
Tag getTag(Long id);
Tag getTagByName(String name);
Tag getTagById(int id);
List<Tag> getAllTag();
/**
*
* @return
*/
List<Tag> getForumTag();
int updateTag(Tag tag);
int deleteTag(Long id);
int countTag();
}

@ -0,0 +1,27 @@
package com.forum.dao;
import com.forum.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface UserDao {
// @Select("select * from t_user where username=#{username} and password=#{password}")
User queryByUsernameAndPassword(@Param("username") String username, @Param("password") String password);
void addUser(User user);
List<User> getAllUser();
int deleteUser(int id);
int count();
void update(String password, String username);
// User queryByUsernameAndPassword2(@Param("username") String username, @Param("password") String password);
}

@ -0,0 +1,40 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Comment {
private Long id;
private String username;
private String email;
private String content;
//是否为用户评论
private boolean userComment;
//头像
private String avatar;
private Date createTime;
private Long forumId;
private Long parentCommentId; //父评论id是為1
// private String parentNickname;
//回复评论
private List<Comment> replyComments = new ArrayList<>();
//是否是用户评论
private Comment parentComment;
private Forum forum;
}

@ -0,0 +1,67 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Forum {
private Long id;
private String title;
private String content;
private String avatars;
// 原创转载
private String flag;
private Integer views;
private boolean commentabled;
private Date createTime;
private Date updateTime;
private Long userId;
private String description;
private int like;
// private Admin admin;
private User user;
private List<Tag> tags = new ArrayList<>();
private List<Comment> comments = new ArrayList<>();
private String tagIds;
public void init(){
this.tagIds = tagsToIds(this.getTags());
}
//将tags集合转换为tagIds字符串形式“1,2,3”,用于编辑博客时显示博客的tag
private String tagsToIds(List<Tag> tags){
if(!tags.isEmpty()){
StringBuffer ids = new StringBuffer();
boolean flag = false;
for(Tag tag: tags){
if(flag){
ids.append(",");
}else {
flag = true;
}
ids.append(tag.getId());
}
return ids.toString();
}else {
return tagIds;
}
}
}

@ -0,0 +1,18 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 使
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class ForumAndTag {
private Long tagId;
private Long forumId;
}

@ -0,0 +1,23 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* @author
* @date 2021/3/30 15:29
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Link {
private Integer id;
private String name;
private String address;
private Date createTime;
}

@ -0,0 +1,23 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Message {
private int id;
private String content;
private String name;
private String msg_avatar;
private Date createTime;
List<Reply> replies;
}

@ -0,0 +1,13 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Notice {
private int id;
private String content;
}

@ -0,0 +1,15 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
//帖子排行封装
public class RankForum {
long id;
String title;
// int lank;
}

@ -0,0 +1,19 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Reply {
private int id;
private String names;
private int mes_id;
private String avatar;
private String content;
private Date createTime;
}

@ -0,0 +1,19 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Tag {
private Long id;
private String name;
// 标签页的时候可以查找该标签下所有blog
private List<Forum> forums = new ArrayList<>();
}

@ -0,0 +1,26 @@
package com.forum.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
private Long id;
private String username;
private String password;
private String email;
private String avatar;
private Integer type;
private Date createTime;
private Date updateTime;
private String school;
private List<Forum> forums = new ArrayList<>();
}

@ -0,0 +1,41 @@
package com.forum.exception;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
/**
* @author
* @date 2021/3/24 7:59
*controller
*/
@ControllerAdvice
public class ControllerExceptionHandler {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
@ExceptionHandler(Exception.class) //表示该方法可以处理所有类型异常
public ModelAndView exceptionHandler(HttpServletRequest request, Exception e) throws Exception {
//日志打印异常信息,{}占位符
logger.error("Request url: {}, Exception: {}", request.getRequestURI(), e);
//不处理带有ResponseStatus注解的异常
if (AnnotationUtils.findAnnotation(e.getClass(), ResponseStatus.class) != null) {
throw e;
}
//返回异常信息到自定义error页面
ModelAndView mv = new ModelAndView();
mv.addObject("url", request.getRequestURI());
mv.addObject("Exception", e);
mv.setViewName("error/error");
return mv;
}
}

@ -0,0 +1,25 @@
package com.forum.exception;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
/**
* @author
* @date 2021/3/24 7:59
*
*/
@ResponseStatus(HttpStatus.NOT_FOUND) //自定义NotFoundException异常,会跳转到404页面
public class NotFoundException extends RuntimeException {
public NotFoundException() {
super();
}
public NotFoundException(String message) {
super(message);
}
public NotFoundException(String message, Throwable cause) {
super(message, cause);
}
}

@ -0,0 +1,24 @@
package com.forum.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @author
* @date 2021/3/24 7:59
*
*/
public class LoginInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
if (request.getSession().getAttribute("admin") == null){
// 未登录,重定向到登录页面
response.sendRedirect("/admin");
return false;
}
return true;
}
}

@ -0,0 +1,18 @@
package com.forum.service;
import com.forum.entity.Comment;
import java.util.List;
public interface CommentService {
List<Comment> getCommentByForumId(Long forumId);
int saveComment(Comment comment);
List<Comment> getAllComment();
void delById(Integer id);
}

@ -0,0 +1,54 @@
package com.forum.service;
import com.forum.entity.Forum;
import com.forum.entity.RankForum;
import java.util.List;
import java.util.Map;
public interface ForumService {
void updateView(Long id);
Forum getForum(Long id); //后台展示论坛
Forum getDetailedForum(Long id); //前端展示论坛
List<Forum> getAllForum();
List<Forum> getByTypeId(Long typeId); //根据类型id获取论坛
List<Forum> getByTagId(Long tagId); //根据分类id获取论坛
List<Forum> getIndexForum(); //主页论坛展示
List<Forum> getAllRecommendForum(); //推荐论坛展示
List<Forum> getSearchForum(String query); //全局搜索论坛
Map<String,List<Forum>> archiveForum(); //归档论坛
int countForum(); //查询论坛条数
//新增论坛
int saveForum(Forum forum);
int updateForum(Forum forum);
int deleteForum(Long id);
List<Forum> searchAllForum(Forum forum); //后台根据标题、分类、推荐搜索论坛
//
List<RankForum> findForumByLank();
List<RankForum> getNewForum();
// Long getLike(Long id);
// void addLike(Long forumId,Long userId);
// int getLikeByUser(Long userId,Long forumId);
//
//// void removeForum_Like(Long forumId,Long userId);
// void cancelLike(Long forumId,Long userId);
int countView();
void addLike(Long id);
}

@ -0,0 +1,16 @@
package com.forum.service;
import com.forum.entity.Link;
import java.util.List;
public interface LinkService {
int saveLink(Link link);
List<Link> getAllLink();
int deleteLink(Integer id);
int countLink();
}

@ -0,0 +1,17 @@
package com.forum.service;
import com.forum.entity.Message;
import com.forum.entity.Reply;
import java.util.List;
public interface MessageService {
List<Message> findAllMessage();
List<Message> getIndexMessage();
void saveMessage(Message message);
void saveReplyMessage(Reply reply);
List<Message> findAll();
void deleteById(int id);
}

@ -0,0 +1,15 @@
package com.forum.service;
import com.forum.entity.Notice;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public interface NoticeService {
public List<Notice> findAllNotice();
public void addNotices(Notice notice);
public void deleteNotice(int id);
int countNotice();
}

@ -0,0 +1,11 @@
package com.forum.service;
import com.forum.entity.Reply;
import java.util.List;
public interface ReplyService {
public List<Reply> findAll();
void del(int id);
}

@ -0,0 +1,27 @@
package com.forum.service;
import com.forum.entity.Tag;
import java.util.List;
public interface TagService {
int saveTag(Tag tag);//执行新增模块
Tag getTag(Long id);
Tag getTagByName(String name);
Tag getTagById(int id);
List<Tag> getAllTag();
List<Tag> getForumTag(); //首页展示帖子类型
List<Tag> getTagByString(String text); //从字符串中获取tag集合
int updateTag(Tag tag);
int deleteTag(Long id);
int countTag();
}

@ -0,0 +1,19 @@
package com.forum.service;
import com.forum.entity.User;
import java.util.List;
public interface UserService {
public User checkUser(String username, String password);
void addUser(User user);
List<User> getAllUser();
int deleteUser(int id);
int count();
void update(String password, String username);
}

@ -0,0 +1,113 @@
package com.forum.service.impl;
import com.forum.dao.ForumDao;
import com.forum.dao.CommentDao;
import com.forum.entity.Comment;
import com.forum.service.CommentService;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@Service
public class CommentServiceImpl implements CommentService {
@Autowired
private CommentDao commentDao;
@Autowired
private ForumDao forumDao;
@Override
public List<Comment> getCommentByForumId(Long forumId) { //查询父评论
//没有父节点的默认为-1
List<Comment> comments = commentDao.findByForumIdAndParentCommentNull(forumId, Long.parseLong("-1"));
return comments;
}
@Override
//接收回复的表单
public int saveComment(Comment comment) {
//获得父id
Long parentCommentId = comment.getParentComment().getId();
System.out.println("是否是父评论"+parentCommentId);
comment.setAvatar("https://wallpaperm.cmcm.com/aab1692cf70ed27d9ebcf0ca3e88d61d.jpg");
//没有父级评论默认是-1
if (parentCommentId != -1) {
//有父级评论
// comment.setParentComment(commentDao.findByParentCommentId(comment.getParentCommentId()));
comment.setParentCommentId(parentCommentId);
} else {
//没有父级评论
comment.setParentCommentId((long) 0);
// comment.setParentComment(null);
}
comment.setCreateTime(new Date());
return commentDao.saveComment(comment);
}
@Override
public List<Comment> getAllComment() {
return commentDao.getAllComment();
}
@Override
public void delById(Integer id) {
commentDao.delById(id);
}
/**
* 1
*/
// private List<Comment> oneComment(List<Comment> comments){
// List<Comment> commentsView = new ArrayList<>();
// for (Comment comment : comments) {
// Comment comment1 = new Comment();
// BeanUtils.copyProperties(comment,comment1);
// commentsView.add(comment1);
//
// }
// combineChildren(commentsView);
// return commentsView;
// }
//
// /**
// * 存储帖子为1的对象集合
// * @param comments
// */
// private void combineChildren(List<Comment> comments) {
// for (Comment comment : comments) {
// List<Comment> replys1 = comment.getReplyComments();
// for (Comment reply1 : replys1) {
// recursively(reply1);
// }
// comment.setReplyComments(tempReplys);
// tempReplys = new ArrayList<>();
// }
// }
//private List<Comment> tempReplys =new ArrayList<>();
//
// /**
// * 迭代的对象
// * @param
// */
// private void recursively(Comment comment) {
// tempReplys.add(comment);
// if (comment.getReplyComments().size()>0){
// List<Comment> replys = comment.getReplyComments();
// for (Comment reply : replys) {
// tempReplys.add(reply);
// if (reply.getReplyComments().size()>0){
// recursively(reply);
// }
//
// }
// }
// }
}

@ -0,0 +1,244 @@
package com.forum.service.impl;
import com.forum.dao.ForumDao;
import com.forum.entity.*;
import com.forum.exception.NotFoundException;
import com.forum.service.ForumService;
import com.forum.service.TagService;
import com.forum.utils.MarkdownUtils;
//import com.forum.utils.RedisUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.*;
@Service
public class ForumServiceImpl implements ForumService {
@Autowired
ForumDao forumDao;
@Autowired
TagService tagService;
// @Autowired
// RedisUtil redisUtil;
private Boolean hasKey = false;
@Override
public void updateView(Long id) {
forumDao.updateView(id);
}
@Override
public Forum getForum(Long id) {
return forumDao.getForum(id);
}
@Override
public Forum getDetailedForum(Long id) {
Forum forum = forumDao.getDetailedForum(id);
if (forum == null) {
throw new NotFoundException("该帖子不存在");
}
String content = forum.getContent();
forum.setContent(MarkdownUtils.markdownToHtmlExtensions(content)); //将Markdown格式转换成html
return forum;
}
@Override
public List<Forum> getAllForum() {
return forumDao.getAllForum();
}
@Override
public List<Forum> getByTypeId(Long typeId) {
return forumDao.getByTypeId(typeId);
}
@Override
public List<Forum> getByTagId(Long tagId) {
return forumDao.getByTagId(tagId);
}
@Override
public List<Forum> getIndexForum() {
List<Forum> forums = forumDao.getIndexForum();
// int startPage=(pageNum-1)*5;
// List<Forum> forums= forumDao.getForumTadIds();
// System.out.println(forums.size());
// List<Tag> tags;
// for (Forum forum : forums) {
// tags=new ArrayList<>();
// for (TagIds id : forum.getTagsId()) {
// tags.add(tagService.getTagById(id.getTag_id()));
// }
// forum.setTags(tags);
//
// }
return forums;
}
@Override
public List<Forum> getAllRecommendForum() {
return forumDao.getAllRecommendForum();
}
@Override
public List<Forum> getSearchForum(String query) {
return forumDao.getSearchForum(query);
}
@Override
public Map<String, List<Forum>> archiveForum() {
List<String> years;
Map<String, List<Forum>> map = new LinkedHashMap<>();
years = forumDao.findGroupYear();
Set<String> set = new HashSet<>(years); //set去掉重复的年份
// 转回list进行排序
years = new ArrayList<>(set);
Collections.sort(years);
Collections.reverse(years);
// 遍历
for (String year : years) {
System.out.println(year);
map.put(year, findForumAndTagsByYear(year));
}
return map;
}
/*
*/
public List<Forum> findForumAndTagsByYear(String year) {
List<Forum> forumAndTagIds = forumDao.findForumAndTagsByYear(year);
// 将标签的id集合遍历查找出标签
List<Tag> tags;
for (Forum forumAndTagId : forumAndTagIds) {
tags = new ArrayList<>();
// System.out.println(tags.size());
forumAndTagId.setTags(tags);
}
return forumAndTagIds;
}
@Override
public int countForum() {
return forumDao.getAllForum().size();
}
@Override
public List<Forum> searchAllForum(Forum forum) {
return forumDao.searchAllForum(forum);
}
/**
*
*
* @return
*/
@Override
public List<RankForum> findForumByLank() {
List<RankForum> rankForums = new ArrayList<>();
rankForums = forumDao.findForumByRank();
return rankForums;
//
// }else {
// System.out.println("走REDIS---");
// return (List<RankForum>) redisUtil.get("rank");
//
// }
}
@Override
public List<RankForum> getNewForum() {
return forumDao.getNewForum();
}
// @Override
// public Long getLike(Long id) {
// return forumDao.getLike(id);
// }
// @Override
// public void addLike(Long forumId, Long userId) {
//// forumDao.addLike(forumId);
//// forumDao.addForum_Like(forumId, userId);
// System.out.println("执行插入Like_User");
//
// }
// @Override
// public int getLikeByUser(Long userId, Long forumId) {
// return forumDao.getLikeByUser(userId, forumId);
// }
// @Override
// public void cancelLike(Long forumId, Long userId) {
// forumDao.cancelLike(forumId);
// forumDao.removeForum_Like(forumId, userId);
// }
@Override
public int countView() {
return forumDao.countView();
}
@Override
public void addLike(Long id) {
forumDao.addLike(id);
}
@Override //新增帖子
public int saveForum(Forum forum) {
forum.setCreateTime(new Date());
forum.setViews(0);
// forum.setFlag("原创");
//保存帖子
forumDao.saveForum(forum);
//保存帖子后才能获取自增的id
Long id = forum.getId();
//将标签的数据存到t_forums_tag表中
List<Tag> tags = forum.getTags();
ForumAndTag forumAndTag = null;
for (Tag tag : tags) {
//新增时无法获取自增的id,在mybatis里修改
forumAndTag = new ForumAndTag(tag.getId(), id);
forumDao.saveForumAndTag(forumAndTag);
}
return 1;
}
@Override //编辑帖子
public int updateForum(Forum forum) {
forum.setUpdateTime(new Date());
//将标签的数据存到t_forums_tag表中
List<Tag> tags = forum.getTags();
ForumAndTag forumAndTag = null;
for (Tag tag : tags) {
forumAndTag = new ForumAndTag(tag.getId(), forum.getId());
forumDao.saveForumAndTag(forumAndTag);
}
return forumDao.updateForum(forum);
}
@Override
public int deleteForum(Long id) {
return forumDao.deleteForum(id);
}
}

@ -0,0 +1,43 @@
package com.forum.service.impl;
import com.forum.dao.LinkDao;
import com.forum.entity.Link;
import com.forum.service.LinkService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
/**
* @author
* @date 2021/3/30 15:32
*/
@Service
public class LinkServiceImpl implements LinkService
{
@Autowired
private LinkDao linkDao;
@Override
public int saveLink(Link link) {
link.setCreateTime(new Date());
return linkDao.saveLink(link);
}
@Override
public List<Link> getAllLink() {
return linkDao.getAllLink();
}
@Override
public int deleteLink(Integer id) {
return linkDao.deleteLink(id);
}
@Override
public int countLink() {
return linkDao.countLink();
}
}

@ -0,0 +1,57 @@
package com.forum.service.impl;
import com.forum.dao.MessageDao;
import com.forum.entity.Message;
import com.forum.entity.Reply;
import com.forum.service.MessageService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.Date;
import java.util.List;
@Component
public class MessageServiceImpl implements MessageService {
@Autowired
MessageDao messageDao;
@Override
public List<Message> findAllMessage() {
return messageDao.findAllMessage();
}
@Override
public List<Message> getIndexMessage() {
List<Message> messages=messageDao.getIndexMessage();
for (Message message : messages) {
if (message.getContent().length()>10)
message.setContent(message.getContent().substring(0,10)+"..");
}
return messages;
}
@Override
public void saveMessage(Message message) {
Date date=new Date();
message.setCreateTime(date);
messageDao.saveMessage(message);
}
@Override
public void saveReplyMessage(Reply reply) {
Date date=new Date();
reply.setCreateTime(date);
messageDao.saveReplyMessage(reply);
}
@Override
public List<Message> findAll() {
return messageDao.findAll();
}
@Override
public void deleteById(int id) {
messageDao.deleteById(id);
}
}

@ -0,0 +1,34 @@
package com.forum.service.impl;
import com.forum.dao.NoticeDao;
import com.forum.entity.Notice;
import com.forum.service.NoticeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class NoticeServiceImpl implements NoticeService {
@Autowired
private NoticeDao noticeDao;
@Override
public List<Notice> findAllNotice() {
return noticeDao.findAllNotice();
}
@Override
public void addNotices(Notice notice) {
noticeDao.addNotices(notice);
}
@Override
public void deleteNotice(int id) {
noticeDao.deleteNotice(id);
}
@Override
public int countNotice() {
return noticeDao.countNotice();
}
}

@ -0,0 +1,24 @@
package com.forum.service.impl;
import com.forum.dao.ReplyDao;
import com.forum.entity.Reply;
import com.forum.service.ReplyService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class ReplyServicImpl implements ReplyService {
@Autowired
ReplyDao replyDao;
@Override
public List<Reply> findAll() {
return replyDao.findAll();
}
@Override
public void del(int id) {
replyDao.del(id);
}
}

@ -0,0 +1,92 @@
package com.forum.service.impl;
import com.forum.dao.TagDao;
import com.forum.entity.Tag;
import com.forum.service.TagService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
@Service
public class TagServiceImpl implements TagService {
@Autowired
TagDao tagDao;
/**
*
* @param tag
* @return
*/
@Override
public int saveTag(Tag tag) {
return tagDao.saveTag(tag);
}
@Override
public Tag getTag(Long id) {
return tagDao.getTag(id);
}
@Override
public Tag getTagByName(String name) {
return tagDao.getTagByName(name);
}
@Override
public Tag getTagById(int id) {
return tagDao.getTagById(id);
}
@Override
public List<Tag> getAllTag() {
return tagDao.getAllTag();
}
/**
*
* @return
*/
@Override
public List<Tag> getForumTag() {
return tagDao.getForumTag();
}
@Override
public List<Tag> getTagByString(String text) { //从tagIds字符串中获取id根据id获取tag集合
List<Tag> tags = new ArrayList<>();
List<Long> longs = convertToList(text);
for (Long long1 : longs) {
tags.add(tagDao.getTag(long1));
}
return tags;
}
private List<Long> convertToList(String ids) { //把前端的tagIds字符串转换为list集合
List<Long> list = new ArrayList<>();
if (!"".equals(ids) && ids != null) {
String[] idarray = ids.split(",");
for (int i=0; i < idarray.length;i++) {
list.add(new Long(idarray[i]));
}
}
return list;
}
@Override
public int updateTag(Tag tag) {
return tagDao.updateTag(tag);
}
@Override
public int deleteTag(Long id) {
return tagDao.deleteTag(id);
}
@Override
public int countTag() {
return tagDao.countTag();
}
}

@ -0,0 +1,57 @@
package com.forum.service.impl;
import com.forum.dao.UserDao;
import com.forum.entity.User;
import com.forum.entity.User;
import com.forum.service.UserService;
import com.forum.utils.MD5;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
@Override
public User checkUser(String username, String password) {
User user = userDao.queryByUsernameAndPassword(username, MD5.code(password));
return user;
}
@Override
public void addUser(User user) {
user.setCreateTime(new Date());
user.setUpdateTime(new Date());
user.setType(0);
user.setAvatar("https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=3892165108,471848507&fm=26&gp=0.jpg");
System.out.println(user);
userDao.addUser(user);
}
@Override
public List<User> getAllUser() {
return userDao.getAllUser();
}
@Override
public int deleteUser(int id) {
return userDao.deleteUser(id);
}
@Override
public int count() {
return userDao.count();
}
@Override
public void update(String password, String username) {
userDao.update(password,username);
}
}

@ -0,0 +1,8 @@
package com.forum.utils;
/**
* @author
* @date 2021/4/16 20:18
*/
public class FileUtils {
}

@ -0,0 +1,46 @@
package com.forum.utils;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* @author
* @date 2021/3/26 23:35
*/
public class MD5 {
/**
* MD5
* @param str
* @return
*/
public static String code(String str){
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.update(str.getBytes());
byte[]byteDigest = md.digest();
int i;
StringBuffer buf = new StringBuffer("");
for (int offset = 0; offset < byteDigest.length; offset++) {
i = byteDigest[offset];
if (i < 0)
i += 256;
if (i < 16)
buf.append("0");
buf.append(Integer.toHexString(i));
}
//32位加密
return buf.toString();
// 16位的加密
//return buf.toString().substring(8, 24);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}
public static void main(String[] args) {
System.out.println(code("123456"));
}
}

@ -0,0 +1,88 @@
package com.forum.utils;
import org.commonmark.Extension;
import org.commonmark.ext.gfm.tables.TableBlock;
import org.commonmark.ext.gfm.tables.TablesExtension;
import org.commonmark.ext.heading.anchor.HeadingAnchorExtension;
import org.commonmark.node.Link;
import org.commonmark.node.Node;
import org.commonmark.parser.Parser;
import org.commonmark.renderer.html.AttributeProvider;
import org.commonmark.renderer.html.AttributeProviderContext;
import org.commonmark.renderer.html.AttributeProviderFactory;
import org.commonmark.renderer.html.HtmlRenderer;
import java.util.*;
/**
* @author
* @date 2021/3/24 7:59
*/
public class MarkdownUtils {
/**
* markdownHTML
* @param markdown
* @return
*/
public static String markdownToHtml(String markdown) {
Parser parser = Parser.builder().build();
Node document = parser.parse(markdown);
HtmlRenderer renderer = HtmlRenderer.builder().build();
return renderer.render(document);
}
/**
* []
* MarkdownHTML
* @param markdown
* @return
*/
public static String markdownToHtmlExtensions(String markdown) {
//h标题生成id
Set<Extension> headingAnchorExtensions = Collections.singleton(HeadingAnchorExtension.create());
//转换table的HTML
List<Extension> tableExtension = Arrays.asList(TablesExtension.create());
Parser parser = Parser.builder()
.extensions(tableExtension)
.build();
Node document = parser.parse(markdown);
HtmlRenderer renderer = HtmlRenderer.builder()
.extensions(headingAnchorExtensions)
.extensions(tableExtension)
.attributeProviderFactory(new AttributeProviderFactory() {
public AttributeProvider create(AttributeProviderContext context) {
return new CustomAttributeProvider();
}
})
.build();
return renderer.render(document);
}
/**
*
*/
static class CustomAttributeProvider implements AttributeProvider {
@Override
public void setAttributes(Node node, String tagName, Map<String, String> attributes) {
//改变a标签的target属性为_blank
if (node instanceof Link) {
attributes.put("target", "_blank");
}
if (node instanceof TableBlock) {
attributes.put("class", "ui celled table");
}
}
}
public static void main(String[] args) {
String table = "| hello | hi | 哈哈哈 |\n" +
"| ----- | ---- | ----- |\n" +
"| 斯维尔多 | 士大夫 | f啊 |\n" +
"| 阿什顿发 | 非固定杆 | 撒阿什顿发 |\n" +
"\n";
String a = "[imCoding 爱编程](http://www.lirenmi.cn)";
System.out.println(markdownToHtmlExtensions(a));
}
}

@ -0,0 +1,26 @@
server:
port: 9999
#thymeleaf start
spring:
thymeleaf:
prefix: classpath:/templates/
mode: LEGACYHTML5
encoding: UTF-8
content-type: text/html
cache: false
suffix: .html
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost/forum?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
username: root
password: 13Gmy1848.
#mapper映射文件
mybatis:
mapper-locations: classpath:/mapper/*.xml #mapper映射文件路径
type-aliases-package: com.forum.entity
configuration:
map-underscore-to-camel-case: true

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.CommentDao">
<resultMap id="comment" type="Comment">
<id property="id" column="cid"/>
<result property="username" column="username"/>
<result property="email" column="email"/>
<result property="content" column="content"/>
<result property="userComment" column="usercomment"/>
<result property="avatar" column="avatar"/>
<result property="createTime" column="create_time"/>
<result property="forumId" column="forum_id"/>
<association property="forum" javaType="Forum">
<id property="id" column="id"/>
</association>
</resultMap>
<delete id="delById">
delete from comment where id=#{id}
</delete>
<select id="findByForumIdAndParentCommentNull" resultMap="comment">
select c.id cid,c.username,c.email,c.content,c.avatar,
c.create_time,c.forum_id,c.parent_comment_id
from comment c, forum b
where c.forum_id = b.id and c.forum_id = #{forumId}
order by c.create_time desc
</select>
<insert id="saveComment" parameterType="Comment">
insert into comment (username,email,content,avatar,
create_time,forum_id,parent_comment_id, usercomment)
values (#{username},#{email},#{content},#{avatar},
#{createTime},#{forumId},#{parentCommentId}, #{userComment});
</insert>
<select id="findByParentCommentId" resultMap="comment">
select c.id cid, c.username, c.email, c.content, c.avatar,
c.create_time, c.forum_id, c.parent_comment_id
from comment c
where c.parent_comment_id = #{parentCommentId}
</select>
<select id="getAllComment" resultType="com.forum.entity.Comment">
select id,username,email,content,create_time from comment
</select>
</mapper>

@ -0,0 +1,202 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.ForumDao">
<resultMap id="forum" type="Forum">
<id property="id" column="id"/>
<result property="title" column="title"/>
<result property="content" column="content"/>
<result property="flag" column="flag"/>
<result property="views" column="views"/>
<result property="updateTime" column="update_time"/>
<result property="avatars" column="avatars"/>
<result property="commentabled" column="commentabled"/>
<result property="description" column="description"/>
<result property="createTime" column="create_time"/>
<result property="userId" column="user_id"/>
<result property="like" column="like"/>
<result property="tagIds" column="tag_ids"/>
<association property="user" javaType="User">
<id property="id" column="uid"/>
<result property="nickname" column="nickname"/>
<result property="username" column="username"/>
<result property="email" column="email"/>
<result property="avatar" column="avatar"/>
</association>
<collection property="tags" ofType="Tag">
<id property="id" column="tagid"/>
<result property="name" column="tagname"/>
</collection>
<!-- <collection property="tagsId" ofType="tagIds">-->
<!-- <result property="tag_id" column="tag_id"/>-->
<!-- </collection>-->
</resultMap>
<resultMap id="ForumAndIds" type="forum">
<id property="id" column="id"/>
<result property="title" column="title"/>
<result property="updateTime" column="update_time"/>
<!-- <collection property="tagsId" ofType="tagIds">-->
<!-- <result property="tag_id" column="tag_id"/>-->
<!-- </collection>-->
</resultMap>
<delete id="deleteForum">
delete from forum where id = #{id}
</delete>
<select id="getIndexForum" resultMap="forum"> /*主页帖子展示*/
select b.id, b.title, b.avatars,b.flag, b.views, b.create_time, b.description,b.like,
a.username, a.avatar
from forum b,user a
where a.id = b.user_id order by b.create_time desc
</select>
<select id="getForumTadIds" resultMap="forum"> /*主页帖子展示*/
select b.id, b.title, b.avatars, b.views, b.update_time, b.description,b.like,
a.username, a.avatar,
bt.tag_id
from user a,forum b
left join forum_tags bt on b.id=bt.forum_id
where a.id = b.user_id
-- order by b.update_time desc
-- 0.0.
-- 0
</select>
<select id="getAllForum" resultMap="forum"> /*后台帖子展示*/
select b.id, b.title, b.create_time, b.commentabled
from forum b order by b.create_time desc
</select>
<select id="getByTagId" resultMap="forum">
select b.id, b.title,b.flag, b.avatars, b.views, b.update_time, b.description,
t1.name tagname, t1.id tagid,
a.username, a.avatar
from forum b, user a, forum_tags tb, tag t1
where a.id = b.user_id and tb.forum_id = b.id and tb.tag_id = t1.id and t1.id = #{tagId}
order by b.update_time desc
</select>
<select id="getForum" resultMap="forum"> /*后台展示帖子*/
select b.id, b.flag, b.title, b.content,
b.tag_ids, b.avatars, b.description, b.commentabled
from forum b where b.id = #{id};
</select>
<select id="getDetailedForum" resultMap="forum"> /*帖子详情*/
select b.id, b.avatars, b.flag, b.title, b.content, b.views,
b.commentabled,b.like,a.username, a.avatar,tag.id tagid, tag.name tagname
from forum b, user a, tag tag, forum_tags tb
where b.user_id = a.id and tb.forum_id = b.id and tb.tag_id = tag.id and b.id = #{id}
</select>
<select id="getSearchForum" resultMap="forum">
<bind name="pattern" value="'%' + query + '%'"/>
select b.id, b.title, b.avatars, b.views, b.create_time, b.description,b.like,
a.username, a.avatar
from forum b, user a
where a.id = b.user_id and (b.title like #{pattern} or b.content like #{pattern})
order by b.create_time desc
</select>
<select id="searchAllForum" parameterType="Forum" resultMap="forum">
<bind name="pattern" value="'%' + title + '%'"/>
/*模糊查询*/
select b.id, b.title, b.update_time, b.published, t.id, t.name
from forum b where b.title like #{pattern}
</select>
<update id="updateForum" parameterType="Forum">
update forum set flag = #{flag} ,
title = #{title}, content = #{content}, tag_ids = #{tagIds},
avatars = #{avatars} , description = #{description} ,
commentabled = #{commentabled} ,update_time = #{updateTime} where id = #{id};
</update>
<update id="updateView">
update forum b set b.views=b.views+1 where id=#{id};
</update>
<!--useGeneratedKeys="true";使用自增主键获取主键值策略
keyProperty指定对应的主键属性也就是mybatis获取到主键值以后将这个值封装给javaBean的哪个属性
-->
<insert id="saveForum" parameterType="Forum" useGeneratedKeys="true" keyProperty="id">
insert into forum (title, content, avatars, flag,
views, commentabled, create_time, update_time, tag_ids, user_id, description)
values (#{title}, #{content}, #{avatars}, #{flag}, #{views}, #{commentabled}, #{createTime},
#{updateTime}, #{tagIds}, #{userId}, #{description});
</insert>
<insert id="saveForumAndTag" parameterType="ForumAndTag">
insert into forum_tags (tag_id, forum_id) values (#{tagId},#{forumId});
</insert>
<select id="findGroupYear" resultType="String">
select DATE_FORMAT(b.updateTime, '%Y') from forum b
</select>
<!-- 查找所有月份月份-->
<select id="findGroupMonth" resultType="String">
select DATE_FORMAT(b.update_time, '%M') from forum b order by b.update_time desc
</select>
<!-- 把所有文章下的标签id查询出来-->
<select id="findForumAndTagsByYear" resultMap="ForumAndIds">
select b.title, b.id,b.update_time,
bt.tag_id
from forum b
left join forum_tags bt on b.id=bt.forum_id
where DATE_FORMAT(b.update_time, "%Y") = #{year} order by b.update_time desc;
</select>
<!-- 按年份+月份查找-->
<select id="findByMonth" resultMap="forum">
select b.title, b.update_time, b.id, b.flag
from forum b
where DATE_FORMAT(b.update_time, "%Y%M") = #{month}
</select>
<!--最热推荐-->
<select id="findForumByRank" resultType="rankForum">
select b.title,b.id from forum b order by b.views desc limit 0,3
</select>
<!--最新推荐-->
<select id="getNewForum" resultType="rankForum">
select b.title,b.id from forum b order by b.create_time desc limit 0,3
</select>
<select id="getLike" resultType="Long">
select b.like from forum b where b.id=#{id}
</select>
<update id="addLike" >
update forum b set b.like=b.like+1 where b.id=#{id}
</update>
<select id="countView" resultType="java.lang.Integer">
select count(views) from forum
</select>
<delete id="cancelLike">
update forum b set b.like=b.like-1 where b.id=#{forumId}
</delete>
</mapper>

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.LinkDao">
<insert id="saveLink" parameterType="Link">
insert into link(name ,address,create_time) values (#{name},#{address},#{createTime});
</insert>
<delete id="deleteLink">
delete from link where id = #{id}
</delete>
<select id="getAllLink" resultType="Link">
select id,name,address,create_time from link
</select>
<select id="countLink" resultType="java.lang.Integer">
select count(*) from link
</select>
</mapper>

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.MessageDao">
<resultMap id="messages" type="message">
<id property="id" column="id"/>
<result property="content" column="content"/>
<result property="name" column="name"/>
<result property="msg_avatar" column="msg_avatar"/>
<result property="createTime" column="create_time"/>
<collection property="replies" ofType="reply">
<id property="id" column="rid"/>
<result property="content" column="con"/>
<!-- <result property="reply_name" column="reply_name"/>-->
<result property="names" column="names"/>
<result property="createTime" column="ctime"/>
<result property="avatar" column="avatar"/>
<result property="mes_id" column="mes_id"/>
</collection>
</resultMap>
<delete id="deleteById">
delete from message where id=#{id}
</delete>
<select id="findAllMessage" resultMap="messages">
select m.*,
r.id rid,
r.content con,
r.names names,
r.create_time ctime,
r.avatar,
r.mes_id
from message m left join reply r on r.mes_id=m.id
order by m.create_time desc
</select>
<select id="getIndexMessage" resultMap="messages">
select m.*
from message m
order by m.create_time desc
limit 0,6
</select>
<select id="findAll" resultType="com.forum.entity.Message">
select id,content,name, create_time from message
</select>
<insert id="saveMessage" parameterType="message">
insert into message (content,name,create_time,msg_avatar)
values (#{content},#{name},#{createTime},#{msg_avatar})
</insert>
<insert id="saveReplyMessage" parameterType="reply">
insert into reply (content,names,create_time,mes_id,avatar)
values (#{content},#{names},#{createTime},#{mes_id},#{avatar})
</insert>
</mapper>

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.NoticeDao">
<select id="findAllNotice" resultType="notice">
select * from notice
</select>
<select id="countNotice" resultType="java.lang.Integer">
select count(*) from notice
</select>
<insert id="addNotices" parameterType="notice">
insert into notice(content) values(#{content})
</insert>
<delete id="deleteNotice" parameterType="int">
delete from notice where id=#{id}
</delete>
</mapper>

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.ReplyDao">
<delete id="del">
delete from reply where id=#{id}
</delete>
<select id="findAll" resultType="com.forum.entity.Reply">
select id,content,names ,create_time from reply
</select>
</mapper>

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.TagDao">
<select id="getTag" resultType="Tag">
select id,name from tag where id = #{id}
</select>
<insert id="saveTag" parameterType="Tag">
insert into tag values (#{id},#{name});
</insert>
<!--两个id可能会相冲取别名即可-->
<resultMap id="tags" type="Tag">
<id property="id" column="tid"/>
<result property="name" column="name"/>
<collection property="forums" ofType="Forum">
<id property="id" column="bid"/>
<result property="title" column="title"/>
</collection>
</resultMap>
<select id="getAllTag" resultType="com.forum.entity.Tag">
select * from tag
</select>
<select id="getForumTag" resultMap="tags">
select t.id tid, t.name, b.id bid, b.title
from tag t, forum b, forum_tags bt
where t.id = bt.tag_id and b.id = bt.forum_id
</select>
<select id="getTagByName" resultType="Tag">
select * from tag where name = #{name}
</select>
<select id="getTagById" resultType="Tag">
select * from tag where id = #{id}
</select>
<select id="countTag" resultType="java.lang.Integer">
select count(*) from tag
</select>
<delete id="deleteTag">
delete from tag where id = #{id}
</delete>
<update id="updateTag" parameterType="Tag">
update tag set name = #{name} where id = #{id};
</update>
</mapper>

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.forum.dao.UserDao">
<update id="update">
update user set password=#{password} where username=#{username}
</update>
<select id="queryByUsernameAndPassword" resultType="com.forum.entity.User">
select * from user
where username = #{username} and password = #{password};
</select>
<insert id="addUser" parameterType="user">
insert into user(username,password,email,create_time,update_time,type,school,avatar)
values(#{username},#{password},#{email},#{createTime},#{updateTime},#{type},#{school},#{avatar})
</insert>
<select id="getAllUser" resultType="com.forum.entity.User">
select id,username,password,email,create_time,type from user
</select>
<delete id="deleteUser" >
delete from user where id = #{id}
</delete>
<select id="count" resultType="Integer" >
select count(*) from user where type = 0
</select>
</mapper>

@ -0,0 +1,16 @@
@font-face {
font-family: 'iconfont';
src: url('../fonts/iconfont.eot');
src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/iconfont.woff') format('woff'),
url('../fonts/iconfont.ttf') format('truetype'),
url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont{
font-family:"iconfont" !important;
font-size:16px;font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}

@ -0,0 +1,105 @@
/*
* @Author: xuebingsi
* @Date: 2019-04-01 13:37:17
* @Last Modified by: zhibinm
* @Last Modified time: 2019-04-01 13:37:19
*/
.login-bg{
/*background: #eeeeee url() 0 0 no-repeat;*/
background:url(../images/bg.png) no-repeat center;
background-size: cover;
overflow: hidden;
}
.login{
margin: 120px auto 0 auto;
min-height: 420px;
max-width: 420px;
padding: 40px;
background-color: #ffffff;
margin-left: auto;
margin-right: auto;
border-radius: 4px;
/* overflow-x: hidden; */
box-sizing: border-box;
}
.login a.logo{
display: block;
height: 58px;
width: 167px;
margin: 0 auto 30px auto;
background-size: 167px 42px;
}
.login .message {
margin: 10px 0 0 -58px;
padding: 18px 10px 18px 60px;
background: #189F92;
position: relative;
color: #fff;
font-size: 16px;
}
.login #darkbannerwrap {
background: url(../images/aiwrap.png);
width: 18px;
height: 10px;
margin: 0 0 20px -58px;
position: relative;
}
.login input[type=text],
.login input[type=file],
.login input[type=password],
.login input[type=email], select {
border: 1px solid #DCDEE0;
vertical-align: middle;
border-radius: 3px;
height: 50px;
padding: 0px 16px;
font-size: 14px;
color: #555555;
outline:none;
width:100%;
box-sizing: border-box;
}
.login input[type=text]:focus,
.login input[type=file]:focus,
.login input[type=password]:focus,
.login input[type=email]:focus, select:focus {
border: 1px solid #27A9E3;
}
.login input[type=submit],
.login input[type=button]{
display: inline-block;
vertical-align: middle;
padding: 12px 24px;
margin: 0px;
font-size: 18px;
line-height: 24px;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
color: #ffffff;
background-color: #189F92;
border-radius: 3px;
border: none;
-webkit-appearance: none;
outline:none;
width:100%;
}
.login hr {
background: #fff url("#") 0 0 no-repeat;
}
.login hr.hr15 {
height: 15px;
border: none;
margin: 0px;
padding: 0px;
width: 100%;
}
.login hr.hr20 {
height: 20px;
border: none;
margin: 0px;
padding: 0px;
width: 100%;
}

@ -0,0 +1,21 @@
body{
background:#F2F1F2;
}
.container{
background:#1A1B20;
}
.left-nav{
background:#1A1B20;
}
.left-nav a{
color:rgba(255,255,255,.7);
}
.left-nav a.active{
background: #009688 !important;
color: #fff;
}
.left-nav a:hover{
background: #009688 !important;
color: #fff;
}

@ -0,0 +1,21 @@
body{
background:#EEF5F9;
}
.container{
background:#323640;
}
.left-nav{
background:#fff;
}
.left-nav a{
color:#686a76;
}
.left-nav a.active{
background: #786AED !important;
color: #fff;
}
.left-nav a:hover{
background: #786AED !important;
color: #fff;
}

@ -0,0 +1,22 @@
body{
background:#E8E8E8;
}
.container{
background:#F34743;
}
.left-nav{
background:#F4F4F4;
}
.left-nav a{
color:#686a76;
}
.left-nav a.active{
background: #FEFEFE !important;
color: #F34743;
}
.left-nav a:hover{
background: #FEFEFE !important;
color: #F34743;
}

@ -0,0 +1,21 @@
body{
background:#E4E4E4;
}
.container{
background:#019587;
}
.left-nav{
background:#263035;
}
.left-nav a{
color:#fff;
}
.left-nav a.active{
background: #212525 !important;
color: #fff !important;
}
.left-nav a:hover{
background: #212525 !important;
color: #fff !important;
}

@ -0,0 +1,27 @@
body{
background:#EEF5F9 !important;
}
.container{
background:linear-gradient(to left, #7b4397, #2196f3);
}
.left-nav{
background:#fff !important;
}
.left-nav a{
color:#686a76 !important;
}
.left-nav a.active{
background: linear-gradient(to left, #7c8ce4, #2196f3) !important;
color: #fff !important;
border-color: #7b4397 !important;
}
.left-nav a:hover{
background: linear-gradient(to left, #7c8ce4, #2196f3) !important;
color: #fff !important;
border-color: #7b4397 !important;
}
.container .logo a{
background: rgba(0,0,0,0) !important;
}

@ -0,0 +1,534 @@
@charset "utf-8";
@import url(../layui/css/layui.css);
*{
margin: 0px;
padding: 0px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a{
text-decoration: none;
}
html{
width: 100%;
height: 100%;
overflow-x:hidden;
overflow-y:auto;
}
body{
width: 100%;
min-height: 100%;
background: #f1f1f1;
/*background: #fff;*/
}
.x-red{
color: red;
}
.layui-form-switch{
margin-top: 0px;
}
.layui-input:focus, .layui-textarea:focus {
border-color: #189f92!important;
}
.layui-fluid{
padding:15px;
}
.x-nav{
padding: 0 20px;
position: relative;
z-index: 99;
border-bottom: 1px solid #e5e5e5;
line-height: 39px;
height: 39px;
overflow: hidden;
background: #fff;
}
.page{
text-align: center;
}
.page a{
display: inline-block;
background: #fff;
color: #888;
padding: 5px;
min-width: 15px;
border: 1px solid #E2E2E2;
}
.page span{
display: inline-block;
padding: 5px;
min-width: 15px;
border: 1px solid #E2E2E2;
}
.page span.current{
display: inline-block;
background: #009688;
color: #fff;
padding: 5px;
min-width: 15px;
border: 1px solid #009688;
}
.page .pagination li{
display: inline-block;
margin-right: 5px;
text-align: center;
}
.page .pagination li.active span{
background: #009688;
color: #fff;
border: 1px solid #009688;
}
/*登录样式*/
/*头部*/
.container{
width: 100%;
height: 45px;
background-color: #222;
}
.container a,.layui-nav .layui-nav-item a{
color: #fff;
}
.container .logo a{
background-color: rgba(0,0,0,0);
}
.container .logo a{
float: left;
font-size: 18px;
padding-left: 20px;
line-height: 45px;
width: 200px;
}
.container .right{
background-color:rgba(0,0,0,0);
float: right;
}
.container .left_open{
height: 45px;
float: left;
margin-left: 10px;
}
.container .left_open i{
display: block;
background: rgba(255,255,255,0.1);
width: 32px;
height: 32px;
line-height: 32px;
border-radius: 3px;
text-align: center;
margin-top: 7px;
cursor: pointer;
}
.container .left_open i:hover{
background: rgba(255,255,255,0.3);
}
.container .left{
background-color:rgba(0,0,0,0);
float: left;
}
.container .layui-nav-item{
line-height: 45px;
}
.container .layui-nav-more{
top: 20px;
}
.container .layui-nav-child{
top: 50px;
}
.container .layui-nav-child i{
margin-right: 10px;
}
.layui-nav .layui-nav-item a{
cursor: pointer;
}
.layui-nav .layui-nav-child a{
color: #333;
cursor: pointer;
}
.left-nav{
position: absolute;
top: 45px;
bottom: 0px;
/*bottom: 42px;*/
left: 0;
z-index: 2;
padding-top: 10px;
background-color: #EEEEEE;
width: 220px;
max-width: 220px;
overflow: auto;
overflow-x:hidden;
overflow: hidden;
/*width: 0px;*/
}
#side-nav{
width: 220px;
}
.left-nav #nav li:hover > a{
/*color: blue;*/
}
.left-nav #nav .current{
background-color: rgba(0, 0, 0, 0.3);
}
.left-nav #nav li a{
font-size: 14px;
padding: 10px 15px 10px 15px;
display: block;
cursor: pointer;
border-left: 4px solid transparent;
transition: all 0.3s;
}
.left-nav a:hover{
background: #009688 !important;
color: #fff;
border-color: #04564e !important;
}
.left-nav a.active{
background: #009688 !important;
color: #fff;
border-color: #04564e !important;
}
.left-nav #nav li a cite{
font-size: 14px;
}
.left-nav #nav li .sub-menu{
display: none;
}
.left-nav #nav li .opened{
display: block;
}
.left-nav #nav li .opened:hover{
/*background: #fff ;*/
}
.left-nav #nav li .opened .current{
}
.left-nav #nav li .sub-menu li:hover{
/*color: blue;*/
/*background: #fff ;*/
}
.left-nav #nav li .sub-menu li a{
padding: 12px 15px 12px 30px;
font-size: 14px;
cursor: pointer;
}
.left-nav #nav li .sub-menu li .sub-menu li a{
padding-left: 45px;
}
/*.left-nav #nav li .sub-menu li a:hover{
color: #148cf1;
}*/
.left-nav #nav li .sub-menu li a i{
font-size: 12px;
}
.left-nav #nav li a i{
padding-right: 10px;
line-height: 14px;
}
.left-nav #nav li .nav_right{
float: right;
font-size: 16px;
}
.x-slide_left {
width: 17px;
height: 61px;
background: url(../images/icon.png) 0 0 no-repeat;
position: absolute;
top: 200px;
left: 220px;
cursor: pointer;
z-index: 3;
}
.page-content{
position: absolute;
top: 45px;
right: 0;
/*bottom: 42px;*/
bottom: 0px;
left: 220px;
overflow: hidden;
z-index: 1;
}
.page-content-bg{
position: absolute;
top: 45px;
right: 0;
/*bottom: 42px;*/
bottom: 0px;
left: 220px;
background: rgba(0,0,0,0.5);
overflow: hidden;
z-index: 100;
display: none;
}
.page-content .tab{
height: 100%;
width: 100%;
/*background: #EFEEF0;*/
margin: 0px;
}
.page-content .layui-tab-title{
/*padding-top: 5px;*/
height: 35px;
background: #EFEEF0 ;
position: relative;
z-index: 100;
}
.page-content .layui-tab-title li.home i{
padding-right: 5px;
}
.page-content .layui-tab-title li.home .layui-tab-close{
display: none;
}
.page-content .layui-tab-title li{
line-height: 35px;
}
.page-content .layui-tab-title .layui-this:after{
height: 36px;
}
.page-content .layui-tab-title li .layui-tab-close{
border-radius: 50%;
}
.page-content .layui-tab-title .layui-this{
background: #fff ;
}
.page-content .layui-tab-bar{
height:34px;
line-height: 35px;
}
.page-content .layui-tab-content{
position: absolute;
top: 36px;
bottom: 0px;
width: 100%;
padding: 0px;
overflow: hidden;
}
.page-content .layui-tab-content .layui-tab-item{
width: 100%;
height: 100%;
}
.page-content .layui-tab-content .layui-tab-item iframe{
width: 100%;
height: 100%;
}
.x-admin-carousel,.layui-carousel,.x-admin-carousel>[carousel-item]>* {
background-color:#fff
}
.x-admin-backlog .x-admin-backlog-body {
display:block;
padding:10px 15px;
background-color:#f8f8f8;
color:#999;
border-radius:2px;
transition:all .3s;
-webkit-transition:all .3s
}
.x-admin-backlog-body h3 {
padding-bottom:10px;
font-size:12px
}
.x-admin-backlog-body p cite {
font-style:normal;
font-size:30px;
font-weight:300;
color:#009688
}
.x-admin-backlog-body:hover {
background-color:#CFCFCF;
color:#888
}
.layui-table td, .layui-table th{
min-width: 80px;
}
table th, table td {
word-break: break-all;
}
/*404页面样式*/
.fly-panel {
margin-bottom: 15px;
border-radius: 2px;
/*background-color: #fff;*/
box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}
.fly-none {
min-height: 600px;
text-align: center;
padding-top: 50px;
color: #999;
}
.fly-none .layui-icon {
line-height: 300px;
font-size: 300px;
color: #393D49;
}
.fly-none p {
margin-top: 50px;
padding: 0 15px;
font-size: 20px;
color: #999;
font-weight: 300;
}
#tab_right{
display: none;
width: 80px;
position: absolute;
top: 35px;
left: 0px;
}
#tab_right dl{
top: 0px;
}
#tab_show{
position: absolute;
top: 36px;
bottom: 0px;
width: 100%;
background:rgb(255, 255, 255,0);
padding: 0px;
overflow: hidden;
display: none;
}
@media screen and (max-width: 768px){
.fast-add{
display: none;
}
.layui-nav .to-index{
display: none;
}
.container .logo a{
width: 140px;
}
.container .left_open {
/*float: right;*/
}
.left-nav{
width: 60px;
}
.left-nav #nav li a i{
font-size: 18px;
}
.left-nav cite,.left-nav .nav_right{
display: none;
}
.page-content{
left: 60px;
}
.page-content .layui-tab-content .layui-tab-item{
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
}
.x-so input.layui-input{
width: 100%;
margin: 10px;
}
}
/*精细版样式*/
.x-admin-sm{
font-size: 12px;
}
.x-admin-sm body{
font-size: 12px;
}
/*登录页面样式*/
.x-admin-sm .login input[type=submit],.x-admin-sm .login input[type=button]{
font-size: 14px;
}
.x-admin-sm .login input[type=text],
.x-admin-sm .login input[type=file],
.x-admin-sm .login input[type=password],
.x-admin-sm .login input[type=email], .x-admin-sm select {
font-size: 12px;
}
.x-admin-sm .login .message{
font-size: 14px;
}
.x-admin-sm .layui-table td, .x-admin-sm .layui-table th{
font-size: 12px;
}
.x-admin-sm .layui-elem-field legend{
font-size: 18px;
}
.x-admin-sm .x-admin-backlog-body p cite{
font-size: 24px;
}
.x-admin-sm .left-nav #nav li a cite{
font-size: 12px;
}
.x-admin-sm .iconfont{
font-size: 14px;
}
.x-admin-sm .layui-tab-title li{
font-size: 12px;
}
.x-admin-sm .layui-icon{
font-size: 14px;
}
.x-admin-sm .layui-nav *{
font-size: 12px;
}
.x-admin-sm .layui-breadcrumb>*{
font-size: 12px;
}
.x-admin-sm .layui-btn,.x-admin-sm .layui-btn-xs,.x-admin-sm .layui-btn-sm{
font-size: 12px;
}
.x-admin-sm .layui-laydate{
font-size: 12px;
}
.x-admin-sm .layui-btn{
height: 30px;
line-height: 30px;
padding: 0 10px;
}
.x-admin-sm .layui-btn-lg{
height: 38px;
line-height: 38px;
padding: 0 18px;
font-size: 14px;
}
.x-admin-sm .layui-layer-title,.x-admin-sm .layui-layer-dialog .layui-layer-content{
font-size: 12px;
}
.x-admin-sm .layui-input,.x-admin-sm .layui-select,.x-admin-sm .layui-textarea{
height: 30px;
}
.x-admin-sm .layui-form-pane .layui-form-label{
height: 30px;
line-height: 14px;
}
.x-admin-sm .layui-form-checkbox span{
font-size: 12px;
}
.x-admin-sm .fly-none .layui-icon {
line-height: 300px;
font-size: 300px;
color: #393D49;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 315 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

@ -0,0 +1,584 @@
;!function (win) {
"use strict";
var doc = document
,Xadmin = function(){
this.v = '2.2'; //版本号
}
Xadmin.prototype.init = function() {
var tab_list = this.get_data();
for(var i in tab_list){
this.add_lay_tab(tab_list[i].title,tab_list[i].url,i);
}
element.tabChange('xbs_tab', i);
};
/**
* [end 执行结束要做的]
* @return {[type]} [description]
*/
Xadmin.prototype.end = function() {
var cate_list = this.get_cate_data();
for(var i in cate_list){
if(cate_list[i]!=null){
$('.left-nav #nav li').eq(cate_list[i]).click();
}
}
};
Xadmin.prototype.add_tab = function (title,url,is_refresh) {
var id = md5(url);//md5每个url
//重复点击
for (var i = 0; i <$('.x-iframe').length; i++) {
if($('.x-iframe').eq(i).attr('tab-id')==id){
element.tabChange('xbs_tab', id);
if(is_refresh)
$('.x-iframe').eq(i).attr("src",$('.x-iframe').eq(i).attr('src'));
return;
}
};
this.add_lay_tab(title,url,id);
this.set_data(title,url,id);
element.tabChange('xbs_tab', id);
}
Xadmin.prototype.del_tab = function (id) {
if(id){
console.log(88);
}else{
var id = $(window.frameElement).attr('tab-id');
parent.element.tabDelete('xbs_tab', id);
}
}
Xadmin.prototype.add_lay_tab = function(title,url,id) {
element.tabAdd('xbs_tab', {
title: title
,content: '<iframe tab-id="'+id+'" frameborder="0" src="'+url+'" scrolling="yes" class="x-iframe"></iframe>'
,id: id
})
}
/**
* [open 打开弹出层]
* @param {[type]} title [弹出层标题]
* @param {[type]} url [弹出层地址]
* @param {[type]} w []
* @param {[type]} h []
* @param {Boolean} full [全屏]
* @return {[type]} [description]
*/
Xadmin.prototype.open = function (title,url,w,h,full) {
if (title == null || title == '') {
var title=false;
};
if (url == null || url == '') {
var url="404.html";
};
if (w == null || w == '') {
var w=($(window).width()*0.9);
};
if (h == null || h == '') {
var h=($(window).height() - 50);
};
var index = layer.open({
type: 2,
area: [w+'px', h +'px'],
fix: false, //不固定
maxmin: true,
shadeClose: true,
shade:0.4,
title: title,
content: url
});
if(full){
layer.full(index);
}
}
/**
* [close 关闭弹出层]
* @return {[type]} [description]
*/
Xadmin.prototype.close = function() {
var index = parent.layer.getFrameIndex(window.name);
parent.layer.close(index);
};
/**
* [close 关闭弹出层父窗口关闭]
* @return {[type]} [description]
*/
Xadmin.prototype.father_reload = function() {
parent.location.reload();
};
/**
* [get_data 获取所有项]
* @return {[type]} [description]
*/
Xadmin.prototype.get_data = function () {
if(typeof is_remember!="undefined")
return false;
return layui.data('tab_list')
}
/**
* [set_data 增加某一项]
* @param {[type]} id [description]
*/
Xadmin.prototype.set_data = function(title,url,id) {
if(typeof is_remember!="undefined")
return false;
layui.data('tab_list', {
key: id
,value: {title:title,url:url}
});
};
/**
* [get_data 获取所有项]
* @return {[type]} [description]
*/
Xadmin.prototype.get_cate_data = function () {
if(typeof is_remember!="undefined")
return false;
return layui.data('cate')
}
/**
* [set_data 增加某一项]
* @param {[type]} id [description]
*/
Xadmin.prototype.set_cate_data = function(data) {
if(typeof is_remember!="undefined")
return false;
layui.data('cate', data);
};
/**
* [del_data 删除某一项]
* @param {[type]} id [description]
* @return {[type]} [description]
*/
Xadmin.prototype.del_data = function(id) {
if(typeof is_remember!="undefined")
return false;
if(typeof id!="undefined"){
layui.data('tab_list', {
key: id
,remove: true
});
}else{
layui.data('tab_list',null);
}
};
/**
* [del_other_data 删除其它]
* @param {[type]} id [description]
* @return {[type]} [description]
*/
Xadmin.prototype.del_other_data = function(id) {
if(typeof is_remember!="undefined")
return false;
var tab_list = this.get_data();
layui.data('tab_list',null);
layui.data('tab_list', {
key: id
,value: tab_list[id]
});
};
win.xadmin = new Xadmin();
}(window);
layui.use(['layer','element','jquery'],function() {
layer = layui.layer;
element = layui.element;
$ = layui.jquery;
// 打开页面初始
xadmin.init();
//关闭tab清除记忆
element.on('tabDelete(xbs_tab)', function(data){
var id = $(this).parent().attr('lay-id');
xadmin.del_data(id);
});
//左侧菜单
$('.left-nav #nav').on('click', 'li', function(event) {
if($(this).parent().attr('id')=='nav'){
xadmin.set_cate_data({key:'f1',value:$('.left-nav #nav li').index($(this))})
xadmin.set_cate_data({key:'f2',value:null})
xadmin.set_cate_data({key:'f3',value:null})
}
if($(this).parent().parent().parent().attr('id')=='nav'){
xadmin.set_cate_data({key:'f2',value:$('.left-nav #nav li').index($(this))})
xadmin.set_cate_data({key:'f3',value:null})
}
if($(this).parent().parent().parent().parent().parent().attr('id')=='nav'){
xadmin.set_cate_data({key:'f3',value:$('.left-nav #nav li').index($(this))})
}
if($('.left-nav').css('width')=='60px'){
$('.left-nav').animate({width: '220px'}, 100);
$('.page-content').animate({left: '220px'}, 100);
$('.left-nav i').css('font-size','14px');
$('.left-nav cite,.left-nav .nav_right').show();
}
if($(window).width()<768){
$('.page-content-bg').show();
}
$('.left-nav').find('a').removeClass('active');
$(this).children('a').addClass('active');
if($(this).children('.sub-menu').length){
if($(this).hasClass('open')){
$(this).removeClass('open');
$(this).find('.nav_right').html('&#xe697;');
$(this).children('.sub-menu').stop(true,true).slideUp();
$(this).siblings().children('.sub-menu').slideUp();
}else{
$(this).addClass('open');
$(this).children('a').find('.nav_right').html('&#xe6a6;');
$(this).children('.sub-menu').stop(true,true).slideDown();
$(this).siblings().children('.sub-menu').stop(true,true).slideUp();
$(this).siblings().find('.nav_right').html('&#xe697;');
$(this).siblings().removeClass('open');
}
}
event.stopPropagation();
})
var left_tips_index = null;
$('.left-nav #nav').on('mouseenter', '.left-nav-li', function(event) {
if($('.left-nav').css('width')!='220px'){
var tips = $(this).attr('lay-tips');
left_tips_index = layer.tips(tips, $(this));
}
})
$('.left-nav #nav').on('mouseout', '.left-nav-li', function(event) {
layer.close(left_tips_index);
})
// 隐藏左侧
$('.container .left_open i').click(function(event) {
if($('.left-nav').css('width')=='220px'){
$('.left-nav .open').click();
$('.left-nav i').css('font-size','18px');
$('.left-nav').animate({width: '60px'}, 100);
$('.left-nav cite,.left-nav .nav_right').hide();
$('.page-content').animate({left: '60px'}, 100);
$('.page-content-bg').hide();
}else{
$('.left-nav').animate({width: '220px'}, 100);
$('.page-content').animate({left: '220px'}, 100);
$('.left-nav i').css('font-size','14px');
$('.left-nav cite,.left-nav .nav_right').show();
if($(window).width()<768){
$('.page-content-bg').show();
}
}
});
$('.page-content-bg').click(function(event) {
$('.left-nav .open').click();
$('.left-nav i').css('font-size','18px');
$('.left-nav').animate({width: '60px'}, 100);
$('.left-nav cite,.left-nav .nav_right').hide();
$('.page-content').animate({left: '60px'}, 100);
$(this).hide();
});
$(".layui-tab-title").on('contextmenu', 'li', function(event) {
var tab_left = $(this).position().left;
var tab_width = $(this).width();
var left = $(this).position().top;
var this_index = $(this).attr('lay-id');
$('#tab_right').css({'left':tab_left+tab_width/2}).show().attr('lay-id',this_index);
$('#tab_show').show();
return false;
});
$('#tab_right').on('click', 'dd', function(event) {
var data_type = $(this).attr('data-type');
var lay_id = $(this).parents('#tab_right').attr('lay-id');
if(data_type=='this'){
$('.layui-tab-title li[lay-id='+lay_id+']').find('.layui-tab-close').click();
}else if(data_type=='other'){
$('.layui-tab-title li').eq(0).find('.layui-tab-close').remove();
$('.layui-tab-title li[lay-id!='+lay_id+']').find('.layui-tab-close').click();
}else if(data_type=='all'){
$('.layui-tab-title li[lay-id]').find('.layui-tab-close').click();
}
$('#tab_right').hide();
$('#tab_show').hide();
})
$('.page-content,#tab_show,.container,.left-nav').click(function(event) {
$('#tab_right').hide();
$('#tab_show').hide();
});
// 页面加载完要做的
xadmin.end();
})
// md5-----------------------------------------------------------------------------------
/*
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
* to work around bugs in some JS interpreters.
*/
function safeAdd (x, y) {
var lsw = (x & 0xffff) + (y & 0xffff)
var msw = (x >> 16) + (y >> 16) + (lsw >> 16)
return (msw << 16) | (lsw & 0xffff)
}
/*
* Bitwise rotate a 32-bit number to the left.
*/
function bitRotateLeft (num, cnt) {
return (num << cnt) | (num >>> (32 - cnt))
}
/*
* These functions implement the four basic operations the algorithm uses.
*/
function md5cmn (q, a, b, x, s, t) {
return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b)
}
function md5ff (a, b, c, d, x, s, t) {
return md5cmn((b & c) | (~b & d), a, b, x, s, t)
}
function md5gg (a, b, c, d, x, s, t) {
return md5cmn((b & d) | (c & ~d), a, b, x, s, t)
}
function md5hh (a, b, c, d, x, s, t) {
return md5cmn(b ^ c ^ d, a, b, x, s, t)
}
function md5ii (a, b, c, d, x, s, t) {
return md5cmn(c ^ (b | ~d), a, b, x, s, t)
}
/*
* Calculate the MD5 of an array of little-endian words, and a bit length.
*/
function binlMD5 (x, len) {
/* append padding */
x[len >> 5] |= 0x80 << (len % 32)
x[((len + 64) >>> 9 << 4) + 14] = len
var i
var olda
var oldb
var oldc
var oldd
var a = 1732584193
var b = -271733879
var c = -1732584194
var d = 271733878
for (i = 0; i < x.length; i += 16) {
olda = a
oldb = b
oldc = c
oldd = d
a = md5ff(a, b, c, d, x[i], 7, -680876936)
d = md5ff(d, a, b, c, x[i + 1], 12, -389564586)
c = md5ff(c, d, a, b, x[i + 2], 17, 606105819)
b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330)
a = md5ff(a, b, c, d, x[i + 4], 7, -176418897)
d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426)
c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341)
b = md5ff(b, c, d, a, x[i + 7], 22, -45705983)
a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416)
d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417)
c = md5ff(c, d, a, b, x[i + 10], 17, -42063)
b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162)
a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682)
d = md5ff(d, a, b, c, x[i + 13], 12, -40341101)
c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290)
b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329)
a = md5gg(a, b, c, d, x[i + 1], 5, -165796510)
d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632)
c = md5gg(c, d, a, b, x[i + 11], 14, 643717713)
b = md5gg(b, c, d, a, x[i], 20, -373897302)
a = md5gg(a, b, c, d, x[i + 5], 5, -701558691)
d = md5gg(d, a, b, c, x[i + 10], 9, 38016083)
c = md5gg(c, d, a, b, x[i + 15], 14, -660478335)
b = md5gg(b, c, d, a, x[i + 4], 20, -405537848)
a = md5gg(a, b, c, d, x[i + 9], 5, 568446438)
d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690)
c = md5gg(c, d, a, b, x[i + 3], 14, -187363961)
b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501)
a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467)
d = md5gg(d, a, b, c, x[i + 2], 9, -51403784)
c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473)
b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734)
a = md5hh(a, b, c, d, x[i + 5], 4, -378558)
d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463)
c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562)
b = md5hh(b, c, d, a, x[i + 14], 23, -35309556)
a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060)
d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353)
c = md5hh(c, d, a, b, x[i + 7], 16, -155497632)
b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640)
a = md5hh(a, b, c, d, x[i + 13], 4, 681279174)
d = md5hh(d, a, b, c, x[i], 11, -358537222)
c = md5hh(c, d, a, b, x[i + 3], 16, -722521979)
b = md5hh(b, c, d, a, x[i + 6], 23, 76029189)
a = md5hh(a, b, c, d, x[i + 9], 4, -640364487)
d = md5hh(d, a, b, c, x[i + 12], 11, -421815835)
c = md5hh(c, d, a, b, x[i + 15], 16, 530742520)
b = md5hh(b, c, d, a, x[i + 2], 23, -995338651)
a = md5ii(a, b, c, d, x[i], 6, -198630844)
d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415)
c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905)
b = md5ii(b, c, d, a, x[i + 5], 21, -57434055)
a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571)
d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606)
c = md5ii(c, d, a, b, x[i + 10], 15, -1051523)
b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799)
a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359)
d = md5ii(d, a, b, c, x[i + 15], 10, -30611744)
c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380)
b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649)
a = md5ii(a, b, c, d, x[i + 4], 6, -145523070)
d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379)
c = md5ii(c, d, a, b, x[i + 2], 15, 718787259)
b = md5ii(b, c, d, a, x[i + 9], 21, -343485551)
a = safeAdd(a, olda)
b = safeAdd(b, oldb)
c = safeAdd(c, oldc)
d = safeAdd(d, oldd)
}
return [a, b, c, d]
}
/*
* Convert an array of little-endian words to a string
*/
function binl2rstr (input) {
var i
var output = ''
var length32 = input.length * 32
for (i = 0; i < length32; i += 8) {
output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xff)
}
return output
}
/*
* Convert a raw string to an array of little-endian words
* Characters >255 have their high-byte silently ignored.
*/
function rstr2binl (input) {
var i
var output = []
output[(input.length >> 2) - 1] = undefined
for (i = 0; i < output.length; i += 1) {
output[i] = 0
}
var length8 = input.length * 8
for (i = 0; i < length8; i += 8) {
output[i >> 5] |= (input.charCodeAt(i / 8) & 0xff) << (i % 32)
}
return output
}
/*
* Calculate the MD5 of a raw string
*/
function rstrMD5 (s) {
return binl2rstr(binlMD5(rstr2binl(s), s.length * 8))
}
/*
* Calculate the HMAC-MD5, of a key and some data (raw strings)
*/
function rstrHMACMD5 (key, data) {
var i
var bkey = rstr2binl(key)
var ipad = []
var opad = []
var hash
ipad[15] = opad[15] = undefined
if (bkey.length > 16) {
bkey = binlMD5(bkey, key.length * 8)
}
for (i = 0; i < 16; i += 1) {
ipad[i] = bkey[i] ^ 0x36363636
opad[i] = bkey[i] ^ 0x5c5c5c5c
}
hash = binlMD5(ipad.concat(rstr2binl(data)), 512 + data.length * 8)
return binl2rstr(binlMD5(opad.concat(hash), 512 + 128))
}
/*
* Convert a raw string to a hex string
*/
function rstr2hex (input) {
var hexTab = '0123456789abcdef'
var output = ''
var x
var i
for (i = 0; i < input.length; i += 1) {
x = input.charCodeAt(i)
output += hexTab.charAt((x >>> 4) & 0x0f) + hexTab.charAt(x & 0x0f)
}
return output
}
/*
* Encode a string as utf-8
*/
function str2rstrUTF8 (input) {
return unescape(encodeURIComponent(input))
}
/*
* Take string arguments and return either raw or hex encoded strings
*/
function rawMD5 (s) {
return rstrMD5(str2rstrUTF8(s))
}
function hexMD5 (s) {
return rstr2hex(rawMD5(s))
}
function rawHMACMD5 (k, d) {
return rstrHMACMD5(str2rstrUTF8(k), str2rstrUTF8(d))
}
function hexHMACMD5 (k, d) {
return rstr2hex(rawHMACMD5(k, d))
}
function md5 (string, key, raw) {
if (!key) {
if (!raw) {
return hexMD5(string)
}
return rawMD5(string)
}
if (!raw) {
return hexHMACMD5(key, string)
}
return rawHMACMD5(key, string)
}

@ -0,0 +1,506 @@
$.fn.xcity = function(pName,cName,aName){
this.p = $(this).find('select[lay-filter=province]');
this.c = $(this).find('select[lay-filter=city]');
this.a = $(this).find('select[lay-filter=area]');
this.cityList = [];
this.reaList = [];
this.showP = function(provinceList) {
this.p.html('');
is_pName = false;
for (var i in provinceList) {
if(pName==provinceList[i].name){
is_pName = true;
this.cityList = provinceList[i].cityList;
this.p.append("<option selected value='"+provinceList[i].name+"'>"+provinceList[i].name+"</option>")
}else{
this.p.append("<option value='"+provinceList[i].name+"'>"+provinceList[i].name+"</option>")
}
}
if(!is_pName){
this.cityList = provinceList[0].cityList;
}
}
this.showC = function (cityList) {
this.c.html('');
is_cName = false;
for (var i in cityList) {
if(cName==cityList[i].name){
is_cName = true;
this.areaList = cityList[i].areaList;
this.c.append("<option selected value='"+cityList[i].name+"'>"+cityList[i].name+"</option>")
}else{
this.c.append("<option value='"+cityList[i].name+"'>"+cityList[i].name+"</option>")
}
}
if(!is_cName){
this.areaList = cityList[0].areaList;
}
}
this.showA = function (areaList) {
this.a.html('');
for (var i in areaList) {
if(aName==areaList[i]){
this.a.append("<option selected value='"+areaList[i]+"'>"+areaList[i]+"</option>")
}else{
this.a.append("<option value='"+areaList[i]+"'>"+areaList[i]+"</option>")
}
}
}
this.showP(provinceList);
this.showC(this.cityList);
this.showA(this.areaList);
form.render('select');
form.on('select(province)', function(data){
var pName = data.value;
$(data.elem).parents(".x-city").xcity(pName);
});
form.on('select(city)', function(data){
var cName = data.value;
var pName = $(data.elem).parents(".x-city").find('select[lay-filter=province]').val();
console.log(pName);
$(data.elem).parents(".x-city").xcity(pName,cName);
});
return this;
}
var provinceList = [
{name:'北京', cityList:[
{name:'市辖区', areaList:['东城区','西城区','崇文区','宣武区','朝阳区','丰台区','石景山区','海淀区','门头沟区','房山区','通州区','顺义区','昌平区','大兴区','怀柔区','平谷区']},
{name:'县', areaList:['密云县','延庆县']}
]},
{name:'上海', cityList:[
{name:'市辖区', areaList:['黄浦区','卢湾区','徐汇区','长宁区','静安区','普陀区','闸北区','虹口区','杨浦区','闵行区','宝山区','嘉定区','浦东新区','金山区','松江区','青浦区','南汇区','奉贤区']},
{name:'县', areaList:['崇明县']}
]},
{name:'天津', cityList:[
{name:'市辖区', areaList:['和平区','河东区','河西区','南开区','河北区','红桥区','塘沽区','汉沽区','大港区','东丽区','西青区','津南区','北辰区','武清区','宝坻区']},
{name:'县', areaList:['宁河县','静海县','蓟 县']}
]},
{name:'重庆', cityList:[
{name:'市辖区', areaList:['万州区','涪陵区','渝中区','大渡口区','江北区','沙坪坝区','九龙坡区','南岸区','北碚区','万盛区','双桥区','渝北区','巴南区','黔江区','长寿区']},
{name:'县', areaList:['綦江县','潼南县','铜梁县','大足县','荣昌县','璧山县','梁平县','城口县','丰都县','垫江县','武隆县','忠 县','开 县','云阳县','奉节县','巫山县','巫溪县','石柱土家族自治县','秀山土家族苗族自治县','酉阳土家族苗族自治县','彭水苗族土家族自治县']},
{name:'市', areaList:['江津市','合川市','永川市','南川市']}
]},
{name:'四川', cityList:[
{name:'成都市', areaList:['市辖区','锦江区','青羊区','金牛区','武侯区','成华区','龙泉驿区','青白江区','新都区','温江县','金堂县','双流县','郫 县','大邑县','蒲江县','新津县','都江堰市','彭州市','邛崃市','崇州市']},
{name:'自贡市', areaList:['市辖区','自流井区','贡井区','大安区','沿滩区','荣 县','富顺县']},
{name:'攀枝花市', areaList:['市辖区','东 区','西 区','仁和区','米易县','盐边县']},
{name:'泸州市', areaList:['市辖区','江阳区','纳溪区','龙马潭区','泸 县','合江县','叙永县','古蔺县']},
{name:'德阳市', areaList:['市辖区','旌阳区','中江县','罗江县','广汉市','什邡市','绵竹市']},
{name:'绵阳市', areaList:['市辖区','涪城区','游仙区','三台县','盐亭县','安 县','梓潼县','北川羌族自治县','平武县','江油市']},
{name:'广元市', areaList:['市辖区','市中区','元坝区','朝天区','旺苍县','青川县','剑阁县','苍溪县']},
{name:'遂宁市', areaList:['市辖区','船山区','安居区','蓬溪县','射洪县','大英县']},
{name:'内江市', areaList:['市辖区','市中区','东兴区','威远县','资中县','隆昌县']},
{name:'乐山市', areaList:['市辖区','市中区','沙湾区','五通桥区','金口河区','犍为县','井研县','夹江县','沐川县','峨边彝族自治县','马边彝族自治县','峨眉山市']},
{name:'南充市', areaList:['市辖区','顺庆区','高坪区','嘉陵区','南部县','营山县','蓬安县','仪陇县','西充县','阆中市']},
{name:'眉山市', areaList:['市辖区','东坡区','仁寿县','彭山县','洪雅县','丹棱县','青神县']},
{name:'宜宾市', areaList:['市辖区','翠屏区','宜宾县','南溪县','江安县','长宁县','高 县','珙 县','筠连县','兴文县','屏山县']},
{name:'广安市', areaList:['市辖区','广安区','岳池县','武胜县','邻水县','华莹市']},
{name:'达州市', areaList:['市辖区','通川区','达 县','宣汉县','开江县','大竹县','渠 县','万源市']},
{name:'雅安市', areaList:['市辖区','雨城区','名山县','荥经县','汉源县','石棉县','天全县','芦山县','宝兴县']},
{name:'巴中市', areaList:['市辖区','巴州区','通江县','南江县','平昌县']},
{name:'资阳市', areaList:['市辖区','雁江区','安岳县','乐至县','简阳市']},
{name:'阿坝藏族羌族自治州', areaList:['汶川县','理 县','茂 县','松潘县','九寨沟县','金川县','小金县','黑水县','马尔康县','壤塘县','阿坝县','若尔盖县','红原县']},
{name:'甘孜藏族自治州', areaList:['康定县','泸定县','丹巴县','九龙县','雅江县','道孚县','炉霍县','甘孜县','新龙县','德格县','白玉县','石渠县','色达县','理塘县','巴塘县','乡城县','稻城县','得荣县']},
{name:'凉山彝族自治州', areaList:['西昌市','木里藏族自治县','盐源县','德昌县','会理县','会东县','宁南县','普格县','布拖县','金阳县','昭觉县','喜德县','冕宁县','越西县','甘洛县','美姑县','雷波县']}
]},
{name:'贵州', cityList:[
{name:'贵阳市', areaList:['市辖区','南明区','云岩区','花溪区','乌当区','白云区','小河区','开阳县','息烽县','修文县','清镇市']},
{name:'六盘水市', areaList:['钟山区','六枝特区','水城县','盘 县']},
{name:'遵义市', areaList:['市辖区','红花岗区','汇川区','遵义县','桐梓县','绥阳县','正安县','道真仡佬族苗族自治县','务川仡佬族苗族自治县','凤冈县','湄潭县','余庆县','习水县','赤水市','仁怀市']},
{name:'安顺市', areaList:['市辖区','西秀区','平坝县','普定县','镇宁布依族苗族自治县','关岭布依族苗族自治县','紫云苗族布依族自治县']},
{name:'铜仁地区', areaList:['铜仁市','江口县','玉屏侗族自治县','石阡县','思南县','印江土家族苗族自治县','德江县','沿河土家族自治县','松桃苗族自治县','万山特区']},
{name:'黔西南布依族苗族自治州', areaList:['兴义市','兴仁县','普安县','晴隆县','贞丰县','望谟县','册亨县','安龙县']},
{name:'毕节地区', areaList:['毕节市','大方县','黔西县','金沙县','织金县','纳雍县','威宁彝族回族苗族自治县','赫章县']},
{name:'黔东南苗族侗族自治州', areaList:['凯里市','黄平县','施秉县','三穗县','镇远县','岑巩县','天柱县','锦屏县','剑河县','台江县','黎平县','榕江县','从江县','雷山县','麻江县','丹寨县']},
{name:'黔南布依族苗族自治州', areaList:['都匀市','福泉市','荔波县','贵定县','瓮安县','独山县','平塘县','罗甸县','长顺县','龙里县','惠水县','三都水族自治县']}
]},
{name:'云南', cityList:[
{name:'昆明市', areaList:['市辖区','五华区','盘龙区','官渡区','西山区','东川区','呈贡县','晋宁县','富民县','宜良县','石林彝族自治县','嵩明县','禄劝彝族苗族自治县','寻甸回族彝族自治县','安宁市']},
{name:'曲靖市', areaList:['市辖区','麒麟区','马龙县','陆良县','师宗县','罗平县','富源县','会泽县','沾益县','宣威市']},
{name:'玉溪市', areaList:['市辖区','红塔区','江川县','澄江县','通海县','华宁县','易门县','峨山彝族自治县','新平彝族傣族自治县','元江哈尼族彝族傣族自治县']},
{name:'保山市', areaList:['市辖区','隆阳区','施甸县','腾冲县','龙陵县','昌宁县']},
{name:'昭通市', areaList:['市辖区','昭阳区','鲁甸县','巧家县','盐津县','大关县','永善县','绥江县','镇雄县','彝良县','威信县','水富县']},
{name:'丽江市', areaList:['市辖区','古城区','玉龙纳西族自治县','永胜县','华坪县','宁蒗彝族自治县']},
{name:'思茅市', areaList:['市辖区','翠云区','普洱哈尼族彝族自治县','墨江哈尼族自治县','景东彝族自治县','景谷傣族彝族自治县','镇沅彝族哈尼族拉祜族自治县','江城哈尼族彝族自治县','孟连傣族拉祜族佤族自治县','澜沧拉祜族自治县','西盟佤族自治县']},
{name:'临沧市', areaList:['市辖区','临翔区','凤庆县','云 县','永德县','镇康县','双江拉祜族佤族布朗族傣族自治县','耿马傣族佤族自治县','沧源佤族自治县']},
{name:'楚雄彝族自治州', areaList:['楚雄市','双柏县','牟定县','南华县','姚安县','大姚县','永仁县','元谋县','武定县','禄丰县']},
{name:'红河哈尼族彝族自治州', areaList:['个旧市','开远市','蒙自县','屏边苗族自治县','建水县','石屏县','弥勒县','泸西县','元阳县','红河县','金平苗族瑶族傣族自治县','绿春县','河口瑶族自治县']},
{name:'文山壮族苗族自治州', areaList:['文山县','砚山县','西畴县','麻栗坡县','马关县','丘北县','广南县','富宁县']},
{name:'西双版纳傣族自治州', areaList:['景洪市','勐海县','勐腊县']},
{name:'大理白族自治州', areaList:['大理市','漾濞彝族自治县','祥云县','宾川县','弥渡县','南涧彝族自治县','巍山彝族回族自治县','永平县','云龙县','洱源县','剑川县','鹤庆县']},
{name:'德宏傣族景颇族自治州', areaList:['瑞丽市','潞西市','梁河县','盈江县','陇川县']},
{name:'怒江傈僳族自治州', areaList:['泸水县','福贡县','贡山独龙族怒族自治县','兰坪白族普米族自治县']},
{name:'迪庆藏族自治州', areaList:['香格里拉县','德钦县','维西傈僳族自治县']}
]},
{name:'西藏', cityList:[
{name:'拉萨市', areaList:['市辖区','城关区','林周县','当雄县','尼木县','曲水县','堆龙德庆县','达孜县','墨竹工卡县']},
{name:'昌都地区', areaList:['昌都县','江达县','贡觉县','类乌齐县','丁青县','察雅县','八宿县','左贡县','芒康县','洛隆县','边坝县']},
{name:'山南地区', areaList:['乃东县','扎囊县','贡嘎县','桑日县','琼结县','曲松县','措美县','洛扎县','加查县','隆子县','错那县','浪卡子县']},
{name:'日喀则地区', areaList:['日喀则市','南木林县','江孜县','定日县','萨迦县','拉孜县','昂仁县','谢通门县','白朗县','仁布县','康马县','定结县','仲巴县','亚东县','吉隆县','聂拉木县','萨嘎县','岗巴县']},
{name:'那曲地区', areaList:['那曲县','嘉黎县','比如县','聂荣县','安多县','申扎县','索 县','班戈县','巴青县','尼玛县']},
{name:'阿里地区', areaList:['普兰县','札达县','噶尔县','日土县','革吉县','改则县','措勤县']},
{name:'林芝地区', areaList:['林芝县','工布江达县','米林县','墨脱县','波密县','察隅县','朗 县']}
]},
{name:'河南', cityList:[
{name:'郑州市', areaList:['市辖区','中原区','二七区','管城回族区','金水区','上街区','邙山区','中牟县','巩义市','荥阳市','新密市','新郑市','登封市']},
{name:'开封市', areaList:['市辖区','龙亭区','顺河回族区','鼓楼区','南关区','郊 区','杞 县','通许县','尉氏县','开封县','兰考县']},
{name:'洛阳市', areaList:['市辖区','老城区','西工区','廛河回族区','涧西区','吉利区','洛龙区','孟津县','新安县','栾川县','嵩 县','汝阳县','宜阳县','洛宁县','伊川县','偃师市']},
{name:'平顶山市', areaList:['市辖区','新华区','卫东区','石龙区','湛河区','宝丰县','叶 县','鲁山县','郏 县','舞钢市','汝州市']},
{name:'安阳市', areaList:['市辖区','文峰区','北关区','殷都区','龙安区','安阳县','汤阴县','滑 县','内黄县','林州市']},
{name:'鹤壁市', areaList:['市辖区','鹤山区','山城区','淇滨区','浚 县','淇 县']},
{name:'新乡市', areaList:['市辖区','红旗区','卫滨区','凤泉区','牧野区','新乡县','获嘉县','原阳县','延津县','封丘县','长垣县','卫辉市','辉县市']},
{name:'焦作市', areaList:['市辖区','解放区','中站区','马村区','山阳区','修武县','博爱县','武陟县','温 县','济源市','沁阳市','孟州市']},
{name:'濮阳市', areaList:['市辖区','华龙区','清丰县','南乐县','范 县','台前县','濮阳县']},
{name:'许昌市', areaList:['市辖区','魏都区','许昌县','鄢陵县','襄城县','禹州市','长葛市']},
{name:'漯河市', areaList:['市辖区','源汇区','郾城区','召陵区','舞阳县','临颍县']},
{name:'三门峡市', areaList:['市辖区','湖滨区','渑池县','陕 县','卢氏县','义马市','灵宝市']},
{name:'南阳市', areaList:['市辖区','宛城区','卧龙区','南召县','方城县','西峡县','镇平县','内乡县','淅川县','社旗县','唐河县','新野县','桐柏县','邓州市']},
{name:'商丘市', areaList:['市辖区','梁园区','睢阳区','民权县','睢 县','宁陵县','柘城县','虞城县','夏邑县','永城市']},
{name:'信阳市', areaList:['市辖区','师河区','平桥区','罗山县','光山县','新 县','商城县','固始县','潢川县','淮滨县','息 县']},
{name:'周口市', areaList:['市辖区','川汇区','扶沟县','西华县','商水县','沈丘县','郸城县','淮阳县','太康县','鹿邑县','项城市']},
{name:'驻马店市', areaList:['市辖区','驿城区','西平县','上蔡县','平舆县','正阳县','确山县','泌阳县','汝南县','遂平县','新蔡县']}
]},
{name:'湖北', cityList:[
{name:'武汉市', areaList:['市辖区','江岸区','江汉区','乔口区','汉阳区','武昌区','青山区','洪山区','东西湖区','汉南区','蔡甸区','江夏区','黄陂区','新洲区']},
{name:'黄石市', areaList:['市辖区','黄石港区','西塞山区','下陆区','铁山区','阳新县','大冶市']},
{name:'十堰市', areaList:['市辖区','茅箭区','张湾区','郧 县','郧西县','竹山县','竹溪县','房 县','丹江口市']},
{name:'宜昌市', areaList:['市辖区','西陵区','伍家岗区','点军区','猇亭区','夷陵区','远安县','兴山县','秭归县','长阳土家族自治县','五峰土家族自治县','宜都市','当阳市','枝江市']},
{name:'襄樊市', areaList:['市辖区','襄城区','樊城区','襄阳区','南漳县','谷城县','保康县','老河口市','枣阳市','宜城市']},
{name:'鄂州市', areaList:['市辖区','梁子湖区','华容区','鄂城区']},
{name:'荆门市', areaList:['市辖区','东宝区','掇刀区','京山县','沙洋县','钟祥市']},
{name:'孝感市', areaList:['市辖区','孝南区','孝昌县','大悟县','云梦县','应城市','安陆市','汉川市']},
{name:'荆州市', areaList:['市辖区','沙市区','荆州区','公安县','监利县','江陵县','石首市','洪湖市','松滋市']},
{name:'黄冈市', areaList:['市辖区','黄州区','团风县','红安县','罗田县','英山县','浠水县','蕲春县','黄梅县','麻城市','武穴市']},
{name:'咸宁市', areaList:['市辖区','咸安区','嘉鱼县','通城县','崇阳县','通山县','赤壁市']},
{name:'随州市', areaList:['市辖区','曾都区','广水市']},
{name:'恩施土家族苗族自治州', areaList:['恩施市','利川市','建始县','巴东县','宣恩县','咸丰县','来凤县','鹤峰县']},
{name:'省直辖行政单位', areaList:['仙桃市','潜江市','天门市','神农架林区']}
]},
{name:'湖南', cityList:[
{name:'长沙市', areaList:['市辖区','芙蓉区','天心区','岳麓区','开福区','雨花区','长沙县','望城县','宁乡县','浏阳市']},
{name:'株洲市', areaList:['市辖区','荷塘区','芦淞区','石峰区','天元区','株洲县','攸 县','茶陵县','炎陵县','醴陵市']},
{name:'湘潭市', areaList:['市辖区','雨湖区','岳塘区','湘潭县','湘乡市','韶山市']},
{name:'衡阳市', areaList:['市辖区','珠晖区','雁峰区','石鼓区','蒸湘区','南岳区','衡阳县','衡南县','衡山县','衡东县','祁东县','耒阳市','常宁市']},
{name:'邵阳市', areaList:['市辖区','双清区','大祥区','北塔区','邵东县','新邵县','邵阳县','隆回县','洞口县','绥宁县','新宁县','城步苗族自治县','武冈市']},
{name:'岳阳市', areaList:['市辖区','岳阳楼区','云溪区','君山区','岳阳县','华容县','湘阴县','平江县','汨罗市','临湘市']},
{name:'常德市', areaList:['市辖区','武陵区','鼎城区','安乡县','汉寿县','澧 县','临澧县','桃源县','石门县','津市市']},
{name:'张家界市', areaList:['市辖区','永定区','武陵源区','慈利县','桑植县']},
{name:'益阳市', areaList:['市辖区','资阳区','赫山区','南 县','桃江县','安化县','沅江市']},
{name:'郴州市', areaList:['市辖区','北湖区','苏仙区','桂阳县','宜章县','永兴县','嘉禾县','临武县','汝城县','桂东县','安仁县','资兴市']},
{name:'永州市', areaList:['市辖区','芝山区','冷水滩区','祁阳县','东安县','双牌县','道 县','江永县','宁远县','蓝山县','新田县','江华瑶族自治县']},
{name:'怀化市', areaList:['市辖区','鹤城区','中方县','沅陵县','辰溪县','溆浦县','会同县','麻阳苗族自治县','新晃侗族自治县','芷江侗族自治县','靖州苗族侗族自治县','通道侗族自治县','洪江市']},
{name:'娄底市', areaList:['市辖区','娄星区','双峰县','新化县','冷水江市','涟源市']},
{name:'湘西土家族苗族自治州', areaList:['吉首市','泸溪县','凤凰县','花垣县','保靖县','古丈县','永顺县','龙山县']}
]},
{name:'广东', cityList:[
{name:'广州市', areaList:['市辖区','东山区','荔湾区','越秀区','海珠区','天河区','芳村区','白云区','黄埔区','番禺区','花都区','增城市','从化市']},
{name:'韶关市', areaList:['市辖区','武江区','浈江区','曲江区','始兴县','仁化县','翁源县','乳源瑶族自治县','新丰县','乐昌市','南雄市']},
{name:'深圳市', areaList:['市辖区','罗湖区','福田区','南山区','宝安区','龙岗区','盐田区']},
{name:'珠海市', areaList:['市辖区','香洲区','斗门区','金湾区']},
{name:'汕头市', areaList:['市辖区','龙湖区','金平区','濠江区','潮阳区','潮南区','澄海区','南澳县']},
{name:'佛山市', areaList:['市辖区','禅城区','南海区','顺德区','三水区','高明区']},
{name:'江门市', areaList:['市辖区','蓬江区','江海区','新会区','台山市','开平市','鹤山市','恩平市']},
{name:'湛江市', areaList:['市辖区','赤坎区','霞山区','坡头区','麻章区','遂溪县','徐闻县','廉江市','雷州市','吴川市']},
{name:'茂名市', areaList:['市辖区','茂南区','茂港区','电白县','高州市','化州市','信宜市']},
{name:'肇庆市', areaList:['市辖区','端州区','鼎湖区','广宁县','怀集县','封开县','德庆县','高要市','四会市']},
{name:'惠州市', areaList:['市辖区','惠城区','惠阳区','博罗县','惠东县','龙门县']},
{name:'梅州市', areaList:['市辖区','梅江区','梅 县','大埔县','丰顺县','五华县','平远县','蕉岭县','兴宁市']},
{name:'汕尾市', areaList:['市辖区','城 区','海丰县','陆河县','陆丰市']},
{name:'河源市', areaList:['市辖区','源城区','紫金县','龙川县','连平县','和平县','东源县']},
{name:'阳江市', areaList:['市辖区','江城区','阳西县','阳东县','阳春市']},
{name:'清远市', areaList:['市辖区','清城区','佛冈县','阳山县','连山壮族瑶族自治县','连南瑶族自治县','清新县','英德市','连州市']},
{name:'东莞市', areaList:['东莞市']},
{name:'中山市', areaList:['中山市']},
{name:'潮州市', areaList:['市辖区','湘桥区','潮安县','饶平县']},
{name:'揭阳市', areaList:['市辖区','榕城区','揭东县','揭西县','惠来县','普宁市']},
{name:'云浮市', areaList:['市辖区','云城区','新兴县','郁南县','云安县','罗定市']}
]},
{name:'广西', cityList:[
{name:'南宁市', areaList:['市辖区','兴宁区','青秀区','江南区','西乡塘区','良庆区','邕宁区','武鸣县','隆安县','马山县','上林县','宾阳县','横 县']},
{name:'柳州市', areaList:['市辖区','城中区','鱼峰区','柳南区','柳北区','柳江县','柳城县','鹿寨县','融安县','融水苗族自治县','三江侗族自治县']},
{name:'桂林市', areaList:['市辖区','秀峰区','叠彩区','象山区','七星区','雁山区','阳朔县','临桂县','灵川县','全州县','兴安县','永福县','灌阳县','龙胜各族自治县','资源县','平乐县','荔蒲县','恭城瑶族自治县']},
{name:'梧州市', areaList:['市辖区','万秀区','蝶山区','长洲区','苍梧县','藤 县','蒙山县','岑溪市']},
{name:'北海市', areaList:['市辖区','海城区','银海区','铁山港区','合浦县']},
{name:'防城港市', areaList:['市辖区','港口区','防城区','上思县','东兴市']},
{name:'钦州市', areaList:['市辖区','钦南区','钦北区','灵山县','浦北县']},
{name:'贵港市', areaList:['市辖区','港北区','港南区','覃塘区','平南县','桂平市']},
{name:'玉林市', areaList:['市辖区','玉州区','容 县','陆川县','博白县','兴业县','北流市']},
{name:'百色市', areaList:['市辖区','右江区','田阳县','田东县','平果县','德保县','靖西县','那坡县','凌云县','乐业县','田林县','西林县','隆林各族自治县']},
{name:'贺州市', areaList:['市辖区','八步区','昭平县','钟山县','富川瑶族自治县']},
{name:'河池市', areaList:['市辖区','金城江区','南丹县','天峨县','凤山县','东兰县','罗城仫佬族自治县','环江毛南族自治县','巴马瑶族自治县','都安瑶族自治县','大化瑶族自治县','宜州市']},
{name:'来宾市', areaList:['市辖区','兴宾区','忻城县','象州县','武宣县','金秀瑶族自治县','合山市']},
{name:'崇左市', areaList:['市辖区','江洲区','扶绥县','宁明县','龙州县','大新县','天等县','凭祥市']}
]},
{name:'陕西', cityList:[
{name:'西安市', areaList:['市辖区','新城区','碑林区','莲湖区','灞桥区','未央区','雁塔区','阎良区','临潼区','长安区','蓝田县','周至县','户 县','高陵县']},
{name:'铜川市', areaList:['市辖区','王益区','印台区','耀州区','宜君县']},
{name:'宝鸡市', areaList:['市辖区','渭滨区','金台区','陈仓区','凤翔县','岐山县','扶风县','眉 县','陇 县','千阳县','麟游县','凤 县','太白县']},
{name:'咸阳市', areaList:['市辖区','秦都区','杨凌区','渭城区','三原县','泾阳县','乾 县','礼泉县','永寿县','彬 县','长武县','旬邑县','淳化县','武功县','兴平市']},
{name:'渭南市', areaList:['市辖区','临渭区','华 县','潼关县','大荔县','合阳县','澄城县','蒲城县','白水县','富平县','韩城市','华阴市']},
{name:'延安市', areaList:['市辖区','宝塔区','延长县','延川县','子长县','安塞县','志丹县','吴旗县','甘泉县','富 县','洛川县','宜川县','黄龙县','黄陵县']},
{name:'汉中市', areaList:['市辖区','汉台区','南郑县','城固县','洋 县','西乡县','勉 县','宁强县','略阳县','镇巴县','留坝县','佛坪县']},
{name:'榆林市', areaList:['市辖区','榆阳区','神木县','府谷县','横山县','靖边县','定边县','绥德县','米脂县','佳 县','吴堡县','清涧县','子洲县']},
{name:'安康市', areaList:['市辖区','汉滨区','汉阴县','石泉县','宁陕县','紫阳县','岚皋县','平利县','镇坪县','旬阳县','白河县']},
{name:'商洛市', areaList:['市辖区','商州区','洛南县','丹凤县','商南县','山阳县','镇安县','柞水县']}
]},
{name:'甘肃', cityList:[
{name:'兰州市', areaList:['市辖区','城关区','七里河区','西固区','安宁区','红古区','永登县','皋兰县','榆中县']},
{name:'嘉峪关市', areaList:['市辖区']},
{name:'金昌市', areaList:['市辖区','金川区','永昌县']},
{name:'白银市', areaList:['市辖区','白银区','平川区','靖远县','会宁县','景泰县']},
{name:'天水市', areaList:['市辖区','秦城区','北道区','清水县','秦安县','甘谷县','武山县','张家川回族自治县']},
{name:'武威市', areaList:['市辖区','凉州区','民勤县','古浪县','天祝藏族自治县']},
{name:'张掖市', areaList:['市辖区','甘州区','肃南裕固族自治县','民乐县','临泽县','高台县','山丹县']},
{name:'平凉市', areaList:['市辖区','崆峒区','泾川县','灵台县','崇信县','华亭县','庄浪县','静宁县']},
{name:'酒泉市', areaList:['市辖区','肃州区','金塔县','安西县','肃北蒙古族自治县','阿克塞哈萨克族自治县','玉门市','敦煌市']},
{name:'庆阳市', areaList:['市辖区','西峰区','庆城县','环 县','华池县','合水县','正宁县','宁 县','镇原县']},
{name:'定西市', areaList:['市辖区','安定区','通渭县','陇西县','渭源县','临洮县','漳 县','岷 县']},
{name:'陇南市', areaList:['市辖区','武都区','成 县','文 县','宕昌县','康 县','西和县','礼 县','徽 县','两当县']},
{name:'临夏回族自治州', areaList:['临夏市','临夏县','康乐县','永靖县','广河县','和政县','东乡族自治县','积石山保安族东乡族撒拉族自治县']},
{name:'甘南藏族自治州', areaList:['合作市','临潭县','卓尼县','舟曲县','迭部县','玛曲县','碌曲县','夏河县']}
]},
{name:'青海', cityList:[
{name:'西宁市', areaList:['市辖区','城东区','城中区','城西区','城北区','大通回族土族自治县','湟中县','湟源县']},
{name:'海东地区', areaList:['平安县','民和回族土族自治县','乐都县','互助土族自治县','化隆回族自治县','循化撒拉族自治县']},
{name:'海北藏族自治州', areaList:['门源回族自治县','祁连县','海晏县','刚察县']},
{name:'黄南藏族自治州', areaList:['同仁县','尖扎县','泽库县','河南蒙古族自治县']},
{name:'海南藏族自治州', areaList:['共和县','同德县','贵德县','兴海县','贵南县']},
{name:'果洛藏族自治州', areaList:['玛沁县','班玛县','甘德县','达日县','久治县','玛多县']},
{name:'玉树藏族自治州', areaList:['玉树县','杂多县','称多县','治多县','囊谦县','曲麻莱县']},
{name:'海西蒙古族藏族自治州', areaList:['格尔木市','德令哈市','乌兰县','都兰县','天峻县']}
]},
{name:'宁夏', cityList:[
{name:'银川市', areaList:['市辖区','兴庆区','西夏区','金凤区','永宁县','贺兰县','灵武市']},
{name:'石嘴山市', areaList:['市辖区','大武口区','惠农区','平罗县']},
{name:'吴忠市', areaList:['市辖区','利通区','盐池县','同心县','青铜峡市']},
{name:'固原市', areaList:['市辖区','原州区','西吉县','隆德县','泾源县','彭阳县','海原县']},
{name:'中卫市', areaList:['市辖区','沙坡头区','中宁县']}
]},
{name:'新疆', cityList:[
{name:'乌鲁木齐市', areaList:['市辖区','天山区','沙依巴克区','新市区','水磨沟区','头屯河区','达坂城区','东山区','乌鲁木齐县']},
{name:'克拉玛依市', areaList:['市辖区','独山子区','克拉玛依区','白碱滩区','乌尔禾区']},
{name:'吐鲁番地区', areaList:['吐鲁番市','鄯善县','托克逊县']},
{name:'哈密地区', areaList:['哈密市','巴里坤哈萨克自治县','伊吾县']},
{name:'昌吉回族自治州', areaList:['昌吉市','阜康市','米泉市','呼图壁县','玛纳斯县','奇台县','吉木萨尔县','木垒哈萨克自治县']},
{name:'博尔塔拉蒙古自治州', areaList:['博乐市','精河县','温泉县']},
{name:'巴音郭楞蒙古自治州', areaList:['库尔勒市','轮台县','尉犁县','若羌县','且末县','焉耆回族自治县','和静县','和硕县','博湖县']},
{name:'阿克苏地区', areaList:['阿克苏市','温宿县','库车县','沙雅县','新和县','拜城县','乌什县','阿瓦提县','柯坪县']},
{name:'克孜勒苏柯尔克孜自治州', areaList:['阿图什市','阿克陶县','阿合奇县','乌恰县']},
{name:'喀什地区', areaList:['喀什市','疏附县','疏勒县','英吉沙县','泽普县','莎车县','叶城县','麦盖提县','岳普湖县','伽师县','巴楚县','塔什库尔干塔吉克自治县']},
{name:'和田地区', areaList:['和田市','和田县','墨玉县','皮山县','洛浦县','策勒县','于田县','民丰县']},
{name:'伊犁哈萨克自治州', areaList:['伊宁市','奎屯市','伊宁县','察布查尔锡伯自治县','霍城县','巩留县','新源县','昭苏县','特克斯县','尼勒克县']},
{name:'塔城地区', areaList:['塔城市','乌苏市','额敏县','沙湾县','托里县','裕民县','和布克赛尔蒙古自治县']},
{name:'阿勒泰地区', areaList:['阿勒泰市','布尔津县','富蕴县','福海县','哈巴河县','青河县','吉木乃县']},
{name:'省直辖行政单位', areaList:['石河子市','阿拉尔市','图木舒克市','五家渠市']}
]},
{name:'河北', cityList:[
{name:'石家庄市', areaList:['市辖区','长安区','桥东区','桥西区','新华区','井陉矿区','裕华区','井陉县','正定县','栾城县','行唐县','灵寿县','高邑县','深泽县','赞皇县','无极县','平山县','元氏县','赵 县','辛集市','藁城市','晋州市','新乐市','鹿泉市']},
{name:'唐山市', areaList:['市辖区','路南区','路北区','古冶区','开平区','丰南区','丰润区','滦 县','滦南县','乐亭县','迁西县','玉田县','唐海县','遵化市','迁安市']},
{name:'秦皇岛市', areaList:['市辖区','海港区','山海关区','北戴河区','青龙满族自治县','昌黎县','抚宁县','卢龙县']},
{name:'邯郸市', areaList:['市辖区','邯山区','丛台区','复兴区','峰峰矿区','邯郸县','临漳县','成安县','大名县','涉 县','磁 县','肥乡县','永年县','邱 县','鸡泽县','广平县','馆陶县','魏 县','曲周县','武安市']},
{name:'邢台市', areaList:['市辖区','桥东区','桥西区','邢台县','临城县','内丘县','柏乡县','隆尧县','任 县','南和县','宁晋县','巨鹿县','新河县','广宗县','平乡县','威 县','清河县','临西县','南宫市','沙河市']},
{name:'保定市', areaList:['市辖区','新市区','北市区','南市区','满城县','清苑县','涞水县','阜平县','徐水县','定兴县','唐 县','高阳县','容城县','涞源县','望都县','安新县','易 县','曲阳县','蠡 县','顺平县','博野县','雄 县','涿州市','定州市','安国市','高碑店市']},
{name:'张家口市', areaList:['市辖区','桥东区','桥西区','宣化区','下花园区','宣化县','张北县','康保县','沽源县','尚义县','蔚 县','阳原县','怀安县','万全县','怀来县','涿鹿县','赤城县','崇礼县']},
{name:'承德市', areaList:['市辖区','双桥区','双滦区','鹰手营子矿区','承德县','兴隆县','平泉县','滦平县','隆化县','丰宁满族自治县','宽城满族自治县','围场满族蒙古族自治县']},
{name:'沧州市', areaList:['市辖区','新华区','运河区','沧 县','青 县','东光县','海兴县','盐山县','肃宁县','南皮县','吴桥县','献 县','孟村回族自治县','泊头市','任丘市','黄骅市','河间市']},
{name:'廊坊市', areaList:['市辖区','安次区','广阳区','固安县','永清县','香河县','大城县','文安县','大厂回族自治县','霸州市','三河市']},
{name:'衡水市', areaList:['市辖区','桃城区','枣强县','武邑县','武强县','饶阳县','安平县','故城县','景 县','阜城县','冀州市','深州市']}
]},
{name:'山西', cityList:[
{name:'太原市', areaList:['市辖区','小店区','迎泽区','杏花岭区','尖草坪区','万柏林区','晋源区','清徐县','阳曲县','娄烦县','古交市']},
{name:'大同市', areaList:['市辖区','城 区','矿 区','南郊区','新荣区','阳高县','天镇县','广灵县','灵丘县','浑源县','左云县','大同县']},
{name:'阳泉市', areaList:['市辖区','城 区','矿 区','郊 区','平定县','盂 县']},
{name:'长治市', areaList:['市辖区','城 区','郊 区','长治县','襄垣县','屯留县','平顺县','黎城县','壶关县','长子县','武乡县','沁 县','沁源县','潞城市']},
{name:'晋城市', areaList:['市辖区','城 区','沁水县','阳城县','陵川县','泽州县','高平市']},
{name:'朔州市', areaList:['市辖区','朔城区','平鲁区','山阴县','应 县','右玉县','怀仁县']},
{name:'晋中市', areaList:['市辖区','榆次区','榆社县','左权县','和顺县','昔阳县','寿阳县','太谷县','祁 县','平遥县','灵石县','介休市']},
{name:'运城市', areaList:['市辖区','盐湖区','临猗县','万荣县','闻喜县','稷山县','新绛县','绛 县','垣曲县','夏 县','平陆县','芮城县','永济市','河津市']},
{name:'忻州市', areaList:['市辖区','忻府区','定襄县','五台县','代 县','繁峙县','宁武县','静乐县','神池县','五寨县','岢岚县','河曲县','保德县','偏关县','原平市']},
{name:'临汾市', areaList:['市辖区','尧都区','曲沃县','翼城县','襄汾县','洪洞县','古 县','安泽县','浮山县','吉 县','乡宁县','大宁县','隰 县','永和县','蒲 县','汾西县','侯马市','霍州市']},
{name:'吕梁市', areaList:['市辖区','离石区','文水县','交城县','兴 县','临 县','柳林县','石楼县','岚 县','方山县','中阳县','交口县','孝义市','汾阳市']}
]},
{name:'内蒙古', cityList:[
{name:'呼和浩特市', areaList:['市辖区','新城区','回民区','玉泉区','赛罕区','土默特左旗','托克托县','和林格尔县','清水河县','武川县']},
{name:'包头市', areaList:['市辖区','东河区','昆都仑区','青山区','石拐区','白云矿区','九原区','土默特右旗','固阳县','达尔罕茂明安联合旗']},
{name:'乌海市', areaList:['市辖区','海勃湾区','海南区','乌达区']},
{name:'赤峰市', areaList:['市辖区','红山区','元宝山区','松山区','阿鲁科尔沁旗','巴林左旗','巴林右旗','林西县','克什克腾旗','翁牛特旗','喀喇沁旗','宁城县','敖汉旗']},
{name:'通辽市', areaList:['市辖区','科尔沁区','科尔沁左翼中旗','科尔沁左翼后旗','开鲁县','库伦旗','奈曼旗','扎鲁特旗','霍林郭勒市']},
{name:'鄂尔多斯市', areaList:['东胜区','达拉特旗','准格尔旗','鄂托克前旗','鄂托克旗','杭锦旗','乌审旗','伊金霍洛旗']},
{name:'呼伦贝尔市', areaList:['市辖区','海拉尔区','阿荣旗','莫力达瓦达斡尔族自治旗','鄂伦春自治旗','鄂温克族自治旗','陈巴尔虎旗','新巴尔虎左旗','新巴尔虎右旗','满洲里市','牙克石市','扎兰屯市','额尔古纳市','根河市']},
{name:'巴彦淖尔市', areaList:['市辖区','临河区','五原县','磴口县','乌拉特前旗','乌拉特中旗','乌拉特后旗','杭锦后旗']},
{name:'乌兰察布市', areaList:['市辖区','集宁区','卓资县','化德县','商都县','兴和县','凉城县','察哈尔右翼前旗','察哈尔右翼中旗','察哈尔右翼后旗','四子王旗','丰镇市']},
{name:'兴安盟', areaList:['乌兰浩特市','阿尔山市','科尔沁右翼前旗','科尔沁右翼中旗','扎赉特旗','突泉县']},
{name:'锡林郭勒盟', areaList:['二连浩特市','锡林浩特市','阿巴嘎旗','苏尼特左旗','苏尼特右旗','东乌珠穆沁旗','西乌珠穆沁旗','太仆寺旗','镶黄旗','正镶白旗','正蓝旗','多伦县']},
{name:'阿拉善盟', areaList:['阿拉善左旗','阿拉善右旗','额济纳旗']}
]},
{name:'江苏', cityList:[
{name:'南京市', areaList:['市辖区','玄武区','白下区','秦淮区','建邺区','鼓楼区','下关区','浦口区','栖霞区','雨花台区','江宁区','六合区','溧水县','高淳县']},
{name:'无锡市', areaList:['市辖区','崇安区','南长区','北塘区','锡山区','惠山区','滨湖区','江阴市','宜兴市']},
{name:'徐州市', areaList:['市辖区','鼓楼区','云龙区','九里区','贾汪区','泉山区','丰 县','沛 县','铜山县','睢宁县','新沂市','邳州市']},
{name:'常州市', areaList:['市辖区','天宁区','钟楼区','戚墅堰区','新北区','武进区','溧阳市','金坛市']},
{name:'苏州市', areaList:['市辖区','沧浪区','平江区','金阊区','虎丘区','吴中区','相城区','常熟市','张家港市','昆山市','吴江市','太仓市']},
{name:'南通市', areaList:['市辖区','崇川区','港闸区','海安县','如东县','启东市','如皋市','通州市','海门市']},
{name:'连云港市', areaList:['市辖区','连云区','新浦区','海州区','赣榆县','东海县','灌云县','灌南县']},
{name:'淮安市', areaList:['市辖区','清河区','楚州区','淮阴区','清浦区','涟水县','洪泽县','盱眙县','金湖县']},
{name:'盐城市', areaList:['市辖区','亭湖区','盐都区','响水县','滨海县','阜宁县','射阳县','建湖县','东台市','大丰市']},
{name:'扬州市', areaList:['市辖区','广陵区','邗江区','郊 区','宝应县','仪征市','高邮市','江都市']},
{name:'镇江市', areaList:['市辖区','京口区','润州区','丹徒区','丹阳市','扬中市','句容市']},
{name:'泰州市', areaList:['市辖区','海陵区','高港区','兴化市','靖江市','泰兴市','姜堰市']},
{name:'宿迁市', areaList:['市辖区','宿城区','宿豫区','沭阳县','泗阳县','泗洪县']}
]},
{name:'浙江', cityList:[
{name:'杭州市', areaList:['市辖区','上城区','下城区','江干区','拱墅区','西湖区','滨江区','萧山区','余杭区','桐庐县','淳安县','建德市','富阳市','临安市']},
{name:'宁波市', areaList:['市辖区','海曙区','江东区','江北区','北仑区','镇海区','鄞州区','象山县','宁海县','余姚市','慈溪市','奉化市']},
{name:'温州市', areaList:['市辖区','鹿城区','龙湾区','瓯海区','洞头县','永嘉县','平阳县','苍南县','文成县','泰顺县','瑞安市','乐清市']},
{name:'嘉兴市', areaList:['市辖区','秀城区','秀洲区','嘉善县','海盐县','海宁市','平湖市','桐乡市']},
{name:'湖州市', areaList:['市辖区','吴兴区','南浔区','德清县','长兴县','安吉县']},
{name:'绍兴市', areaList:['市辖区','越城区','绍兴县','新昌县','诸暨市','上虞市','嵊州市']},
{name:'金华市', areaList:['市辖区','婺城区','金东区','武义县','浦江县','磐安县','兰溪市','义乌市','东阳市','永康市']},
{name:'衢州市', areaList:['市辖区','柯城区','衢江区','常山县','开化县','龙游县','江山市']},
{name:'舟山市', areaList:['市辖区','定海区','普陀区','岱山县','嵊泗县']},
{name:'台州市', areaList:['市辖区','椒江区','黄岩区','路桥区','玉环县','三门县','天台县','仙居县','温岭市','临海市']},
{name:'丽水市', areaList:['市辖区','莲都区','青田县','缙云县','遂昌县','松阳县','云和县','庆元县','景宁畲族自治县','龙泉市']}
]},
{name:'安徽', cityList:[
{name:'合肥市', areaList:['市辖区','瑶海区','庐阳区','蜀山区','包河区','长丰县','肥东县','肥西县']},
{name:'芜湖市', areaList:['市辖区','镜湖区','马塘区','新芜区','鸠江区','芜湖县','繁昌县','南陵县']},
{name:'蚌埠市', areaList:['市辖区','龙子湖区','蚌山区','禹会区','淮上区','怀远县','五河县','固镇县']},
{name:'淮南市', areaList:['市辖区','大通区','田家庵区','谢家集区','八公山区','潘集区','凤台县']},
{name:'马鞍山市', areaList:['市辖区','金家庄区','花山区','雨山区','当涂县']},
{name:'淮北市', areaList:['市辖区','杜集区','相山区','烈山区','濉溪县']},
{name:'铜陵市', areaList:['市辖区','铜官山区','狮子山区','郊 区','铜陵县']},
{name:'安庆市', areaList:['市辖区','迎江区','大观区','郊 区','怀宁县','枞阳县','潜山县','太湖县','宿松县','望江县','岳西县','桐城市']},
{name:'黄山市', areaList:['市辖区','屯溪区','黄山区','徽州区','歙 县','休宁县','黟 县','祁门县']},
{name:'滁州市', areaList:['市辖区','琅琊区','南谯区','来安县','全椒县','定远县','凤阳县','天长市','明光市']},
{name:'阜阳市', areaList:['市辖区','颍州区','颍东区','颍泉区','临泉县','太和县','阜南县','颍上县','界首市']},
{name:'宿州市', areaList:['市辖区','墉桥区','砀山县','萧 县','灵璧县','泗 县']},
{name:'巢湖市', areaList:['市辖区','居巢区','庐江县','无为县','含山县','和 县']},
{name:'六安市', areaList:['市辖区','金安区','裕安区','寿 县','霍邱县','舒城县','金寨县','霍山县']},
{name:'亳州市', areaList:['市辖区','谯城区','涡阳县','蒙城县','利辛县']},
{name:'池州市', areaList:['市辖区','贵池区','东至县','石台县','青阳县']},
{name:'宣城市', areaList:['市辖区','宣州区','郎溪县','广德县','泾 县','绩溪县','旌德县','宁国市']}
]},
{name:'福建', cityList:[
{name:'福州市', areaList:['市辖区','鼓楼区','台江区','仓山区','马尾区','晋安区','闽侯县','连江县','罗源县','闽清县','永泰县','平潭县','福清市','长乐市']},
{name:'厦门市', areaList:['市辖区','思明区','海沧区','湖里区','集美区','同安区','翔安区']},
{name:'莆田市', areaList:['市辖区','城厢区','涵江区','荔城区','秀屿区','仙游县']},
{name:'三明市', areaList:['市辖区','梅列区','三元区','明溪县','清流县','宁化县','大田县','尤溪县','沙 县','将乐县','泰宁县','建宁县','永安市']},
{name:'泉州市', areaList:['市辖区','鲤城区','丰泽区','洛江区','泉港区','惠安县','安溪县','永春县','德化县','金门县','石狮市','晋江市','南安市']},
{name:'漳州市', areaList:['市辖区','芗城区','龙文区','云霄县','漳浦县','诏安县','长泰县','东山县','南靖县','平和县','华安县','龙海市']},
{name:'南平市', areaList:['市辖区','延平区','顺昌县','浦城县','光泽县','松溪县','政和县','邵武市','武夷山市','建瓯市','建阳市']},
{name:'龙岩市', areaList:['市辖区','新罗区','长汀县','永定县','上杭县','武平县','连城县','漳平市']},
{name:'宁德市', areaList:['市辖区','蕉城区','霞浦县','古田县','屏南县','寿宁县','周宁县','柘荣县','福安市','福鼎市']}
]},
{name:'江西', cityList:[
{name:'南昌市', areaList:['市辖区','东湖区','西湖区','青云谱区','湾里区','青山湖区','南昌县','新建县','安义县','进贤县']},
{name:'景德镇市', areaList:['市辖区','昌江区','珠山区','浮梁县','乐平市']},
{name:'萍乡市', areaList:['市辖区','安源区','湘东区','莲花县','上栗县','芦溪县']},
{name:'九江市', areaList:['市辖区','庐山区','浔阳区','九江县','武宁县','修水县','永修县','德安县','星子县','都昌县','湖口县','彭泽县','瑞昌市']},
{name:'新余市', areaList:['市辖区','渝水区','分宜县']},
{name:'鹰潭市', areaList:['市辖区','月湖区','余江县','贵溪市']},
{name:'赣州市', areaList:['市辖区','章贡区','赣 县','信丰县','大余县','上犹县','崇义县','安远县','龙南县','定南县','全南县','宁都县','于都县','兴国县','会昌县','寻乌县','石城县','瑞金市','南康市']},
{name:'吉安市', areaList:['市辖区','吉州区','青原区','吉安县','吉水县','峡江县','新干县','永丰县','泰和县','遂川县','万安县','安福县','永新县','井冈山市']},
{name:'宜春市', areaList:['市辖区','袁州区','奉新县','万载县','上高县','宜丰县','靖安县','铜鼓县','丰城市','樟树市','高安市']},
{name:'抚州市', areaList:['市辖区','临川区','南城县','黎川县','南丰县','崇仁县','乐安县','宜黄县','金溪县','资溪县','东乡县','广昌县']},
{name:'上饶市', areaList:['市辖区','信州区','上饶县','广丰县','玉山县','铅山县','横峰县','弋阳县','余干县','鄱阳县','万年县','婺源县','德兴市']}
]},
{name:'山东', cityList:[
{name:'济南市', areaList:['市辖区','历下区','市中区','槐荫区','天桥区','历城区','长清区','平阴县','济阳县','商河县','章丘市']},
{name:'青岛市', areaList:['市辖区','市南区','市北区','四方区','黄岛区','崂山区','李沧区','城阳区','胶州市','即墨市','平度市','胶南市','莱西市']},
{name:'淄博市', areaList:['市辖区','淄川区','张店区','博山区','临淄区','周村区','桓台县','高青县','沂源县']},
{name:'枣庄市', areaList:['市辖区','市中区','薛城区','峄城区','台儿庄区','山亭区','滕州市']},
{name:'东营市', areaList:['市辖区','东营区','河口区','垦利县','利津县','广饶县']},
{name:'烟台市', areaList:['市辖区','芝罘区','福山区','牟平区','莱山区','长岛县','龙口市','莱阳市','莱州市','蓬莱市','招远市','栖霞市','海阳市']},
{name:'潍坊市', areaList:['市辖区','潍城区','寒亭区','坊子区','奎文区','临朐县','昌乐县','青州市','诸城市','寿光市','安丘市','高密市','昌邑市']},
{name:'济宁市', areaList:['市辖区','市中区','任城区','微山县','鱼台县','金乡县','嘉祥县','汶上县','泗水县','梁山县','曲阜市','兖州市','邹城市']},
{name:'泰安市', areaList:['市辖区','泰山区','岱岳区','宁阳县','东平县','新泰市','肥城市']},
{name:'威海市', areaList:['市辖区','环翠区','文登市','荣成市','乳山市']},
{name:'日照市', areaList:['市辖区','东港区','岚山区','五莲县','莒 县']},
{name:'莱芜市', areaList:['市辖区','莱城区','钢城区']},
{name:'临沂市', areaList:['市辖区','兰山区','罗庄区','河东区','沂南县','郯城县','沂水县','苍山县','费 县','平邑县','莒南县','蒙阴县','临沭县']},
{name:'德州市', areaList:['市辖区','德城区','陵 县','宁津县','庆云县','临邑县','齐河县','平原县','夏津县','武城县','乐陵市','禹城市']},
{name:'聊城市', areaList:['市辖区','东昌府区','阳谷县','莘 县','茌平县','东阿县','冠 县','高唐县','临清市']},
{name:'滨州市', areaList:['市辖区','滨城区','惠民县','阳信县','无棣县','沾化县','博兴县','邹平县']},
{name:'荷泽市', areaList:['市辖区','牡丹区','曹 县','单 县','成武县','巨野县','郓城县','鄄城县','定陶县','东明县']}
]},
{name:'辽宁', cityList:[
{name:'沈阳市', areaList:['市辖区','和平区','沈河区','大东区','皇姑区','铁西区','苏家屯区','东陵区','新城子区','于洪区','辽中县','康平县','法库县','新民市']},
{name:'大连市', areaList:['市辖区','中山区','西岗区','沙河口区','甘井子区','旅顺口区','金州区','长海县','瓦房店市','普兰店市','庄河市']},
{name:'鞍山市', areaList:['市辖区','铁东区','铁西区','立山区','千山区','台安县','岫岩满族自治县','海城市']},
{name:'抚顺市', areaList:['市辖区','新抚区','东洲区','望花区','顺城区','抚顺县','新宾满族自治县','清原满族自治县']},
{name:'本溪市', areaList:['市辖区','平山区','溪湖区','明山区','南芬区','本溪满族自治县','桓仁满族自治县']},
{name:'丹东市', areaList:['市辖区','元宝区','振兴区','振安区','宽甸满族自治县','东港市','凤城市']},
{name:'锦州市', areaList:['市辖区','古塔区','凌河区','太和区','黑山县','义 县','凌海市','北宁市']},
{name:'营口市', areaList:['市辖区','站前区','西市区','鲅鱼圈区','老边区','盖州市','大石桥市']},
{name:'阜新市', areaList:['市辖区','海州区','新邱区','太平区','清河门区','细河区','阜新蒙古族自治县','彰武县']},
{name:'辽阳市', areaList:['市辖区','白塔区','文圣区','宏伟区','弓长岭区','太子河区','辽阳县','灯塔市']},
{name:'盘锦市', areaList:['市辖区','双台子区','兴隆台区','大洼县','盘山县']},
{name:'铁岭市', areaList:['市辖区','银州区','清河区','铁岭县','西丰县','昌图县','调兵山市','开原市']},
{name:'朝阳市', areaList:['市辖区','双塔区','龙城区','朝阳县','建平县','喀喇沁左翼蒙古族自治县','北票市','凌源市']},
{name:'葫芦岛市', areaList:['市辖区','连山区','龙港区','南票区','绥中县','建昌县','兴城市']}
]},
{name:'吉林', cityList:[
{name:'长春市', areaList:['市辖区','南关区','宽城区','朝阳区','二道区','绿园区','双阳区','农安县','九台市','榆树市','德惠市']},
{name:'吉林市', areaList:['市辖区','昌邑区','龙潭区','船营区','丰满区','永吉县','蛟河市','桦甸市','舒兰市','磐石市']},
{name:'四平市', areaList:['市辖区','铁西区','铁东区','梨树县','伊通满族自治县','公主岭市','双辽市']},
{name:'辽源市', areaList:['市辖区','龙山区','西安区','东丰县','东辽县']},
{name:'通化市', areaList:['市辖区','东昌区','二道江区','通化县','辉南县','柳河县','梅河口市','集安市']},
{name:'白山市', areaList:['市辖区','八道江区','抚松县','靖宇县','长白朝鲜族自治县','江源县','临江市']},
{name:'松原市', areaList:['市辖区','宁江区','前郭尔罗斯蒙古族自治县','长岭县','乾安县','扶余县']},
{name:'白城市', areaList:['市辖区','洮北区','镇赉县','通榆县','洮南市','大安市']},
{name:'延边朝鲜族自治州', areaList:['延吉市','图们市','敦化市','珲春市','龙井市','和龙市','汪清县','安图县']}
]},
{name:'黑龙江', cityList:[
{name:'哈尔滨市', areaList:['市辖区','道里区','南岗区','道外区','香坊区','动力区','平房区','松北区','呼兰区','依兰县','方正县','宾 县','巴彦县','木兰县','通河县','延寿县','阿城市','双城市','尚志市','五常市']},
{name:'齐齐哈尔市', areaList:['市辖区','龙沙区','建华区','铁锋区','昂昂溪区','富拉尔基区','碾子山区','梅里斯达斡尔族区','龙江县','依安县','泰来县','甘南县','富裕县','克山县','克东县','拜泉县','讷河市']},
{name:'鸡西市', areaList:['市辖区','鸡冠区','恒山区','滴道区','梨树区','城子河区','麻山区','鸡东县','虎林市','密山市']},
{name:'鹤岗市', areaList:['市辖区','向阳区','工农区','南山区','兴安区','东山区','兴山区','萝北县','绥滨县']},
{name:'双鸭山市', areaList:['市辖区','尖山区','岭东区','四方台区','宝山区','集贤县','友谊县','宝清县','饶河县']},
{name:'大庆市', areaList:['市辖区','萨尔图区','龙凤区','让胡路区','红岗区','大同区','肇州县','肇源县','林甸县','杜尔伯特蒙古族自治县']},
{name:'伊春市', areaList:['市辖区','伊春区','南岔区','友好区','西林区','翠峦区','新青区','美溪区','金山屯区','五营区','乌马河区','汤旺河区','带岭区','乌伊岭区','红星区','上甘岭区','嘉荫县','铁力市']},
{name:'佳木斯市', areaList:['市辖区','永红区','向阳区','前进区','东风区','郊 区','桦南县','桦川县','汤原县','抚远县','同江市','富锦市']},
{name:'七台河市', areaList:['市辖区','新兴区','桃山区','茄子河区','勃利县']},
{name:'牡丹江市', areaList:['市辖区','东安区','阳明区','爱民区','西安区','东宁县','林口县','绥芬河市','海林市','宁安市','穆棱市']},
{name:'黑河市', areaList:['市辖区','爱辉区','嫩江县','逊克县','孙吴县','北安市','五大连池市']},
{name:'绥化市', areaList:['市辖区','北林区','望奎县','兰西县','青冈县','庆安县','明水县','绥棱县','安达市','肇东市','海伦市']},
{name:'大兴安岭地区', areaList:['呼玛县','塔河县','漠河县']}
]},
{name:'海南', cityList:[
{name:'海口市', areaList:['市辖区','秀英区','龙华区','琼山区','美兰区']},
{name:'三亚市', areaList:['市辖区']},
{name:'省直辖县级行政单位', areaList:['五指山市','琼海市','儋州市','文昌市','万宁市','东方市','定安县','屯昌县','澄迈县','临高县','白沙黎族自治县','昌江黎族自治县','乐东黎族自治县','陵水黎族自治县','保亭黎族苗族自治县','琼中黎族苗族自治县','西沙群岛','南沙群岛','中沙群岛的岛礁及其海域']}
]},
{name:'台湾', cityList:[
{name:'台湾', areaList:['台湾']}
]},
{name:'香港', cityList:[
{name:'香港', areaList:['香港']}
]},
{name:'澳门', cityList:[
{name:'澳门', areaList:['澳门']}
]}
];

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,2 @@
/** layui-v2.4.5 MIT License By https://www.layui.com */
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save