|
@@ -0,0 +1,158 @@
|
|
|
+<template>
|
|
|
+ <div class="page">
|
|
|
+ <el-form :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
|
|
|
+ <!-- 搜索框-->
|
|
|
+ <el-form-item label="报销内容名称" prop="name">
|
|
|
+ <el-input v-model="searchForm.name" placeholder="请输入报销内容名称" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+<!-- <el-form-item label="序号" prop="sort">-->
|
|
|
+<!-- <el-input size="small" v-model="searchForm.sort" placeholder="请输入序号" clearable></el-input>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" @click="refreshList()" icon="el-icon-search">查询</el-button>
|
|
|
+ <el-button @click="resetSearch()" icon="el-icon-refresh-right">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <div class="jp-table top" style="">
|
|
|
+ <vxe-toolbar :refresh="{query: refreshList}" custom>
|
|
|
+ <template #buttons>
|
|
|
+ <el-button v-if="hasPermission('program:configuration:type:add')" type="primary" icon="el-icon-plus" @click="add()">新建</el-button>
|
|
|
+<!-- <el-button v-if="hasPermission('program:configuration:type:del')" type="danger" size="small" icon="el-icon-delete" @click="del()" :disabled="$refs.typeTable && $refs.typeTable.getCheckboxRecords().length === 0" plain>删除</el-button>-->
|
|
|
+ </template>
|
|
|
+ </vxe-toolbar>
|
|
|
+ <div style="height: calc(100% - 50px)">
|
|
|
+ <vxe-table
|
|
|
+ border="inner"
|
|
|
+ auto-resize
|
|
|
+ resizable
|
|
|
+ height="auto"
|
|
|
+ :loading="loading"
|
|
|
+ size="small"
|
|
|
+ ref="typeTable"
|
|
|
+ show-header-overflow
|
|
|
+ show-overflow
|
|
|
+ highlight-hover-row
|
|
|
+ :menu-config="{}"
|
|
|
+ :sort-config="{remote:true}"
|
|
|
+ :data="dataList"
|
|
|
+ :tree-config="{transform: true, rowField: 'id', parentField: 'parentId',expandAll: true}"
|
|
|
+ :checkbox-config="{}">
|
|
|
+ <vxe-column type="seq" width="60" title="序号"></vxe-column>
|
|
|
+ <vxe-column type="checkbox" width="60" ></vxe-column>
|
|
|
+ <vxe-column min-width="200" title="报销内容名称" field="name" align="left" tree-node></vxe-column>
|
|
|
+ <vxe-column min-width="200" title="关联部门" field="relateDepartment" align="center"></vxe-column>
|
|
|
+ <vxe-column min-width="100" title="序号" field="sort" align="center"></vxe-column>
|
|
|
+
|
|
|
+ <vxe-column title="操作" width="230px" fixed="right" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button v-if="hasPermission('reimbursement:type:edit')&&(scope.row.level === '1' || scope.row.level === '2')" text type="primary" @click="addChild(scope.row.id,scope.row.businessType)">添加下级结构</el-button>
|
|
|
+ <el-button v-if="hasPermission('reimbursement:type:edit')" text type="primary" @click="edit(scope.row.id)">修改</el-button>
|
|
|
+ <el-button v-if="hasPermission('reimbursement:type:remove')" text type="primary" @click="del(scope.row.id)">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <TypeForm ref="typeForm" @refreshDataList="refreshList"></TypeForm>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ // import ReimbursementTypeService from '@/api/sys/ReimbursementTypeService'
|
|
|
+ import ReimbursementApprovalTypeService from '@/api/jy/JyReimbursementApprovalTypeService'
|
|
|
+ import TypeForm from './TypeForm'
|
|
|
+ export default {
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ searchForm: {
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
+ dataList: [],
|
|
|
+ tablePage: {
|
|
|
+ total: 0,
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ orders: []
|
|
|
+ },
|
|
|
+ loading: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // reimbursementTypeService: null,
|
|
|
+ reimbursementApprovalTypeService: null,
|
|
|
+ created () {
|
|
|
+ // this.reimbursementTypeService = new ReimbursementTypeService()
|
|
|
+ this.reimbursementApprovalTypeService = new ReimbursementApprovalTypeService()
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ TypeForm
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 新增
|
|
|
+ add () {
|
|
|
+ this.$refs.typeForm.init('add', '')
|
|
|
+ },
|
|
|
+ addChild (id, businessType) {
|
|
|
+ this.$refs.typeForm.init('addChild', id, businessType)
|
|
|
+ },
|
|
|
+ // 修改
|
|
|
+ edit (id) {
|
|
|
+ id = id || this.$refs.typeTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ })[0]
|
|
|
+ this.$refs.typeForm.init('edit', id)
|
|
|
+ },
|
|
|
+ // 查看
|
|
|
+ view (id) {
|
|
|
+ this.$refs.typeForm.init('view', id)
|
|
|
+ },
|
|
|
+ // 获取数据列表
|
|
|
+ refreshList () {
|
|
|
+ this.loading = true
|
|
|
+ this.reimbursementApprovalTypeService.list({...this.searchForm}).then((data) => {
|
|
|
+ this.dataList = data
|
|
|
+ this.loading = false
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.typeTable.setAllTreeExpand(true)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ // this.reimbursementTypeService.list({...this.searchForm}).then((data) => {
|
|
|
+ // this.dataList = data
|
|
|
+ // this.loading = false
|
|
|
+ // })
|
|
|
+ },
|
|
|
+ // 删除
|
|
|
+ del (id) {
|
|
|
+ let ids = id || this.$refs.typeTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ }).join(',')
|
|
|
+ this.$confirm(`确定删除所选项吗?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.loading = true
|
|
|
+ this.reimbursementApprovalTypeService.remove(ids).then((data) => {
|
|
|
+ this.$message.success(data)
|
|
|
+ this.refreshList()
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ // this.reimbursementTypeService.remove(ids).then((data) => {
|
|
|
+ // this.$message.success(data)
|
|
|
+ // this.refreshList()
|
|
|
+ // this.loading = false
|
|
|
+ // })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ resetSearch () {
|
|
|
+ this.$refs.searchForm.resetFields()
|
|
|
+ this.refreshList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|