|
|
|
@ -1,15 +1,14 @@
|
|
|
|
|
<template>
|
|
|
|
|
<!-- <el-dialog title="收货地址" :visible.sync="dialogFormVisible">-->
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-header style="width: 100%; height: 80px;font-size: 12px">
|
|
|
|
|
<el-header style="width: 100%; height: 60px;font-size: 12px">
|
|
|
|
|
|
|
|
|
|
<el-form :inline="true" label-width="60px" label-position="left">
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
|
|
<el-col :span="22">
|
|
|
|
|
<el-col :span="4" >
|
|
|
|
|
<el-col :span="5" >
|
|
|
|
|
<el-form-item label="状态:">
|
|
|
|
|
<el-select v-model="queryParam.zt" placeholder="状态" clearable @change="ztChange">
|
|
|
|
|
<el-select v-model="queryParam.rqopt" placeholder="状态" clearable @change="ztChange">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in statusOptions"
|
|
|
|
|
:key="item.value"
|
|
|
|
@ -57,9 +56,9 @@
|
|
|
|
|
<el-form-item label="批量:">
|
|
|
|
|
<el-input v-model="queryParam.pl" type="search" placeholder="批量" ></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="分段:">
|
|
|
|
|
<el-input v-model="queryParam.fd" type="search" placeholder="分段" ></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="跨位:">-->
|
|
|
|
|
<!-- <el-input v-model="queryParam.kw" type="search" placeholder="跨位" ></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -73,90 +72,124 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
|
|
<el-col :span="20" >
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span style="width:6%" >垛位:</span>
|
|
|
|
|
<el-select v-model="inParam.dw" placeholder="垛位" clearable style="width: 15%">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in this.dictData.dwxx"
|
|
|
|
|
:key="item.dwh"
|
|
|
|
|
:label="item.dwh"
|
|
|
|
|
:value="item.dwh"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
<span style="width:6%" >班组:</span>
|
|
|
|
|
<el-select v-model="inParam.scdw" placeholder="班组" clearable style="width: 15%" @change="bzClick">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in this.dictData.bmbm"
|
|
|
|
|
:key="item.bm"
|
|
|
|
|
:label="item.bmsm"
|
|
|
|
|
:value="item.bm"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
<el-select v-model="inParam.scry" placeholder="人员" clearable style="width: 15%" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in this.dictData.gxry"
|
|
|
|
|
:key="item.dlzh"
|
|
|
|
|
:label="item.dlzh"
|
|
|
|
|
:value="item.dlzh"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-button type="info" @click="updates2()" style="width: 5%">批量</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="4" >
|
|
|
|
|
<el-form-item style="float: right" >
|
|
|
|
|
<el-button type="success" @click="slpgclick">派工</el-button>
|
|
|
|
|
<el-button type="success" @click="xdClick">接收</el-button>
|
|
|
|
|
<el-button type="success" @click="saveclick">反馈</el-button>
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- <el-col :span="20" >-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <span style="width:6%" >垛位:</span>-->
|
|
|
|
|
<!-- <el-select v-model="inParam.dw" placeholder="垛位" clearable style="width: 15%">-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in this.dictData.ycldws"-->
|
|
|
|
|
<!-- :key="item.id"-->
|
|
|
|
|
<!-- :label="item.name"-->
|
|
|
|
|
<!-- :value="item.id"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
|
|
|
|
|
<!-- <span style="width:6%" >班组:</span>-->
|
|
|
|
|
<!-- <el-select v-model="inParam.scdw" placeholder="班组" clearable style="width: 15%" @change="bzClick">-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in this.dictData.bmbm"-->
|
|
|
|
|
<!-- :key="item.bm"-->
|
|
|
|
|
<!-- :label="item.bmsm"-->
|
|
|
|
|
<!-- :value="item.bm"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-select v-model="inParam.scry" placeholder="人员" clearable style="width: 15%" >-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in this.dictData.gxry"-->
|
|
|
|
|
<!-- :key="item.dlzh"-->
|
|
|
|
|
<!-- :label="item.dlzh"-->
|
|
|
|
|
<!-- :value="item.dlzh"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-button type="info" @click="updates2()" style="width: 5%">批量</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="4" >-->
|
|
|
|
|
<!-- <el-form-item style="float: right" >-->
|
|
|
|
|
<!-- <!– <el-button type="success" @click="slpgclick">派工</el-button>–>-->
|
|
|
|
|
<!-- <!– <el-button type="success" @click="xdClick">接收</el-button>–>-->
|
|
|
|
|
<!-- <el-button type="success" @click="saveclick">反馈</el-button>-->
|
|
|
|
|
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-header>
|
|
|
|
|
<el-container style="padding-top: 0px">
|
|
|
|
|
<el-container :style="defaultHeight" style="margin-top: 10px">
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-main>
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
|
|
|
|
|
<div class="mytableLfet" style="width: 60%">
|
|
|
|
|
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id"
|
|
|
|
|
ref="xGrid"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="list"
|
|
|
|
|
:columns="tableColumn1"
|
|
|
|
|
:data="tableOne"
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
:edit-config="{trigger: 'click', mode: 'cell', showStatus: true}"
|
|
|
|
|
:custom-config="{storage: true}"
|
|
|
|
|
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@current-change="rowClick"
|
|
|
|
|
:header-cell-style="{'text-align':'center'}"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <template #operation="{ row }">-->
|
|
|
|
|
<!-- <vxe-button type="text" icon="vxe-icon--check" @click="tjClcik(row)" />-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
<el-button type="success" @click="hdClick()">核对</el-button>
|
|
|
|
|
<!-- <el-button type="danger" @click="delOne('insert')">删除</el-button>-->
|
|
|
|
|
<el-button type="success" @click="saveOne()">保存</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="mytableLfet" style="width: 40%">
|
|
|
|
|
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id1"
|
|
|
|
|
ref="xGrid1"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
:height="height"
|
|
|
|
|
:columns="tableColumn2"
|
|
|
|
|
:data="tableTwo"
|
|
|
|
|
:custom-config="{storage: true}"
|
|
|
|
|
:edit-config="{trigger: 'click', mode: 'cell', showStatus: true,showIcon:false}"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:header-cell-style="{'text-align':'center'}"
|
|
|
|
|
>
|
|
|
|
|
<!-- <template #operation="{ row }">-->
|
|
|
|
|
<!-- <vxe-button type="text" icon="vxe-icon--plus" @click="openMat(row)" />-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
<!-- <el-button type="success" @click="addTwo()">增加</el-button>-->
|
|
|
|
|
<!-- <el-button type="danger" @click="delTwo('insert')">删除</el-button>-->
|
|
|
|
|
</div>
|
|
|
|
|
</el-main>
|
|
|
|
|
</el-container>
|
|
|
|
|
</el-container>
|
|
|
|
|
|
|
|
|
|
</el-container>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
@ -166,7 +199,7 @@ import {
|
|
|
|
|
saveSljhPgdXd,
|
|
|
|
|
saveSljhPgdXdBack,
|
|
|
|
|
saveSljhFk,
|
|
|
|
|
getPgdBase, saveSljhPg,saveSljhPgBack
|
|
|
|
|
getPgdBase, saveSljhPg, saveSljhPgBack, getKcAndSljh, kcAdnSlBd, kcAdnSlZx,getydjhByid
|
|
|
|
|
} from '@/api/jhzxgl/pgd'
|
|
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
import XEUtils from 'xe-utils'
|
|
|
|
@ -181,27 +214,19 @@ export default {
|
|
|
|
|
queryParam: {
|
|
|
|
|
dcch:'',
|
|
|
|
|
pl:'',
|
|
|
|
|
fd:'',
|
|
|
|
|
fkyy:'',
|
|
|
|
|
zt:'01'
|
|
|
|
|
kw:'',
|
|
|
|
|
sljhrq:'',
|
|
|
|
|
rqopt:'01'
|
|
|
|
|
},
|
|
|
|
|
statusOptions: [
|
|
|
|
|
{
|
|
|
|
|
value: "01",
|
|
|
|
|
label: "编制",
|
|
|
|
|
label: "未核对",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "02",
|
|
|
|
|
label: "派工",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "03",
|
|
|
|
|
label: "接收",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "04",
|
|
|
|
|
label: "反馈",
|
|
|
|
|
},
|
|
|
|
|
label: "已核对",
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
inParam:{
|
|
|
|
|
slry:'',
|
|
|
|
@ -212,6 +237,9 @@ export default {
|
|
|
|
|
scdw:''
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
tableOne: [],
|
|
|
|
|
bdbs: "",
|
|
|
|
|
tableTwo: [],
|
|
|
|
|
heads: { token: getToken() },
|
|
|
|
|
uploadAction: process.env.VUE_APP_BASE_API + '/dmCzplpNew/uploadPl',
|
|
|
|
|
dictData:{},
|
|
|
|
@ -226,196 +254,293 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn: [
|
|
|
|
|
{ type: 'checkbox', width: 40 },
|
|
|
|
|
{ type: 'seq', width: 40, title: '序号' },
|
|
|
|
|
tableColumn2: [
|
|
|
|
|
{ type: 'seq', width: '40px', title: '序号' },
|
|
|
|
|
// { field: 'id', title: 'id',width: 80,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],},
|
|
|
|
|
// { field: 'zt', title: '状态',width: 80,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],},
|
|
|
|
|
{ field: 'dcCh', title: '船号',width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
|
|
|
|
|
{ field: 'sllsh', title: '工单号', width: 100,
|
|
|
|
|
{ field: 'dcPl', title: '批量',width: 80,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'czbh', title: '船号', width: 100,
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'dcFd', title: '分段号',width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'pl', title: '批量', width: 100,
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'zl', title: '组立',width: 80,formatter: ['dictFormat','ZLLB'],
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'fd', title: '分段', width: 100,
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'kw', title: '跨位',width: 80,formatter: ['dictFormat','QGKW'],
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'zl', title: '组立', width: 100,formatter: ['dictFormat','ZLLB'],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'tzbh', title: '套料图号',width: 90,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'lqlb', title: '领取类别', width: 100,formatter: ['dictFormat','CLlQ'],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'jssj', title: '前方需求时间',width: 110,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
// { field: 'lqlb', title: '领取类型',width: 90,formatter: ['dictFormat','CLlQ'],
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
// { field: 'lx', title: '物资类型',width: 90,formatter:this.formatterLx,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
|
|
|
|
|
{ field: 'kw', title: '跨位', width: 100,formatter: ['dictFormat','QGKW'],
|
|
|
|
|
{ field: 'wpgg', title: '规格',width: 80,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{ field: 'wpxh', title: '材质',width: 80,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],},
|
|
|
|
|
|
|
|
|
|
{ field: 'tlth', title: '套料图号', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slkcdw',
|
|
|
|
|
title: '上料库存垛位',
|
|
|
|
|
editRender: {
|
|
|
|
|
name: '$select', options: [],
|
|
|
|
|
optionProps: {value: 'id', label: 'name'},
|
|
|
|
|
props: {clearable: true}
|
|
|
|
|
, events: {change: this.selectChange}
|
|
|
|
|
},
|
|
|
|
|
width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'wpgg', title: '规格', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slcs',
|
|
|
|
|
title: '上料层数',editRender: { name: 'input' },
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'wpcz', title: '材质', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slxhth',
|
|
|
|
|
title: '上料小合同号',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'wpzl', title: '重量', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slhth',
|
|
|
|
|
title: '上料合同号',
|
|
|
|
|
width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'hth', title: '合同号', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slwlh',
|
|
|
|
|
title: '上料物料号',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'xhth', title: '小合同号', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slkcxx',
|
|
|
|
|
title: '上料库存信息',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'lph', title: '炉批号/物料号', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slycldw',
|
|
|
|
|
title: '上料预处理垛位',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'kwh', title: '库存垛位', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slpgry',
|
|
|
|
|
title: '上料派工人',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'cs', title: '层数', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slfkry',
|
|
|
|
|
title: '上料反馈人',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'jpbs', title: '校平标识', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slfkrq',
|
|
|
|
|
title: '上料反馈日期',
|
|
|
|
|
width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'slfzry', title: '上料负责人', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'slbz',
|
|
|
|
|
title: '上料备注',
|
|
|
|
|
width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'slwz', title: '上料位置', width: 100,
|
|
|
|
|
{
|
|
|
|
|
field: 'sljhrq',
|
|
|
|
|
title: '上料计划日期',
|
|
|
|
|
width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' }
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn1: [
|
|
|
|
|
{ type: 'seq', width: 40, title: '序号' }, // 1
|
|
|
|
|
// { title: '操作', width: 50, slots: { default: 'operation' }, fixed: 'right' },
|
|
|
|
|
{
|
|
|
|
|
title: '入库日期',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'rkrq',
|
|
|
|
|
|
|
|
|
|
{ field: 'sljhrq', title: '上料计划期', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '车号',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'dcTpbh',
|
|
|
|
|
|
|
|
|
|
{ field: 'qfxqrqxz', title: '前方需求小组期', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '合同号',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'dcFd',
|
|
|
|
|
|
|
|
|
|
{ field: 'qfxqrqdz', title: '前方需求大组期', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: '小合同号',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'gcddh',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// { field: 'slksrq', title: '上料开始', width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', },
|
|
|
|
|
// },
|
|
|
|
|
{ field: 'dw', title: '垛位', width: 100,editRender: { name: 'input' },
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '船号',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'dcch',
|
|
|
|
|
|
|
|
|
|
{ field: 'scdw', title: '生产单位', width: 100,editRender: { name: 'input' },
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'scry', title: '生产人员', width: 100,editRender: { name: 'input' },
|
|
|
|
|
{
|
|
|
|
|
title: '材质',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'wpxh',
|
|
|
|
|
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
// { field: 'fkry', title: '派工人员', width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', },
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'fkrq', title: '派工日期', width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', },
|
|
|
|
|
// },
|
|
|
|
|
{ field: 'jsry', title: '接收人员', width: 100,editRender: { name: 'input' },
|
|
|
|
|
{
|
|
|
|
|
title: '规格',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'wpgg',
|
|
|
|
|
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'jsrq', title: '接收日期', width: 100,editRender: { name: 'input' },
|
|
|
|
|
{
|
|
|
|
|
title: '炉批号',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'lph',
|
|
|
|
|
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '数量',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'qxkcl',
|
|
|
|
|
|
|
|
|
|
{ field: 'fkrq', title: '反馈日期', width: 100,editRender: { name: 'input' },
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '库存',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'kwh',
|
|
|
|
|
|
|
|
|
|
{ field: 'fkry', title: '反馈人员', width: 100, editRender: { name: 'input' },
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '层数',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'cfcs1',
|
|
|
|
|
|
|
|
|
|
{ field: 'zt', title: '状态', width: 100,formatter: ['dictFormat','PGZT'],
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '打印单',
|
|
|
|
|
width: "100px",
|
|
|
|
|
field: 'sllsh',
|
|
|
|
|
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: '套料图号',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'dcTh',
|
|
|
|
|
|
|
|
|
|
{ field: 'bzry', title: '编制人', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '需求船只',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'zych',
|
|
|
|
|
|
|
|
|
|
{ field: 'bzrq', title: '编制日期', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '需求批量',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'zypl',
|
|
|
|
|
|
|
|
|
|
{ field: 'xfry', title: '下发人', width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ field: 'xfrq', title: '下发日期', width: 100,
|
|
|
|
|
{
|
|
|
|
|
title: '流向',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'zylx',
|
|
|
|
|
formatter: ['dictFormat', 'ZLLB'],
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '切割跨位',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'sldw',
|
|
|
|
|
formatter: ['dictFormat', 'QGKW'],
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: '备注',
|
|
|
|
|
width: "120px",
|
|
|
|
|
field: 'bz',
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination' },
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
@ -440,7 +565,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.queryParam.dcch) {
|
|
|
|
|
this.projectData = this.projectData1.filter(row => row.cbbm.indexOf(this.queryParam.dcch.toUpperCase()) > -1)
|
|
|
|
|
this.projectData = this.projectData1.filter(row => row.cbbm.indexOf(this.queryParam.dcch.toUpperCase()) > -1)
|
|
|
|
|
} else {
|
|
|
|
|
this.projectData = this.projectData1.slice(0)
|
|
|
|
|
}
|
|
|
|
@ -461,9 +586,10 @@ export default {
|
|
|
|
|
if(selectRecords.length>0){
|
|
|
|
|
for(let i = 0; i < selectRecords.length; i++) {
|
|
|
|
|
|
|
|
|
|
selectRecords[i].dw = this.inParam.dw
|
|
|
|
|
selectRecords[i].scdw = this.inParam.scdw
|
|
|
|
|
selectRecords[i].scry = this.inParam.scry
|
|
|
|
|
selectRecords[i].slkcdw = this.inParam.dw
|
|
|
|
|
//selectRecords[i].dw = this.inParam.dw
|
|
|
|
|
//selectRecords[i].scdw = this.inParam.scdw
|
|
|
|
|
// selectRecords[i].scry = this.inParam.scry
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -506,6 +632,9 @@ export default {
|
|
|
|
|
this.dictData = res.data
|
|
|
|
|
this.projectData=res.data.cbbm
|
|
|
|
|
this.projectData1=res.data.cbbm
|
|
|
|
|
|
|
|
|
|
// const slkcdw = this.$refs.xGrid.getColumnByField('slkcdw')
|
|
|
|
|
// slkcdw.editRender.options = this.dictData.ycldws
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
plClick(){
|
|
|
|
@ -520,7 +649,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
saveclick(){
|
|
|
|
|
|
|
|
|
|
if(this.queryParam.zt!=='03'){
|
|
|
|
|
if(this.queryParam.zt!=='2'){
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
|
|
|
@ -531,6 +660,7 @@ export default {
|
|
|
|
|
saveSljhFk(obj).then(res=>{
|
|
|
|
|
if(res.success){
|
|
|
|
|
this.initList()
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -574,6 +704,27 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
async rowClick({ column, row }) {
|
|
|
|
|
if(this.queryParam.rqopt==="02"){
|
|
|
|
|
if(row.ydid==='' || row.ydid==null){
|
|
|
|
|
this.$refs.xGrid1.setCurrentRow();
|
|
|
|
|
}
|
|
|
|
|
getydjhByid({"id":row.ydid}).then(res=>{
|
|
|
|
|
if(res.success){
|
|
|
|
|
let subObj=this.$refs.xGrid1.getTableData().visibleData
|
|
|
|
|
for(let obj of subObj){
|
|
|
|
|
console.log(obj)
|
|
|
|
|
console.log(res.data)
|
|
|
|
|
// console.log(Object.assign(this.testClone(updateobj),obj))
|
|
|
|
|
if(obj.id===res.data.id){
|
|
|
|
|
this.$refs.xGrid1.setCurrentRow( obj);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
xdClick(){
|
|
|
|
|
|
|
|
|
@ -617,19 +768,86 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
initList() {
|
|
|
|
|
this.bdbs=""
|
|
|
|
|
if (this.queryParam.dcch === '') {
|
|
|
|
|
this.$message.warning('选择船只编号')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
getSljhPgd(this.queryParam).then((res) => {
|
|
|
|
|
this.list = res.data
|
|
|
|
|
getKcAndSljh(this.queryParam).then((res) => {
|
|
|
|
|
this.tableOne = res.data.slkcs
|
|
|
|
|
console.log(this.tableOne)
|
|
|
|
|
|
|
|
|
|
this.tableTwo = res.data.ydjhs
|
|
|
|
|
console.log(this.tableTwo)
|
|
|
|
|
if (this.$refs.xGrid) {
|
|
|
|
|
this.$refs.xGrid.loadData(this.list)
|
|
|
|
|
this.$refs.xGrid.loadData(this.tableOne)
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
}
|
|
|
|
|
if (this.$refs.xGrid1) {
|
|
|
|
|
this.$refs.xGrid1.loadData(this.tableTwo)
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
hdClick(){
|
|
|
|
|
if(this.queryParam.rqopt!=='01'){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(this.bdbs=='01'){
|
|
|
|
|
this.$message({ message: '核对结果未保存,重新查询后进行核对', type: 'warning' })
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
console.log(this.$refs.xGrid.getTableData())
|
|
|
|
|
kcAdnSlBd({
|
|
|
|
|
// "data1":this.$refs.xGrid.getTableData().visibleData,
|
|
|
|
|
// "data2":this.$refs.xGrid1.getTableData().visibleData
|
|
|
|
|
"data1":this.$refs.xGrid.getTableData().fullData,
|
|
|
|
|
"data2":this.$refs.xGrid1.getTableData().fullData
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
if(res.success){
|
|
|
|
|
this.tableOne = res.data.slkcs
|
|
|
|
|
console.log(this.tableOne)
|
|
|
|
|
|
|
|
|
|
this.tableTwo = res.data.ydjhs
|
|
|
|
|
console.log(this.tableTwo)
|
|
|
|
|
if (this.$refs.xGrid) {
|
|
|
|
|
this.$refs.xGrid.loadData(this.tableOne)
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
}
|
|
|
|
|
if (this.$refs.xGrid1) {
|
|
|
|
|
this.$refs.xGrid1.loadData(this.tableTwo)
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.bdbs="01"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
saveOne(){
|
|
|
|
|
if(this.queryParam.rqopt!=='01'){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if(this.bdbs!=='01'){
|
|
|
|
|
this.$message({ message: '请先进行核对', type: 'warning' })
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kcAdnSlZx({
|
|
|
|
|
// "data1":this.$refs.xGrid.getTableData().visibleData,
|
|
|
|
|
// "data2":this.$refs.xGrid1.getTableData().visibleData
|
|
|
|
|
"data1":this.$refs.xGrid.getTableData().fullData,
|
|
|
|
|
"data2":this.$refs.xGrid1.getTableData().fullData
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
// if(res.success){
|
|
|
|
|
this.initList()
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
selectChange(row) {
|
|
|
|
|
// this.$refs.xGrid.clearActived() // 清除单元格激活状态
|
|
|
|
|
this.$refs.xGrid.clearEdit() // 清除单元格激活状态
|
|
|
|
@ -643,6 +861,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped >
|
|
|
|
|
|
|
|
|
|
.el-header{margin:0;padding: 5px;height:auto;
|
|
|
|
|