Browse Source

行情/行情配置后台管理页面

刘浩男 1 year ago
parent
commit
cb8a761fae

+ 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'
+  })
+}

+ 1 - 1
src/views/information/index.vue

@@ -370,7 +370,7 @@ export default {
     },
     /** 删除按钮操作 */
     handleDelete(row) {
-      const ids = row.id || this.ids;
+      const ids = row.id;
       this.$modal.confirm('是否确认删除数据项?').then(function () {
         return delServer(ids,row.type);
       }).then(() => {

+ 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>