|
|
|
|
<template>
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-header style="width: 100%; height: 35px;font-size: 12px">
|
|
|
|
|
<el-form :inline="true" label-width="65px" label-position="left">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="15">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<span style="font-size: 13px;color: #606266; margin-left: 4px;margin-right: 4px">小组需求时间范围:</span>
|
|
|
|
|
<el-date-picker v-model="queryParam.beginTime" value-format="yyyy/MM/dd" type="month" style="width: 33%;" />
|
|
|
|
|
<span style="font-size: 13px;color: #606266; margin-left: 4px;margin-right: 4px">至</span>
|
|
|
|
|
<!-- <el-input v-model="queryParam.endTime" ></el-input>-->
|
|
|
|
|
<el-date-picker v-model="queryParam.endTime" value-format="yyyy/MM/dd" type="month" style="width: 33%" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="9">
|
|
|
|
|
<el-form-item style="float: right">
|
|
|
|
|
<el-button type="success" @click="initList">查询</el-button>
|
|
|
|
|
<!-- <el-button type="success" @click="initList1">查询1</el-button>-->
|
|
|
|
|
<el-button type="success" @click="save">保存</el-button>
|
|
|
|
|
<el-button type="success" @click="tqSygd">提交三月滚动</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-header>
|
|
|
|
|
<el-container style="padding-top: 0px">
|
|
|
|
|
<el-main>
|
|
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
|
|
<el-tab-pane label="前方三月需求计划" name="first">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<el-button type="success" @click="sygdPC()"> 提取明细</el-button>
|
|
|
|
|
<el-button type="success" @click="symxhz">汇总</el-button>
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id"
|
|
|
|
|
ref="xGrid"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="list"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
>
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
<!-- <vxe-grid-->
|
|
|
|
|
<!-- id="id"-->
|
|
|
|
|
<!-- ref="xGrid"-->
|
|
|
|
|
<!-- border-->
|
|
|
|
|
<!-- resizable-->
|
|
|
|
|
<!-- keep-source-->
|
|
|
|
|
<!-- :align="'center'"-->
|
|
|
|
|
<!-- :height="height"-->
|
|
|
|
|
<!-- :auto-resize="true"-->
|
|
|
|
|
<!-- :columns="tableColumn"-->
|
|
|
|
|
<!-- :data="list"-->
|
|
|
|
|
<!-- :custom-config="{ storage: true }"-->
|
|
|
|
|
<!-- :edit-config="{-->
|
|
|
|
|
<!-- trigger: 'click',-->
|
|
|
|
|
<!-- mode: 'row',-->
|
|
|
|
|
<!-- showStatus: true,-->
|
|
|
|
|
<!-- }"-->
|
|
|
|
|
<!-- @checkbox-all="selectAllEvent"-->
|
|
|
|
|
<!-- @checkbox-change="selectChangeEvent"-->
|
|
|
|
|
<!-- highlight-current-row-->
|
|
|
|
|
<!-- highlight-hover-row-->
|
|
|
|
|
<!-- show-overflow-->
|
|
|
|
|
<!-- :scroll-y="{enabled: true}"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </vxe-grid>-->
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="三月滚动计划编制" :disabled="this.isUser">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id9"
|
|
|
|
|
ref="xGrid9"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn9"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="list1"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
>
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="线表信息" name="second">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id1"
|
|
|
|
|
ref="xGrid1"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn1"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="list1"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:span-method="rowspanMethod"
|
|
|
|
|
:cell-style="cellStyle"
|
|
|
|
|
:row-style="rowClassName"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
@cell-dblclick="cellClickEvent_xb"
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
>
|
|
|
|
|
<template #numMx5="{ items, _columnIndex }">
|
|
|
|
|
<span style="color: red">{{ items[_columnIndex] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="批量信息" name="third">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id2"
|
|
|
|
|
ref="xGrid2"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn2"
|
|
|
|
|
:data="list2"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:cell-style="cellStyle"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="板材需求" name="">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id4"
|
|
|
|
|
ref="xGrid4"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn7"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:cell-style="cellStyle"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="跨位信息" name="fourth">
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id3"
|
|
|
|
|
ref="xGrid3"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn3"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="list3"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
|
|
|
|
|
:scroll-y="{enabled: true}"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
show-header-overflow
|
|
|
|
|
@cell-dblclick="cellClickEvent_xb"
|
|
|
|
|
>
|
|
|
|
|
<!-- :span-method="rowspanMethod"-->
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</el-main>
|
|
|
|
|
</el-container>
|
|
|
|
|
<!-- 弹出层——选择目标船只-->
|
|
|
|
|
<vxe-modal v-model="dialogVisible" width="600" :title="title">
|
|
|
|
|
<template #default>
|
|
|
|
|
<el-row class="query_wrapper">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-button size="small" style="float: right;margin-bottom: 5px;margin-right: 5px;" type="success"
|
|
|
|
|
@click="saveByDcch">保存
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-row>
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-table
|
|
|
|
|
ref="tableRef"
|
|
|
|
|
auto-resize
|
|
|
|
|
show-header-overflow
|
|
|
|
|
show-overflow
|
|
|
|
|
height="300"
|
|
|
|
|
:row-config="{isHover: true}"
|
|
|
|
|
:column-config="{resizable: true}"
|
|
|
|
|
:data="selectMbch.no_tlt_ch">
|
|
|
|
|
<vxe-column type="seq" width="50"></vxe-column>
|
|
|
|
|
<vxe-column field="dcCh" title="船号" width="150"></vxe-column>
|
|
|
|
|
<vxe-column align="center" field="dcCh1" title="目标船号" width="300">
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
<vxe-select v-model="row.dcCh1" style="width: 80%;height: 30px;margin-bottom: 2px" transfer>
|
|
|
|
|
<vxe-option
|
|
|
|
|
v-for="item in haveTltBoms"
|
|
|
|
|
:key="item.dcch"
|
|
|
|
|
:value="item.dcch"
|
|
|
|
|
:label="item.dcch"
|
|
|
|
|
/>
|
|
|
|
|
</vxe-select>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-column>
|
|
|
|
|
</vxe-table>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-modal>
|
|
|
|
|
<!-- 弹出层——展示明细-->
|
|
|
|
|
<vxe-modal v-model="dialogVisible1" width="80%" :title="title1">
|
|
|
|
|
<template #default>
|
|
|
|
|
<el-row class="query_wrapper">
|
|
|
|
|
<el-row>
|
|
|
|
|
<!-- <span style="font-size: 13px;color: red; margin-left: 4px;"> * 表中红色数据取自其他船只</span>-->
|
|
|
|
|
<el-button size="small" style="float: right;margin-bottom: 5px;margin-right: 5px;" type="success"
|
|
|
|
|
@click="save">保存
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-row>
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id6"
|
|
|
|
|
ref="tableRef1"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:columns="tableColumn6"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
:data="mxList"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:edit-config="{
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
mode: 'row',
|
|
|
|
|
showStatus: true,
|
|
|
|
|
}"
|
|
|
|
|
@checkbox-all="selectAllEvent"
|
|
|
|
|
@checkbox-change="selectChangeEvent"
|
|
|
|
|
:cell-style="cellStyle1"
|
|
|
|
|
:header-cell-style="headerCellStyle"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
show-overflow
|
|
|
|
|
>
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-modal>
|
|
|
|
|
</el-container>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import router from "@/router";
|
|
|
|
|
import {getCzxx} from '@/api/jhzx/qfxq'
|
|
|
|
|
import {getList, sygdPC, saveByDcch, tqSygd, symxhz, getCnsb, saveMxList, tqSygd1} from '@/api/jhzx/sygd'
|
|
|
|
|
import {mapGetters} from 'vuex'
|
|
|
|
|
import XEUtils from 'xe-utils'
|
|
|
|
|
import {getToken} from '@/utils/auth'
|
|
|
|
|
import ScrollPane from "@/layout/components/TagsView/ScrollPane.vue";
|
|
|
|
|
import {emSbjbbZM} from "@/api/sjzx/sbcnWH";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'SymxCX',
|
|
|
|
|
components: {ScrollPane},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isUser:true,
|
|
|
|
|
gcrl:[],
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
dialogVisible1: false,
|
|
|
|
|
title: '选择目标船只',
|
|
|
|
|
title1: '修改明细信息',
|
|
|
|
|
selectMbch: [],
|
|
|
|
|
mxList: [],
|
|
|
|
|
haveTltBoms: [],
|
|
|
|
|
activeName: 'first',
|
|
|
|
|
queryParam: {
|
|
|
|
|
beginTime: '',
|
|
|
|
|
endTime: ''
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
list1: [],
|
|
|
|
|
list2: [],
|
|
|
|
|
list3: [],
|
|
|
|
|
checkedList: [],
|
|
|
|
|
heads: {token: getToken()},
|
|
|
|
|
dictData: [],
|
|
|
|
|
height: '500px',
|
|
|
|
|
/*
|
|
|
|
|
tableColumn: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh', title: '船号', minWidth: "70",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh1', title: '目标船号', minWidth: "90",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},//数据来源船,真实数据时,为空
|
|
|
|
|
{
|
|
|
|
|
field: 'dcPl', title: '批量', minWidth: "70",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcFd', title: '分段号', minWidth: "150",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'zl', title: '组立', minWidth: "70", formatter: ['dictFormat', 'ZLLB'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'jssj', title: '钢料滚动需求期(小组)', minWidth: "160",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
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: 80, formatter: ['dictFormat', 'QGKW'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tzbh', title: '套料图号', width: 90,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'wpgg', title: '规格', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'bcshzl', title: '重量', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'wpxh', title: '材质', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xcms', title: '型材米数', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'jzbs', title: '矫正标识', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxcd', title: '划线长度(米)', minWidth: "110",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxcdKc', title: '划线空程长度(米)', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgcd', title: '切割长度(米)', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgcdKc', title: '切割空程长度(米)', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'slrq', title: '上料计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'slsb', title: '上料计划设备', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pwrq', title: '抛丸计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pwsb', title: '抛丸计划设备', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxrq', title: '划线计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxsb', title: '划线计划设备', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgrq', title: '切割计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgsb', title: '切割计划设备', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'jzsb',
|
|
|
|
|
// title: '矫正设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination'},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true}}
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pwsb',
|
|
|
|
|
// title: '抛丸设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination'},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true}}
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// field: 'hxsb',
|
|
|
|
|
// title: '划线设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'hxry', title: '划线人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
// field: 'qgsb',
|
|
|
|
|
// title: '切割设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'qgry', title: '切割人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pklx', title: '坡口类型', minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'pkcd', title: '坡口长度', minWidth: "110",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pksb',
|
|
|
|
|
// title: '坡口设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// ],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'pkrq', title: '坡口计划日期', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dmcd', title: '打磨长度', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dmrq', title: '打磨计划日期', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qbs', title: '曲标识', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'qjgsb',
|
|
|
|
|
// title: '曲加工设备',
|
|
|
|
|
// minWidth: "120",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'qjgry', title: '曲加工人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{
|
|
|
|
|
field: 'qjgrq', title: '曲加工计划日期', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
// field: 'dmsb',
|
|
|
|
|
// title: '打磨设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
field: 'gjjsDz', title: '钢料滚动需求期(大组)', minWidth: "160",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'gjjsXz', title: '钢加小组结束', width: 100,
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'ljsl', title: '零件数量', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'gjks', title: '钢加开始', width: 100,
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh2', title: '本船号', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},//没有真实数据时,为空
|
|
|
|
|
{
|
|
|
|
|
field: 'zt', title: '状态', width: 70, formatter: ['dictFormat', 'SYZT'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'gxsj', title: '数据更新时间', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
],*/
|
|
|
|
|
tableColumn:[
|
|
|
|
|
{ type: 'checkbox', width: 50 ,},
|
|
|
|
|
{ type: 'seq', width: 60, title: '序号',fixed: "left"},
|
|
|
|
|
{ field: 'dcCh', title: '船号',width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'dcPl', title: '批量号',width: 70,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'dcFd', title: '分段号',width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{ field: 'bs', title: '板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sl', title: '上料', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'xcpw', title: '型材抛丸', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'pw', title: '抛丸', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'yklm', title: '一垮龙门板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'yksk', title: '一垮数控板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ykpkjs', title: '坡口切割结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'eksk', title: '二垮数控板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ekskks', title: '数控切割开始', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ekpkjs', title: '坡口切割结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sksk', title: '三垮数控板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'skskqgks', title: '数控切割开始', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'skpkjs', title: '坡口切割结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'skpt', title: '三垮平铁板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ptks', title: '平铁切割开始', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ptjs', title: '平铁切割结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'qpt_zjs', title: '曲平铁转结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'qptjs', title: '曲平铁结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'qwbjs', title: '曲外板结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'zl', title: '组立', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'skbs', title: '数控 板数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'skqgks', title: '数控切割开始', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'pkqgjs', title: '坡口切割结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'mbjb', title: '面板挤边', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'qkxcms', title: '七垮型 材米数', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'xcmb', title: '型材 面板', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'fdxq', title: '分段需求', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'gdjs', title: '光电 结束', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'bz', title: '备注', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
}
|
|
|
|
|
/*{ field: 'id', title: '流水号(禁止修改)',width: 100,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', }},*/
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
tableColumn1: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{
|
|
|
|
|
field: 'nf', title: '年份', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'yf', title: '月份', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh', title: '船号', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'zl', title: 'a=线表重量(吨)', width: 170,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tlt_zl', title: 'b=套料图实耗重量(吨)', width: 170,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xczl', title: 'b-a=差值重量(吨)', width: 170,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn2: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh', title: '船号', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcPl', title: '批量', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcFd', title: '分段', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xzjsq', title: 'a=批量表(钢加小组结束)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xzglxq', title: 'b=钢料滚动需求(小组)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombin ation',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xzcz', title: 'b-a=时间差(小组)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dzjsq', title: 'c=批量表(钢加大组结束)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dzglxq', title: 'd=钢料滚动需求(大组)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dzcz', title: 'd-c=时间差(大组)', width: 180,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn3: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{
|
|
|
|
|
field: 'yf', title: '月份', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'kw', title: '跨位', width: 120, formatter: ['dictFormat', 'QGKW'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'ch', title: '船号', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pl', title: '批量', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'fd', title: '分段', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'bs', title: '板数', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dhqd', title: '订货清单号', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'lhsl', title: '到货数量', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dhsl', title: '订货数量', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'blgs', title: '备料总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pwgs', title: '抛丸总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'llgs', title: '理料总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxgs', title: '划线总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qggs', title: '切割总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pkgs', title: '坡口总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dmgs', title: '打磨总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qjggs', title: '曲加工总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'zpgs', title: '装配总工时', width: 120,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn6: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh', title: '船号', minWidth: "70",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh1', title: '目标船号', minWidth: "90",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},//数据来源船,真实数据时,为空
|
|
|
|
|
{
|
|
|
|
|
field: 'dcPl', title: '批量', minWidth: "70",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dcFd', title: '分段号', minWidth: "150",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'zl', title: '组立', minWidth: "70", formatter: ['dictFormat', 'ZLLB'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'jssj', title: '钢料滚动需求期(小组)', minWidth: "160",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
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: 80, formatter: ['dictFormat', 'QGKW'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tzbh', title: '套料图号', width: 90,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'wpgg', title: '规格', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'bcshzl', title: '重量', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'wpxh', title: '材质', width: 80,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'xcms', title: '型材米数', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'jzbs', title: '矫正标识', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxcd', title: '划线长度(米)', minWidth: "110",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxcdKc', title: '划线空程长度(米)', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgcd', title: '切割长度(米)', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgcdKc', title: '切割空程长度(米)', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'slrq', title: '上料计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'pwrq', title: '抛丸计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'hxrq', title: '划线计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qgrq', title: '切割计划日期', minWidth: "120",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'jzsb',
|
|
|
|
|
// title: '矫正设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination'},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true}}
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pwsb',
|
|
|
|
|
// title: '抛丸设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination'},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true}}
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// field: 'hxsb',
|
|
|
|
|
// title: '划线设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'hxry', title: '划线人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
// field: 'qgsb',
|
|
|
|
|
// title: '切割设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'qgry', title: '切割人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pklx', title: '坡口类型', minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'pkcd', title: '坡口长度', minWidth: "110",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'pksb',
|
|
|
|
|
// title: '坡口设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// ],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'pkrq', title: '坡口计划日期', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dmcd', title: '打磨长度', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dmrq', title: '打磨计划日期', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'qbs', title: '曲标识', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'qjgsb',
|
|
|
|
|
// title: '曲加工设备',
|
|
|
|
|
// minWidth: "120",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'qjgry', title: '曲加工人员',width: 100,
|
|
|
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
// filterRender: { name: 'FilterCombination', }},
|
|
|
|
|
{
|
|
|
|
|
field: 'qjgrq', title: '曲加工计划日期', minWidth: "140",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
// field: 'dmsb',
|
|
|
|
|
// title: '打磨设备',
|
|
|
|
|
// minWidth: "110",
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',},
|
|
|
|
|
// editRender: {name: "$select", options: [], props: {clearable: true,}}
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
field: 'gjjsDz', title: '钢料滚动需求期(大组)', minWidth: "160",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'gjjsXz', title: '钢加小组结束', width: 100,
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'ljsl', title: '零件数量', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// field: 'gjks', title: '钢加开始', width: 100,
|
|
|
|
|
// filters: [{
|
|
|
|
|
// data: {
|
|
|
|
|
// checks: [],
|
|
|
|
|
// sVal: '',
|
|
|
|
|
// sMenu: '',
|
|
|
|
|
// fType1: '',
|
|
|
|
|
// fVal1: '',
|
|
|
|
|
// fMode: 'and',
|
|
|
|
|
// fType2: '',
|
|
|
|
|
// fVal2: ''
|
|
|
|
|
// }
|
|
|
|
|
// }],
|
|
|
|
|
// filterRender: {name: 'FilterCombination',}
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
field: 'dcCh2', title: '本船号', width: 100,
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},//没有真实数据时,为空
|
|
|
|
|
{
|
|
|
|
|
field: 'zt', title: '状态', width: 70, formatter: ['dictFormat', 'SYZT'],
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'gxsj', title: '数据更新时间', minWidth: "130",
|
|
|
|
|
filters: [{
|
|
|
|
|
data: {
|
|
|
|
|
checks: [],
|
|
|
|
|
sVal: '',
|
|
|
|
|
sMenu: '',
|
|
|
|
|
fType1: '',
|
|
|
|
|
fVal1: '',
|
|
|
|
|
fMode: 'and',
|
|
|
|
|
fType2: '',
|
|
|
|
|
fVal2: ''
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
filterRender: {name: 'FilterCombination',}
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn7: [
|
|
|
|
|
{type: 'seq', width: 60, title: '序号', fixed: "left"},
|
|
|
|
|
{ field: '', title: '日期', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '垛位', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '船号', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '批量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '数量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '重量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '订货清单号', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '订货数量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '采购数量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '到货数量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '跨位', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: '', title: '跨位需求数量', width: 150,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
tableColumn9:[
|
|
|
|
|
{ field: 'gl', title: '日期', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'bbgs', title: '白班', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ybgs', title: '夜班', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'gx', title: '工位', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sbbh', title: '设备编码', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sbmc', title: '设备名称', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sbde', title: '设备定额', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'ch', title: '船号', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'pl', title: '批次', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'xqrq', title: '钢板需求期', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'dzks', title: '小组开始', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'dz', title: '大组', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'type', title: '类型(手工/数控)', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'zl', title: '组立', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'kw', title: '跨位', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'tzmc', title: '套料图名称', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'tzbh', title: '套料图号', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'wpgg', title: '规格', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'wpcz', title: '材质', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sl', title: '数量', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'jglx', title: '加工路线', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'de', title: '定额', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'zrc', title: '中日程', width: 120,
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapGetters(['name', 'bmbm','yhdm'])
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
window.addEventListener('resize', this.getHeight)
|
|
|
|
|
this.getHeight()
|
|
|
|
|
this.initBase()
|
|
|
|
|
if(this.yhdm=='UserAdmin'||this.yhdm=='user02'){
|
|
|
|
|
this.isUser=false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
'queryParam.beginTime'(newValue, Value){
|
|
|
|
|
if (newValue){
|
|
|
|
|
this.format(newValue);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
rowClassName({row, rowIndex}) {
|
|
|
|
|
if (row.dcCh === '合计') {
|
|
|
|
|
return {
|
|
|
|
|
backgroundColor: 'lightblue',
|
|
|
|
|
cursor: 'pointer'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null
|
|
|
|
|
},
|
|
|
|
|
//汇总
|
|
|
|
|
symxhz() {
|
|
|
|
|
|
|
|
|
|
if (this.queryParam.beginTime=='' ||this.queryParam.endTime==''||
|
|
|
|
|
this.queryParam.beginTime==null ||this.queryParam.endTime==null
|
|
|
|
|
) {
|
|
|
|
|
this.$message.warning('请先输入汇总的时间范围!');
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
symxhz(this.queryParam).then((res) => {
|
|
|
|
|
if (res.data) {
|
|
|
|
|
console.log(res.data)
|
|
|
|
|
this.list1 = res.data.xbList
|
|
|
|
|
this.list2 = res.data.plList
|
|
|
|
|
this.list3 = res.data.kwList
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//合并行
|
|
|
|
|
rowspanMethod({row, _rowIndex, column, visibleData}) {
|
|
|
|
|
//不要忘记在vxe-grid上配置 :scroll-y="{enabled: false}" 防止下拉时样式变化
|
|
|
|
|
// 需要合并的列字段
|
|
|
|
|
let fields = ['nf', 'yf', 'rq', 'tzxqq','kw','ch',];// 需要合并的列
|
|
|
|
|
const cellValue = row[column.property];// 合并行的相同的唯一标识
|
|
|
|
|
if (cellValue && fields.includes(column.property)) {
|
|
|
|
|
const prevRow = visibleData[_rowIndex - 1];
|
|
|
|
|
let nextRow = visibleData[_rowIndex + 1];
|
|
|
|
|
if (prevRow && prevRow[column.property] === cellValue) {
|
|
|
|
|
// 如果和第一行数据一样,就删除
|
|
|
|
|
return {rowspan: 0, colspan: 0};
|
|
|
|
|
} else {
|
|
|
|
|
// 获取有机会数据是一样的
|
|
|
|
|
let countRowspan = 1;
|
|
|
|
|
while (nextRow && nextRow[column.property] === cellValue) {
|
|
|
|
|
nextRow = visibleData[++countRowspan + _rowIndex];
|
|
|
|
|
}
|
|
|
|
|
if (countRowspan > 1) {
|
|
|
|
|
return {rowspan: countRowspan, colspan: 1};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
rowspanMethod1({row, _rowIndex, column, visibleData}) {
|
|
|
|
|
//不要忘记在vxe-grid上配置 :scroll-y="{enabled: false}" 防止下拉时样式变化
|
|
|
|
|
// 需要合并的列字段
|
|
|
|
|
let fields = ['dcCh','dcPl'];// 需要合并的列
|
|
|
|
|
const cellValue = row[column.property];// 合并行的相同的唯一标识
|
|
|
|
|
if (cellValue && fields.includes(column.property)) {
|
|
|
|
|
const prevRow = visibleData[_rowIndex - 1];
|
|
|
|
|
let nextRow = visibleData[_rowIndex + 1];
|
|
|
|
|
if(_rowIndex%2==0){
|
|
|
|
|
return {rowspan: 2, colspan: 1};
|
|
|
|
|
}else {
|
|
|
|
|
return {rowspan: 0, colspan: 0};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//明细修改弹窗
|
|
|
|
|
cellClickEvent_xb(row) {
|
|
|
|
|
this.mxList = row.row.mxList
|
|
|
|
|
this.dialogVisible1 = true
|
|
|
|
|
},
|
|
|
|
|
//区分汇总数据
|
|
|
|
|
cellStyle({row, column, rowIndex, columnIndex}) {
|
|
|
|
|
let fields = ['tlt_zl', 'jsq_dz_pc', 'jsq_xz_pc', 'tzxqq', 'tlt_sl', 'hx_cd', 'qg_cd', 'gcxqq'];
|
|
|
|
|
if (fields.includes(column.property)) {
|
|
|
|
|
return {
|
|
|
|
|
color: '#CC8B04',
|
|
|
|
|
cursor: 'pointer'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
cellStyle2({row}) {
|
|
|
|
|
if (!row){return ;}
|
|
|
|
|
|
|
|
|
|
if (this.gcrl.includes(row.jssj)) {
|
|
|
|
|
return {
|
|
|
|
|
color: 'red',
|
|
|
|
|
cursor: 'pointer'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//明细修改弹窗,区分是否本船只
|
|
|
|
|
cellStyle1({row}) {
|
|
|
|
|
if (row.dcCh1) {
|
|
|
|
|
return {
|
|
|
|
|
color: 'red',
|
|
|
|
|
cursor: 'pointer'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//明细修改弹窗,可修改列
|
|
|
|
|
headerCellStyle({column}) {
|
|
|
|
|
let fields = ['jzsb', 'pwsb', 'hxsb', 'qgsb', 'pksb', 'dmsb', 'qjgsb'];
|
|
|
|
|
if (fields.includes(column.field)) {
|
|
|
|
|
return {
|
|
|
|
|
backgroundColor: 'lightblue',
|
|
|
|
|
cursor: 'pointer'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//提取三月滚动
|
|
|
|
|
tqSygd() {
|
|
|
|
|
tqSygd(this.list).then((res) => {
|
|
|
|
|
if (res.data) {
|
|
|
|
|
router.push({
|
|
|
|
|
name: 'SygdWH',
|
|
|
|
|
params: {
|
|
|
|
|
list: res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.warning('请先提取明细!');
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 全选
|
|
|
|
|
selectAllEvent() {
|
|
|
|
|
const records = this.$refs.xGrid.getCheckboxRecords();
|
|
|
|
|
this.checkedList = records;
|
|
|
|
|
},
|
|
|
|
|
// 单选
|
|
|
|
|
selectChangeEvent() {
|
|
|
|
|
const records = this.$refs.xGrid.getCheckboxRecords();
|
|
|
|
|
this.checkedList = records;
|
|
|
|
|
},
|
|
|
|
|
//明细排产时,弹窗选择目标船只
|
|
|
|
|
saveByDcch() {
|
|
|
|
|
saveByDcch(this.selectMbch).then((res) => {
|
|
|
|
|
this.list = res.data
|
|
|
|
|
if (this.$refs.xGrid) {
|
|
|
|
|
this.$refs.xGrid.loadData(this.list)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|
//修改明细信息;根据修改后的设备信息;重新排计划期
|
|
|
|
|
save() {
|
|
|
|
|
this.$message.warning('保存成功!');
|
|
|
|
|
this.dialogVisible1 = false;
|
|
|
|
|
},
|
|
|
|
|
//切换数据表点击事件
|
|
|
|
|
handleClick(tab, event) {
|
|
|
|
|
if (this.activeName === 'second') {
|
|
|
|
|
// alert('线表计划')
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (this.activeName === 'third') {
|
|
|
|
|
// alert('批量表')
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (this.activeName === 'fourth') {
|
|
|
|
|
// alert('图纸')
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (this.activeName === 'fifth') {
|
|
|
|
|
// alert('到货')
|
|
|
|
|
if (this.list.length > 0) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (this.activeName === 'sixth') {
|
|
|
|
|
console.log(this.list5)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//材料类型转码
|
|
|
|
|
formatterLx({cellValue}) {
|
|
|
|
|
if (cellValue === 'B') {
|
|
|
|
|
return '板材'
|
|
|
|
|
}
|
|
|
|
|
if (cellValue === 'X') {
|
|
|
|
|
return '型材'
|
|
|
|
|
}
|
|
|
|
|
return cellValue
|
|
|
|
|
},
|
|
|
|
|
//转码信息
|
|
|
|
|
initBase() {
|
|
|
|
|
getCzxx({}).then(res => {
|
|
|
|
|
this.dictData = res.data
|
|
|
|
|
})
|
|
|
|
|
this.queryParam.beginTime = new Date();
|
|
|
|
|
},
|
|
|
|
|
//初始化表1 数据
|
|
|
|
|
initList() {
|
|
|
|
|
if (this.queryParam.beginTime === '' || this.queryParam.endTime === '') {
|
|
|
|
|
this.$message.warning('选择时间范围')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
getList(this.queryParam).then((res) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.list = res.data.list
|
|
|
|
|
// this.gcrl=res.data.gcrl
|
|
|
|
|
// if (this.$refs.xGrid) {
|
|
|
|
|
// this.$refs.xGrid8.loadData(this.list8)
|
|
|
|
|
// }
|
|
|
|
|
})
|
|
|
|
|
this.activeName = 'first'
|
|
|
|
|
},
|
|
|
|
|
formatDate({cellValue}) {
|
|
|
|
|
return XEUtils.toDateString(cellValue, 'yyyy/MM/dd')
|
|
|
|
|
},
|
|
|
|
|
getHeight() {
|
|
|
|
|
this.height = window.innerHeight - 200
|
|
|
|
|
},
|
|
|
|
|
//明细排产
|
|
|
|
|
sygdPC() {
|
|
|
|
|
this.$store.dispatch('app/closeSideBar', true)
|
|
|
|
|
sygdPC().then((res) => {
|
|
|
|
|
if (!res.success){
|
|
|
|
|
this.$message.warning(res.message)
|
|
|
|
|
}else{
|
|
|
|
|
// this.list = res.data
|
|
|
|
|
// if (this.$refs.xGrid) {
|
|
|
|
|
// this.$refs.xGrid.loadData(this.list)
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.activeName = 'first'
|
|
|
|
|
},
|
|
|
|
|
format (val) {
|
|
|
|
|
var date = new Date(val); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
|
|
|
|
|
|
|
|
|
|
date.setMonth(date.getMonth()+2);
|
|
|
|
|
var Y = date.getFullYear() + "/";
|
|
|
|
|
var M = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1)+ "/";
|
|
|
|
|
var D = date.getDate()<10? "0" +date.getDate():date.getDate();
|
|
|
|
|
this.queryParam.endTime=Y + M + D;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
|
|
.el-header {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
|
|
.el-input {
|
|
|
|
|
width: 140px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-select {
|
|
|
|
|
width: 140px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-main {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-col {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-aside {
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-container {
|
|
|
|
|
padding: 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-row {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-row:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tableStyles {
|
|
|
|
|
background: #0a76a4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-dropdown {
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 400px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #dcdfe6;
|
|
|
|
|
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mytable1 {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.borderClass {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vxe-input {
|
|
|
|
|
display: inline-block !important;
|
|
|
|
|
position: relative !important;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-input {
|
|
|
|
|
display: inline-block !important;
|
|
|
|
|
position: relative !important;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.keyword-lighten {
|
|
|
|
|
color: #000;
|
|
|
|
|
background-color: #FFFF00;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vxe-textarea--inner {
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item__label-wrap {
|
|
|
|
|
margin-left: 0px !important;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fontClass {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|