| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <template>
- <div>
- <user-search @search="reload" ref="searchRef"> </user-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 265px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- cache-key="systemOrgUserTable"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openAdd()"
- >
- 新增
- </el-button>
- </template>
- <!-- 编码列 -->
- <template v-slot:name="{ row }">
- {{ row.qualityStandard.name }}
- </template>
- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openDetail(row.qualityStandard)"
- >
- {{ row.qualityStandard.code }}
- </el-link>
- </template>
- <template v-slot:type="{ row }">
- {{ getDictValue('质检标准类型', row.qualityStandard.type) }}
- </template>
- <template v-slot:standardCode="{ row }">
- {{ row.qualityStandard.standardCode }}
- </template>
- <template v-slot:status="{ row }">
- {{ row.qualityStandard.status == 1 ? '启用' : '停用' }}
- </template>
- <template v-slot:mode="{ row }">
- {{ getDictValue('质检方式', row.mode) }}
- </template>
- <template v-slot:version="{ row }">
- {{ row.qualityStandard.version }}
- </template>
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit(row)"
- >
- 添加
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此干燥区吗?"
- @confirm="remove(row)"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- <Add @chooseProcess="chooseProcess" ref="addRef" />
- <edit ref="edit" @done="done"></edit>
- <Detail ref="detailRef"></Detail>
-
- </div>
- </template>
- <script>
- import userSearch from './user-search.vue';
- import { getList, removeItem, saveBatch } from '@/api/inspectionClassify/index';
- import dictMixins from '@/mixins/dictMixins';
- import Add from './add.vue';
- import Edit from './edit.vue';
- import Detail from '@/views/inspectionStandard/components/edit.vue';
- export default {
- mixins: [dictMixins],
- components: { userSearch, Add, Edit ,Detail},
- props: {
- // 类别id
- rootId: [Number, String]
- },
- data() {
- return {
- // 当前编辑数据
- current: null,
- // 表格列配置
- columns: [
- {
- columnKey: 'index',
- type: 'index',
- label: '序号',
- width: 55,
- align: 'center'
- },
- {
- prop: 'code',
- label: '标准编码',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'code'
- },
- {
- prop: 'name',
- label: '标准名称',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'name'
- },
- {
- label: '标准类型',
- prop: 'type',
- slot: 'type'
- },
- {
- label: '标准代码',
- prop: 'standardCode'
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- minWidth: 110,
- slot: 'status'
- },
- {
- prop: 'version',
- label: '版本号',
- align: 'center',
- minWidth: 110,
- slot: 'version'
- },
- {
- label: '操作',
- prop: 'action',
- slot: 'action',
- action: 'action'
- }
- ]
- };
- },
- created() {
- this.requestDict('质检方式');
- this.requestDict('质检标准类型');
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where }) {
- return getList({
- ...where,
- pageNum: page,
- size: limit,
- categoryLevelId: this.categoryLevelId || 12,
- rootCategoryLevelId: this.rootId
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({
- pageNum: 1,
- where: where,
- categoryLevelId: this.categoryLevelId,
- rootCategoryLevelId: this.rootId
- });
- },
- /* 打开编辑弹窗 */
- openAdd() {
- this.$refs.addRef.open(this.categoryLevelId || 12);
- },
- openEdit(row) {
- this.$refs.edit.open(row);
- },
- openDetail(row) {
- console.log(row)
- this.$refs.detailRef.open('detail',row);
- },
-
- chooseProcess(data) {
- saveBatch(data).then((res) => {
- console.log(res);
- if (res.code == 0) {
- this.$message.success(res.message);
- this.reload();
- }
- });
- },
- /* 删除 */
- remove(row) {
- const loading = this.$loading({ lock: true });
- removeItem([row.id])
- .then((msg) => {
- loading.close();
- this.$message.success(msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- });
- },
- done() {
- this.$refs.searchRef.search();
- },
- clickSearch(info) {
- this.categoryLevelId = info.id;
- this.rootCategoryLevelId = info.rootCategoryLevelId;
- this.reload();
- }
- }
- };
- </script>
|