| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <template>
- <div>
- <!-- 左侧树形结构 -->
- <el-container>
- <el-scrollbar max-height="80vh">
- <el-aside width="280px">
- <div class="JKWTree-tree">
- <h3>计件员工加班费核查</h3>
- <el-tree :data="treeData" :props="defaultProps" highlight-current="true"
- @node-click="handleNodeClick"></el-tree>
- </div>
- </el-aside>
- </el-scrollbar>
- <el-container>
- <el-main>
- <div class="gva-table-box">
- <div class="gva-btn-list">
- <el-row :span="6">
- <el-input v-model="searchInfo" placeholder="输入工单编号或产品名称" />
- </el-row>
- <!-- 按钮区域 -->
- <el-button type="primary" :icon="Search" @click="onSearch">搜索</el-button>
- <el-button type="primary" :icon="Refresh">重置</el-button>
- <div style="margin-left: auto;">
- <el-button type="primary" :icon="Download" @click="exportExcel">导出到Excel</el-button>
- </div>
- </div>
- <!-- 数据展示 -->
- <el-table ref="multipleTable" style="width: 100%;height:30vh;" tooltip-effect="dark" :data="tableData"
- row-key="ID" highlight-current-row="true" border :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" />
- <!-- 使用 v-for 循环渲染每一列 -->
- <el-table-column v-for="column in tableCols" :key="column.prop" :prop="column.prop" :label="column.label"
- :width="column.width" show-overflow-tooltip="true"></el-table-column>
- </el-table>
- <br>
- <el-table ref="multipleTable" style="width: 100%;height: 40vh;" tooltip-effect="dark" :data="tableData"
- row-key="ID" highlight-current-row="true" border :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" />
- <!-- 使用 v-for 循环渲染每一列 -->
- <el-table-column v-for="column in tableCols" :key="column.prop" :prop="column.prop" :label="column.label"
- :width="column.width" show-overflow-tooltip="true"></el-table-column>
- </el-table>
- </div>
- </el-main>
- </el-container>
- </el-container>
- </div>
- </template>
- <script setup>
- import {
- createCompany,
- deleteCompany,
- deleteCompanyByIds,
- updateCompany,
- findCompany,
- getCompanyList
- } from '@/api/company'
- // 全量引入格式化工具 请按需保留
- import { getDictFunc, formatDate, formatBoolean, filterDict, ReturnArrImg, onDownloadFile } from '@/utils/format'
- import { ElMessage, ElMessageBox } from 'element-plus'
- import { Search, Refresh, Download } from '@element-plus/icons-vue'
- import { ref, reactive, onMounted, onBeforeMount } from 'vue'
- import { getOrderVerificationSideTable, getOrderVerificationTable } from '@/api/mes_api_gty/myapi'
- defineOptions({
- name: '06-packingDocuments'
- })
- // 侧边栏数据请求
- const treeData = reactive([]);
- const getSideData = async () => {
- const response = await getOrderVerificationSideTable();
- if (response.code === 0) {
- const transformedData = response.data.map(item => ({
- label: `${item.date.replace(/-/g, '.')}【单据数: ${item.counts}张】`,
- children: item.sys.map(sysItem => ({
- label: `${sysItem.sys_id} 【记录数: ${sysItem.count}张】`,
- params: {
- date: item.date.replace(/\./g, '-'),
- sys_id: sysItem.sys_id,
- total: sysItem.count,
- },
- })),
- }));
- treeData.splice(0, treeData.length, ...transformedData);
- }
- };
- getSideData();
- // 自动化生成的字典(可能为空)以及字段
- const formData = ref({
- id: '',
- name: '',
- date: '',
- group: '',
- packingOutput: '',
- reworkOutput: '',
- pieceOutput: '',
- order: '',
- user: '',
- createTime: '',
- updateTime: '',
- uniqid: '',
- })
- // 验证规则
- const rule = reactive({
- })
- const elFormRef = ref()
- const elSearchFormRef = ref()
- // =========== 表格控制部分 ===========
- const tableCols = [
- { label: '工单编号', prop: 'qczl_gdbh', width: '100' },
- { label: '印件号', prop: 'qczl_yjno', width: '100' },
- { label: '印件名称', prop: 'Gd_cpmc', width: '400', showOverflowTooltip: true },
- { label: '日期', prop: 'qczl_rq', width: '100' },
- { label: '流程单号', prop: 'qczl_num', width: '100' },
- { label: '流程单备注', prop: 'qczl_NumDesc', width: '100' },
- { label: '总废品', prop: 'qczl_fp', width: '100' },
- { label: '废品1', prop: 'sl_lb1', width: '250' },
- { label: '废品2', prop: 'sl_lb2', width: '250' },
- { label: '废品3', prop: 'sl_lb3', width: '250' },
- { label: '废品4', prop: 'sl_lb4', width: '250' },
- { label: '废品5', prop: 'sl_lb5', width: '250' },
- { label: '废品6', prop: 'sl_lb6', width: '250' },
- { label: '废品7', prop: 'sl_lb7', width: '250' },
- { label: '废品8', prop: 'sl_lb8', width: '250' },
- { label: '废品9', prop: 'sl_lb9', width: '250' },
- { label: '废品10', prop: 'sl_lb10', width: '250' },
- { label: '废品11', prop: 'sl_lb11', width: '250' },
- { label: '废品12', prop: 'sl_lb12', width: '250' },
- { label: '废品13', prop: 'sl_lb13', width: '250' },
- { label: '废品14', prop: 'sl_lb14', width: '250' },
- { label: '废品15', prop: 'sl_lb15', width: '250' },
- { label: '废品16', prop: 'sl_lb16', width: '250' },
- { label: '废品17', prop: 'sl_lb17', width: '250' },
- { label: '创建用户', prop: 'sys_id', width: '200' },
- ];
- const tableData = reactive([])
- const detailData = reactive([
- {
- gdbh: '2311736',
- yjgx: '01-15',
- gxmc: '包装(圆切)',
- yjmc: '利群(新)小《降焦改版)',
- bzcl: '13.00',
- fgcl: '0.00',
- mxsl: '2500',
- jcxs: '1.000',
- ly: '',
- dedh: '030002002',
- },
- ])
- const total = ref(0)
- const page = ref(1)
- const limit = ref(10)
- const searchInfo = ref('')
- const params = {
- date: '',
- sys_id: '',
- page: page.value.toString(),
- limit: limit.value.toString(),
- }
- const getTableData = async () => {
- try {
- const response = await getOrderVerificationTable(params);
- if (response.code === 0) {
- tableData.splice(0, tableData.length, ...response.data.rows);
- }
- } catch (error) {
- console.log(error);
- }
- }
- const handleNodeClick = (node, check) => {
- if (node.params) {
- params.date = node.params.date;
- params.sys_id = node.params.sys_id;
- total.value = node.params.total;
- getTableData();
- }
- }
- // 搜索
- function onSearch() {
- }
- // ============== 表格控制部分结束 ===============
- // 获取需要的字典 可能为空 按需保留
- const setOptions = async () => {
- }
- // 获取需要的字典 可能为空 按需保留
- setOptions()
- // 多选数据
- const multipleSelection = ref([])
- // 多选
- const handleSelectionChange = (val) => {
- multipleSelection.value = val
- }
- // 批量删除控制标记
- const deleteVisible = ref(false)
- // 多选删除
- const onDelete = async () => {
- const ids = []
- if (multipleSelection.value.length === 0) {
- ElMessage({
- type: 'warning',
- message: '请选择要删除的数据'
- })
- return
- }
- multipleSelection.value &&
- multipleSelection.value.map(item => {
- ids.push(item.ID)
- })
- const res = await deleteCompanyByIds({ ids })
- if (res.code === 0) {
- ElMessage({
- type: 'success',
- message: '删除成功'
- })
- if (tableData.value.length === ids.length && page.value > 1) {
- page.value--
- }
- deleteVisible.value = false
- getTableData()
- }
- }
- // 导出excel
- function exportExcel() {
- console.log('导出到excel');
- }
- // 生命周期钩子
- onMounted(async () => {
- });
- </script>
- <style scoped>
- .JKWTree-container {
- display: flex;
- }
- .JKWTree-tree {
- width: 300px;
- background-color: #fff;
- padding: 10px;
- margin-right: 20px;
- }
- .JKWTree-tree h3 {
- font-size: 15px;
- font-weight: 700;
- margin: 10px 0;
- }
- .JKWTree-content {
- flex: 1;
- }
- /* 选中某行时的背景色*/
- ::v-deep .el-table__body tr.current-row>td {
- background: #ff80ff !important;
- }
- </style>
|