You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
752 lines
21 KiB
752 lines
21 KiB
<template>
|
|
<!-- <el-dialog title="收货地址" :visible.sync="dialogFormVisible">-->
|
|
<el-container>
|
|
<el-header style="width: 100%; height: 80px;font-size: 12px">
|
|
|
|
<el-form :inline="true" label-width="60px" label-position="left">
|
|
<el-row>
|
|
|
|
<el-col :span="18">
|
|
|
|
|
|
|
|
<el-form-item label="船号:">
|
|
<vxe-pulldown ref="xDown4" transfer >
|
|
<template #default>
|
|
<vxe-input
|
|
v-model="queryParam.dcch"
|
|
placeholder="船号"
|
|
style="height: 28px;
|
|
line-height: 28px; width: 140px;"
|
|
suffix-icon="vxe-icon--search"
|
|
@keyup="keyupEvent4"
|
|
@focus="focusEvent4"
|
|
/>
|
|
</template>
|
|
<template #dropdown>
|
|
<div class="my-dropdown mytable " style="width: 250px">
|
|
<vxe-grid
|
|
highlight-hover-row
|
|
height="auto"
|
|
|
|
:data="projectData"
|
|
:columns="projectColumns"
|
|
@cell-click="cellClickEvent"
|
|
show-overflow
|
|
>
|
|
<template #wgbsEdit="{ row}">
|
|
<vxe-checkbox v-model="row.wgbs" checked-value="Y" unchecked-value="N" disabled ></vxe-checkbox>
|
|
</template>
|
|
</vxe-grid>
|
|
</div>
|
|
</template>
|
|
</vxe-pulldown>
|
|
|
|
|
|
</el-form-item>
|
|
<el-form-item label="批量:">
|
|
<el-input v-model="queryParam.pl" type="search" placeholder="批量" ></el-input>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="分段:">-->
|
|
<!-- <el-input v-model="queryParam.fd" type="search" placeholder="分段" ></el-input>-->
|
|
<!-- </el-form-item>-->
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<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-col>
|
|
<el-col :span="4" >
|
|
<el-form-item style="float: right" >
|
|
<!-- <el-button type="success" @click="slpgclick">派工</el-button>-->
|
|
<!-- <el-button type="success" @click="xdClick">接收</el-button>-->
|
|
<!-- <el-button type="success" @click="saveclick">反馈</el-button>-->
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</el-header>
|
|
<el-container style="padding-top: 0px">
|
|
<el-container>
|
|
<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"
|
|
:scroll-y="{enabled: true}"
|
|
:edit-config="{trigger: 'click', mode: 'cell', showStatus: true}"
|
|
highlight-hover-row
|
|
show-overflow
|
|
show-header-overflow
|
|
|
|
>
|
|
|
|
|
|
</vxe-grid>
|
|
</div>
|
|
|
|
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getPgdBase
|
|
} from '@/api/jhzxgl/pgd'
|
|
import {
|
|
getYlList
|
|
} from '@/api/jhzx/ylxx'
|
|
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:'Ylxx',
|
|
data() {
|
|
return {
|
|
queryParam: {
|
|
dcch:'',
|
|
pl:'',
|
|
fd:'',
|
|
fkyy:'',
|
|
zt:'01'
|
|
},
|
|
statusOptions: [
|
|
{
|
|
value: "01",
|
|
label: "编制",
|
|
},
|
|
{
|
|
value: "02",
|
|
label: "派工",
|
|
},
|
|
{
|
|
value: "03",
|
|
label: "接收",
|
|
},
|
|
{
|
|
value: "04",
|
|
label: "反馈",
|
|
},
|
|
],
|
|
inParam:{
|
|
slry:'',
|
|
slks:'',
|
|
sljs:'',
|
|
dw:'',
|
|
scry:'',
|
|
scdw:''
|
|
},
|
|
list: [],
|
|
heads: { token: getToken() },
|
|
uploadAction: process.env.VUE_APP_BASE_API + '/dmCzplpNew/uploadPl',
|
|
dictData:{},
|
|
height: '500px',
|
|
projectData:[],
|
|
projectData1:[],
|
|
projectColumns: [
|
|
{field: 'cbbm', title: '船号',width: 110},
|
|
{ field: 'wgbs', title: '完工标识', width: 80,
|
|
slots:{
|
|
default: 'wgbsEdit'
|
|
},
|
|
},
|
|
],
|
|
|
|
tableColumn: [
|
|
|
|
{ type: 'seq', width: 40, title: '序号' },
|
|
{
|
|
field: 'dcCh',
|
|
title: '船号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcPl',
|
|
title: '批量',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcZl',
|
|
title: '组立',
|
|
width: 120,formatter: ['dictFormat','ZLLB'],
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcHx',
|
|
title: '划线',formatter: ['dictFormat','HXLX'],
|
|
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: 'ylbh',
|
|
title: '余料编号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'wpxh',
|
|
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: 'ylzd1',
|
|
title: '余料规格',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 't1',
|
|
title: '厚',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'b1',
|
|
title: '宽',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'l',
|
|
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: 'jldw',
|
|
title: '计量单位',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'ylzl',
|
|
title: '余料重量(KG)',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'hxfl',
|
|
title: '余料分类',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcLph',
|
|
title: '炉批号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'scrq',
|
|
title: '余料生成日期',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
// {
|
|
// field: 'syrq',
|
|
// title: '余料使用日期',
|
|
// width: 120,
|
|
// filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
// filterRender: { name: 'FilterCombination' }
|
|
// },
|
|
{
|
|
field: 'sybs',
|
|
title: '标识',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcCh2',
|
|
title: '使用船号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'dcPl2',
|
|
title: '使用批号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'ylkwh',
|
|
title: '余料存放垛位',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'ylzd2',
|
|
title: '层数',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'tzbh1',
|
|
title: '使用余料图纸编号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'ysrq',
|
|
title: '使用日期',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
},
|
|
{
|
|
field: 'ylcjbm',
|
|
title: '余料存放跨',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'gzzx',
|
|
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: 'ylsxh',
|
|
title: '余料流水号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'hxbh',
|
|
title: '内部编号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'xh',
|
|
title: '内部序号',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'bzry',
|
|
title: '编制人员',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'bzrq',
|
|
title: '编制日期',
|
|
width: 120,
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination' }
|
|
}
|
|
,
|
|
{
|
|
field: 'zt',
|
|
title: '状态',
|
|
width: 120,
|
|
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: {
|
|
|
|
cellClickEvent({row}) {
|
|
this.queryParam.dcch = row.cbbm
|
|
this.$refs.xDown4.hidePanel()
|
|
},
|
|
focusEvent4() {
|
|
this.$refs.xDown4.showPanel()
|
|
},
|
|
keyupEvent4() {
|
|
|
|
|
|
if (this.queryParam.dcch) {
|
|
this.projectData = this.projectData1.filter(row => row.cbbm.indexOf(this.queryParam.dcch.toUpperCase()) > -1)
|
|
} else {
|
|
this.projectData = this.projectData1.slice(0)
|
|
}
|
|
|
|
},
|
|
ztChange(){
|
|
this.list=[]
|
|
},
|
|
bzClick(){
|
|
console.log(this.dictData.gxry)
|
|
console.log(this.inParam.scdw)
|
|
this.dictData.gxry= this.dictData.gxry.filter(fst=>fst.szcs===this.inParam.scdw)
|
|
console.log(this.dictData.gxry)
|
|
},
|
|
updates2(){
|
|
let selectRecords = this.$refs.xGrid.getCheckboxRecords()
|
|
|
|
if(selectRecords.length>0){
|
|
for(let i = 0; i < selectRecords.length; i++) {
|
|
|
|
|
|
selectRecords[i].pscdw = this.inParam.scdw
|
|
selectRecords[i].pscry = this.inParam.scry
|
|
|
|
|
|
}
|
|
this.$refs.xGrid.updateData(this.list)
|
|
}
|
|
},
|
|
updates(type){
|
|
|
|
|
|
let selectRecords = this.$refs.xGrid.getCheckboxRecords()
|
|
|
|
if(selectRecords.length>0){
|
|
for(let i = 0; i < selectRecords.length; i++) {
|
|
if(type==='1'){
|
|
|
|
selectRecords[i].slksrq = this.inParam.slks
|
|
}else if (type==='2'){
|
|
selectRecords[i].pkFkry = this.inParam.slry
|
|
selectRecords[i].pkFkrq = this.inParam.sljs
|
|
}
|
|
|
|
}
|
|
this.$refs.xGrid.updateData(this.list)
|
|
}
|
|
|
|
},
|
|
|
|
activeRowMethod({ row, rowIndex }){
|
|
// if(row.zt==="01"){
|
|
// return true
|
|
// }else{
|
|
// return false
|
|
// }
|
|
|
|
return true;
|
|
},
|
|
|
|
initBase(){
|
|
getPgdBase({}).then(res=>{
|
|
console.log(res.data)
|
|
this.dictData = res.data
|
|
this.projectData=res.data.cbbm
|
|
this.projectData1=res.data.cbbm
|
|
})
|
|
},
|
|
plClick(){
|
|
let selectRecords = this.$refs.xGrid.getCheckboxRecords()
|
|
if(selectRecords.length>0){
|
|
for(let i = 0; i < selectRecords.length; i++) {
|
|
selectRecords[i].fkyy = this.queryParam.fkyy
|
|
}
|
|
this.$refs.xGrid.updateData(this.list)
|
|
}
|
|
|
|
},
|
|
saveclick(){
|
|
|
|
if(this.queryParam.zt!=='03'){
|
|
return
|
|
}
|
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
|
// if(obj.length===0){
|
|
// this.$message({ message: '请填写反馈原因在进行反馈', type: 'warning' })
|
|
// return
|
|
// }
|
|
savePkPgdFk(obj).then(res=>{
|
|
if(res.success){
|
|
this.initList()
|
|
}
|
|
})
|
|
},
|
|
|
|
slpgclick(){
|
|
// if(this.queryParam.zt!=="01"){
|
|
// return
|
|
// }
|
|
|
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
|
if(obj.length===0){
|
|
return
|
|
}
|
|
if(this.queryParam.zt==='02'){
|
|
this.$confirm('取消派工?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() =>{
|
|
savePkPgdXdBack(obj).then(res=>{
|
|
if(res.success){
|
|
this.$message({ message: '取消派工成功', type: 'success' })
|
|
this.initList()
|
|
}
|
|
})
|
|
|
|
})
|
|
}else if (this.queryParam.zt==='01') {
|
|
this.$confirm('派工?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() =>{
|
|
savePkPgdXd(obj).then(res=>{
|
|
if(res.success){
|
|
this.initList()
|
|
}
|
|
})
|
|
|
|
})
|
|
}
|
|
|
|
|
|
},
|
|
xdClick(){
|
|
|
|
if(this.queryParam.zt!=="02"){
|
|
return
|
|
}
|
|
let obj=this.$refs.xGrid.getCheckboxRecords()
|
|
if(obj.length===0){
|
|
return
|
|
}
|
|
// if(this.queryParam.zt==='03'){
|
|
// this.$confirm('取消接收?', '提示', {
|
|
// confirmButtonText: '确定',
|
|
// cancelButtonText: '取消',
|
|
// type: 'warning'
|
|
// }).then(() =>{
|
|
// saveQgPgdXdBack(obj).then(res=>{
|
|
// if(res.success){
|
|
// this.$message({ message: '取消下达成功', type: 'success' })
|
|
// this.initList()
|
|
// }
|
|
// })
|
|
//
|
|
// })
|
|
// }else {
|
|
this.$confirm('接收?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() =>{
|
|
savePkPgdJs(obj).then(res=>{
|
|
if(res.success){
|
|
this.$message({ message: '接收成功', type: 'success' })
|
|
this.initList()
|
|
}
|
|
})
|
|
|
|
})
|
|
// }
|
|
|
|
|
|
},
|
|
initList() {
|
|
// if (this.queryParam.dcch === '') {
|
|
// this.$message.warning('选择船只编号')
|
|
// return
|
|
// }
|
|
getYlList(this.queryParam).then((res) => {
|
|
console.log(res.data)
|
|
this.list = res.data
|
|
if (this.$refs.xGrid) {
|
|
this.$refs.xGrid.loadData(this.list)
|
|
console.log(this.list)
|
|
}
|
|
|
|
})
|
|
},
|
|
selectChange(row) {
|
|
// this.$refs.xGrid.clearActived() // 清除单元格激活状态
|
|
this.$refs.xGrid.clearEdit() // 清除单元格激活状态
|
|
// this.$refs.xGrid.setEditCell(row.row, row.column.property) // 设置单元格为激活状态
|
|
null2str(row.row)
|
|
},
|
|
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>
|