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.
505 lines
16 KiB
505 lines
16 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="65px" label-position="left">
|
|
<el-row>
|
|
|
|
<el-col :span="22">
|
|
|
|
<el-form-item label="船号:">
|
|
<vxe-pulldown ref="xDown4" transfer >
|
|
<template #default>
|
|
<vxe-input
|
|
v-model="request.cbbm"
|
|
placeholder="船号"
|
|
style="height: 28px;
|
|
line-height: 28px; width: 150px;"
|
|
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-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="toolbarButtonClickEvent('save')"
|
|
>保存</el-button>
|
|
<el-button type="success" @click="toolbarButtonClickEvent('insert')">添加</el-button>
|
|
<el-button
|
|
type="danger"
|
|
@click="toolbarButtonClickEvent('delete')"
|
|
>删除
|
|
</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 }"
|
|
:edit-config="{ trigger: 'click', mode: 'cell', showStatus: true}"
|
|
highlight-hover-row
|
|
show-overflow
|
|
show-header-overflow
|
|
:scroll-y="{enabled: true}"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-button type="success" >推送</el-button>
|
|
</template>
|
|
<template #wgbsEdit="{ row}">
|
|
<vxe-checkbox v-model="row.wgbs" checked-value="Y" unchecked-value="N" @change="checkBoxClick(row,'tzDsqx01')"></vxe-checkbox>
|
|
</template>
|
|
<template #ckxsztEdit="{ row}">
|
|
<vxe-checkbox v-model="row.ckxszt" checked-value="Y" unchecked-value="N" @change="checkBoxClick(row,'tzDsqx01')"></vxe-checkbox>
|
|
</template>
|
|
<template #cwfzbsEdit="{ row}">
|
|
<vxe-checkbox v-model="row.cwfzbs" checked-value="Y" unchecked-value="N" @change="checkBoxClick(row,'tzDsqx01')"></vxe-checkbox>
|
|
</template>
|
|
<template #xbzEdit="{ row}">
|
|
<vxe-checkbox v-model="row.xbz" checked-value="Y" unchecked-value="N" @change="checkBoxClick(row,'tzDsqx01')"></vxe-checkbox>
|
|
</template>
|
|
|
|
</vxe-grid>
|
|
</div>
|
|
|
|
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getList,
|
|
add,
|
|
edit,
|
|
del, getCzplBase,
|
|
} from '@/api/sjzx/jcsj'
|
|
import { mapGetters } from 'vuex'
|
|
import XEUtils from 'xe-utils'
|
|
import {null2str} from "@/utils/rpkj";
|
|
export default {
|
|
name:'czbhwh',
|
|
data() {
|
|
return {
|
|
request: {
|
|
cbbm:'',
|
|
|
|
},
|
|
projectData:[],
|
|
projectData1:[],
|
|
projectColumns: [
|
|
{field: 'cbbm', title: '船号',width: 110},
|
|
{ field: 'wgbs', title: '完工标识', width: 80,
|
|
slots:{
|
|
default: 'wgbsEdit'
|
|
},
|
|
},
|
|
],
|
|
list: [],
|
|
|
|
dictData:{},
|
|
height: '500px',
|
|
|
|
tableColumn: [
|
|
{ type: 'checkbox', width: 50 ,
|
|
},
|
|
|
|
{ type: 'seq', width: 60, title: '序号' },
|
|
|
|
{ field: 'cbbm', title: '船号编码', width: 120,editRender: { name: 'input' },
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'cbmc', title: '船号名称', width: 120,editRender: { name: 'input' },
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'wgbs', title: '完工标识', width: 120, editRender: {},
|
|
slots:{
|
|
//
|
|
edit:'wgbsEdit',
|
|
default: 'wgbsEdit'
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'ckxszt', title: '库存系统显示标识', width: 120, editRender: { },
|
|
slots:{
|
|
//
|
|
edit:'ckxsztEdit',
|
|
default: 'ckxsztEdit'
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'cjs', title: '船级社', width: 120, editRender: { name: 'input' },
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'sczbh', title: '目标船只', width: 120,
|
|
editRender:{ name: '$select', options: [],optionProps: { value: 'cbbm', label: 'cbbm' }, props:{clearable: true}
|
|
,events: { change: this.selectChange }},
|
|
|
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'xbz', title: '标准', width: 120, editRender: { },
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
slots:{
|
|
//
|
|
edit:'xbzEdit',
|
|
default: 'xbzEdit'
|
|
},
|
|
},
|
|
|
|
{ field: 'kgrq', title: '开工日期', width: 120, editRender: {
|
|
name: '$input',
|
|
props: {type: 'date', labelFormat: "yyyy/MM/dd", valueFormat: "yyyy/MM/dd"},
|
|
formatter: this.formatDate,
|
|
events: {change: this.selectChange}
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ title: '操作', width: 70, slots: { default: 'operation' }, },
|
|
{ field: 'pdrq', title: '铺底日期', width: 120, editRender: {
|
|
name: '$input',
|
|
props: {type: 'date', labelFormat: "yyyy/MM/dd", valueFormat: "yyyy/MM/dd"},
|
|
formatter: this.formatDate,
|
|
events: {change: this.selectChange}
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'xsrq', title: '下水日期', width: 120, editRender: {
|
|
name: '$input',
|
|
props: {type: 'date', labelFormat: "yyyy/MM/dd", valueFormat: "yyyy/MM/dd"},
|
|
formatter: this.formatDate,
|
|
events: {change: this.selectChange},
|
|
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'shrq', title: '试航日期', width: 120, editRender: {
|
|
name: '$input',
|
|
|
|
props: {type: 'date', labelFormat: "yyyy/MM/dd", valueFormat: "yyyy/MM/dd"},
|
|
formatter: this.formatDate,
|
|
events: {change: this.selectChange}
|
|
},
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'drbz', title: '导入标准', width: 120, editRender: { name: 'input' },
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
filterRender: { name: 'FilterCombination', },
|
|
},
|
|
{ field: 'cwfzbs', title: '财务封账标识', width: 120, editRender: { },
|
|
slots:{
|
|
//
|
|
edit:'cwfzbsEdit',
|
|
default: 'cwfzbsEdit'
|
|
},
|
|
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: 'bzr', 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', },
|
|
},
|
|
|
|
]
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters(['name', 'bmbm'])
|
|
},
|
|
created() {
|
|
window.addEventListener('resize', this.getHeight)
|
|
this.getHeight()
|
|
this.initBase()
|
|
|
|
|
|
},
|
|
methods: {
|
|
|
|
|
|
cellClickEvent({row}) {
|
|
this.request.cbbm = row.cbbm
|
|
this.$refs.xDown4.hidePanel()
|
|
},
|
|
focusEvent4() {
|
|
this.$refs.xDown4.showPanel()
|
|
},
|
|
keyupEvent4() {
|
|
|
|
|
|
if (this.request.cbbm) {
|
|
this.projectData = this.projectData1.filter(row => row.cbbm.indexOf(this.request.cbbm.toUpperCase()) > -1)
|
|
} else {
|
|
this.projectData = this.projectData1.slice(0)
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
initBase(){
|
|
getCzplBase({}).then(res=>{
|
|
this.dictData = res.data
|
|
|
|
this.projectData=res.data.cbbm
|
|
this.projectData1=res.data.cbbm
|
|
const xGrid = this.$refs.xGrid
|
|
|
|
const sczbh = xGrid.getColumnByField('sczbh')
|
|
sczbh.editRender.options = res.data.cbbm
|
|
|
|
})
|
|
},
|
|
initList() {
|
|
getList(this.request).then((res) => {
|
|
this.list = res.data
|
|
console.log(this.list)
|
|
if (this.$refs.xGrid) {
|
|
this.$refs.xGrid.loadData(this.list)
|
|
}
|
|
|
|
})
|
|
},
|
|
formatDate ({ cellValue }) {
|
|
console.log("111")
|
|
return XEUtils.toDateString(cellValue, 'yyyy/MM/dd')
|
|
},
|
|
|
|
checkBoxClick(row,column){
|
|
// console.log(row)
|
|
// this.$refs.xGrid.clearActived()
|
|
console.log('1')
|
|
this.$refs.xGrid.setActiveCell(row,column)
|
|
},
|
|
|
|
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
|
|
},
|
|
toolbarButtonClickEvent(code) {
|
|
const {
|
|
insertRecords,
|
|
removeRecords,
|
|
updateRecords
|
|
} = this.$refs.xGrid.getRecordset()
|
|
switch (code) {
|
|
case 'insert':
|
|
|
|
this.$refs.xGrid.insertAt({
|
|
|
|
}, -1).then(({ row }) => {
|
|
this.$refs.xGrid.setActiveRow(row)
|
|
})
|
|
break
|
|
case 'delete':
|
|
this.$confirm('删除, 是否继续?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then((type) => {
|
|
this.$refs.xGrid.removeCheckboxRow()
|
|
})
|
|
break
|
|
case 'save':
|
|
if (removeRecords.length !== 0) {
|
|
del(removeRecords).then((response) => {
|
|
if (response.success) {
|
|
for (let i = 0; i < this.list.length; i++) {
|
|
if (removeRecords.indexOf(this.list[i]) !== -1) {
|
|
this.list.splice(i, 1)
|
|
i--
|
|
}
|
|
}
|
|
this.$message({ message: '保存成功!', type: 'success' })
|
|
const xTable = this.$refs.xGrid
|
|
xTable.loadData(this.initList())
|
|
|
|
}
|
|
})
|
|
}
|
|
|
|
|
|
|
|
if (updateRecords.length !== 0) {
|
|
console.log(updateRecords)
|
|
edit(updateRecords).then((response) => {
|
|
if (response.success) {
|
|
const xTable = this.$refs.xGrid
|
|
xTable.loadData(this.initList())
|
|
this.$message({message: '保存成功!', type: 'success'})
|
|
}
|
|
})
|
|
}
|
|
if (insertRecords.length !== 0) {
|
|
|
|
for(let i =0;i<insertRecords.length;i++){
|
|
console.log(insertRecords[i])
|
|
// let rows =this.$refs.xGrid.getRowSeq(insertRecords[i])
|
|
if(insertRecords[i].sczbh==null||insertRecords[i].sczbh===''){
|
|
this.$message({ message: '新增数据目标船只不能为空', type: 'error' })
|
|
return
|
|
}
|
|
|
|
}
|
|
add(insertRecords).then((response) => {
|
|
if (response.success) {
|
|
this.list = this.list.concat(insertRecords)
|
|
const xTable = this.$refs.xGrid
|
|
xTable.loadData(this.initList())
|
|
this.$message({ message: '保存成功!', type: 'success' })
|
|
}
|
|
})
|
|
}
|
|
this.$message(
|
|
`新增 ${insertRecords.length} 条,删除 ${removeRecords.length} 条,更新 ${updateRecords.length} 条`
|
|
)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</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>
|