| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <template>
- <el-dialog
- title="质检"
- :visible.sync="visible"
- v-if="visible"
- :before-close="handleClose"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- append-to-body
- width="80%"
- >
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <ele-split-layout
- width="266px"
- allow-collapse
- :right-style="{ overflow: 'hidden' }"
- >
- <div>
- <div class="ele-border-lighter sys-organization-list">
- <AssetTree
- @handleNodeClick="handleNodeClick"
- @setRootId="setRootId"
- :id="rootId"
- ref="treeList"
- />
- </div>
- </div>
- <template v-slot:content>
- <user-search @search="reload" ref="searchRef"> </user-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 405px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- cache-key="inspectionClassify"
- row-key="qualityLevelId"
- :selection.sync="selection"
- >
- <!-- 表头工具栏 -->
- <template v-slot:textType="{ row }">
- {{
- row.textType == 1
- ? '数值'
- : row.textType == 2
- ? '选择'
- : row.textType == 3
- ? '上下限'
- : row.textType == 4
- ? '规格'
- : row.textType == 5
- ? '时间'
- : row.textType == 6
- ? '范围'
- : ''
- }}
- </template>
- <template v-slot:type="{ row }">
- {{
- getDictValue('质检标准类型', row.qualityStandardType)
- }}
- </template>
- <template v-slot:defaultValue="{ row }">
- <div>
- <span v-if="row.textType == 3">
- [ {{ row.minValue }}-{{ row.maxValue }}]
- </span>
- <span v-else>{{ row.defaultValue }}</span>
- <span> {{ row.unit }}</span>
- </div>
- </template>
- <template v-slot:toolList="{ row }">
- <div
- style="display: inline-block"
- v-for="(item, idx) in row.toolList"
- :key="idx"
- >{{ item.name }}
- <span
- v-if="
- row.toolList &&
- idx != row.toolList.length - 1
- "
- >,
- </span></div
- >
- </template>
- </ele-pro-table>
- </template>
- </ele-split-layout>
- </el-card>
- </div>
- <div slot="footer">
- <el-button type="primary" @click="handleSave"> 选择 </el-button>
- <el-button @click="handleClose"> 取消 </el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import AssetTree from '@/components/AssetTree';
- import userSearch from './components/user-search.vue';
- import { pageByBom } from '@/api/material/inspectionClassify';
- import dictMixins from '@/mixins/dictMixins';
- export default {
- mixins: [dictMixins],
- components: {
- AssetTree,
- userSearch
- },
- data() {
- return {
- // 加载状态
- loading: false,
- // 表格选中数据
- selection: [],
- current: null,
- rootId: '12',
- visible: false,
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center',
- reserveSelection: true
- },
- {
- prop: 'categoryLevelName',
- label: '质检类型',
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'inspectionCode',
- label: '参数编码',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'inspectionName',
- label: '参数名称',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'textType',
- label: '参数类型',
- showOverflowTooltip: true,
- align: 'center',
- slot: 'textType',
- minWidth: 110
- },
- {
- prop: 'defaultValue',
- slot: 'defaultValue',
- label: '工艺参数',
- align: 'center',
- minWidth: 150
- },
- {
- label: '工艺要求',
- prop: 'inspectionStandard',
- formatter: (row, column, cellValue) => {
- return (
- row.symbol + ' ' + cellValue + ' ' + row.unit
- );
- },
- minWidth: 150
- },
- {
- label: '标准类型',
- prop: 'type',
- slot: 'type'
- },
- {
- prop: 'qualityStandardName',
- label: '标准名称',
- align: 'center',
- minWidth: 110
- },
- {
- label: '状态',
- prop: 'status',
- formatter: (row, column, cellValue) => {
- return cellValue == 1 ? '启用' : cellValue === 0 ? '停用' : '';
- }
- },
- {
- prop: 'toolList',
- slot: 'toolList',
- label: '工具名称',
- align: 'center',
- minWidth: 150
- },
- {
- label: '备注',
- prop: 'inspectionRemark'
- }
- ]
- };
- },
- created() {
- this.requestDict('取样类型');
- this.requestDict('质检标准类型');
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where }) {
- let _data = null;
- _data = pageByBom({
- ...where,
- pageNum: page,
- size: limit,
- categoryLevelId: this.categoryLevelId || 12,
- rootCategoryLevelId: this.rootId
- });
- return _data;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({
- pageNum: 1,
- where: where,
- categoryLevelId: this.categoryLevelId,
- rootCategoryLevelId: this.rootId
- });
- },
- handleNodeClick(info) {
- this.current = info;
- this.$nextTick(() => {
- console.log(info);
- this.clickSearch(info);
- });
- },
- clickSearch(info) {
- this.categoryLevelId = info.id;
- this.rootCategoryLevelId = info.rootCategoryLevelId;
- this.reload();
- },
- // 获取根节点id
- setRootId(id) {
- if (id) {
- this.rootId = id;
- }
- },
- open(list) {
- this.visible = true;
- this.$nextTick(() => {
- list.forEach((item) => {
- this.$refs.table && this.$refs.table.toggleRowSelection(item, true);
- });
- });
- },
- handleClose() {
- this.$refs.table && this.$refs.table.clearSelection();
- this.visible = false;
- },
- handleSave() {
- let _arr = [];
- _arr = this.selection.map((m) => {
- return {
- ...m
- };
- });
- this.$emit('selectChange', _arr);
- this.handleClose();
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .sys-organization-list {
- height: calc(100vh - 264px);
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- .sys-organization-list :deep(.el-tree-node__content) {
- height: 30px;
- & > .el-tree-node__expand-icon {
- margin-left: 10px;
- }
- }
- </style>
|