Bladeren bron

Merge remote-tracking branch 'origin/master'

wangzhe 1 jaar geleden
bovenliggende
commit
48010cc6d1

+ 44 - 0
src/api/asking/type.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询类型配置列表
+export function listType(query) {
+  return request({
+    url: '/JnbQuestionType/type/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询类型配置详细
+export function getType(id) {
+  return request({
+    url: '/JnbQuestionType/type/' + id,
+    method: 'get'
+  })
+}
+
+// 新增类型配置
+export function addType(data) {
+  return request({
+    url: '/JnbQuestionType/type',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改类型配置
+export function updateType(data) {
+  return request({
+    url: '/JnbQuestionType/type',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除类型配置
+export function delType(id) {
+  return request({
+    url: '/JnbQuestionType/type/' + id,
+    method: 'delete'
+  })
+}

+ 4 - 4
src/api/highServer/highServer.js

@@ -10,9 +10,9 @@ export function listServer(query) {
 }
 
 // 查询高频服务详细
-export function getServer(id) {
+export function getServer(id,type) {
   return request({
-    url: '/high/server/' + id,
+    url: '/high/server/' + id + '/' + type,
     method: 'get'
   })
 }
@@ -36,9 +36,9 @@ export function updateServer(data) {
 }
 
 // 删除高频服务
-export function delServer(id) {
+export function delServer(id,type) {
   return request({
-    url: '/high/server/' + id,
+    url: '/high/server/' + id + '/' + type,
     method: 'delete'
   })
 }

+ 4 - 4
src/api/information/information.js

@@ -10,9 +10,9 @@ export function listServer(query) {
 }
 
 // 查询资讯详细
-export function getServer(id) {
+export function getServer(id,type) {
   return request({
-    url: '/jnb/information/' + id,
+    url: '/jnb/information/' + id + '/' + type,
     method: 'get'
   })
 }
@@ -36,9 +36,9 @@ export function updateServer(data) {
 }
 
 // 删除资讯
-export function delServer(ids) {
+export function delServer(ids,type) {
   return request({
-    url: '/jnb/information/' + ids,
+    url: '/jnb/information/' + ids + '/' + type,
     method: 'delete'
   })
 }

+ 44 - 0
src/api/my/nameAuthentication.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询实名认证列表
+export function listNameAuthentication(query) {
+  return request({
+    url: '/nameAuthentication/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询实名认证详细
+export function getNameAuthentication(id) {
+  return request({
+    url: '/nameAuthentication/' + id,
+    method: 'get'
+  })
+}
+
+// 新增实名认证
+export function addNameAuthentication(data) {
+  return request({
+    url: '/nameAuthentication',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改实名认证
+export function updateNameAuthentication(data) {
+  return request({
+    url: '/nameAuthentication',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除实名认证
+export function delNameAuthentication(id) {
+  return request({
+    url: '/nameAuthentication/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
src/api/my/officialAuthentication.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询官方认证列表
+export function listOfficialAuthentication(query) {
+  return request({
+    url: '/officialAuthentication/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询官方认证详细
+export function getOfficialAuthentication(id) {
+  return request({
+    url: '/officialAuthentication/' + id,
+    method: 'get'
+  })
+}
+
+// 新增官方认证
+export function addOfficialAuthentication(data) {
+  return request({
+    url: '/officialAuthentication',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改官方认证
+export function updateOfficialAuthentication(data) {
+  return request({
+    url: '/officialAuthentication',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除官方认证
+export function delOfficialAuthentication(id) {
+  return request({
+    url: '/officialAuthentication/' + id,
+    method: 'delete'
+  })
+}

+ 46 - 0
src/api/quotations/config.js

@@ -0,0 +1,46 @@
+import request from '@/utils/request'
+
+// 查询行情产品配置列表
+export function listConfig(query) {
+  return request({
+    url: '/quotationsConfig/all',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询行情产品配置详细
+export function getConfig(id) {
+  return request({
+    url: '/quotationsConfig/' + id,
+    method: 'get'
+  })
+}
+
+// 新增行情产品配置
+export function addConfig(data) {
+  return request({
+    url: '/quotationsConfig',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改行情产品配置
+export function updateConfig(data) {
+  return request({
+    url: '/quotationsConfig',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除行情产品配置
+export function delConfig(id) {
+  return request({
+    url: '/quotationsConfig/' + id,
+    method: 'delete'
+  })
+}
+
+

+ 44 - 0
src/api/quotations/quotations.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询行情列表
+export function listQuotations(query) {
+  return request({
+    url: '/quotations/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询行情详细
+export function getQuotations(id,type) {
+  return request({
+    url: '/quotations/' + id + '/' + type,
+    method: 'get'
+  })
+}
+
+// 新增行情
+export function addQuotations(data) {
+  return request({
+    url: '/quotations',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改行情
+export function updateQuotations(data) {
+  return request({
+    url: '/quotations',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除行情
+export function delQuotations(id,type) {
+  return request({
+    url: '/quotations/' + id + '/' + type,
+    method: 'delete'
+  })
+}

+ 276 - 0
src/views/asking/type/index.vue

@@ -0,0 +1,276 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
+      <el-form-item label="类型名称" prop="type">
+        <el-input
+          v-model="queryParams.type"
+          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-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['JnbQuestionType:type: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="['JnbQuestionType:type: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="['JnbQuestionType:type:remove']"
+        >删除</el-button>
+      </el-col>
+      <!--<el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['JnbQuestionType:type:export']"
+        >导出</el-button>
+      </el-col>-->
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="typeList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="类型名称" align="center" prop="type" />
+      <el-table-column label="是否首页展示" align="center" prop="whetherShow">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.sys_yes_no"
+                    :value="scope.row.whetherShow"/>
+        </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="['JnbQuestionType:type:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['JnbQuestionType:type: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"
+    />
+
+    <!-- 添加或修改类型配置对话框 -->
+    <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-item label="类型名称" prop="type">
+          <el-input v-model="form.type" placeholder="请输入类型名称" maxlength="10"/>
+        </el-form-item>
+        <el-form-item label="图片" prop="path">
+          <image-upload v-model="form.path" :limit="1"/>
+        </el-form-item>
+        <el-form-item label="是否展示" prop="whetherShow">
+          <el-select v-model="form.whetherShow" filterable placeholder="请选择是否展示">
+            <el-option
+              v-for="dict in dict.type.sys_yes_no"
+              :key="dict.value"
+              :label="dict.label"
+              :value="dict.value"
+            ></el-option>
+          </el-select>
+        </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 { listType, getType, delType, addType, updateType } from "@/api/asking/type";
+
+export default {
+  name: "Type",
+  dicts: ['sys_yes_no'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 类型配置表格数据
+      typeList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        type: null,
+        path: null,
+        whetherShow: null
+      },
+      // 表单参数
+      form: {
+        whetherShow:'N'
+      },
+      // 表单校验
+      rules: {
+        type: [
+          { required: true, message: "类型名称不能为空", trigger: "blur" }
+        ],
+        path: [
+          { required: true, message: "图片不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询类型配置列表 */
+    getList() {
+      this.loading = true;
+      listType(this.queryParams).then(response => {
+        this.typeList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        type: null,
+        path: null,
+        whetherShow: 'N'
+      };
+      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
+      getType(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) {
+            updateType(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addType(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除选中的数据项?').then(function() {
+        return delType(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('JnbQuestionType/type/export', {
+        ...this.queryParams
+      }, `type_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 1 - 1
src/views/highServer/assistance/index.vue

@@ -257,7 +257,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除帮扶救助编号为"' + ids + '"的数据项?').then(function () {
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
         return delServer(ids);
       }).then(() => {
         this.getList();

+ 2 - 2
src/views/highServer/knowledge/index.vue

@@ -268,7 +268,7 @@ export default {
     handleUpdate(row) {
       this.reset();
       const id = row.id || this.ids
-      getBase(id).then(response => {
+      getBase(id,row.type).then(response => {
         this.form = response.data;
         this.open = true;
         this.title = "修改知识库";
@@ -298,7 +298,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal.confirm('是否确认删除知识库编号为"' + ids + '"的数据项?').then(function () {
-        return delBase(ids);
+        return delBase(ids,row.type);
       }).then(() => {
         this.getList();
         this.$modal.msgSuccess("删除成功");

+ 4 - 3
src/views/highServer/lifeServices/index.vue

@@ -228,7 +228,7 @@ export default {
     handleUpdate(row) {
       this.reset();
       const id = row.id || this.ids
-      getServer(id).then(response => {
+      getServer(id,row.type).then(response => {
         this.form = response.data;
         this.open = true;
         this.title = "修改生活服务";
@@ -257,8 +257,9 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除生活服务编号为"' + ids + '"的数据项?').then(function () {
-        return delServer(ids);
+      const type = this.$route.query.type
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
+        return delServer(ids,type);
       }).then(() => {
         this.getList();
         this.$modal.msgSuccess("删除成功");

+ 4 - 3
src/views/highServer/liveBroadcast/index.vue

@@ -228,7 +228,7 @@ export default {
     handleUpdate(row) {
       this.reset();
       const id = row.id || this.ids
-      getServer(id).then(response => {
+      getServer(id,row.type).then(response => {
         this.form = response.data;
         this.open = true;
         this.title = "修改直播带货";
@@ -257,8 +257,9 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除直播带货编号为"' + ids + '"的数据项?').then(function () {
-        return delServer(ids);
+      const type = this.$route.query.type
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
+        return delServer(ids,type);
       }).then(() => {
         this.getList();
         this.$modal.msgSuccess("删除成功");

+ 1 - 1
src/views/highServer/onlineConsultation/index.vue

@@ -257,7 +257,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除线上问诊编号为"' + ids + '"的数据项?').then(function () {
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
         return delServer(ids);
       }).then(() => {
         this.getList();

+ 1 - 1
src/views/highServer/psychologicalCounseling/index.vue

@@ -257,7 +257,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除心理咨询编号为"' + ids + '"的数据项?').then(function () {
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
         return delServer(ids);
       }).then(() => {
         this.getList();

+ 1 - 1
src/views/highServer/travelGuide/index.vue

@@ -257,7 +257,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除旅游向导编号为"' + ids + '"的数据项?').then(function () {
+      this.$modal.confirm('是否确认删除此条数据项?').then(function () {
         return delServer(ids);
       }).then(() => {
         this.getList();

+ 3 - 2
src/views/information/index.vue

@@ -334,7 +334,7 @@ export default {
     async handleUpdate(row) {
       await this.reset();
       const id = row.id || this.ids
-      getServer(id).then(response => {
+      getServer(id,row.type).then(response => {
         this.form = response.data;
         this.open = true;
         let str = ''
@@ -371,8 +371,9 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
+      const type = this.$route.query.type
       this.$modal.confirm('是否确认删除数据项?').then(function () {
-        return delServer(ids);
+        return delServer(ids,type);
       }).then(() => {
         this.getList();
         this.$modal.msgSuccess("删除成功");

+ 364 - 0
src/views/my/nameAuthentication.vue

@@ -0,0 +1,364 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
+      <el-form-item label="姓名" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入姓名"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <!--<el-form-item label="手机号" prop="phone">
+        <el-input
+          v-model="queryParams.phone"
+          placeholder="请输入手机号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="身份证号" prop="idCard">
+        <el-input
+          v-model="queryParams.idCard"
+          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-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['nameAuthentication: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="['nameAuthentication: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="['nameAuthentication:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['nameAuthentication:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>-->
+
+    <el-table v-loading="loading" :data="nameAuthenticationList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="姓名" align="center" prop="name" />
+      <el-table-column label="手机号" align="center" prop="phone" />
+      <el-table-column label="身份证号" align="center" prop="idCard" />
+      <el-table-column label="审核状态" align="center" prop="status">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.examine_state"
+                    :value="scope.row.status"/>
+        </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"
+            v-if="scope.row.status == '3'"
+            @click="examine(scope.row)"
+            v-hasPermi="['nameAuthentication:edit']"
+          >审核</el-button>
+          <!--<el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['nameAuthentication:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['nameAuthentication: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"
+    />
+
+    <!-- 添加或修改实名认证对话框 -->
+    <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-item label="姓名" prop="name">
+          <el-input v-model="form.name" placeholder="请输入姓名"/>
+        </el-form-item>
+        <el-form-item label="手机号" prop="phone">
+          <el-input v-model="form.phone" placeholder="请输入手机号" />
+        </el-form-item>
+        <el-form-item label="身份证号" prop="idCard">
+          <el-input v-model="form.idCard" placeholder="请输入身份证号" />
+        </el-form-item>
+        <el-form-item label="图片" prop="path">
+          <image-upload v-model="form.path" :limit="2"/>
+        </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>
+
+    <!-- 审核 -->
+    <el-dialog :title="title" :visible.sync="open1" width="500px" append-to-body>
+      <el-form ref="form1" :model="form1" :rules="rules" label-width="80px">
+        <el-form-item label="姓名" prop="name">
+          <el-input v-model="form1.name" placeholder="请输入姓名" disabled/>
+        </el-form-item>
+        <el-form-item label="手机号" prop="phone">
+          <el-input v-model="form1.phone" placeholder="请输入手机号" disabled/>
+        </el-form-item>
+        <el-form-item label="身份证号" prop="idCard">
+          <el-input v-model="form1.idCard" placeholder="请输入身份证号" disabled/>
+        </el-form-item>
+        <el-form-item label="图片" prop="path">
+          <image-upload v-model="form1.path" :limit="2" disabled/>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="through(1)">通 过</el-button>
+        <el-button type="primary" @click="through(2)">不通过</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listNameAuthentication, getNameAuthentication, delNameAuthentication, addNameAuthentication, updateNameAuthentication } from "@/api/my/nameAuthentication";
+
+export default {
+  name: "NameAuthentication",
+  dicts: ['examine_state'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 实名认证表格数据
+      nameAuthenticationList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      open1: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+        phone: null,
+        idCard: null,
+        status: null,
+      },
+      // 表单参数
+      form: {},
+      form1:{},
+      // 表单校验
+      rules: {
+        name: [
+          { required: true, message: "姓名不能为空", trigger: "blur" }
+        ],
+        phone: [
+          { required: true, message: "手机号不能为空", trigger: "blur" }
+        ],
+        idCard: [
+          { required: true, message: "身份证号不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询实名认证列表 */
+    getList() {
+      this.loading = true;
+      listNameAuthentication(this.queryParams).then(response => {
+        this.nameAuthenticationList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.open1 = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        name: null,
+        phone: null,
+        idCard: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+        status: null,
+        delFlag: null
+      };
+      this.resetForm("form");
+
+      this.form1 = {
+        id: null,
+        name: null,
+        phone: null,
+        idCard: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+        status: null,
+        delFlag: null
+      };
+      this.resetForm("form1");
+    },
+    /** 搜索按钮操作 */
+    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
+      getNameAuthentication(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改实名认证";
+      });
+    },
+    /** 审核 */
+    examine(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getNameAuthentication(id).then(response => {
+        this.form1 = response.data;
+        this.open1 = true;
+        this.title = "审核实名认证";
+      });
+    },
+    /** 审核通过 */
+    through(status) {
+      this.form1.status = status;
+      updateNameAuthentication(this.form1).then(response => {
+        this.open1 = false;
+        this.getList();
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateNameAuthentication(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addNameAuthentication(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除实名认证编号为"' + ids + '"的数据项?').then(function() {
+        return delNameAuthentication(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('nameAuthentication/export', {
+        ...this.queryParams
+      }, `nameAuthentication_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 364 - 0
src/views/my/officialAuthentication.vue

@@ -0,0 +1,364 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
+      <el-form-item label="企业名称" prop="enterpriseName">
+        <el-input
+          v-model="queryParams.enterpriseName"
+          placeholder="请输入企业名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="法人姓名" prop="legalName">
+        <el-input
+          v-model="queryParams.legalName"
+          placeholder="请输入法人姓名"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <!--<el-form-item label="手机号" prop="phone">
+        <el-input
+          v-model="queryParams.phone"
+          placeholder="请输入手机号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="审核状态" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择审核状态" clearable>
+          <el-option
+            v-for="dict in dict.type.examine_state"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </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-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['officialAuthentication: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="['officialAuthentication: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="['officialAuthentication:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['officialAuthentication:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>-->
+
+    <el-table v-loading="loading" :data="officialAuthenticationList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="企业名称" align="center" prop="enterpriseName" />
+      <el-table-column label="法人姓名" align="center" prop="legalName" />
+      <el-table-column label="手机号" align="center" prop="phone" />
+      <el-table-column label="审核状态" align="center" prop="status">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.examine_state" :value="scope.row.status"/>
+        </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"
+            v-if="scope.row.status == '3'"
+            @click="examine(scope.row)"
+            v-hasPermi="['nameAuthentication:edit']"
+          >审核</el-button>
+          <!--<el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['officialAuthentication:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['officialAuthentication: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"
+    />
+
+    <!-- 添加或修改官方认证对话框 -->
+    <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-item label="企业名称" prop="enterpriseName">
+          <el-input v-model="form.enterpriseName" placeholder="请输入企业名称" />
+        </el-form-item>
+        <el-form-item label="法人姓名" prop="legalName">
+          <el-input v-model="form.legalName" placeholder="请输入法人姓名" />
+        </el-form-item>
+        <el-form-item label="手机号" prop="phone">
+          <el-input v-model="form.phone" placeholder="请输入手机号" />
+        </el-form-item>
+        <el-form-item label="图片" prop="path">
+          <image-upload v-model="form.path" :limit="3"/>
+        </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>
+
+    <!-- 审核 -->
+    <el-dialog :title="title" :visible.sync="open1" width="500px" append-to-body>
+      <el-form ref="form1" :model="form1" :rules="rules" label-width="80px">
+        <el-form-item label="姓名" prop="name">
+          <el-input v-model="form1.name" placeholder="请输入姓名" disabled/>
+        </el-form-item>
+        <el-form-item label="手机号" prop="phone">
+          <el-input v-model="form1.phone" placeholder="请输入手机号" disabled/>
+        </el-form-item>
+        <el-form-item label="身份证号" prop="idCard">
+          <el-input v-model="form1.idCard" placeholder="请输入身份证号" disabled/>
+        </el-form-item>
+        <el-form-item label="图片" prop="path">
+          <image-upload v-model="form1.path" :limit="2" disabled/>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="through(1)">通 过</el-button>
+        <el-button type="primary" @click="through(2)">不通过</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listOfficialAuthentication, getOfficialAuthentication, delOfficialAuthentication, addOfficialAuthentication, updateOfficialAuthentication } from "@/api/my/officialAuthentication";
+
+export default {
+  name: "OfficialAuthentication",
+  dicts: ['examine_state'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 官方认证表格数据
+      officialAuthenticationList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      open1: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        enterpriseName: null,
+        legalName: null,
+        phone: null,
+        status: null,
+      },
+      // 表单参数
+      form: {},
+      form1:{},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询官方认证列表 */
+    getList() {
+      this.loading = true;
+      listOfficialAuthentication(this.queryParams).then(response => {
+        this.officialAuthenticationList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.open1 = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        enterpriseName: null,
+        legalName: null,
+        phone: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+        status: null,
+        delFlag: null
+      };
+      this.resetForm("form");
+
+      this.form1 = {
+        id: null,
+        name: null,
+        phone: null,
+        idCard: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+        status: null,
+        delFlag: null
+      };
+      this.resetForm("form1");
+    },
+    /** 搜索按钮操作 */
+    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
+      getOfficialAuthentication(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改官方认证";
+      });
+    },
+    /** 审核 */
+    examine(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getOfficialAuthentication(id).then(response => {
+        this.form1 = response.data;
+        this.open1 = true;
+        this.title = "审核官方认证";
+      });
+    },
+    /** 审核通过 */
+    through(status) {
+      this.form1.status = status;
+      updateOfficialAuthentication(this.form1).then(response => {
+        this.open1 = false;
+        this.getList();
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateOfficialAuthentication(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addOfficialAuthentication(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除官方认证编号为"' + ids + '"的数据项?').then(function() {
+        return delOfficialAuthentication(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('officialAuthentication/export', {
+        ...this.queryParams
+      }, `officialAuthentication_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 0 - 1
src/views/my/score.vue

@@ -179,7 +179,6 @@ export default {
       this.queryParamsPage.pageSize = 10;
       this.queryParamsPage.userId = row.userId;
       getPersonBasicInfo(this.queryParamsPage).then(response => {
-        console.log(response)
         this.ScoreOperateList = response.rows;
         this.totalPage = response.total;
         this.open = true;

+ 294 - 0
src/views/quotations/conf.vue

@@ -0,0 +1,294 @@
+<template>
+  <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="productName">-->
+<!--        <el-input-->
+<!--          v-model="queryParams.productName"-->
+<!--          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-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleParent"
+          v-hasPermi="['jnb:config:add']"
+        >新增
+        </el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="configList"
+              style="width: 100%;
+              margin-bottom: 20px;"
+              row-key="id"
+              border
+              default-expand-all
+              :tree-props="{children: 'children', hasChildren: 'hasChildren'}">>
+      <el-table-column label="产品名称" align="center" prop="productName"/>
+      <!--      <el-table-column label="图标" align="center" prop="icon" />-->
+      <el-table-column label="是否首页展示" align="center" prop="homeDisplay">
+        <template slot-scope="scope">
+          <el-switch
+            v-model="scope.row.homeDisplay"
+            active-value="1"
+            inactive-value="0"
+            @change="handleSwitchChange(scope.row)"
+          ></el-switch>
+        </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            v-if="adddetermine(scope.row)"
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleAdd(scope.row)"
+            v-hasPermi="['jnb:config:add']"
+          >新增
+          </el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['jnb:config:edit']"
+          >修改
+          </el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['jnb:config: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"-->
+    <!--    />-->
+
+    <!-- 添加或修改行情产品配置对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
+        <el-form-item label="产品名称" prop="productName" :style="{width: '340px'}">
+          <el-input v-model="form.productName" placeholder="请输入产品名称"/>
+        </el-form-item>
+        <el-form-item label="是否首页展示" prop="homeDisplay" :style="{width: '350px'}">
+          <el-select v-model="form.homeDisplay" placeholder="请选择类型">
+            <el-option
+              v-for="item in options"
+              :key="item.value"
+              :label="item.label"
+              :value="item.value">
+            </el-option>
+          </el-select>
+        </el-form-item>
+        <el-col :span="24">
+          <el-form-item label="图标" prop="icon">
+            <image-upload :limit="1" v-model="form.icon"/>
+          </el-form-item>
+        </el-col>
+      </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 {addConfig, delConfig, getConfig, listConfig, updateConfig} from "@/api/quotations/config";
+
+export default {
+  name: "Config",
+  data() {
+    return {
+      /** 是否展示下拉框选项 */
+      options: [{
+        value: '1',
+        label: '是'
+      }, {
+        value: '0',
+        label: '否'
+      }],
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 行情产品配置表格数据
+      configList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        // pageNum: 1,
+        // pageSize: 10,
+        pictureId: null,
+        homeDisplay: null,
+        productName: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        productName: [
+          {required: true, message: "请输入产品名称", trigger: "blur"}
+        ],
+        homeDisplay: [
+          {required: true, message: "请选择是否首页展示", trigger: "blur"}
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /**点击开关 */
+    handleSwitchChange(row) {
+      this.form.id = row.id
+      this.form.homeDisplay = row.homeDisplay
+      updateConfig(this.form).then(response => {
+        this.$modal.msgSuccess("修改成功");
+        this.getList();
+      });
+      // 在这里处理开关状态改变后的逻辑,例如发送一个请求到服务器
+      // console.log('Switch value:', row.homeDisplay);
+    },
+    adddetermine(row) {
+      //如果当前层级level>2,则不显示新增按钮
+      return row.level <= 2;
+    },
+    /** 查询行情产品配置列表 */
+    getList() {
+      this.loading = true;
+      listConfig(this.queryParams).then(response => {
+        this.configList = response.data.quotations;
+        // this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        pictureId: null,
+        homeDisplay: null,
+        productName: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      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(row) {
+      this.reset();
+      //新增的时候判断当前是否有父级,如果有父级就把父级id赋值给parentId,如果没有就给parentId赋值为0
+      this.form.parentId = row.id
+      const level =parseInt(row.level);
+      this.form.level = level + 1
+      this.open = true;
+      this.title = "添加行情产品配置";
+    },
+    handleParent() {
+      this.reset();
+      //新增最顶级,parentId赋值为0
+      this.form.parentId = 0
+      this.form.level = 1
+      this.open = true;
+      this.title = "添加行情产品配置";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getConfig(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) {
+            updateConfig(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addConfig(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除行情产品配置编号为"' + ids + '"的数据项?').then(function () {
+        return delConfig(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {
+      });
+    }
+  }
+};
+</script>

+ 340 - 0
src/views/quotations/index.vue

@@ -0,0 +1,340 @@
+<template>
+  <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="productName">
+        <el-input
+          v-model="queryParams.productName"
+          placeholder="请输入产品名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="地区" prop="area">
+        <el-input
+          v-model="queryParams.area"
+          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-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['jnb:quotations: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="['jnb:quotations: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="['jnb:quotations:remove']"
+        >删除</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="quotationsList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="产品名称" align="center" prop="productName" />
+      <el-table-column label="地区" align="center" prop="area" />
+      <el-table-column label="类型" align="center" prop="type" />
+      <el-table-column label="价格" align="center" prop="price" />
+      <el-table-column label="地址" align="center" prop="address" />
+      <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="['jnb:quotations:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['jnb:quotations:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改行情对话框 -->
+    <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-item label="产品名称" prop="productName">
+          <el-input v-model="form.productName" placeholder="请输入产品名称" />
+        </el-form-item>
+        <el-form-item label="类型" prop="type">
+          <el-cascader
+            ref="cascader"
+            v-model="form.type"
+            :options="options"
+            :props="{ checkStrictly: true ,emitPath: false, }"
+            :show-all-levels="false"
+            clearable>
+          </el-cascader>
+        </el-form-item>
+        <el-form-item label="地区" prop="area">
+          <el-input v-model="form.area" placeholder="请输入地区" />
+        </el-form-item>
+        <el-form-item label="价格" prop="price">
+          <el-input v-model="form.price" placeholder="请输入价格" />
+        </el-form-item>
+        <el-form-item label="手机号" prop="phone">
+          <el-input v-model="form.phone" placeholder="请输入手机号" />
+        </el-form-item>
+        <el-form-item label="地址" prop="address">
+          <el-input v-model="form.address" placeholder="请输入地址" />
+        </el-form-item>
+        <el-form-item label="图片" prop="imgUrlList">
+          <image-upload v-model="form.imgUrlList"/>
+        </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 { listQuotations, getQuotations, delQuotations, addQuotations, updateQuotations } from "@/api/quotations/quotations";
+import {listConfig} from "@/api/quotations/config";
+
+export default {
+  name: "Quotations",
+  data() {
+    // 数字校验
+    let validateNumber = (rule, value, callback) => {
+      const numberReg = /^[0-9]+.?[0-9]*$/;
+      if (!numberReg.test(value)) {
+        callback(new Error('请输入数字'));
+      } else {
+        callback();
+      }
+    }
+    return {
+      // 类型下拉框选项
+      options:[],
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 行情表格数据
+      quotationsList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        productName: null,
+        area: null,
+        type: null,
+        price: null,
+        phone: null,
+        address: null,
+        configId: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        productName: [{ required: true, message: "请输入产品名称", trigger: "blur" }],
+        area: [{ required: true, message: "请输入地区", trigger: "blur" }],
+        price: [
+          { required: true, message: "请输入价格", trigger: "blur" },
+          { validator: validateNumber, trigger: 'blur' }
+        ],
+        phone: [{ required: true, message: "请输入手机号", trigger: "blur", pattern: /^1[34578]\d{9}$/}],
+        address: [{ required: true, message: "请输入地址", trigger: "blur" }]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询行情列表 */
+    getList() {
+      this.loading = true;
+      listQuotations(this.queryParams).then(response => {
+        this.quotationsList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+      listConfig().then(response => {
+        this.options = this.formatOptions(response.data.quotations);
+      });
+    },
+    //转换为下拉选列表
+    formatOptions(data) {
+      return data.map(item => ({
+        value: item.id,
+        label: item.productName,
+        children: item.children ? this.formatOptions(item.children) : null,
+      }));
+    },
+    /*
+    * el-cascader递归获取父级id
+    * @param  list 数据列表
+    * @param  id 后端返回的id
+    * propsCascader 是el-cascader props属性
+    **/
+    getParentsById(list, id) {
+      for (let item of list) {
+        let valueKey = this.propsCascader ? this.propsCascader.value : 'value';
+        if (item[valueKey] == id) {
+          return [item[valueKey]]
+        }
+        if (item.children) {
+          let node = this.getParentsById(item.children, id)
+          if (node !== undefined) {
+            // 追加父节点
+            node.unshift(item[valueKey])
+            return node
+          }
+        }
+      }
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        productName: null,
+        area: null,
+        type: null,
+        price: null,
+        phone: null,
+        address: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+        remark: null,
+        delFlag: null,
+        configId: null
+      };
+      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
+      getQuotations(id,13).then(response => {
+        this.form = response.data;
+        this.form.type = this.getParentsById(this.options, this.form.type)
+        this.open = true;
+        this.title = "修改行情";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+    //判断this.form.type是否是数组,如果是数组则取数组的最后一个值
+            if (Array.isArray(this.form.type)) {
+              this.form.type = this.form.type[this.form.type.length - 1]
+            }
+            updateQuotations(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addQuotations(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除所选的数据项?').then(function() {
+        return delQuotations(ids,13);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+  }
+};
+</script>