Browse Source

供应商模块

gks 1 year ago
parent
commit
e0a493e8cd

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

@@ -3,7 +3,7 @@ import request from '@/utils/request'
 // 查询企业大屏所需供应商数据列表
 export function listENTERPRISESCREENDATA(query) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/list',
+    url: '/ENTERPRISESCREENDATA/list',
     method: 'get',
     params: query
   })
@@ -12,7 +12,7 @@ export function listENTERPRISESCREENDATA(query) {
 // 查询企业大屏所需供应商数据所有列表
 export function listAllENTERPRISESCREENDATA(query) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/listAll',
+    url: '/ENTERPRISESCREENDATA/listAll',
     method: 'get',
     params: query
   })
@@ -21,7 +21,7 @@ export function listAllENTERPRISESCREENDATA(query) {
 // 查询企业大屏所需供应商数据详细
 export function getENTERPRISESCREENDATA(id) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/getInfo/' + id,
+    url: '/ENTERPRISESCREENDATA/getInfo/' + id,
     method: 'get'
   })
 }
@@ -29,7 +29,7 @@ export function getENTERPRISESCREENDATA(id) {
 // 新增企业大屏所需供应商数据
 export function addENTERPRISESCREENDATA(data) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/add',
+    url: '/ENTERPRISESCREENDATA/add',
     method: 'post',
     data: data
   })
@@ -38,7 +38,7 @@ export function addENTERPRISESCREENDATA(data) {
 // 修改企业大屏所需供应商数据
 export function updateENTERPRISESCREENDATA(data) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/edit',
+    url: '/ENTERPRISESCREENDATA/edit',
     method: 'post',
     data: data
   })
@@ -47,7 +47,7 @@ export function updateENTERPRISESCREENDATA(data) {
 // 删除企业大屏所需供应商数据
 export function delENTERPRISESCREENDATA(id) {
   return request({
-    url: '/business/ENTERPRISESCREENDATA/remove/' + id,
+    url: '/ENTERPRISESCREENDATA/remove/' + id,
     method: 'get'
   })
 }

+ 2 - 2
src/api/portal/ENTERPRISETRADEPERFORMANCE/ENTERPRISETRADEPERFORMANCE.js

@@ -45,7 +45,7 @@ export function updateENTERPRISETRADEPERFORMANCE(data) {
 }
 
 // 获取部门列表
-export function getDeptList(data) {
+export function getDeptList() {
   return request({
     url: '/system/dept/list',
     method: 'get',
@@ -53,7 +53,7 @@ export function getDeptList(data) {
 }
 
 // 获取已有基础数据的部门列表
-export function getBaseDeptList(data) {
+export function getBaseDeptList() {
   return request({
     url: '/GARDENBASEDATA/list',
     method: 'get',

+ 190 - 82
src/views/ENTERPRISESCREENDATA/index.vue

@@ -1,7 +1,7 @@
 <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="providerType">
+    <!-- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+    <el-form-item label="供应商类型(三种) " prop="providerType">
         <el-select v-model="queryParams.providerType" placeholder="请选择供应商类型(三种) " clearable filterable>
           <el-option
             v-for="dict in dict.type.${dictType}"
@@ -10,12 +10,12 @@
             :value="dict.value"
           />
         </el-select>
-      </el-form-item> -->
+      </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-form> -->
 
     <el-row :gutter="10" class="mb8">
       <el-col :span="1.5">
@@ -24,9 +24,10 @@
           plain
           icon="el-icon-plus"
           size="mini"
+          v-if="checkPermi(['business:ENTERPRISESCREENDATA:add'])"
           @click="handleAdd"
-          v-hasPermi="['business:ENTERPRISESCREENDATA:add']"
-        >新增</el-button>
+          >新增</el-button
+        >
       </el-col>
       <el-col :span="1.5">
         <el-button
@@ -34,10 +35,11 @@
           plain
           icon="el-icon-edit"
           size="mini"
+          v-if="checkPermi(['business:ENTERPRISESCREENDATA:edit'])"
           :disabled="single"
           @click="handleUpdate"
-          v-hasPermi="['business:ENTERPRISESCREENDATA:edit']"
-        >修改</el-button>
+          >修改</el-button
+        >
       </el-col>
       <el-col :span="1.5">
         <el-button
@@ -45,75 +47,81 @@
           plain
           icon="el-icon-delete"
           size="mini"
+          v-if="checkPermi(['business:ENTERPRISESCREENDATA:remove'])"
           :disabled="multiple"
           @click="handleDelete"
-          v-hasPermi="['business:ENTERPRISESCREENDATA:remove']"
-        >删除</el-button>
+          >删除</el-button
+        >
       </el-col>
-      <el-col :span="1.5">
+      <!-- <el-col :span="1.5">
         <el-button
           type="warning"
           plain
           icon="el-icon-download"
           size="mini"
           @click="handleExport"
-          v-hasPermi="['business:ENTERPRISESCREENDATA:export']"
-        >导出</el-button>
-      </el-col>
-      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+          >导出</el-button
+        >
+      </el-col> -->
+      <right-toolbar
+        :showSearch.sync="showSearch"
+        @queryTable="getList"
+      ></right-toolbar>
     </el-row>
 
-    <el-table v-loading="loading" :data="ENTERPRISESCREENDATAList" @selection-change="handleSelectionChange">
+    <el-table
+      :data="ENTERPRISESCREENDATAList"
+      @selection-change="handleSelectionChange"
+    >
       <el-table-column type="selection" width="55" align="center" />
-      <el-table-column label="企业大屏所需数据主键" align="center" prop="id">
-       
-      </el-table-column>
+
       <el-table-column label="企业名称" align="center" prop="enterpriseName">
-        
       </el-table-column>
       <el-table-column label="供应商名称 " align="center" prop="providerName">
-       
       </el-table-column>
-      <el-table-column label="供应商类型(三种) " align="center" prop="providerType">
-    
+      <el-table-column
+        label="供应商类型(三种) "
+        align="center"
+        prop="providerType"
+      >
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime">
-      
       </el-table-column>
       <el-table-column label="创建人" align="center" prop="createBy">
-        
       </el-table-column>
       <el-table-column label="更新时间" align="center" prop="updateTime">
-        
       </el-table-column>
       <el-table-column label="修改人" align="center" prop="updateBy">
-     
-      </el-table-column>
-      <el-table-column label="部门主键" align="center" prop="deeptId">
-       
       </el-table-column>
-      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+
+      <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="checkPermi(['business:ENTERPRISESCREENDATA:edit'])"
             @click="handleUpdate(scope.row)"
-            v-hasPermi="['business:ENTERPRISESCREENDATA:edit']"
-          >修改</el-button>
+            >修改</el-button
+          >
           <el-button
             size="mini"
             type="text"
             icon="el-icon-delete"
+            v-if="checkPermi(['business:ENTERPRISESCREENDATA:remove'])"
             @click="handleDelete(scope.row)"
-            v-hasPermi="['business:ENTERPRISESCREENDATA:remove']"
-          >删除</el-button>
+            >删除</el-button
+          >
         </template>
       </el-table-column>
     </el-table>
 
     <pagination
-      v-show="total>0"
+      v-show="total > 0"
       :total="total"
       :page.sync="queryParams.pageNum"
       :limit.sync="queryParams.pageSize"
@@ -121,18 +129,59 @@
     />
 
     <!-- 添加或修改企业大屏所需供应商数据对话框 -->
-    <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="500px" append-to-body>
-      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
-        <el-form-item label="供应商类型(三种) " prop="providerType">
-          <!-- <el-select v-model="form.providerType" placeholder="请选择供应商类型(三种) " filterable>
-            <el-option
-              v-for="dict in dict.type.${dictType}"
-              :key="dict.value"
-              :label="dict.label"
-:value="dict.value"
-            ></el-option>
-          </el-select> -->
-        </el-form-item>
+    <el-dialog
+      :title="title"
+      :visible.sync="open"
+      :close-on-click-modal="false"
+      width="35%"
+      append-to-body
+    >
+      <el-form ref="form" :model="form" :rules="rules" label-width="140px">
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="企业名称" prop="enterpriseName">
+              <el-select
+                @change="selectDept"
+                v-model="form.enterpriseName"
+                placeholder="请选择供应商类型(三种) "
+                filterable
+              >
+                <el-option
+                  v-for="(dict, index) in deptList"
+                  :key="index"
+                  :label="dict.deptName"
+                  :value="index"
+                ></el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="24">
+            <el-form-item label="供应商类型(三种)" prop="providerType">
+              <el-select
+                v-model="form.providerType"
+                placeholder="请选择供应商类型(三种) "
+                filterable
+              >
+                <el-option
+                  v-for="dict in tyleLabel"
+                  :key="dict.value"
+                  :label="dict.label"
+                  :value="dict.value"
+                ></el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="24">
+            <el-form-item label="供应商名称" prop="providerName" width="120px">
+              <el-input
+                placeholder="供应商名称 "
+                v-model="form.providerName"
+              ></el-input>
+            </el-form-item>
+          </el-col>
+        </el-row>
       </el-form>
       <div slot="footer" class="dialog-footer">
         <el-button type="primary" @click="submitForm">确 定</el-button>
@@ -143,12 +192,37 @@
 </template>
 
 <script>
-import { listENTERPRISESCREENDATA, getENTERPRISESCREENDATA, delENTERPRISESCREENDATA, addENTERPRISESCREENDATA, updateENTERPRISESCREENDATA } from "@/api/portal/ENTERPRISESCREENDATA/ENTERPRISESCREENDATA";
-
+import {
+  listENTERPRISESCREENDATA,
+  getENTERPRISESCREENDATA,
+  delENTERPRISESCREENDATA,
+  addENTERPRISESCREENDATA,
+  updateENTERPRISESCREENDATA,
+} from "@/api/portal/ENTERPRISESCREENDATA/ENTERPRISESCREENDATA";
+import { checkPermi } from "@/utils/permission.js";
+import { getUserProfile } from "@/api/system/user.js";
+import { listDept } from "@/api/system/dept.js";
 export default {
   name: "ENTERPRISESCREENDATA",
   data() {
     return {
+      // 供应商类型
+      tyleLabel: [
+        {
+          label: "上游供应商",
+          value: "上游供应商",
+        },
+        {
+          label: "下游供应商",
+          value: "下游供应商",
+        },
+        {
+          label: "供应链服务商",
+          value: "供应链服务商",
+        },
+      ],
+      // 部门列表
+      deptList: [],
       // 根路径
       baseURL: process.env.VUE_APP_BASE_API,
       // 遮罩层
@@ -181,41 +255,59 @@ export default {
         createBy: null,
         updateTime: null,
         updateBy: null,
-        deeptId: null
+        deeptId: null,
       },
       // 表单参数
       form: {},
       // 表单校验
       rules: {
         id: [
-          { required: true, message: "企业大屏所需数据主键不能为空", trigger: "blur" }
+          {
+            required: true,
+            message: "企业大屏所需数据主键不能为空",
+            trigger: "blur",
+          },
         ],
         enterpriseName: [
-          { required: true, message: "企业名称不能为空", trigger: "blur" }
+          { required: true, message: "企业名称不能为空", trigger: "blur" },
         ],
         providerName: [
-          { required: true, message: "供应商名称 不能为空", trigger: "blur" }
+          { required: true, message: "供应商名称 不能为空", trigger: "blur" },
         ],
         providerType: [
-          { required: true, message: "供应商类型(三种) 不能为空", trigger: "change" }
+          {
+            required: true,
+            message: "供应商类型(三种) 不能为空",
+            trigger: "change",
+          },
         ],
         deeptId: [
-          { required: true, message: "部门主键不能为空", trigger: "blur" }
-        ]
-      }
+          { required: true, message: "部门主键不能为空", trigger: "blur" },
+        ],
+      },
+
+      // 用户数据
+      userData: {},
     };
   },
   created() {
     this.getList();
+    getUserProfile().then((res) => {
+      this.userData = res.data;
+      listDept({ parentId: this.userData.deptId }).then((data) => {
+        this.deptList = data.data;
+        console.log(this.deptList);
+      });
+    });
   },
   methods: {
     /** 查询企业大屏所需供应商数据列表 */
     getList() {
-      this.loading = true;
-      listENTERPRISESCREENDATA(this.queryParams).then(response => {
+      // this.loading = true;
+      listENTERPRISESCREENDATA(this.queryParams).then((response) => {
         this.ENTERPRISESCREENDATAList = response.rows;
         this.total = response.total;
-        this.loading = false;
+        // this.loading = false;
       });
     },
     // 取消按钮
@@ -223,14 +315,18 @@ export default {
       this.open = false;
       this.reset();
     },
+
+    selectDept(i) {
+      this.form.enterpriseName = this.deptList[i].deptName;
+      this.form.deeptId = this.deptList[i].deptId;
+    },
     // 表单重置
     reset() {
       this.form = {
-        id: null,
         enterpriseName: null,
         providerName: null,
         providerType: null,
-        deeptId: null
+        deeptId: null,
       };
       this.resetForm("form");
     },
@@ -246,9 +342,9 @@ export default {
     },
     // 多选框选中数据
     handleSelectionChange(selection) {
-      this.ids = selection.map(item => item.id)
-      this.single = selection.length!==1
-      this.multiple = !selection.length
+      this.ids = selection.map((item) => item.id);
+      this.single = selection.length !== 1;
+      this.multiple = !selection.length;
     },
     /** 新增按钮操作 */
     handleAdd() {
@@ -259,8 +355,8 @@ export default {
     /** 修改按钮操作 */
     handleUpdate(row) {
       this.reset();
-      const id = row.id || this.ids
-      getENTERPRISESCREENDATA(id).then(response => {
+      const id = row.id || this.ids;
+      getENTERPRISESCREENDATA(id).then((response) => {
         this.form = response.data;
         this.open = true;
         this.title = "修改企业大屏所需供应商数据";
@@ -268,16 +364,18 @@ export default {
     },
     /** 提交按钮 */
     submitForm() {
-      this.$refs["form"].validate(valid => {
+      console.log(this.form, "---");
+      this.$refs["form"].validate((valid) => {
+        // this.form.deeptId = this.userData.deptId;
         if (valid) {
           if (this.form.id != null) {
-            updateENTERPRISESCREENDATA(this.form).then(response => {
+            updateENTERPRISESCREENDATA(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
             });
           } else {
-            addENTERPRISESCREENDATA(this.form).then(response => {
+            addENTERPRISESCREENDATA(this.form).then((response) => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();
@@ -289,19 +387,29 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除企业大屏所需供应商数据编号为"' + ids + '"的数据项?').then(function() {
-        return delENTERPRISESCREENDATA(ids);
-      }).then(() => {
-        this.getList();
-        this.$modal.msgSuccess("删除成功");
-      }).catch(() => {});
+      this.$modal
+        .confirm(
+          '是否确认删除企业大屏所需供应商数据编号为"' + ids + '"的数据项?'
+        )
+        .then(function () {
+          return delENTERPRISESCREENDATA(ids);
+        })
+        .then(() => {
+          this.getList();
+          this.$modal.msgSuccess("删除成功");
+        })
+        .catch(() => {});
     },
     /** 导出按钮操作 */
     handleExport() {
-      this.download('business/ENTERPRISESCREENDATA/export', {
-        ...this.queryParams
-      }, `ENTERPRISESCREENDATA_${new Date().getTime()}.xlsx`)
-    }
-  }
+      this.download(
+        "business/ENTERPRISESCREENDATA/export",
+        {
+          ...this.queryParams,
+        },
+        `ENTERPRISESCREENDATA_${new Date().getTime()}.xlsx`
+      );
+    },
+  },
 };
 </script>