Browse Source

项目类型附件管理前端页面

lizhenhao 2 years ago
parent
commit
897e174e5b

+ 39 - 0
src/api/program/ProgramTypeFileDictService.js

@@ -0,0 +1,39 @@
+import request from '@/utils/httpRequest'
+
+export default class ProgramTypeDictService {
+  list (params) {
+    return request({
+      url: '/program/project/list',
+      method: 'post',
+      data: params
+    })
+  }
+  queryById (id) {
+    return request({
+      url: '/program/project/findByFileId',
+      method: 'get',
+      params: {id: id}
+    })
+  }
+  getFileList (inputForm) {
+    return request({
+      url: '/program/project/getFileList',
+      method: 'post',
+      data: inputForm
+    })
+  }
+  save (inputForm) {
+    return request({
+      url: `/program/project/save`,
+      method: 'post',
+      data: inputForm
+    })
+  }
+  delete (ids) {
+    return request({
+      url: '/program/project/deleteById',
+      method: 'delete',
+      params: {id: ids}
+    })
+  }
+}

+ 143 - 0
src/views/modules/program/configuration/typeFileDict/TypeFileDictForm.vue

@@ -0,0 +1,143 @@
+<template>
+  <div>
+    <el-dialog
+      :title="title"
+      :close-on-click-modal="false"
+      v-dialogDrag
+      width="500px"
+      @close="close"
+      @keyup.enter.native="doSubmit"
+      :visible.sync="visible">
+      <el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"  :disabled="method==='view'"
+               label-width="100px" @submit.native.prevent>
+        <el-row  :gutter="15">
+          <el-col :span="21">
+            <el-form-item label="附件名称" prop="fileId"
+                          :rules="[
+                          {required: true, message:'附件名称不能为空', trigger:'blur'}
+                 ]">
+              <el-select v-model="inputForm.fileId" placeholder="请选择附件名称" style="width:100%;" clearable>
+                <el-option
+                  v-for="item in fileDictList"
+                  :key="item.id"
+                  :label="item.name"
+                  :value="item.id">
+                </el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+          <el-col :span="21">
+            <el-form-item label="必填阶段" prop="requiredStage"
+                          :rules="[
+                 ]">
+              <el-select v-model="inputForm.requiredStage" placeholder="请选择必填阶段" style="width:100%;" clearable>
+                <el-option
+                  v-for="item in $dictUtils.getDictList('program_required_stage')"
+                  :key="item.value"
+                  :label="item.label"
+                  :value="item.value">
+                </el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-form>
+      <span slot="footer" class="dialog-footer">
+      <el-button size="small" @click="close()" icon="el-icon-circle-close">关闭</el-button>
+      <el-button size="small" type="primary" v-if="method != 'view'" @click="doSubmit()" icon="el-icon-circle-check" v-noMoreClick>确定</el-button>
+    </span>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+  import ProgramTypeFileDictService from '@/api/program/ProgramTypeFileDictService'
+  export default {
+    data () {
+      return {
+        title: '',
+        method: '',
+        visible: false,
+        loading: false,
+        inputForm: {
+          fileId: '',
+          requiredStage: '',
+          attachmentProjectType: '',
+          attachmentProjectSort: ''
+        },
+        fileDictList: []
+      }
+    },
+    programTypeFileDictService: null,
+    created () {
+      this.programTypeFileDictService = new ProgramTypeFileDictService()
+    },
+    methods: {
+      init (method, id, attachmentProjectType, attachmentProjectSort, fileId) {
+        this.method = method
+        this.getFileList(attachmentProjectType, attachmentProjectSort, fileId)
+        this.inputForm = {
+          fileId: '',
+          requiredStage: '',
+          attachmentProjectType: '',
+          attachmentProjectSort: ''
+        }
+        if (method === 'add') {
+          this.title = `新增附件结构信息`
+        } else if (method === 'edit') {
+          this.inputForm.id = id
+          this.title = '修改附件结构信息'
+        } else if (method === 'view') {
+          this.inputForm.id = id
+          this.title = '附件结构信息'
+        }
+        this.visible = true
+        this.loading = false
+        this.$nextTick(() => {
+          this.$refs.inputForm.resetFields()
+          if (method === 'edit' || method === 'view') { // 修改或者查看
+            this.loading = true
+            this.programTypeFileDictService.queryById(this.inputForm.id).then(({data}) => {
+              this.inputForm = this.recover(this.inputForm, data)
+              this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
+              if (this.inputForm.requiredStage === '0') {
+                this.inputForm.requiredStage = ''
+              }
+              this.loading = false
+            })
+          }
+          this.inputForm.attachmentProjectType = attachmentProjectType
+          this.inputForm.attachmentProjectSort = attachmentProjectSort
+        })
+      },
+      // 表单提交
+      doSubmit () {
+        this.$refs['inputForm'].validate((valid) => {
+          if (valid) {
+            this.loading = true
+            if (this.commonJS.isEmpty(this.inputForm.requiredStage)) {
+              this.inputForm.requiredStage = '0'
+            }
+            this.programTypeFileDictService.save(this.inputForm).then(({data}) => {
+              this.close()
+              this.$message.success(data)
+              this.$emit('refreshDataList')
+              this.loading = false
+            }).catch(() => {
+              this.loading = false
+            })
+          }
+        })
+      },
+      close () {
+        this.$refs.inputForm.resetFields()
+        this.visible = false
+      },
+      getFileList (attachmentProjectType, attachmentProjectSort, fileId) {
+        this.programTypeFileDictService.getFileList({'attachmentProjectType': attachmentProjectType, 'attachmentProjectSort': attachmentProjectSort, 'fileId': fileId}).then(({data}) => {
+          this.fileDictList = data
+        })
+      }
+    }
+  }
+</script>

+ 195 - 0
src/views/modules/program/configuration/typeFileDict/TypeFileDictList.vue

@@ -0,0 +1,195 @@
+<template>
+  <div class="page">
+    <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
+      <!-- 搜索框-->
+      <el-form-item prop="attachmentProjectType">
+        <el-select v-model="searchForm.attachmentProjectType" placeholder="请选择项目类型" style="width:100%;">
+          <el-option
+            v-for="item in $dictUtils.getDictList('program_type')"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value">
+          </el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item prop="attachmentProjectSort">
+        <el-select v-model="searchForm.attachmentProjectSort" placeholder="请选择项目类型项目类别" style="width:100%;">
+          <el-option
+            v-if="searchForm.attachmentProjectType === '1'"
+            v-for="item in $dictUtils.getDictList('program_cost_audit_type')"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value">
+          </el-option>
+          <el-option
+            v-if="searchForm.attachmentProjectType === '2'"
+            v-for="item in $dictUtils.getDictList('program_engineering_consultation_type')"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value">
+          </el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
+        <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>
+      </el-form-item>
+    </el-form>
+    <div class="bg-white top" style="">
+      <vxe-toolbar :refresh="{query: refreshList}" custom>
+        <template #buttons>
+<!--          <el-button v-if="hasPermission('program:configuration:type_file:del')" type="danger"   size="small" icon="el-icon-delete" @click="del()" :disabled="$refs.typeFileDictTable && $refs.typeFileDictTable.getCheckboxRecords().length === 0" plain>删除</el-button>-->
+        </template>
+      </vxe-toolbar>
+      <div style="height: calc(100% - 50px)">
+        <vxe-table
+          :key="tableKey"
+          border="inner"
+          auto-resize
+          resizable
+          height="auto"
+          :loading="loading"
+          size="small"
+          ref="typeFileDictTable"
+          show-header-overflow
+          show-overflow
+          highlight-hover-row
+          :menu-config="{}"
+          @sort-change="sortChangeHandle"
+          :sort-config="{remote:true}"
+          :data="dataList"
+          :tree-config="{transform: true, rowField: 'fileId', parentField: 'parentId', expandAll: true}"
+          :checkbox-config="{}">
+          <vxe-column type="seq" width="40"></vxe-column>
+          <vxe-column type="checkbox" width="40" ></vxe-column>
+          <vxe-column width="180" title="附件名称" field="name" align="left" tree-node></vxe-column>
+          <vxe-column title="必填阶段" field="requiredStage">
+            <template slot-scope="scope">
+              {{$dictUtils.getDictLabel("program_required_stage", scope.row.requiredStage, "")}}
+            </template>
+          </vxe-column>
+          <vxe-column title="操作" width="230px" fixed="right" align="center">
+            <template  slot-scope="scope">
+              <el-button v-if="hasPermission('program:configuration:type_file:edit')&&scope.row.parentId === '0'" type="text" icon="el-icon-plus" size="small" @click="add(scope.row)">新建子类型</el-button>
+              <el-button v-if="hasPermission('program:configuration:type_file:edit')&&scope.row.parentId !== '0'" type="text" icon="el-icon-edit" size="small" @click="edit(scope.row)">修改</el-button>
+              <el-button v-if="hasPermission('program:configuration:type_file:del')&&scope.row.parentId !== '0'" type="text"  icon="el-icon-delete" size="small" @click="del(scope.row)">删除</el-button>
+            </template>
+          </vxe-column>
+        </vxe-table>
+<!--        <vxe-pager-->
+<!--          background-->
+<!--          size="small"-->
+<!--          :current-page="tablePage.currentPage"-->
+<!--          :page-size="tablePage.pageSize"-->
+<!--          :total="tablePage.total"-->
+<!--          :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"-->
+<!--          :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"-->
+<!--          @page-change="currentChangeHandle">-->
+<!--        </vxe-pager>-->
+      </div>
+    </div>
+    <TypeFileDictForm  ref="typeFileDictForm" @refreshDataList="refreshList"></TypeFileDictForm>
+  </div>
+</template>
+
+<script>
+  import ProgramTypeFileDictService from '@/api/program/ProgramTypeFileDictService'
+  import TypeFileDictForm from './TypeFileDictForm'
+  export default {
+    data () {
+      return {
+        searchForm: {
+          attachmentProjectSort: '',
+          attachmentProjectType: ''
+        },
+        dataList: [],
+        tablePage: {
+          total: 0,
+          currentPage: 1,
+          pageSize: 10,
+          orders: []
+        },
+        loading: false,
+        tableKey: ''
+      }
+    },
+    programTypeFileDictService: null,
+    created () {
+      this.programTypeFileDictService = new ProgramTypeFileDictService()
+    },
+    components: {
+      TypeFileDictForm
+    },
+    mounted () {
+      this.refreshList()
+    },
+    methods: {
+      // 新增
+      add (row) {
+        console.log(this.searchForm)
+        this.$refs.typeFileDictForm.init('add', null, this.searchForm.attachmentProjectType, this.searchForm.attachmentProjectSort, row.fileId)
+      },
+      // 修改
+      edit (row) {
+        row.id = row.id || this.$refs.typeFileDictTable.getCheckboxRecords().map(item => {
+          return item.id
+        })[0]
+        this.$refs.typeFileDictForm.init('edit', row.id, this.searchForm.attachmentProjectType, this.searchForm.attachmentProjectSort, row.fileId)
+      },
+      // 查看
+      view (row) {
+        this.$refs.typeFileDictForm.init('view', row.id, this.searchForm.attachmentProjectType, this.searchForm.attachmentProjectSort, row.fileId)
+      },
+      // 获取数据列表
+      refreshList () {
+        this.loading = true
+        this.programTypeFileDictService.list({
+          'current': this.tablePage.currentPage,
+          'size': this.tablePage.pageSize,
+          'orders': this.tablePage.orders,
+          ...this.searchForm
+        }).then(({data}) => {
+          this.dataList = data
+          this.tableKey = Math.random()
+          this.loading = false
+        })
+      },
+      // 当前页
+      currentChangeHandle ({ currentPage, pageSize }) {
+        this.tablePage.currentPage = currentPage
+        this.tablePage.pageSize = pageSize
+        this.refreshList()
+      },
+      // 排序
+      sortChangeHandle (column) {
+        this.tablePage.orders = []
+        if (column.order != null) {
+          this.tablePage.orders.push({column: this.$utils.toLine(column.property), asc: column.order === 'asc'})
+        }
+        this.refreshList()
+      },
+      // 删除
+      del (row) {
+        let ids = row.id || this.$refs.typeFileDictTable.getCheckboxRecords().map(item => {
+          return item.id
+        }).join(',')
+        this.$confirm(`确定删除所选项吗?`, '提示', {
+          confirmButtonText: '确定',
+          cancelButtonText: '取消',
+          type: 'warning'
+        }).then(() => {
+          this.loading = true
+          this.programTypeFileDictService.delete(ids).then(({data}) => {
+            this.$message.success(data)
+            this.refreshList()
+            this.loading = false
+          })
+        })
+      },
+      resetSearch () {
+        this.$refs.searchForm.resetFields()
+        this.refreshList()
+      }
+    }
+  }
+</script>