• 这个旅游网站功能太全了!!可以订票,订酒店,还是前后端分离的架构ssm+vue


    基于SSM+VUE的旅游网站

    一、系统截图

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    二、系统架构

    系统架构:本系统使用Java作为主要的编程语言编程开发,后台以SSM框架作为主要的技术支撑,数据库采用采用MySQL,前端采用VUE同时配合JavaScript语言,同时引入百度的Ueditor编辑器丰富页面的内容。
    开发环境:JDK8+IDEA+MySQL8.0

    a.景点管理,展示景点的基础信息,介绍等信息。
    b.酒店管理,展示酒店的基础信息,介绍等信息。
    c.评价管理,可以查看景点或酒店的相关评价信息,客户消费完,可以评价景点或者酒店信息。
    d.景点查询,可以输入关键字查询相关景点信息。
    e.预定功能,用户可以在线预定酒店或景点。
    f.支付功能,用户在预定景点门票或酒店时可以支付相关费用。
    g.在线留言,提供查看留言和提交留言的功能。
    h.用户信息管理,提供用户修改登录密码和修改详细资料的功能。

    三、下载链接

    点击下载

    更多关于项目的描述可以点击基于SSM+VUE的旅游网站

    四、核心代码

    <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 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.jlwl</groupId>
      <artifactId>ssmeaog5</artifactId>
      <packaging>war</packaging>
      <version>1.0-SNAPSHOT</version><properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <spring.version>5.0.0.RELEASE</spring.version>
        <junit.version>4.12</junit.version>
        <druid.version>1.1.0</druid.version>
        <fastjson.version>1.2.8</fastjson.version>
        <mybaitsplus.version>2.3</mybaitsplus.version>
        <mysql.version>8.0.16</mysql.version>
        <log4j.version>1.2.17</log4j.version>
        <slf4j.version>1.7.19</slf4j.version>
        <aspectjweaver.version>1.8.8</aspectjweaver.version>
        <fileupload.version>1.3.1</fileupload.version>
        <jstl.version>1.2</jstl.version>
      </properties><dependencies>
        <!-- JUnit -->
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>${junit.version}</version>
          <scope>test</scope>
        </dependency><!-- Spring -->
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-core</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-context</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-context-support</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-tx</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-aop</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-beans</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-jdbc</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency><!-- Spring MVC -->
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-web</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-webmvc</artifactId>
          <version>${spring.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency><!-- AOP -->
        <dependency>
          <groupId>org.aspectj</groupId>
          <artifactId>aspectjweaver</artifactId>
          <version>${aspectjweaver.version}</version>
        </dependency><!-- FileUpload -->
        <dependency>
          <groupId>commons-fileupload</groupId>
          <artifactId>commons-fileupload</artifactId>
          <version>${fileupload.version}</version>
        </dependency><dependency>
          <groupId>javax.servlet</groupId>
          <artifactId>jstl</artifactId>
          <version>${jstl.version}</version>
        </dependency><!-- Mybatis-Plus -->
        <dependency>
          <groupId>com.baomidou</groupId>
          <artifactId>mybatis-plus</artifactId>
          <version>${mybaitsplus.version}</version>
        </dependency><!-- Mysql -->
        <dependency>
          <groupId>mysql</groupId>
          <artifactId>mysql-connector-java</artifactId>
          <version>${mysql.version}</version>
        </dependency><dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>sqljdbc4</artifactId>
            <scope>4.0</scope>
            <version>4.0</version>
        </dependency>
        
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>mssql-jdbc</artifactId>
            <version>6.2.0.jre8</version>
            <scope>runtime</scope>
        </dependency><!-- Druid -->
        <dependency>
          <groupId>com.alibaba</groupId>
          <artifactId>druid</artifactId>
          <version>${druid.version}</version>
        </dependency><!-- FastJson -->
        <dependency>
          <groupId>com.alibaba</groupId>
          <artifactId>fastjson</artifactId>
          <version>${fastjson.version}</version>
        </dependency><!-- Log -->
        <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
          <version>${log4j.version}</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
          <version>${slf4j.version}</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
          <version>${slf4j.version}</version>
        </dependency><dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-test</artifactId>
          <version>${spring.version}</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.0</version>
        </dependency>
        
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
            <version>2.0.1.Final</version>
        </dependency>
        
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.5</version>
        </dependency>
        
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>4.0.12</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core -->
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-core</artifactId>
            <version>9.0.29</version>
        </dependency>
        
        <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.8.0</version>
        </dependency>
        
        <!-- 百度人工智能 -->
        <dependency>
            <groupId>com.baidu.aip</groupId>
            <artifactId>java-sdk</artifactId>
            <version>4.4.1</version>
        </dependency>
        
        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.10.1</version>
        </dependency>
        
        <dependency>
              <groupId>com.fasterxml.jackson.core</groupId>
              <artifactId>jackson-databind</artifactId>
              <version>2.10.1</version>
          </dependency>
       
          <dependency>
              <groupId>org.codehaus.jackson</groupId>
              <artifactId>jackson-mapper-asl</artifactId>
              <version>1.9.13</version>
          </dependency>
        
      </dependencies><build>
      <!-- 项目访问名称 -->
        <finalName>ssmeaog5</finalName>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <source>1.7</source>
              <target>1.7</target>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </project><template>
      <div class="main-content">
        <!-- 列表页 -->
        <div v-if="showFlag">
          <el-form :inline="true" :model="searchForm" class="form-content">
            <el-row :gutter="20" class="slt" :style="{justifyContent:contents.searchBoxPosition=='1'?'flex-start':contents.searchBoxPosition=='2'?'center':'flex-end'}">
                    <el-form-item :label="contents.inputTitle == 1 ? '用户名' : ''">
                      <el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.nickname" placeholder="用户名" clearable></el-input>
                      <el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.nickname" placeholder="用户名" clearable></el-input>
                      <el-input v-if="contents.inputIcon == 0" v-model="searchForm.nickname" placeholder="用户名" clearable></el-input>
                    </el-form-item>
                    <el-form-item :label="contents.inputTitle == 1 ? '评论内容' : ''">
                      <el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.content" placeholder="评论内容" clearable></el-input>
                      <el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.content" placeholder="评论内容" clearable></el-input>
                      <el-input v-if="contents.inputIcon == 0" v-model="searchForm.content" placeholder="评论内容" clearable></el-input>
                    </el-form-item>
              <el-form-item>
                <el-button v-if="contents.searchBtnIcon == 1 && contents.searchBtnIconPosition == 1" icon="el-icon-search" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}</el-button>
                <el-button v-if="contents.searchBtnIcon == 1 && contents.searchBtnIconPosition == 2" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}<i class="el-icon-search el-icon--right"/></el-button>
                <el-button v-if="contents.searchBtnIcon == 0" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}</el-button>
              </el-form-item>
            </el-row>
            <el-row class="ad" :style="{justifyContent:contents.btnAdAllBoxPosition=='1'?'flex-start':contents.btnAdAllBoxPosition=='2'?'center':'flex-end'}">
              <el-form-item>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','新增') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 1"
                  type="success"
                  icon="el-icon-plus"
                  @click="addOrUpdateHandler()"
                >{{ contents.btnAdAllFont == 1?'新增':'' }}</el-button>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','新增') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 2"
                  type="success"
                  @click="addOrUpdateHandler()"
                >{{ contents.btnAdAllFont == 1?'新增':'' }}<i class="el-icon-plus el-icon--right" /></el-button>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','新增') && contents.btnAdAllIcon == 0"
                  type="success"
                  @click="addOrUpdateHandler()"
                >{{ contents.btnAdAllFont == 1?'新增':'' }}</el-button>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','删除') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 1 && contents.tableSelection"
                  :disabled="dataListSelections.length <= 0"
                  type="danger"
                  icon="el-icon-delete"
                  @click="deleteHandler()"
                >{{ contents.btnAdAllFont == 1?'删除':'' }}</el-button>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','删除') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 2 && contents.tableSelection"
                  :disabled="dataListSelections.length <= 0"
                  type="danger"
                  @click="deleteHandler()"
                >{{ contents.btnAdAllFont == 1?'删除':'' }}<i class="el-icon-delete el-icon--right" /></el-button>
                <el-button
                  v-if="isAuth('discussjingdianxinxi','删除') && contents.btnAdAllIcon == 0 && contents.tableSelection"
                  :disabled="dataListSelections.length <= 0"
                  type="danger"
                  @click="deleteHandler()"
                >{{ contents.btnAdAllFont == 1?'删除':'' }}</el-button>
    ​
    ​
              </el-form-item>
            </el-row>
          </el-form>
          <div class="table-content">
            <el-table class="tables" :size="contents.tableSize" :show-header="contents.tableShowHeader"
                :header-row-style="headerRowStyle" :header-cell-style="headerCellStyle"
                :border="contents.tableBorder"
                :fit="contents.tableFit"
                :stripe="contents.tableStripe"
                :row-style="rowStyle"
                :cell-style="cellStyle"
                :style="{width: '100%',fontSize:contents.tableContentFontSize,color:contents.tableContentFontColor}"
                :data="dataList"
                v-loading="dataListLoading"
                @selection-change="selectionChangeHandler">
                <el-table-column  v-if="contents.tableSelection"
                    type="selection"
                    header-align="center"
                    align="center"
                    width="50">
                </el-table-column>
                <el-table-column label="索引" v-if="contents.tableIndex" type="index" width="50" />
                    <el-table-column  :sortable="contents.tableSortable" :align="contents.tableAlign"
                        prop="nickname"
                        header-align="center"
            label="用户名">
             <template slot-scope="scope">
                           {{scope.row.nickname}}
                         </template>
                    </el-table-column>
                    <el-table-column  :sortable="contents.tableSortable" :align="contents.tableAlign"
                        prop="content"
                        header-align="center"
            label="评论内容">
             <template slot-scope="scope">
                           {{scope.row.content}}
                         </template>
                    </el-table-column>
                    <el-table-column  :sortable="contents.tableSortable" :align="contents.tableAlign"
                        prop="reply"
                        header-align="center"
            label="回复内容">
             <template slot-scope="scope">
                           {{scope.row.reply}}
                         </template>
                    </el-table-column>
                <el-table-column width="300" :align="contents.tableAlign"
                    header-align="center"
                    label="操作">
                    <template slot-scope="scope">
                    <el-button v-if=" contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="success" icon="el-icon-tickets" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}</el-button>
                    <el-button v-if=" contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="success" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}<i class="el-icon-tickets el-icon--right" /></el-button>
                    <el-button v-if=" contents.tableBtnIcon == 0" type="success" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}</el-button>
                    <el-button v-if="isAuth('discussjingdianxinxi','修改') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="primary" icon="el-icon-edit" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}</el-button>
                    <el-button v-if="isAuth('discussjingdianxinxi','修改') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}<i class="el-icon-edit el-icon--right" /></el-button>
                    <el-button v-if="isAuth('discussjingdianxinxi','修改') && contents.tableBtnIcon == 0" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}</el-button>
    ​
    ​
                    <el-button v-if="isAuth('discussjingdianxinxi','查看评论') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="primary" icon="el-icon-edit" size="mini" @click="disscussListHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'查看评论':'' }}</el-button>
                    <el-button v-if="isAuth('discussjingdianxinxi','查看评论') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="primary" size="mini" @click="disscussListHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'查看评论':'' }}<i class="el-icon-edit el-icon--right" /></el-button>
                    <el-button v-if="isAuth('discussjingdianxinxi','查看评论') && contents.tableBtnIcon == 0" type="primary" size="mini" @click="disscussListHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'查看评论':'' }}</el-button><el-button v-if="contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="primary" icon="el-icon-edit" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'回复':'' }}</el-button>
                    <el-button v-if="contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'回复':'' }}<i class="el-icon-edit el-icon--right" /></el-button>
                    <el-button v-if="contents.tableBtnIcon == 0" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'回复':'' }}</el-button><el-button v-if=" contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="danger" icon="el-icon-delete" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}</el-button>
                    <el-button v-if=" contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="danger" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}<i class="el-icon-delete el-icon--right" /></el-button>
                    <el-button v-if=" contents.tableBtnIcon == 0" type="danger" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}</el-button>
                    </template>
                </el-table-column>
            </el-table>
            <el-pagination
              clsss="pages"
              :layout="layouts"
              @size-change="sizeChangeHandle"
              @current-change="currentChangeHandle"
              :current-page="pageIndex"
              :page-sizes="[10, 20, 50, 100]"
              :page-size="Number(contents.pageEachNum)"
              :total="totalPage"
              :small="contents.pageStyle"
              class="pagination-content"
              :background="contents.pageBtnBG"
              :style="{textAlign:contents.pagePosition==1?'left':contents.pagePosition==2?'center':'right'}"
            ></el-pagination>
          </div>
        </div>
        <!-- 添加/修改页面  将父组件的search方法传递给子组件-->
        <add-or-update v-if="addOrUpdateFlag" :parent="this" ref="addOrUpdate"></add-or-update>
    ​
    ​
    ​
      </div>
    </template>
    <script>
    import AddOrUpdate from "./add-or-update";
    export default {
      data() {
        return {
          searchForm: {
            key: ""
          },
          form:{},
          dataList: [],
          pageIndex: 1,
          pageSize: 10,
          totalPage: 0,
          dataListLoading: false,
          dataListSelections: [],
          showFlag: true,
          sfshVisiable: false,
          shForm: {},
          chartVisiable: false,
          addOrUpdateFlag:false,
          contents:{"searchBtnFontColor":"#333","pagePosition":"1","inputFontSize":"14px","inputBorderRadius":"22px","tableBtnDelFontColor":"#333","tableBtnIconPosition":"1","searchBtnHeight":"40px","inputIconColor":"rgba(66, 130, 129, 1)","searchBtnBorderRadius":"22px","tableStripe":false,"btnAdAllWarnFontColor":"#333","tableBtnDelBgColor":"rgba(244, 150, 150, 1)","searchBtnIcon":"1","tableSize":"medium","searchBtnBorderStyle":"solid","tableSelection":true,"searchBtnBorderWidth":"1px","tableContentFontSize":"14px","searchBtnBgColor":"rgba(153, 239, 237, 1)","inputTitleSize":"14px","btnAdAllBorderColor":"#DCDFE6","pageJumper":true,"btnAdAllIconPosition":"1","searchBoxPosition":"1","tableBtnDetailFontColor":"#333","tableBtnHeight":"40px","pagePager":true,"searchBtnBorderColor":"#DCDFE6","tableHeaderFontColor":"rgba(33, 34, 35, 1)","inputTitle":"1","tableBtnBorderRadius":"22px","btnAdAllFont":"1","btnAdAllDelFontColor":"rgba(21, 20, 20, 1)","tableBtnIcon":"1","btnAdAllHeight":"40px","btnAdAllWarnBgColor":"rgba(238, 236, 126, 1)","btnAdAllBorderWidth":"1px","tableStripeFontColor":"#606266","tableBtnBorderStyle":"solid","inputHeight":"40px","btnAdAllBorderRadius":"22px","btnAdAllDelBgColor":"rgba(234, 93, 93, 0.69)","pagePrevNext":true,"btnAdAllAddBgColor":"rgba(153, 239, 237, 1)","searchBtnFont":"1","tableIndex":true,"btnAdAllIcon":"1","tableSortable":true,"pageSizes":true,"tableFit":true,"pageBtnBG":true,"searchBtnFontSize":"14px","tableBtnEditBgColor":"rgba(240, 242, 124, 1)","inputBorderWidth":"1px","inputFontPosition":"1","inputFontColor":"#333","pageEachNum":10,"tableHeaderBgColor":"rgba(152, 129, 129, 1)","inputTitleColor":"#333","btnAdAllBoxPosition":"1","tableBtnDetailBgColor":"rgba(171, 239, 239, 1)","inputIcon":"0","searchBtnIconPosition":"1","btnAdAllFontSize":"14px","inputBorderStyle":"solid","inputBgColor":"rgba(197, 174, 174, 0.32)","pageStyle":false,"pageTotal":true,"btnAdAllAddFontColor":"#333","tableBtnFont":"1","tableContentFontColor":"rgba(22, 22, 23, 1)","inputBorderColor":"rgba(152, 129, 129, 1)","tableShowHeader":true,"tableBtnFontSize":"14px","tableBtnBorderColor":"rgba(196, 210, 244, 1)","inputIconPosition":"1","tableBorder":true,"btnAdAllBorderStyle":"solid","tableBtnBorderWidth":"1px","tableStripeBgColor":"rgba(213, 197, 197, 1)","tableBtnEditFontColor":"#333","tableAlign":"center"},
          layouts: '',
    ​
    ​
        };
      },
      created() {
        this.init();
        this.getDataList();
        this.contentStyleChange()
      },
      mounted() {},
      filters: {
        htmlfilter: function (val) {
          return val.replace(/<[^>]*>/g).replace(/undefined/g,'');
        }
      },
      components: {
        AddOrUpdate,
      },
      methods: {
        contentStyleChange() {
          this.contentSearchStyleChange()
          this.contentBtnAdAllStyleChange()
          this.contentSearchBtnStyleChange()
          this.contentTableBtnStyleChange()
          this.contentPageStyleChange()
        },
        contentSearchStyleChange() {
          this.$nextTick(()=>{
            document.querySelectorAll('.form-content .slt .el-input__inner').forEach(el=>{
              let textAlign = 'left'
              if(this.contents.inputFontPosition == 2) textAlign = 'center'
              if(this.contents.inputFontPosition == 3) textAlign = 'right'
              el.style.textAlign = textAlign
              el.style.height = this.contents.inputHeight
              el.style.lineHeight = this.contents.inputHeight
              el.style.color = this.contents.inputFontColor
              el.style.fontSize = this.contents.inputFontSize
              el.style.borderWidth = this.contents.inputBorderWidth
              el.style.borderStyle = this.contents.inputBorderStyle
              el.style.borderColor = this.contents.inputBorderColor
              el.style.borderRadius = this.contents.inputBorderRadius
              el.style.backgroundColor = this.contents.inputBgColor
            })
            if(this.contents.inputTitle) {
              document.querySelectorAll('.form-content .slt .el-form-item__label').forEach(el=>{
                el.style.color = this.contents.inputTitleColor
                el.style.fontSize = this.contents.inputTitleSize
                el.style.lineHeight = this.contents.inputHeight
              })
            }
            setTimeout(()=>{
              document.querySelectorAll('.form-content .slt .el-input__prefix').forEach(el=>{
                el.style.color = this.contents.inputIconColor
                el.style.lineHeight = this.contents.inputHeight
              })
              document.querySelectorAll('.form-content .slt .el-input__suffix').forEach(el=>{
                el.style.color = this.contents.inputIconColor
                el.style.lineHeight = this.contents.inputHeight
              })
              document.querySelectorAll('.form-content .slt .el-input__icon').forEach(el=>{
                el.style.lineHeight = this.contents.inputHeight
              })
            },10)})
        },
        // 搜索按钮
        contentSearchBtnStyleChange() {
          this.$nextTick(()=>{
            document.querySelectorAll('.form-content .slt .el-button--success').forEach(el=>{
              el.style.height = this.contents.searchBtnHeight
              el.style.color = this.contents.searchBtnFontColor
              el.style.fontSize = this.contents.searchBtnFontSize
              el.style.borderWidth = this.contents.searchBtnBorderWidth
              el.style.borderStyle = this.contents.searchBtnBorderStyle
              el.style.borderColor = this.contents.searchBtnBorderColor
              el.style.borderRadius = this.contents.searchBtnBorderRadius
              el.style.backgroundColor = this.contents.searchBtnBgColor
            })
          })
        },
        // 新增、批量删除
        contentBtnAdAllStyleChange() {
          this.$nextTick(()=>{
            document.querySelectorAll('.form-content .ad .el-button--success').forEach(el=>{
              el.style.height = this.contents.btnAdAllHeight
              el.style.color = this.contents.btnAdAllAddFontColor
              el.style.fontSize = this.contents.btnAdAllFontSize
              el.style.borderWidth = this.contents.btnAdAllBorderWidth
              el.style.borderStyle = this.contents.btnAdAllBorderStyle
              el.style.borderColor = this.contents.btnAdAllBorderColor
              el.style.borderRadius = this.contents.btnAdAllBorderRadius
              el.style.backgroundColor = this.contents.btnAdAllAddBgColor
            })
            document.querySelectorAll('.form-content .ad .el-button--danger').forEach(el=>{
              el.style.height = this.contents.btnAdAllHeight
              el.style.color = this.contents.btnAdAllDelFontColor
              el.style.fontSize = this.contents.btnAdAllFontSize
              el.style.borderWidth = this.contents.btnAdAllBorderWidth
              el.style.borderStyle = this.contents.btnAdAllBorderStyle
              el.style.borderColor = this.contents.btnAdAllBorderColor
              el.style.borderRadius = this.contents.btnAdAllBorderRadius
              el.style.backgroundColor = this.contents.btnAdAllDelBgColor
            })
            document.querySelectorAll('.form-content .ad .el-button--warning').forEach(el=>{
              el.style.height = this.contents.btnAdAllHeight
              el.style.color = this.contents.btnAdAllWarnFontColor
              el.style.fontSize = this.contents.btnAdAllFontSize
              el.style.borderWidth = this.contents.btnAdAllBorderWidth
              el.style.borderStyle = this.contents.btnAdAllBorderStyle
              el.style.borderColor = this.contents.btnAdAllBorderColor
              el.style.borderRadius = this.contents.btnAdAllBorderRadius
              el.style.backgroundColor = this.contents.btnAdAllWarnBgColor
            })
          })
        },
        // 表格
        rowStyle({ row, rowIndex}) {
          if (rowIndex % 2 == 1) {
            if(this.contents.tableStripe) {
              return {color:this.contents.tableStripeFontColor}
            }
          } else {
            return ''
          }
        },
        cellStyle({ row, rowIndex}){
          if (rowIndex % 2 == 1) {
            if(this.contents.tableStripe) {
              return {backgroundColor:this.contents.tableStripeBgColor}
            }
          } else {
            return ''
          }
        },
        headerRowStyle({ row, rowIndex}){
          return {color: this.contents.tableHeaderFontColor}
        },
        headerCellStyle({ row, rowIndex}){
          return {backgroundColor: this.contents.tableHeaderBgColor}
        },
        // 表格按钮
        contentTableBtnStyleChange(){
          // this.$nextTick(()=>{
          //   setTimeout(()=>{
          //     document.querySelectorAll('.table-content .tables .el-table__body .el-button--success').forEach(el=>{
          //       el.style.height = this.contents.tableBtnHeight
          //       el.style.color = this.contents.tableBtnDetailFontColor
          //       el.style.fontSize = this.contents.tableBtnFontSize
          //       el.style.borderWidth = this.contents.tableBtnBorderWidth
          //       el.style.borderStyle = this.contents.tableBtnBorderStyle
          //       el.style.borderColor = this.contents.tableBtnBorderColor
          //       el.style.borderRadius = this.contents.tableBtnBorderRadius
          //       el.style.backgroundColor = this.contents.tableBtnDetailBgColor
          //     })
          //     document.querySelectorAll('.table-content .tables .el-table__body .el-button--primary').forEach(el=>{
          //       el.style.height = this.contents.tableBtnHeight
          //       el.style.color = this.contents.tableBtnEditFontColor
          //       el.style.fontSize = this.contents.tableBtnFontSize
          //       el.style.borderWidth = this.contents.tableBtnBorderWidth
          //       el.style.borderStyle = this.contents.tableBtnBorderStyle
          //       el.style.borderColor = this.contents.tableBtnBorderColor
          //       el.style.borderRadius = this.contents.tableBtnBorderRadius
          //       el.style.backgroundColor = this.contents.tableBtnEditBgColor
          //     })
          //     document.querySelectorAll('.table-content .tables .el-table__body .el-button--danger').forEach(el=>{
          //       el.style.height = this.contents.tableBtnHeight
          //       el.style.color = this.contents.tableBtnDelFontColor
          //       el.style.fontSize = this.contents.tableBtnFontSize
          //       el.style.borderWidth = this.contents.tableBtnBorderWidth
          //       el.style.borderStyle = this.contents.tableBtnBorderStyle
          //       el.style.borderColor = this.contents.tableBtnBorderColor
          //       el.style.borderRadius = this.contents.tableBtnBorderRadius
          //       el.style.backgroundColor = this.contents.tableBtnDelBgColor
          //     })
    ​
          //   }, 50)
          // })
        },
        // 分页
        contentPageStyleChange(){
          let arr = []
    ​
          if(this.contents.pageTotal) arr.push('total')
          if(this.contents.pageSizes) arr.push('sizes')
          if(this.contents.pagePrevNext){
            arr.push('prev')
            if(this.contents.pagePager) arr.push('pager')
            arr.push('next')
          }
          if(this.contents.pageJumper) arr.push('jumper')
          this.layouts = arr.join()
          this.contents.pageEachNum = 10
        },
    ​
        init () {
        },
        search() {
          this.pageIndex = 1;
          this.getDataList();
        },
        // 获取数据列表
        getDataList() {
          this.dataListLoading = true;
          let params = {
            page: this.pageIndex,
            limit: this.pageSize,
            sort: 'id',
      refid : this.$route.query.refid,
          }
              if(this.searchForm.nickname!='' && this.searchForm.nickname!=undefined){
                params['nickname'] = '%' + this.searchForm.nickname + '%'
              }
              if(this.searchForm.content!='' && this.searchForm.content!=undefined){
                params['content'] = '%' + this.searchForm.content + '%'
              }
          this.$http({
            url: "discussjingdianxinxi/page",
            method: "get",
            params: params
          }).then(({ data }) => {
            if (data && data.code === 0) {
              this.dataList = data.data.list;
              this.totalPage = data.data.total;
            } else {
              this.dataList = [];
              this.totalPage = 0;
            }
            this.dataListLoading = false;
          });
        },
        // 每页数
        sizeChangeHandle(val) {
          this.pageSize = val;
          this.pageIndex = 1;
          this.getDataList();
        },
        // 当前页
        currentChangeHandle(val) {
          this.pageIndex = val;
          this.getDataList();
        },
        // 多选
        selectionChangeHandler(val) {
          this.dataListSelections = val;
        },
        // 添加/修改
        addOrUpdateHandler(id,type) {
          this.showFlag = false;
          this.addOrUpdateFlag = true;
          this.crossAddOrUpdateFlag = false;
          if(type!='info'){
            type = 'else';
          }
          this.$nextTick(() => {
            this.$refs.addOrUpdate.init(id,type);
          });
        },
        // 查看评论
        disscussListHandler(id,type) {
      this.$router.push({path:'/discussdiscussjingdianxinxi',query:{refid:id}});
        },
        // 下载
        download(file){
          window.open(`${file}`)
        },
        // 删除
        deleteHandler(id) {
          var ids = id
            ? [Number(id)]
            : this.dataListSelections.map(item => {
                return Number(item.id);
              });
          this.$confirm(`确定进行[${id ? "删除" : "批量删除"}]操作?`, "提示", {
            confirmButtonText: "确定",
            cancelButtonText: "取消",
            type: "warning"
          }).then(() => {
            this.$http({
              url: "discussjingdianxinxi/delete",
              method: "post",
              data: ids
            }).then(({ data }) => {
              if (data && data.code === 0) {
                this.$message({
                  message: "操作成功",
                  type: "success",
                  duration: 1500,
                  onClose: () => {
                    this.search();
                  }
                });
              } else {
                this.$message.error(data.msg);
              }
            });
          });
        },
      }};
    </script>
    <style lang="scss" scoped>
      .slt {
        margin: 0 !important;
        display: flex;
      }
    ​
      .ad {
        margin: 0 !important;
        display: flex;
      }
    ​
      .pages {
        & /deep/ el-pagination__sizes{
          & /deep/ el-input__inner {
            height: 22px;
            line-height: 22px;
          }
        }
      }
      
    ​
      .el-button+.el-button {
        margin:0;
      } 
    ​
      .tables {
      & /deep/ .el-button--success {
        height: 40px;
        color: #333;
        font-size: 14px;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(196, 210, 244, 1);
        border-radius: 22px;
        background-color: rgba(171, 239, 239, 1);
      }
      
      & /deep/ .el-button--primary {
        height: 40px;
        color: #333;
        font-size: 14px;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(196, 210, 244, 1);
        border-radius: 22px;
        background-color: rgba(240, 242, 124, 1);
      }
      
      & /deep/ .el-button--danger {
        height: 40px;
        color: #333;
        font-size: 14px;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(196, 210, 244, 1);
        border-radius: 22px;
        background-color: rgba(244, 150, 150, 1);
      }& /deep/ .el-button {
          margin: 4px;
        }
      }</style>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
  • 相关阅读:
    智能合约是什么?
    Excel冻结窗格
    「数据结构详解·五」链表
    LocalDateTime、LocalDate、Date、String相互转化大全及其注意事项
    快速上手Docker
    MySQL调优随笔
    不清楚用电脑怎么图片转文字?来看看这三个方法吧
    H3C GRE over ipsec配置
    NOKOV动作捕捉系统使多场协同无人机自主建造成为可能
    HTML详细基础(一)H5标签入门
  • 原文地址:https://blog.csdn.net/cxy1024byte/article/details/126678792