浏览代码

教练评价子模块

wyling 4 年之前
父节点
当前提交
088c42a57d
共有 2 个文件被更改,包括 460 次插入0 次删除
  1. 53 0
      src/api/coach/evaluate.js
  2. 407 0
      src/views/coach/evaluate/index.vue

+ 53 - 0
src/api/coach/evaluate.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询教练评价列表
+export function listEvaluate(query) {
+  return request({
+    url: '/coach/evaluate/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询教练评价详细
+export function getEvaluate(id) {
+  return request({
+    url: '/coach/evaluate/' + id,
+    method: 'get'
+  })
+}
+
+// 新增教练评价
+export function addEvaluate(data) {
+  return request({
+    url: '/coach/evaluate',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改教练评价
+export function updateEvaluate(data) {
+  return request({
+    url: '/coach/evaluate',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除教练评价
+export function delEvaluate(id) {
+  return request({
+    url: '/coach/evaluate/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出教练评价
+export function exportEvaluate(query) {
+  return request({
+    url: '/coach/evaluate/export',
+    method: 'get',
+    params: query
+  })
+}

+ 407 - 0
src/views/coach/evaluate/index.vue

@@ -0,0 +1,407 @@
+<template>
+  <div class="app-container">
+    <el-form
+      v-show="showSearch"
+      ref="queryForm"
+      :model="queryParams"
+      :inline="true"
+      label-width="68px"
+    >
+      <el-form-item label="用户id" prop="userId">
+        <el-input
+          v-model="queryParams.userId"
+          placeholder="请输入用户id"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="状态" prop="status">
+        <el-select
+          v-model="queryParams.status"
+          placeholder="请选择状态"
+          clearable
+          size="small"
+        >
+          <el-option
+            v-for="dict in statusOptions"
+            :key="dict.dictValue"
+            :label="dict.dictLabel"
+            :value="dict.dictValue"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button
+          type="cyan"
+          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-col :span="1.5">
+        <el-button
+          v-hasPermi="['coach:evaluate:add']"
+          type="primary"
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          v-hasPermi="['coach:evaluate:edit']"
+          type="success"
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          v-hasPermi="['coach:evaluate:remove']"
+          type="danger"
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          v-hasPermi="['coach:evaluate:export']"
+          type="warning"
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar
+        :show-search.sync="showSearch"
+        @queryTable="getList"
+      />
+    </el-row>
+
+    <el-table
+      v-loading="loading"
+      :data="evaluateList"
+      @selection-change="handleSelectionChange"
+    >
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="id" align="center" prop="id" />
+      <el-table-column label="用户id" align="center" prop="userId" />
+      <el-table-column
+        label="教练员全国统一编号"
+        align="center"
+        prop="coachnum"
+      />
+      <el-table-column label="服务态度" align="center" prop="attitudeStars" />
+      <el-table-column label="评价内容" align="center" prop="content" />
+      <el-table-column label="场地星级" align="center" prop="areaStars" />
+      <el-table-column label="总体星级1-5" align="center" prop="totelStars" />
+      <el-table-column label="标签表ID串" align="center" prop="labelIds" />
+      <el-table-column
+        label="是否匿名:0 :公开  1匿名"
+        align="center"
+        prop="isAnonymous"
+      />
+      <el-table-column
+        label="状态   0:启用 1:禁用"
+        align="center"
+        prop="status"
+      />
+      <el-table-column
+        label="操作"
+        align="center"
+        class-name="small-padding fixed-width"
+      >
+        <template slot-scope="scope">
+          <el-button
+            v-hasPermi="['coach:evaluate:edit']"
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+          >详情</el-button>
+          <el-button
+            v-hasPermi="['coach:evaluate:edit']"
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+          >修改</el-button>
+          <el-button
+            v-hasPermi="['coach:evaluate:remove']"
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+          >删除</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"
+    />
+
+    <!-- 添加或修改教练评价对话框 -->
+    <el-dialog
+      :title="title"
+      :visible.sync="open"
+      width="1000px"
+      append-to-body
+    >
+      <el-form
+        ref="form"
+        :model="form"
+        :rules="rules"
+        label-width="80px"
+        :inline="true"
+      >
+        <el-form-item label="用户id" prop="userId">
+          <el-input v-model="form.userId" placeholder="请输入用户id" />
+        </el-form-item>
+        <el-form-item label="教练员全国统一编号" prop="coachnum">
+          <el-input
+            v-model="form.coachnum"
+            placeholder="请输入教练员全国统一编号"
+          />
+        </el-form-item>
+        <el-form-item label="服务态度" prop="attitudeStars">
+          <el-input v-model="form.attitudeStars" placeholder="请输入服务态度" />
+        </el-form-item>
+        <el-form-item label="评价内容">
+          <editor v-model="form.content" :min-height="192" />
+        </el-form-item>
+        <el-form-item label="场地星级" prop="areaStars">
+          <el-input v-model="form.areaStars" placeholder="请输入场地星级" />
+        </el-form-item>
+        <el-form-item label="总体星级1-5" prop="totelStars">
+          <el-input v-model="form.totelStars" placeholder="请输入总体星级1-5" />
+        </el-form-item>
+        <el-form-item label="标签表ID串" prop="labelIds">
+          <el-input
+            v-model="form.labelIds"
+            type="textarea"
+            placeholder="请输入内容"
+          />
+        </el-form-item>
+        <el-form-item label="是否匿名:0 :公开  1匿名" prop="isAnonymous">
+          <el-input
+            v-model="form.isAnonymous"
+            placeholder="请输入是否匿名:0 :公开  1匿名"
+          />
+        </el-form-item>
+        <el-form-item label="状态   0:启用 1:禁用">
+          <el-radio-group v-model="form.status">
+            <el-radio label="1">请选择字典生成</el-radio>
+          </el-radio-group>
+        </el-form-item>
+      </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>
+import {
+  listEvaluate,
+  getEvaluate,
+  delEvaluate,
+  addEvaluate,
+  updateEvaluate,
+  exportEvaluate
+} from '@/api/coach/evaluate'
+import Editor from '@/components/Editor'
+
+export default {
+  name: 'Evaluate',
+  components: { Editor },
+  data() {
+    return {
+      // 状态数据字典
+      statusOptions: [],
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 教练评价表格数据
+      evaluateList: [],
+      // 弹出层标题
+      title: '',
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        userId: null,
+        coachnum: null,
+        attitudeStars: null,
+        content: null,
+        areaStars: null,
+        totelStars: null,
+        labelIds: null,
+        isAnonymous: null,
+        status: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {}
+    }
+  },
+  created() {
+    this.getList()
+    this.getDicts('sys_normal_disable').then(response => {
+      this.statusOptions = response.data
+    })
+  },
+  methods: {
+    /** 查询教练评价列表 */
+    getList() {
+      this.loading = true
+      listEvaluate(this.queryParams).then(response => {
+        this.evaluateList = response.rows
+        this.total = response.total
+        this.loading = false
+      })
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false
+      this.reset()
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        userId: null,
+        coachnum: null,
+        attitudeStars: null,
+        content: null,
+        areaStars: null,
+        totelStars: null,
+        labelIds: null,
+        createTime: null,
+        updateTime: null,
+        isAnonymous: null,
+        status: 0
+      }
+      this.resetForm('form')
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1
+      this.getList()
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm('queryForm')
+      this.handleQuery()
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length !== 1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset()
+      this.open = true
+      this.title = '添加教练评价'
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset()
+      const id = row.id || this.ids
+      getEvaluate(id).then(response => {
+        this.form = response.data
+        this.open = true
+        this.title = '修改教练评价'
+      })
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs['form'].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateEvaluate(this.form).then(response => {
+              this.msgSuccess('修改成功')
+              this.open = false
+              this.getList()
+            })
+          } else {
+            addEvaluate(this.form).then(response => {
+              this.msgSuccess('新增成功')
+              this.open = false
+              this.getList()
+            })
+          }
+        }
+      })
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids
+      this.$confirm(
+        '是否确认删除教练评价编号为"' + ids + '"的数据项?',
+        '警告',
+        {
+          confirmButtonText: '确定',
+          cancelButtonText: '取消',
+          type: 'warning'
+        }
+      )
+        .then(function() {
+          return delEvaluate(ids)
+        })
+        .then(() => {
+          this.getList()
+          this.msgSuccess('删除成功')
+        })
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams
+      this.$confirm('是否确认导出所有教练评价数据项?', '警告', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      })
+        .then(function() {
+          return exportEvaluate(queryParams)
+        })
+        .then(response => {
+          this.download(response.data)
+        })
+    }
+  }
+}
+</script>