Просмотр исходного кода

Merge branch 'master' of http://106.55.241.82:3000/lzf/zhbsq-vue-web

Sanmu8 1 год назад
Родитель
Сommit
0c634a8dce
2 измененных файлов с 118 добавлено и 77 удалено
  1. 6 6
      src/api/portal/LEAVEMESSAGE/LEAVEMESSAGE.js
  2. 112 71
      src/views/LEAVEMESSAGE/index.vue

+ 6 - 6
src/api/portal/LEAVEMESSAGE/LEAVEMESSAGE.js

@@ -3,7 +3,7 @@ import request from '@/utils/request'
 // 查询留言反馈列表
 export function listLEAVEMESSAGE(query) {
   return request({
-    url: '/business/LEAVEMESSAGE/list',
+    url: '/portal/LEAVEMESSAGE/list\n',
     method: 'get',
     params: query
   })
@@ -12,7 +12,7 @@ export function listLEAVEMESSAGE(query) {
 // 查询留言反馈所有列表
 export function listAllLEAVEMESSAGE(query) {
   return request({
-    url: '/business/LEAVEMESSAGE/listAll',
+    url: '/portal/LEAVEMESSAGE/listAll',
     method: 'get',
     params: query
   })
@@ -21,7 +21,7 @@ export function listAllLEAVEMESSAGE(query) {
 // 查询留言反馈详细
 export function getLEAVEMESSAGE(id) {
   return request({
-    url: '/business/LEAVEMESSAGE/getInfo/' + id,
+    url: '/portal/LEAVEMESSAGE/getInfo/' + id,
     method: 'get'
   })
 }
@@ -29,7 +29,7 @@ export function getLEAVEMESSAGE(id) {
 // 新增留言反馈
 export function addLEAVEMESSAGE(data) {
   return request({
-    url: '/business/LEAVEMESSAGE/add',
+    url: '/portal/LEAVEMESSAGE/add',
     method: 'post',
     data: data
   })
@@ -38,7 +38,7 @@ export function addLEAVEMESSAGE(data) {
 // 修改留言反馈
 export function updateLEAVEMESSAGE(data) {
   return request({
-    url: '/business/LEAVEMESSAGE/edit',
+    url: '/portal/LEAVEMESSAGE/edit',
     method: 'post',
     data: data
   })
@@ -47,7 +47,7 @@ export function updateLEAVEMESSAGE(data) {
 // 删除留言反馈
 export function delLEAVEMESSAGE(id) {
   return request({
-    url: '/business/LEAVEMESSAGE/remove/' + id,
+    url: '/portal/LEAVEMESSAGE/remove/' + id,
     method: 'get'
   })
 }

+ 112 - 71
src/views/LEAVEMESSAGE/index.vue

@@ -1,13 +1,16 @@
 <template>
-<!--  <div class="app-container">-->
-<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
-<!--      <el-form-item>-->
-<!--        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>-->
-<!--        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>-->
-<!--      </el-form-item>-->
-<!--    </el-form>-->
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="留言标题" prop="question">
+        <el-input v-model="queryParams.question" placeholder="请输入留言标题" clearable @keyup.enter.native="handleQuery"/>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
 
-<!--    <el-row :gutter="10" class="mb8">-->
+    <el-row :gutter="10" class="mb8">
 <!--      <el-col :span="1.5">-->
 <!--        <el-button-->
 <!--          type="primary"-->
@@ -18,28 +21,26 @@
 <!--          v-hasPermi="['business:LEAVEMESSAGE:add']"-->
 <!--        >新增</el-button>-->
 <!--      </el-col>-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="success"-->
-<!--          plain-->
-<!--          icon="el-icon-edit"-->
-<!--          size="mini"-->
-<!--          :disabled="single"-->
-<!--          @click="handleUpdate"-->
-<!--          v-hasPermi="['business:LEAVEMESSAGE:edit']"-->
-<!--        >修改</el-button>-->
-<!--      </el-col>-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="danger"-->
-<!--          plain-->
-<!--          icon="el-icon-delete"-->
-<!--          size="mini"-->
-<!--          :disabled="multiple"-->
-<!--          @click="handleDelete"-->
-<!--          v-hasPermi="['business:LEAVEMESSAGE:remove']"-->
-<!--        >删除</el-button>-->
-<!--      </el-col>-->
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-edit"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['business:LEAVEMESSAGE:edit']"
+        >回复</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['business:LEAVEMESSAGE:remove']"
+        >删除</el-button>
+      </el-col>
 <!--      <el-col :span="1.5">-->
 <!--        <el-button-->
 <!--          type="warning"-->
@@ -50,12 +51,31 @@
 <!--          v-hasPermi="['business:LEAVEMESSAGE:export']"-->
 <!--        >导出</el-button>-->
 <!--      </el-col>-->
-<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
-<!--    </el-row>-->
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
 
-<!--    <el-table v-loading="loading" :data="LEAVEMESSAGEList" @selection-change="handleSelectionChange">-->
-<!--      <el-table-column type="selection" width="55" align="center" />-->
-<!--      <el-table-column label="主键id" align="center" prop="id">-->
+    <el-table v-loading="loading" :data="LEAVEMESSAGEList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="创建人" align="center" prop="createBy"/>
+      <el-table-column label="ansName" align="center" prop="ansName" />
+      <el-table-column label="创建时间" align="center" prop="createTime" >
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}-{h}:{i}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="留言标题" align="center" prop="question" />
+      <el-table-column label="留言详情" align="center" prop="questionDetail" />
+      <el-table-column label="questionTime" align="center" prop="questionTime" >
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.questionTime, '{y}-{m}-{d}-{h}:{i}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="更新时间" align="center" prop="updateTime" >
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}-{h}:{i}') }}</span>
+        </template>
+      </el-table-column>
+      <!--      <el-table-column label="主键id" align="center" prop="id">-->
 <!--        <template slot-scope="scope">-->
 <!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
 <!--        </template>-->
@@ -115,44 +135,65 @@
 <!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.ansName"/>-->
 <!--        </template>-->
 <!--      </el-table-column>-->
-<!--      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
-<!--        <template slot-scope="scope">-->
-<!--          <el-button-->
-<!--            size="mini"-->
-<!--            type="text"-->
-<!--            icon="el-icon-edit"-->
-<!--            @click="handleUpdate(scope.row)"-->
-<!--            v-hasPermi="['business:LEAVEMESSAGE:edit']"-->
-<!--          >修改</el-button>-->
-<!--          <el-button-->
-<!--            size="mini"-->
-<!--            type="text"-->
-<!--            icon="el-icon-delete"-->
-<!--            @click="handleDelete(scope.row)"-->
-<!--            v-hasPermi="['business:LEAVEMESSAGE:remove']"-->
-<!--          >删除</el-button>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--    </el-table>-->
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['business:LEAVEMESSAGE:edit']"
+          >回复</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['business:LEAVEMESSAGE:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
 
-<!--    <pagination-->
-<!--      v-show="total>0"-->
-<!--      :total="total"-->
-<!--      :page.sync="queryParams.pageNum"-->
-<!--      :limit.sync="queryParams.pageSize"-->
-<!--      @pagination="getList"-->
-<!--    />-->
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
 
-<!--    &lt;!&ndash; 添加或修改留言反馈对话框 &ndash;&gt;-->
-<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
-<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
-<!--      </el-form>-->
-<!--      <div slot="footer" class="dialog-footer">-->
-<!--        <el-button type="primary" @click="submitForm">确 定</el-button>-->
-<!--        <el-button @click="cancel">取 消</el-button>-->
-<!--      </div>-->
-<!--    </el-dialog>-->
-<!--  </div>-->
+    <!-- 添加或修改留言反馈对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="留言标题" prop="questionDetail">
+              <el-input v-model="form.questionDetail" placeholder="请输入链接" type="textarea" :disabled="true" autosize/>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="留言详情" prop="questionDetail">
+              <el-input v-model="form.questionDetail" placeholder="请输入链接" type="textarea" :disabled="true" autosize/>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="回复内容" prop="replyContent" >
+              <el-input v-model="form.replyContent" placeholder="请输入内容" type="textarea" autosize/>
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
 </template>
 
 <script>