335 lines
9.9 KiB
Python
335 lines
9.9 KiB
Python
<template>
|
|
<div class="app-container">
|
|
<el-row :gutter="6">
|
|
<el-col :xs="24" :md="4">
|
|
<el-select v-model="listQuery.sszx" placeholder="所属中心" @change="handleFilter2" clearable style="width: 100%;">
|
|
<el-option
|
|
v-for="item in groupBy.sszx"
|
|
:key="item.value"
|
|
:label="item.text"
|
|
:value="item.value">
|
|
</el-option>
|
|
</el-select>
|
|
</el-col>
|
|
|
|
<el-col :xs="24" :md="8">
|
|
<el-input
|
|
v-model="listQuery.search"
|
|
placeholder="项目/标准/编号/中心"
|
|
style="width: 100%;"
|
|
class="filter-item"
|
|
@keyup.enter.native="handleFilter"
|
|
/>
|
|
</el-col>
|
|
<el-col :xs="24" :md="6">
|
|
<el-button
|
|
class="filter-item"
|
|
type="primary"
|
|
icon="el-icon-search"
|
|
@click="handleFilter"
|
|
>搜索</el-button>
|
|
<el-button
|
|
class="filter-item"
|
|
type="primary"
|
|
icon="el-icon-refresh-left"
|
|
@click="resetFilter"
|
|
>刷新重置</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
<div style="margin-top:10px">
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-if="checkPermission(['cma_create'])">新增</el-button> -->
|
|
<el-popover
|
|
placement="top"
|
|
width="160"
|
|
v-if="checkPermission(['ability_import'])"
|
|
v-model="popovervisible"
|
|
>
|
|
<p>导入能力列表压缩包.</p>
|
|
<div style="text-align: left; margin: 0;">
|
|
<el-upload
|
|
:action="upUrl"
|
|
:on-success="handleUploadSuccess"
|
|
accept=".rar,.zip"
|
|
:headers="upHeaders"
|
|
:show-file-list ="false"
|
|
>
|
|
<el-button size="small" type="primary" @click="popovervisible = false">上传导入</el-button>
|
|
</el-upload>
|
|
</div>
|
|
|
|
<el-button slot="reference">导入分子公司能力</el-button>
|
|
</el-popover>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="cmaList.results"
|
|
style="width: 100%;margin-top:10px;"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
max-height="700"
|
|
ref="filterTable"
|
|
@filter-change="filterChange"
|
|
>
|
|
<el-table-column type="index" width="50" />
|
|
<el-table-column align="center" label="大类名称">
|
|
<template slot-scope="scope">{{ scope.row.dlmc }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="类别名称">
|
|
<template slot-scope="scope">{{ scope.row.lbmc }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="项目序号">
|
|
<template slot-scope="scope">{{ scope.row.xmxh }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="项目名称">
|
|
<template slot-scope="scope">{{ scope.row.xmmc }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="标准名称" width="300">
|
|
<template slot-scope="scope">{{ scope.row.bzmc }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="标准编号">
|
|
<template slot-scope="scope">{{ scope.row.bzbh }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="限制范围">
|
|
<template slot-scope="scope">{{ scope.row.xzfw }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="关联资质" prop="glzz"
|
|
column-key="glzz"
|
|
:filters="groupBy.glzz"
|
|
:filter-multiple="false">
|
|
<template slot-scope="scope"
|
|
|
|
>{{ scope.row.glzz }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="header-center" label="所属中心"
|
|
prop="sszx"
|
|
column-key="sszx"
|
|
:filters="groupBy.sszx"
|
|
:filter-multiple="false"
|
|
fixed="right"
|
|
>
|
|
<template slot-scope="scope">{{ scope.row.sszx }}</template>
|
|
</el-table-column>
|
|
<!-- <el-table-column align="center" label="操作">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
:disabled="!checkPermission(['cma_update'])"
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-edit"
|
|
@click="handleEdit(scope)"
|
|
/>
|
|
<el-button
|
|
:disabled="!checkPermission(['cma_delete'])"
|
|
type="danger"
|
|
size="small"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope)"
|
|
/>
|
|
</template>
|
|
</el-table-column> -->
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="cmaList.count>0"
|
|
:total="cmaList.count"
|
|
:page.sync="listQuery.page"
|
|
:limit.sync="listQuery.page_size"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<el-dialog :visible.sync="dialogVisible" :title="dialogType==='edit'?'编辑':'新增'">
|
|
<el-form ref="Form" :model="cma" label-width="80px" label-position="right" >
|
|
<el-form-item label="姓名" prop="name">
|
|
<el-input v-model="cma.name" placeholder="姓名" />
|
|
</el-form-item>
|
|
<el-form-item label="账户" prop="username">
|
|
<el-input v-model="cma.username" placeholder="账户" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div style="text-align:right;">
|
|
<el-button type="danger" @click="dialogVisible=false">取消</el-button>
|
|
<el-button type="primary" @click="confirm('Form')">确认</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<style >
|
|
.el-table-filter{
|
|
width:400px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|
|
<script>
|
|
import { getCMAList, createCMA, deleteCMA, updateCMA, importCMA2, getCNASList, importCNAS, getCMAGroup } from "@/api/cma";
|
|
import checkPermission from "@/utils/permission"
|
|
import { upUrl, upHeaders } from "@/api/file"
|
|
import Pagination from "@/components/Pagination" // secondary package based on el-pagination
|
|
const defaultCMA = {
|
|
id: "",
|
|
dlxh:null,
|
|
dlmc:null,
|
|
|
|
};
|
|
const dflistQuery = {
|
|
page: 1,
|
|
page_size: 20,
|
|
type:'sub'
|
|
}
|
|
export default {
|
|
components: { Pagination },
|
|
data() {
|
|
return {
|
|
cma: defaultCMA,
|
|
upHeaders: upHeaders(),
|
|
upUrl: upUrl(),
|
|
groupBy:{sszx:[], glzz:[]},
|
|
cmaList: {count:0},
|
|
listLoading: true,
|
|
listQuery: Object.assign({}, dflistQuery),
|
|
enabledOptions: [
|
|
{ key: "true", display_name: "激活" },
|
|
{ key: "false", display_name: "禁用" }
|
|
],
|
|
dialogVisible: false,
|
|
dialogType: "new",
|
|
popovervisible: false,
|
|
};
|
|
},
|
|
computed: {},
|
|
watch: {
|
|
},
|
|
created() {
|
|
this.getList()
|
|
this.getGroup()
|
|
},
|
|
methods: {
|
|
checkPermission,
|
|
handleUploadSuccess(res, file) {
|
|
const loading = this.openLoading()
|
|
let data = {path:res.data.path}
|
|
importCMA2(data).then(res=>{
|
|
this.$message({
|
|
message: '导入成功',
|
|
type: 'success'
|
|
})
|
|
loading.close()
|
|
this.resetFilter()
|
|
}).catch(error=>{loading.close()})
|
|
},
|
|
getList() {
|
|
this.listLoading = true;
|
|
getCMAList(this.listQuery).then(response => {
|
|
if (response.data) {
|
|
this.cmaList = response.data
|
|
}
|
|
this.listLoading = false
|
|
})
|
|
},
|
|
getGroup() {
|
|
for(let key in this.groupBy){
|
|
let data = Object.assign({}, this.listQuery)
|
|
data.group_by = key
|
|
getCMAGroup(data).then(response => {
|
|
this.groupBy[key] = response.data
|
|
console.log(this.groupBy)
|
|
})
|
|
}
|
|
},
|
|
resetFilter() {
|
|
this.listQuery = Object.assign({}, dflistQuery),
|
|
this.getList()
|
|
this.getGroup()
|
|
},
|
|
handleFilter() {
|
|
this.listQuery.page = 1
|
|
this.getList()
|
|
this.getGroup()
|
|
},
|
|
handleFilter2() {
|
|
this.listQuery.page = 1
|
|
this.getList()
|
|
},
|
|
handleAdd() {
|
|
this.cma = Object.assign({}, defaultCMA)
|
|
this.dialogType = "new"
|
|
this.dialogVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs["Form"].clearValidate()
|
|
})
|
|
},
|
|
handleEdit(scope) {
|
|
this.cma = Object.assign({}, scope.row) // copy obj
|
|
this.dialogType = "edit"
|
|
this.dialogVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs["Form"].clearValidate()
|
|
})
|
|
},
|
|
handleDelete(scope) {
|
|
this.$confirm("确认删除?", "警告", {
|
|
confirmButtonText: "确认",
|
|
cancelButtonText: "取消",
|
|
type: "error"
|
|
})
|
|
.then(async () => {
|
|
await deleteCMA(scope.row.id);
|
|
this.cmaList.splice(scope.row.index, 1);
|
|
this.$message({
|
|
type: "success",
|
|
message: "成功删除!"
|
|
});
|
|
})
|
|
.catch(err => {
|
|
console.error(err);
|
|
});
|
|
},
|
|
filterChange (obj) {
|
|
for(let key in obj){
|
|
this.listQuery[key] = obj[key][0]
|
|
}
|
|
this.listQuery.page=1
|
|
this.getList()
|
|
},
|
|
async confirm(form) {
|
|
this.$refs[form].validate(valid => {
|
|
if (valid) {
|
|
const isEdit = this.dialogType === "edit";
|
|
if (isEdit) {
|
|
updateCMA(this.cma.id, this.cma).then(res => {
|
|
if (res.code >= 200) {
|
|
this.getList();
|
|
this.dialogVisible = false;
|
|
this.$notify({
|
|
title: "成功",
|
|
message: "编辑成功",
|
|
type: "success",
|
|
duration: 2000
|
|
});
|
|
}
|
|
});
|
|
} else {
|
|
createCMA(this.cma).then(res => {
|
|
if (res.code >= 200) {
|
|
this.getList();
|
|
this.dialogVisible = false;
|
|
this.$notify({
|
|
title: "成功",
|
|
message: "新增成功",
|
|
type: "success",
|
|
duration: 2000
|
|
});
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|