<style scoped>
|
.search {
|
height: 46px;
|
display: flex;
|
justify-content: space-between;
|
}
|
</style>
|
|
<template>
|
<div class="capacity-scope">
|
<div class="search">
|
<div>
|
<el-form :model="queryParams" ref="queryParams" size="small" :inline="true">
|
<el-form-item label="标准编号" prop="code">
|
<el-input size="small" placeholder="请输入" clearable v-model="queryParams.code"
|
@keyup.enter.native="refreshTable()"></el-input>
|
</el-form-item>
|
<el-form-item label="标准名称" prop="name">
|
<el-input size="small" placeholder="请输入" clearable v-model="queryParams.name"
|
@keyup.enter.native="refreshTable()"></el-input>
|
</el-form-item>
|
<el-form-item>
|
<el-button type="primary" size="mini" @click="refreshTable">查询</el-button>
|
<el-button size="mini" @click="refresh">重置</el-button>
|
</el-form-item>
|
</el-form>
|
</div>
|
<div>
|
<el-button size="small" type="primary" @click="openAdd" v-if="addPower">新增</el-button>
|
</div>
|
</div>
|
<lims-table :tableData="tableData" :column="column" :page="page" :tableLoading="tableLoading"
|
:height="'calc(100vh - 250px)'" @pagination="pagination"></lims-table>
|
<!-- 新增/编辑 -->
|
<el-dialog :title="title" :visible.sync="addDlog" width="500px">
|
<el-form :model="addForm" ref="addForm" :rules="addRules" label-position="right" label-width="120px">
|
<el-form-item label="行业" prop="industryIds">
|
<el-select v-model="addForm.industryIds" multiple filterable clearable collapse-tags placeholder="请选择行业" style="width: 100%">
|
<el-option v-for="item in industryOptions" :key="item.id" :label="item.laboratoryName" :value="item.id" />
|
</el-select>
|
</el-form-item>
|
<el-form-item label="标准编号" prop="code">
|
<el-input size="small" placeholder="请输入" clearable v-model="addForm.code">
|
</el-input>
|
</el-form-item>
|
<el-form-item label="标准描述" prop="name">
|
<el-input size="small" placeholder="请输入" clearable v-model="addForm.name">
|
</el-input>
|
</el-form-item>
|
<el-form-item label="备注" prop="remark">
|
<el-input size="small" placeholder="请输入" clearable v-model="addForm.remark">
|
</el-input>
|
</el-form-item>
|
<el-form-item label="资质" prop="qualificationId">
|
<el-select v-model="addForm.qualificationId" size="small" clearable placeholder="请选择" style="width: 100%">
|
<el-option v-for="item in qualificationList" :key="item.value" :label="item.label" :value="item.value">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
<el-form-item label="是否产品标准" prop="isProduct">
|
<el-select v-model="addForm.isProduct" size="small" clearable placeholder="请选择" style="width: 100%">
|
<el-option label="否" :value="0"> </el-option>
|
<el-option label="是" :value="1"> </el-option>
|
</el-select>
|
</el-form-item>
|
<el-form-item label="是否启用" prop="isUse">
|
<el-select v-model="addForm.isUse" size="small" clearable placeholder="请选择" style="width: 100%">
|
<el-option label="否" :value="0"> </el-option>
|
<el-option label="是" :value="1"> </el-option>
|
</el-select>
|
</el-form-item>
|
<el-form-item v-if="title === '新增'" label="附件">
|
<el-upload ref="addUpload" action="#" :auto-upload="false" multiple :file-list="pendingFiles"
|
:on-change="pendingFileChange" :on-remove="pendingFileRemove" :before-upload="beforeFileUpload"
|
accept=".jpg,.jpeg,.png,.gif,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.zip,.rar">
|
<el-button size="small" type="primary">选择附件</el-button><div slot="tip" class="el-upload__tip">支持多个附件,单个不超过10MB</div>
|
</el-upload>
|
</el-form-item>
|
</el-form>
|
<span slot="footer" class="dialog-footer">
|
<el-button @click="addDlog = false">取 消</el-button>
|
<el-button :loading="addLoading" type="primary" @click="submitProduct('addForm')">确 认</el-button>
|
</span>
|
</el-dialog>
|
<el-dialog title="标准附件" :visible.sync="attachmentDialog" width="760px">
|
<el-upload v-if="currentMethod.id" :action="attachmentAction" :headers="uploadHeader" multiple :show-file-list="false"
|
:before-upload="beforeFileUpload" :on-success="attachmentUploadSuccess"
|
accept=".jpg,.jpeg,.png,.gif,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.zip,.rar">
|
<el-button size="small" type="primary">上传附件</el-button>
|
</el-upload>
|
<el-table :data="attachmentList" border size="small" style="margin-top:12px">
|
<el-table-column label="文件名称" prop="fileName" min-width="280" />
|
<el-table-column label="上传时间" prop="createTime" width="170" />
|
<el-table-column label="操作" width="180"><template slot-scope="scope"><el-button type="text" @click="previewAttachment(scope.row)">预览</el-button><el-button type="text" @click="downloadAttachment(scope.row)">下载</el-button><el-button type="text" style="color:#f56c6c" @click="removeAttachment(scope.row)">删除</el-button></template></el-table-column>
|
</el-table>
|
</el-dialog>
|
<el-dialog title="预览附件" :visible.sync="previewDialog" fullscreen><file-preview v-if="previewDialog" :current-file="currentAttachment" :file-url="previewUrl" /></el-dialog>
|
</div>
|
</template>
|
|
<script>
|
import limsTable from "@/components/Table/lims-table.vue";
|
import filePreview from "@/components/Preview/filePreview.vue";
|
import {
|
selectStandardMethodList,
|
delStandardMethod,
|
addStandardMethod,
|
upStandardMethod, selectIndustryOptions, selectAttachments, uploadAttachment, deleteAttachment,
|
} from "@/api/cnas/process/method/standardMethod";
|
export default {
|
name: 'StandardMethod',
|
components: {
|
limsTable, filePreview,
|
},
|
data() {
|
return {
|
addPower: true,
|
title: "新增",
|
inPower: true,
|
queryParams: {},
|
tableData: [],
|
column: [
|
{ label: "行业", prop: "industryNames", width: "140px" },
|
{ label: "标准编号", prop: "code", width: "100px" },
|
{ label: "标准描述", prop: "name", width: "100px" },
|
{ label: "备注", prop: "remark" },
|
{ label: "资质", prop: "qualificationId" },
|
{
|
label: "是否产品标准",
|
prop: "isProduct",
|
width: "100px",
|
dataType: "tag",
|
formatData: (params) => {
|
if (params == 0) {
|
return "否";
|
} else {
|
return "是";
|
}
|
},
|
formatType: (params) => {
|
if (params == 0) {
|
return "danger";
|
} else {
|
return "primary";
|
}
|
},
|
},
|
{
|
label: "是否启用",
|
prop: "isUse",
|
formatData: (params) => {
|
if (params == 0) {
|
return "否";
|
} else {
|
return "是";
|
}
|
},
|
formatType: (params) => {
|
if (params == 0) {
|
return "danger";
|
} else {
|
return "primary";
|
}
|
},
|
},
|
{ label: "创建人", prop: "createUserName" },
|
{ label: "创建时间", prop: "createTime" },
|
{ label: "更新人", prop: "updateUserName" },
|
{ label: "更新时间", prop: "updateTime" },
|
{
|
dataType: "action",
|
fixed: "right",
|
label: "操作",
|
operation: [
|
{
|
name: "编辑",
|
type: "text",
|
clickFun: (row) => {
|
this.openEdit(row)
|
},
|
},
|
{
|
name: "上传附件", type: "text", clickFun: (row) => this.openAttachments(row),
|
},
|
{
|
name: "下载附件", type: "text", clickFun: (row) => this.downloadAttachments(row),
|
},
|
{
|
name: "预览附件", type: "text", clickFun: (row) => this.previewAttachments(row),
|
},
|
{
|
name: "删除",
|
type: "text",
|
clickFun: (row) => {
|
this.handleDelete(row);
|
},
|
},
|
],
|
},
|
],
|
page: {
|
total: 0,
|
size: 10,
|
current: 1,
|
},
|
tableLoading: false,
|
addForm: {},
|
addDlog: false,
|
addLoading: false,
|
qualificationList: [],
|
industryOptions: [],
|
pendingFiles: [], attachmentDialog: false, attachmentList: [], currentMethod: {},
|
previewDialog: false, currentAttachment: {}, previewUrl: '',
|
addRules: {
|
code: [{ required: true, message: "请输入标准编号", trigger: "blur" }],
|
name: [{ required: true, message: "请输入标准描述", trigger: "blur" }],
|
isProduct: [
|
{ required: true, message: "请选择是否产品标准", trigger: "change" },
|
],
|
isUse: [
|
{ required: true, message: "请选择是否启用", trigger: "change" },
|
],
|
},
|
};
|
},
|
mounted() {
|
this.getQualificationList();
|
this.loadIndustryOptions();
|
this.getList();
|
},
|
methods: {
|
getList() {
|
this.tableLoading = true;
|
let param = { ...this.queryParams, ...this.page };
|
delete param.total;
|
selectStandardMethodList({ ...param })
|
.then((res) => {
|
this.tableLoading = false;
|
if (res.code === 200) {
|
this.tableData = res.data.records;
|
this.page.total = res.data.total;
|
}
|
})
|
.catch((err) => {
|
this.tableLoading = false;
|
});
|
},
|
pagination({ page, limit }) {
|
this.page.current = page;
|
this.page.size = limit;
|
this.getList();
|
},
|
refreshTable() {
|
this.page.current = 1;
|
this.getList();
|
this.loadIndustryOptions();
|
},
|
refresh() {
|
this.loadIndustryOptions();
|
this.page.current = 1;
|
this.queryParams = {};
|
this.getList();
|
},
|
openAdd() {
|
this.title = "新增";
|
this.addForm = { industryIds: [], isProduct: 1, isUse: 1 };
|
this.pendingFiles = [];
|
this.addDlog = true;
|
},
|
openEdit(row) {
|
this.title = "编辑";
|
this.addDlog = true;
|
this.addForm = this.HaveJson(row)
|
this.addForm.industryIds = this.addForm.industryIds || [];
|
},
|
getQualificationList() {
|
this.getDicts("cnas_method_qualification").then((response) => {
|
let arr = response.data.map((m) => {
|
return {
|
label: m.dictLabel,
|
value: m.dictValue,
|
};
|
});
|
this.qualificationList = arr;
|
});
|
},
|
loadIndustryOptions() { selectIndustryOptions().then(res => { this.industryOptions = res.data || []; }); },
|
submitProduct(formName) {
|
this.$refs[formName].validate((valid) => {
|
if (valid) {
|
this.addLoading = true;
|
let addForm = JSON.parse(JSON.stringify(this.addForm));
|
if (this.title == "新增") {
|
addStandardMethod(addForm)
|
.then((res) => {
|
const id = res.data;
|
if (!id) throw new Error('新增标准未返回主键ID');
|
return Promise.all(this.pendingFiles.map(item => {
|
const formData = new FormData();
|
formData.append('file', item.raw);
|
return uploadAttachment(formData, id);
|
}));
|
}).then(() => {
|
this.addLoading = false;
|
this.$message.success("提交成功");
|
this.getList();
|
this.addDlog = false;
|
})
|
.catch((err) => {
|
this.addLoading = false;
|
});
|
} else {
|
upStandardMethod(addForm)
|
.then((res) => {
|
this.addLoading = false;
|
if (res.code != 200) {
|
return;
|
}
|
this.$message.success("提交成功");
|
this.getList();
|
this.addDlog = false;
|
})
|
.catch((err) => {
|
this.addLoading = false;
|
});
|
}
|
} else {
|
return false;
|
}
|
});
|
},
|
beforeFileUpload(file) { if (file.size > 10 * 1024 * 1024) { this.$message.error('上传文件不超过10MB'); return false; } return true; },
|
pendingFileChange(file, files) { this.pendingFiles = files; },
|
pendingFileRemove(file, files) { this.pendingFiles = files; },
|
openAttachments(row) { this.currentMethod = row; this.attachmentDialog = true; this.loadAttachments(); },
|
downloadAttachments(row) {
|
selectAttachments({ standardMethodId: row.id }).then(res => {
|
const attachments = res.data || [];
|
if (!attachments.length) this.$message.warning('暂无附件');
|
else if (attachments.length === 1) this.downloadAttachment(attachments[0]);
|
else this.openAttachments(row);
|
});
|
},
|
previewAttachments(row) {
|
selectAttachments({ standardMethodId: row.id }).then(res => {
|
const attachments = res.data || [];
|
if (!attachments.length) this.$message.warning('暂无附件');
|
else if (attachments.length === 1) this.previewAttachment(attachments[0]);
|
else this.openAttachments(row);
|
});
|
},
|
loadAttachments() { selectAttachments({ standardMethodId: this.currentMethod.id }).then(res => { this.attachmentList = res.data || []; }); },
|
attachmentUploadSuccess(res) { if (res.code === 200) { this.$message.success('上传成功'); this.loadAttachments(); } },
|
downloadAttachment(row) { this.$download.saveAs(row.fileUrl, row.fileName); },
|
previewAttachment(row) { this.currentAttachment = row; this.previewUrl = /\.(jpg|jpeg|png|gif)$/i.test(row.fileUrl) ? this.javaApi + '/img/' + row.fileUrl : this.javaApi + '/word/' + row.fileUrl; this.previewDialog = true; },
|
removeAttachment(row) { this.$confirm('是否删除该附件?', '提示', { type: 'warning' }).then(() => deleteAttachment({ id: row.id })).then(() => this.loadAttachments()); },
|
// 删除
|
handleDelete(row) {
|
this.$confirm("是否删除该条数据?", "提示", {
|
confirmButtonText: "确定",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(() => {
|
delStandardMethod({ id: row.id }).then((res) => {
|
this.$message.success("删除成功");
|
this.getList();
|
});
|
})
|
.catch(() => { });
|
},
|
},
|
computed: { attachmentAction() { return this.javaApi + '/standardMethod/uploadAttachment?standardMethodId=' + this.currentMethod.id; } },
|
};
|
</script>
|