| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <el-dialog :title="title" :visible.sync="visible" :before-close="handleClose" :close-on-click-modal="false"
- :close-on-press-escape="false" append-to-body width="70%">
- <el-card shadow="never">
- <ProductSearch @search="reload" ref="searchRef" />
- <ele-split-layout width="244px" allow-collapse :right-style="{ overflow: 'hidden' }">
- <div class="ele-border-lighter split-layout-right-content">
- <el-tree :data="treeList" :props="defaultProps" ref="treeRef"
- :default-expanded-keys="categoryId ? [categoryId] : []" :highlight-current="true" node-key="id"
- @node-click="handleNodeClick"></el-tree>
- </div>
- <!-- 数据表格 -->
- <template v-slot:content>
- <ele-pro-table style="min-height: 400px;" ref="table" :columns="columns" :datasource="datasource"
- :selection.sync="selection" row-key="id">
- </ele-pro-table>
- </template>
- </ele-split-layout>
- </el-card>
- <div class="btns">
- <el-button type="primary" size="small" @click="selected">选择</el-button>
- <el-button size="small" @click="handleClose">关闭</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import { getList } from '@/api/classifyManage/itemInformation';
- import ProductSearch from './product-search.vue'
- import { getTreeByPid } from '@/api/classifyManage';
- export default {
- components: {
- ProductSearch
- },
- data() {
- return {
- visible: false,
- title: '选择物料',
- categoryLevelId: null,
- categoryId: 1,
- treeList: [],
- treeLoading: false,
- defaultProps: {
- children: 'children',
- label: 'name'
- },
- type: null,
- // 表格列配置
- columns: [
- {
- columnKey: 'selection',
- type: 'selection',
- width: 45,
- align: 'center',
- selectable: (row, index) => {
- return !this.processData.some((it) => it.id == row.id || it.categoryId == row.id);
- },
- reserveSelection: true,
- fixed: 'left'
- },
- {
- label: '物料名称',
- prop: 'name',
- },
- {
- label: '物料编码',
- prop: 'code'
- },
- {
- label: '牌号',
- prop: 'brandNum'
- },
- {
- label: '型号',
- prop: 'modelType'
- },
- {
- prop: 'measuringUnit',
- label: '计量单位',
- showOverflowTooltip: true,
-
- },
- {
- prop: 'weightUnit',
- label: '重量单位',
- showOverflowTooltip: true,
-
- },
- {
- prop: 'roughWeight',
- label: '毛重',
- showOverflowTooltip: true,
- minWidth: 90
- },
- {
- prop: 'netWeight',
- label: '净重',
- showOverflowTooltip: true,
- minWidth: 90
- },
- ],
- // 表格选中数据
- selection: [],
- processData: [],
- current: null
- }
- },
- watch: {
- },
- methods: {
- /* 表格数据源 */
- async datasource({ page, limit, where }) {
- const res = await getList({
- ...where,
- pageNum: page,
- size: limit,
- categoryLevelId: 1,
- });
- return res;
- },
- open(item, row, type) {
- this.type = type
- this.processData = item || []
- this.current = row;
- this.visible = true
- this.getTreeData();
- },
- async getTreeData() {
- try {
- this.treeLoading = true;
- const res = await getTreeByPid(1);
- this.treeLoading = false;
- if (res?.code === '0') {
- this.treeList = res.data;
- this.$nextTick(() => {
- // 默认高亮第一级树节点
- if (this.treeList[0]) {
- this.rootTreeId = this.treeList[0].id
- this.$nextTick(() => {
- this.$refs.treeRef.setCurrentKey(this.treeList[0].id);
- });
- }
- });
- return this.treeList;
- }
- } catch (error) { }
- this.treeLoading = false;
- },
- handleNodeClick(data) {
- this.categoryLevelId = data.id;
- this.$refs.table.reload({ pageNum: 1, where: {} });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where: where });
- },
- handleClose() {
- this.visible = false
- this.$refs.table.setSelectedRows([]);
- this.selection = []
- },
- selected() {
- let _arr = []
- if (!this.selection.length) {
- this.$message.error('请至少选择一条数据');
- return;
- }
- if (this.type == 'add') {
- _arr = this.selection.map(m => {
- m.categoryId = m.id
- delete m.id
- return {
- ...m
- }
- })
- }
- this.$emit('chooseModal', _arr, this.current)
- this.handleClose()
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .btns {
- text-align: center;
- padding: 10px 0;
- }
- </style>
|