| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- <template>
- <div>
- <layout>
- <layout-header>
- <div class="">
- <!--按钮部分-->
- <el-form
- ref="elSearchFormRef"
- inline
- class="demo-form-inline"
- >
- <el-form-item>
- <el-input
- v-model="searchInfo"
- placeholder="搜索产品编号或产品名称"
- clearable
- style="width: 180px;"
- />
- <el-button
- type="primary"
- icon="search"
- class="search"
- @click="handleSearch"
- />
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="() => {dialogDetail = true}"
- ><i class="el-icon-edit" />查改
- </el-button>
- <!-- <el-button type="primary" disabled icon="edit" @click="" style="margin-left: 10px">工艺方案复制</el-button>-->
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="()=>{dialogGdcjstj = true}"
- >工单超节损统计
- </el-button>
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="()=>{dialogKhsz = true}"
- >考核设置
- </el-button>
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="()=>{dialogXzgdtl = true}"
- >修正工单投料
- </el-button>
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="()=>{dialogGxclhc = true}"
- >工序产量核查
- </el-button>
- <el-button
- type="primary"
- icon="edit"
- class="bt"
- @click="()=>{dialogGdzjfptj = true}"
- >工单质检废品统计
- </el-button>
- </el-form-item>
- </el-form>
- <!-- 弹窗 -->
- <div>
- <!-- 查改 -->
- <Detail
- v-if="dialogDetail"
- v-model="dialogDetail"
- :gdbh="gdbh"
- />
- <!-- 工单超节损统计 -->
- <el-dialog
- v-model="dialogGdcjstj"
- title="工单超节损统计"
- destroy-on-close
- >
- <Gdcjstj :gdbh="gdbh" />
- </el-dialog>
- <!-- 修正工单印件质量考核设置 -->
- <Khsz
- v-if="dialogKhsz"
- v-model="dialogKhsz"
- :gdbh="gdbh"
- />
- <!-- 修正工单投料 -->
- <Xzgdtl
- v-if="dialogXzgdtl"
- v-model="dialogXzgdtl"
- :date="date"
- />
- <!-- 工序产量核查 -->
- <Gxclhc
- v-if="dialogGxclhc"
- v-model="dialogGxclhc"
- :gdbh="gdbh"
- />
- <!-- 工单质检废品统计 -->
- <Gongdanzhijianfeipintongji
- v-if="dialogGdzjfptj"
- v-model="dialogGdzjfptj"
- :val="gdbh"
- />
- </div>
- </div>
- </layout-header>
- <layout>
- <!-- 左侧树侧形结构-->
- <layout-sider
- :resize-directions="['right']"
- :width="190"
- style="margin-right: 10px;"
- >
- <div
- class="JKWTree-tree"
- style="height: 70vh;"
- >
- <h3> 产品管理</h3>
- <el-tree
- :data="treeData"
- highlight-current
- @node-click="handleNodeClick"
- />
- </div>
- </layout-sider>
- <!-- 右侧内容区域 -->
- <layout-content>
- <!-- 上方列表 -->
- <div class="gva-table-box">
- <el-table
- style="width: 100%;height:30vh;"
- :data="tableData1"
- row-key="ID"
- highlight-current-row
- border
- :row-class-name="rowClassName"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }"
- :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- @row-click="showOrderSuperLossGy"
- @current-change="(row, oldRow) => { currentRow = row}"
- >
- <el-table-column
- type="selection"
- width="55"
- />
- <!-- 使用 v-for 循环渲染每一列 -->
- <el-table-column
- v-for="column in tableCols1"
- :key="column.prop"
- :prop="column.prop"
- :label="column.label"
- :width="column.width"
- show-overflow-tooltip="true"
- />
- </el-table>
- </div>
- <!-- 下方表格 -->
- <el-table
- style="width: 100%;height: 40vh;"
- row-key="ID"
- highlight-current-row
- border
- :data="tableData2"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }"
- :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- >
- <el-table-column
- type="selection"
- width="55"
- />
- <!-- 使用 v-for 循环渲染每一列 -->
- <el-table-column
- v-for="column in tableCols2"
- :key="column.prop"
- :prop="column.prop"
- :label="column.label"
- :width="column.width"
- show-overflow-tooltip="true"
- />
- </el-table>
- </layout-content>
- </layout>
- </layout>
- </div>
- </template>
- <script setup>
- import { Layout, LayoutContent, LayoutHeader, LayoutSider } from '@arco-design/web-vue'
- import { ref, watch } from 'vue'
- import { getOrderSuperLossGy, getSide, getTable } from '@/api/mes_api_gty/orderAccounting'
- import Gdcjstj from '@/view/performance/12-orderAccounting/componets/gdcjstj.vue'
- import Khsz from '@/view/performance/12-orderAccounting/componets/khsz.vue'
- import Xzgdtl from '@/view/performance/12-orderAccounting/componets/xzgdtl.vue'
- import Gxclhc from '@/view/performance/12-orderAccounting/componets/gxclhc.vue'
- import Gongdanzhijianfeipintongji
- from '@/view/performance/09-workOrderVerification/componets/gongdanzhijianfeipintongji.vue'
- import Detail from '@/view/performance/12-orderAccounting/componets/detail.vue'
- // 弹窗
- const dialogGdcjstj = ref(false)
- const dialogDetail = ref(false)
- const dialogKhsz = ref(false)
- const dialogXzgdtl = ref(false)
- const dialogGxclhc = ref(false)
- const dialogGdzjfptj = ref(false)
- // 侧边栏数据
- const treeData = ref([])
- const getSideData = async() => {
- const res = await getSide()
- if (res.code === 0) {
- const { data } = res
- const transformedData = []
- for (const [key, value] of Object.entries(data)) {
- const [date, total] = key.split('-') // 提取日期和数量
- const transformedItem = {
- label: `${date}(工单数:${total})`,
- date: date,
- children: value.map(item => ({
- label: `${item['客户编号']}【${item['客户名称']}】(工单数:${item.total})`,
- date: date,
- code: item?.['客户编号'],
- })),
- }
- transformedData.push(transformedItem)
- }
- treeData.value = transformedData
- }
- }
- getSideData()
- // 表格数据
- const tableCols1 = [
- { label: '超损工单', prop: '', width: '90' },
- { label: '工单编号', prop: 'Gd_gdbh', width: '100' },
- { label: '印件号', prop: 'yj_Yjno', width: '100' },
- { label: '联数', prop: 'yj_ls', width: '80' },
- { label: '产品代号', prop: 'Gd_cpdh', width: '150' },
- { label: '产品名称', prop: 'Gd_cpmc', width: '250' },
- { label: '实际投料', prop: '实际投料', width: '100' },
- { label: '计量单位', prop: '计量单位', width: '100' },
- { label: '入仓日期', prop: 'warehousing_date', width: '120' },
- { label: '入仓数量', prop: '', width: '100' },
- { label: '目标合格率', prop: 'target_rate', width: '100' },
- { label: '实际合格率', prop: 'real_rate', width: '100' },
- { label: '奖惩系数', prop: '', width: '100' },
- { label: '奖罚金额合计', prop: '', width: '120' },
- { label: '废品合计', prop: '废品合计', width: '100' },
- { label: '工单无形损', prop: 'intangible_loss', width: '100' },
- { label: '材料废', prop: 'material_waste', width: '100' },
- { label: '零头处理', prop: '', width: '100' },
- { label: '处发废', prop: 'waste_out', width: '100' },
- { label: '外摊废', prop: '', width: '100' },
- { label: '工单计划损耗', prop: 'plan_loss', width: '120' },
- { label: '工单制程废', prop: 'zcfp', width: '100' },
- { label: '工单检验废', prop: 'waste_quality', width: '100' },
- { label: '年月', prop: '年月', width: '100' },
- ]
- const tableCols2 = [
- { label: '工单编号', prop: 'Gy0_gdbh', width: '100' },
- { label: '印件及工序', prop: 'Gy0_yjno', width: '100' },
- { label: '工序名称', prop: 'Gy0_gxmc', width: '200' },
- { label: '联数', prop: 'Gy0_ls', width: '80' },
- { label: '基础损耗', prop: 'Gy0_Rate0', width: '100' },
- { label: '损耗率', prop: 'Gy0_Rate1', width: '100' },
- { label: '损耗系数', prop: '损耗系数', width: '100' },
- { label: '计损色数', prop: 'Gy0_ms', width: '100' },
- { label: '计划产量', prop: 'Gy0_计划接货数', width: '100' },
- { label: '计划损耗', prop: 'Gy0_计划损耗', width: '100' },
- { label: '上报产量', prop: 'total_cl', width: '100' },
- { label: '制程废', prop: 'total_fp', width: '100' },
- ]
- const tableData1 = ref([])
- const tableData2 = ref([])
- const currentRow = ref({})
- const gdbh = ref('')
- const date = ref('')
- const searchInfo = ref('')
- watch(currentRow, (value, oldValue, onCleanup) => {
- gdbh.value = value?.['Gd_gdbh']
- date.value = value?.['年月']
- })
- // 显示上方表格
- const handleNodeClick = async(node) => {
- if (node.children) {
- const { date } = node
- const res = await getTable({ date, limit: 9999, page: 1 })
- tableData1.value = res.data.data
- console.log(res.data)
- } else {
- // console.log(node.date, node.code)
- }
- }
- // 显示下方表格
- const showOrderSuperLossGy = async() => {
- const { Gd_gdbh: order } = currentRow.value
- const res = await getOrderSuperLossGy({ order })
- if (res.code === 0) {
- const { data } = res
- tableData2.value = data.map(item => ({
- ...item,
- Gy0_yjno: `${item.Gy0_yjno}-${item.Gy0_gxh}`,
- Gy0_gxmc: item.Add_gxmc === '' ? item.Gy0_gxmc : `${item.Gy0_gxmc}〖${item.Add_gxmc}〗`,
- }))
- }
- }
- // 定位
- const handleSearch = () => {
- if (searchInfo.value) {
- tableData1.value = tableData1.value.filter(item => {
- return item['Gd_gdbh'] === searchInfo.value ?? item
- })
- }
- }
- const rowClassName = ({ row, rowIndex }) => {
- }
- </script>
- <style scoped>
- :deep(.plan-usage-low div) {
- color: red !important;
- }
- .JKWTree-container {
- display: flex;
- }
- .JKWTree-tree {
- width: 100%;
- background-color: #fff;
- /*background-color: rgba(241, 224, 224, 0.99);*/
- padding: 10px;
- margin-right: 20px;
- }
- .JKWTree-tree h3 {
- font-size: 15px;
- font-weight: 700;
- margin: 10px 0;
- }
- .JKWTree-content {
- flex: 1;
- }
- :deep(.el-table__body .warning-row) {
- background: #FFFF80 !important;
- }
- /* 选中某行时的背景色 */
- :deep(.el-table__body tr.current-row) > td {
- background: #ff80ff !important;
- }
- :deep(.el-table .bg-yellow) {
- background: yellow;
- }
- </style>
- <style scoped>
- :deep(.el-table td .cell) {
- line-height: 20px !important;
- }
- :deep(.el-tabs__header) {
- margin-bottom: 0;
- }
- .search {
- margin-left: 0px !important;
- margin-right: 10px !important;
- }
- .bt {
- margin-left: 2px !important;
- padding: 3px !important;
- font-size: 12px;
- }
- .el-tabs__header {
- margin: 0px !important;
- }
- .gva-table-box {
- padding: 0px !important;
- }
- .mab {
- margin-bottom: 5px;
- }
- </style>
|