parent
7859ff8649
commit
9d26dbeab0
@ -0,0 +1,11 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
export function getList(data) {return request({url: '/dmQfxq/getList', method: 'post', data})}
|
||||||
|
export function remove(data) {return request({url: '/dmQfxq/remove', method: 'post', data})}
|
||||||
|
export function qfxqTJ(data) {return request({url: '/dmQfxq/qfxqTJ', method: 'post', data})}
|
||||||
|
export function qfxqSH(data) {return request({url: '/dmQfxq/qfxqSH', method: 'post', data})}
|
||||||
|
export function save(data) {return request({url: '/dmQfxq/save', method: 'post', data})}
|
||||||
|
export function getCzxx(data) {return request({url: '/dmQfxq/getCzxx', method: 'post', data})}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
export function getList(data) {return request({url: '/dmSygdMx/getList', method: 'post', data})}
|
||||||
|
export function sygdPC() {return request({url: '/dmSygdMx/sygdPC', method: 'post'})}
|
||||||
|
export function saveByDcch(data) {return request({url: '/dmSygdMx/saveByDcch', method: 'post', data})}
|
@ -0,0 +1,281 @@
|
|||||||
|
<template>
|
||||||
|
<el-container>
|
||||||
|
<el-header style="width: 100%; height: 80px;font-size: 12px">
|
||||||
|
<el-form :inline="true" label-width="65px" label-position="left">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="22">
|
||||||
|
<el-form-item label="船号:">
|
||||||
|
<el-select v-model="queryParam.dcCh" filterable placeholder="工程编号" @change="czbhChange" >
|
||||||
|
<el-option
|
||||||
|
v-for="item in dictData.cbbm"
|
||||||
|
:key="item.cbbm"
|
||||||
|
:label="item.cbbm"
|
||||||
|
:value="item.cbbm">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="批量:">
|
||||||
|
<el-input v-model="queryParam.dcPl" type="search" placeholder="批量" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="2">
|
||||||
|
<el-form-item style="float: right" >
|
||||||
|
<el-button type="success" @click="initList">查询</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="20">
|
||||||
|
<el-form-item label="状态:">
|
||||||
|
<el-select v-model="queryParam.zt" filterable placeholder="状态" @change="czbhChange" >
|
||||||
|
<el-option
|
||||||
|
v-for="item in zt"
|
||||||
|
:key="item.bm"
|
||||||
|
:label="item.bmsm"
|
||||||
|
:value="item.bm">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-header>
|
||||||
|
<el-container style="padding-top: 0px">
|
||||||
|
<el-container>
|
||||||
|
<el-main>
|
||||||
|
<div class="mytable">
|
||||||
|
<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 }"
|
||||||
|
highlight-hover-row
|
||||||
|
show-overflow
|
||||||
|
show-header-overflow
|
||||||
|
>
|
||||||
|
</vxe-grid>
|
||||||
|
</div>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
getList,
|
||||||
|
getCzxx
|
||||||
|
} from '@/api/jhzx/qfxq'
|
||||||
|
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import XEUtils from 'xe-utils'
|
||||||
|
import {null2str} from "@/utils/rpkj";
|
||||||
|
import { getToken } from '@/utils/auth'
|
||||||
|
import { startLoading, endLoading } from '@/utils'
|
||||||
|
import { Message } from 'element-ui'
|
||||||
|
export default {
|
||||||
|
name:'QfxqCX',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
queryParam: {
|
||||||
|
dcCh:'',
|
||||||
|
dcPl:'',
|
||||||
|
zt:''
|
||||||
|
},
|
||||||
|
list: [],
|
||||||
|
filedis:true,
|
||||||
|
uploadData:{
|
||||||
|
},
|
||||||
|
heads: { token: getToken() },
|
||||||
|
uploadAction: process.env.VUE_APP_BASE_API + '/dmQfxq/upload',
|
||||||
|
dictData:{
|
||||||
|
cbbm:[]
|
||||||
|
},
|
||||||
|
zt:[],
|
||||||
|
height: '500px',
|
||||||
|
tableColumn: [
|
||||||
|
{ type: 'seq', width: 60, title: '序号' },
|
||||||
|
|
||||||
|
{ field: 'dcCh', title: '船号', width: 100,
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'dcPl', title: '批量', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'dcFd', title: '分段', width: 100, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'pscd', title: '配送场地', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'cjzg', title: '车间主管', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'db', title: '大板', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'xc', title: '型材', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'txc', title: 'T型材', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'bz', title: '备注', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'zt', title: '状态', width: 100,formatter: ['dictFormat','ZTLX']
|
||||||
|
},
|
||||||
|
{ field: 'bzry', title: '编制人员', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'bzrq', title: '编制日期', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'shry', title: '审核人员', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters(['name', 'bmbm'])
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
window.addEventListener('resize', this.getHeight)
|
||||||
|
this.getHeight()
|
||||||
|
this.initBase()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
initBase(){
|
||||||
|
getCzxx({}).then(res=>{
|
||||||
|
this.dictData.cbbm = res.data
|
||||||
|
})
|
||||||
|
const dict=window.localStorage.getItem('ZTLX');
|
||||||
|
this.zt=JSON.parse(dict)
|
||||||
|
},
|
||||||
|
initList() {
|
||||||
|
if (this.queryParam.dcCh === '') {
|
||||||
|
this.$message.warning('选择船只编号')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
getList(this.queryParam).then((res) => {
|
||||||
|
this.list = res.data
|
||||||
|
if (this.$refs.xGrid) {
|
||||||
|
this.$refs.xGrid.loadData(this.list)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
|
czbhChange(){
|
||||||
|
if (this.queryParam.dcCh === '') {
|
||||||
|
this.filedis=true
|
||||||
|
}else{
|
||||||
|
this.filedis=false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selectChange(row) {
|
||||||
|
// this.$refs.xGrid.clearActived() // 清除单元格激活状态
|
||||||
|
this.$refs.xGrid.clearEdit() // 清除单元格激活状态
|
||||||
|
// this.$refs.xGrid.setEditCell(row.row, row.column.property) // 设置单元格为激活状态
|
||||||
|
null2str(row.row)
|
||||||
|
},
|
||||||
|
formatDate ({ cellValue }) {
|
||||||
|
return XEUtils.toDateString(cellValue, 'yyyy/MM/dd')
|
||||||
|
},
|
||||||
|
getHeight() {
|
||||||
|
this.height = window.innerHeight - 190
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</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>
|
@ -0,0 +1,300 @@
|
|||||||
|
<template>
|
||||||
|
<el-container>
|
||||||
|
<el-header style="width: 100%; height: 80px;font-size: 12px">
|
||||||
|
<el-form :inline="true" label-width="65px" label-position="left">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="22">
|
||||||
|
<el-form-item label="船号:">
|
||||||
|
<el-select v-model="queryParam.dcCh" filterable placeholder="工程编号" @change="czbhChange" >
|
||||||
|
<el-option
|
||||||
|
v-for="item in dictData"
|
||||||
|
:key="item.cbbm"
|
||||||
|
:label="item.cbbm"
|
||||||
|
:value="item.cbbm">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="批量:">
|
||||||
|
<el-input v-model="queryParam.dcPl" type="search" placeholder="批量" ></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="2">
|
||||||
|
<el-form-item style="float: right" >
|
||||||
|
<el-button type="success" @click="initList">查询</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="10" :offset="14">
|
||||||
|
<el-form-item style="float: right" >
|
||||||
|
<el-button type="success" @click="qfxqTJ()" >退回编辑</el-button>
|
||||||
|
<el-button type="success" @click="qfxqSH()" >审核</el-button>
|
||||||
|
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-header>
|
||||||
|
<el-container style="padding-top: 0px">
|
||||||
|
<el-container>
|
||||||
|
<el-main>
|
||||||
|
<div class="mytable">
|
||||||
|
<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 }"
|
||||||
|
highlight-hover-row
|
||||||
|
show-overflow
|
||||||
|
show-header-overflow
|
||||||
|
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
|
</vxe-grid>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
getList,
|
||||||
|
qfxqTJ,
|
||||||
|
getCzxx,
|
||||||
|
qfxqSH
|
||||||
|
} from '@/api/jhzx/qfxq'
|
||||||
|
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import XEUtils from 'xe-utils'
|
||||||
|
import {null2str} from "@/utils/rpkj";
|
||||||
|
import { getToken } from '@/utils/auth'
|
||||||
|
import { startLoading, endLoading } from '@/utils'
|
||||||
|
import { Message } from 'element-ui'
|
||||||
|
export default {
|
||||||
|
name:'QfxqSH',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
queryParam: {
|
||||||
|
dcCh:'',
|
||||||
|
dcPl:'',
|
||||||
|
zt:'1'
|
||||||
|
},
|
||||||
|
list: [],
|
||||||
|
isupload:'02',
|
||||||
|
filedis:true,
|
||||||
|
uploadData:{
|
||||||
|
},
|
||||||
|
heads: { token: getToken() },
|
||||||
|
uploadAction: process.env.VUE_APP_BASE_API + '/dmQfxq/upload',
|
||||||
|
dictData:[],
|
||||||
|
height: '500px',
|
||||||
|
tableColumn: [
|
||||||
|
{ type: 'checkbox', width: 50 },
|
||||||
|
{ type: 'seq', width: 60, title: '序号' },
|
||||||
|
|
||||||
|
{ field: 'dcCh', title: '船号', width: 100,
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'dcPl', title: '批量', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'dcFd', title: '分段', width: 100, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'pscd', title: '配送场地', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'cjzg', title: '车间主管', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'db', title: '大板', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'xc', title: '型材', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'txc', title: 'T型材', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'bz', title: '备注', width: 120, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'zt', title: '状态', width: 100,formatter: ['dictFormat','ZTLX']
|
||||||
|
},
|
||||||
|
{ field: 'bzry', title: '编制人员', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'bzrq', title: '编制日期', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'shry', title: '审核人员', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{ field: 'shrq', title: '审核日期', width: 110, editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters(['name', 'bmbm'])
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
window.addEventListener('resize', this.getHeight)
|
||||||
|
this.getHeight()
|
||||||
|
this.initBase()
|
||||||
|
this.initList()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
czbhChange(){
|
||||||
|
if (this.queryParam.dcCh === '') {s
|
||||||
|
this.filedis=true
|
||||||
|
}else{
|
||||||
|
this.filedis=false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
initBase(){
|
||||||
|
getCzxx({}).then(res=>{
|
||||||
|
this.dictData = res.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
initList() {
|
||||||
|
// if (this.queryParam.dcCh === '') {
|
||||||
|
// this.$message.warning('选择船只编号')
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
getList(this.queryParam).then((res) => {
|
||||||
|
this.list = res.data
|
||||||
|
if (this.$refs.xGrid) {
|
||||||
|
this.$refs.xGrid.loadData(this.list)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
|
formatDate ({ cellValue }) {
|
||||||
|
return XEUtils.toDateString(cellValue, 'yyyy/MM/dd')
|
||||||
|
},
|
||||||
|
getHeight() {
|
||||||
|
this.height = window.innerHeight - 190
|
||||||
|
},
|
||||||
|
qfxqTJ() {
|
||||||
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
||||||
|
|
||||||
|
if(obj.length<=0){
|
||||||
|
return
|
||||||
|
}
|
||||||
|
qfxqTJ(obj).then(res=> {
|
||||||
|
if (res.success) {
|
||||||
|
this.initList()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
qfxqSH() {
|
||||||
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
||||||
|
|
||||||
|
if(obj.length<=0){
|
||||||
|
return
|
||||||
|
}
|
||||||
|
qfxqSH(obj).then(res=> {
|
||||||
|
if (res.success) {
|
||||||
|
this.initList()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</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>
|
@ -0,0 +1,363 @@
|
|||||||
|
<template>
|
||||||
|
<el-container>
|
||||||
|
<el-header style="width: 100%; height: 40px;font-size: 12px">
|
||||||
|
<el-form :inline="true" label-width="65px" label-position="left">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="20">
|
||||||
|
<el-form-item label="月份:">
|
||||||
|
<el-select v-model="queryParam.yf" >
|
||||||
|
<el-option
|
||||||
|
v-for="item in monthList"
|
||||||
|
:key="item.name"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.valve">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="4">
|
||||||
|
<el-form-item style="float: right" >
|
||||||
|
<el-button type="success" @click="initList">查询</el-button>
|
||||||
|
<el-button type="success" @click="sygdPC()" >预排产</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-header>
|
||||||
|
<el-container style="padding-top: 0px">
|
||||||
|
<el-container>
|
||||||
|
<el-main>
|
||||||
|
<div class="mytable">
|
||||||
|
<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 }"
|
||||||
|
:row-style="rowStyle"
|
||||||
|
highlight-hover-row
|
||||||
|
show-overflow
|
||||||
|
show-header-overflow
|
||||||
|
|
||||||
|
>
|
||||||
|
</vxe-grid>
|
||||||
|
</div>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</el-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getCzxx} from '@/api/jhzx/qfxq'
|
||||||
|
import { getYdjhList,generateMx} from '@/api/jhzx/sygd'
|
||||||
|
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import XEUtils from 'xe-utils'
|
||||||
|
import {null2str} from "@/utils/rpkj";
|
||||||
|
import { getToken } from '@/utils/auth'
|
||||||
|
import { startLoading, endLoading } from '@/utils'
|
||||||
|
import { Message } from 'element-ui'
|
||||||
|
export default {
|
||||||
|
name:'sygd',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
queryParam: {
|
||||||
|
yf:''
|
||||||
|
},
|
||||||
|
monthList:[
|
||||||
|
{
|
||||||
|
name:'一月',
|
||||||
|
valve:'202301'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'二月',
|
||||||
|
valve:'202302'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'三月',
|
||||||
|
valve:'202303'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'四月',
|
||||||
|
valve:'202304'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'五月',
|
||||||
|
valve:'202305'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'六月',
|
||||||
|
valve:'202306'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'七月',
|
||||||
|
valve:'202307'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'八月',
|
||||||
|
valve:'202308'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'九月',
|
||||||
|
valve:'202309'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'十月',
|
||||||
|
valve:'202310'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name:'十一月',
|
||||||
|
valve:'202311'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
list: [],
|
||||||
|
isupload:'02',
|
||||||
|
filedis:false,
|
||||||
|
uploadData:{},
|
||||||
|
heads: { token: getToken() },
|
||||||
|
uploadAction: process.env.VUE_APP_BASE_API + '/dmSygd/upload',
|
||||||
|
dictData:[],
|
||||||
|
height: '500px',
|
||||||
|
tableColumn: [
|
||||||
|
// { type: 'checkbox', width: 50 },
|
||||||
|
{ type: 'seq', width: 60, title: '序号',fixed: "left"},
|
||||||
|
|
||||||
|
{
|
||||||
|
field: 'dcCh', title: '产品',fixed: "left", width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'dcPl', title: '批量',fixed: "left", width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'dcFd', title: '分段',fixed: "left", width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'gjks', title: '钢加开始',fixed: "left", width: 70,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'gjjsDz', title: '钢加结束大组', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'gjjsXz', title: '钢加结束小组', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
field: 'tltSl', title: '套料图数量', width: 80,formatter:this.tltformat,
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'pzdbK1', title: '一跨平直大板', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'jxbK1', title: '一跨进线板', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'cckbK2', title: '二跨超长超宽板', width: 130,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'cckqK2', title: '二跨超长超宽曲板', width: 140,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'jgqgK2', title: '二跨激光切割板', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'txfK2', title: '二跨T型材腹板', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'txmK2', title: '二跨T型材面板', width: 120,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'hbK3', title: '三跨厚板', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'qbK3', title: '三跨曲板', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'ptK3', title: '三跨平铁', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'ptbK4', title: '四跨普通板', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'gd', title: '光电', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'xcK7', title: '七跨型材', width: 100,editRender: { name: 'input' },
|
||||||
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||||
|
filterRender: { name: 'FilterCombination', },
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters(['name', 'bmbm'])
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
window.addEventListener('resize', this.getHeight)
|
||||||
|
this.getHeight()
|
||||||
|
this.initBase()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
initBase(){
|
||||||
|
getCzxx({}).then(res=>{
|
||||||
|
this.dictData = res.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
initList() {
|
||||||
|
if (this.queryParam.yf === '') {
|
||||||
|
this.$message.warning('选择查询月份')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
getYdjhList(this.queryParam).then((res) => {
|
||||||
|
this.list = res.data
|
||||||
|
if (this.$refs.xGrid) {
|
||||||
|
this.$refs.xGrid.loadData(this.list)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
|
formatDate ({ cellValue }) {
|
||||||
|
return XEUtils.toDateString(cellValue, 'yyyy/MM/dd')
|
||||||
|
},
|
||||||
|
rowStyle({row}) {
|
||||||
|
if (row.tltSl===0)
|
||||||
|
return {
|
||||||
|
color: 'red',
|
||||||
|
// textDecoration: 'line-through'
|
||||||
|
};
|
||||||
|
return "";
|
||||||
|
},
|
||||||
|
tltformat({cellValue}){
|
||||||
|
if(cellValue===0){
|
||||||
|
return '无'
|
||||||
|
}
|
||||||
|
return cellValue
|
||||||
|
},
|
||||||
|
getHeight() {
|
||||||
|
this.height = window.innerHeight - 150
|
||||||
|
},
|
||||||
|
sygdPC() {
|
||||||
|
generateMx().then((res) => {
|
||||||
|
console.log(res.data)
|
||||||
|
if (res.success){
|
||||||
|
this.$message.warning('中日程中没有下月信息!')
|
||||||
|
}
|
||||||
|
this.$message.warning('成功!')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</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;
|
||||||
|
|
||||||
|
}
|
||||||
|
.mytable{
|
||||||
|
|
||||||
|
}
|
||||||
|
.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>
|
Loading…
Reference in new issue