<template>
|
<a-spin :spinning="confirmLoading">
|
<j-form-container :disabled="formDisabled">
|
<!-- 主表单区域 -->
|
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
|
<a-row>
|
<a-col :span="24" >
|
<a-form-model-item label="入库单状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="orderStatus">
|
<j-dict-select-tag type="list" v-model="model.orderStatus" dictCode="" placeholder="请选择入库单状态" />
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="入库人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="receiver">
|
<a-input v-model="model.receiver" placeholder="请输入入库人" ></a-input>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="receiveTime">
|
<j-date placeholder="请选择入库时间" v-model="model.receiveTime" style="width: 100%" />
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="入库说明" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="receiveComment">
|
<a-textarea v-model="model.receiveComment" rows="4" placeholder="请输入入库说明" />
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="确认人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="confirmer">
|
<a-input v-model="model.confirmer" placeholder="请输入确认人" ></a-input>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="确认时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="confirmTime">
|
<j-date placeholder="请选择确认时间" v-model="model.confirmTime" style="width: 100%" />
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="24" >
|
<a-form-model-item label="确认意见" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="confirmComment">
|
<a-input v-model="model.confirmComment" placeholder="请输入确认意见" ></a-input>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
</a-form-model>
|
</j-form-container>
|
<!-- 子表单区域 -->
|
<a-tabs v-model="activeKey" @change="handleChangeTabs">
|
<a-tab-pane tab="工装入库明细" :key="refKeys[0]" :forceRender="true">
|
<j-vxe-table
|
keep-source
|
:ref="refKeys[0]"
|
:loading="tmsToolInboundDetailTable.loading"
|
:columns="tmsToolInboundDetailTable.columns"
|
:dataSource="tmsToolInboundDetailTable.dataSource"
|
:maxHeight="300"
|
:disabled="formDisabled"
|
:rowNumber="true"
|
:rowSelection="true"
|
:toolbar="true"
|
/>
|
</a-tab-pane>
|
</a-tabs>
|
</a-spin>
|
</template>
|
|
<script>
|
|
import { getAction } from '@/api/manage'
|
import { JVxeTableModelMixin } from '@/mixins/JVxeTableModelMixin.js'
|
import { JVXETypes } from '@/components/jeecg/JVxeTable'
|
import { getRefPromise,VALIDATE_FAILED} from '@/components/jeecg/JVxeTable/utils/vxeUtils.js'
|
import { validateDuplicateValue } from '@/utils/util'
|
import JFormContainer from '@/components/jeecg/JFormContainer'
|
|
export default {
|
name: 'TmsToolInboundForm',
|
mixins: [JVxeTableModelMixin],
|
components: {
|
JFormContainer,
|
},
|
data() {
|
return {
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 },
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 16 },
|
},
|
model:{
|
},
|
// 新增时子表默认添加几行空数据
|
addDefaultRowNum: 1,
|
validatorRules: {
|
},
|
refKeys: ['tmsToolInboundDetail', ],
|
tableKeys:['tmsToolInboundDetail', ],
|
activeKey: 'tmsToolInboundDetail',
|
// 工装入库明细
|
tmsToolInboundDetailTable: {
|
loading: false,
|
dataSource: [],
|
columns: [
|
{
|
title: '入库单',
|
key: 'orderId',
|
type: JVXETypes.input,
|
width:"200px",
|
placeholder: '请输入${title}',
|
defaultValue:'',
|
},
|
{
|
title: '工装ID',
|
key: 'toolId',
|
type: JVXETypes.input,
|
width:"200px",
|
placeholder: '请输入${title}',
|
defaultValue:'',
|
},
|
{
|
title: '入库数量',
|
key: 'receiveNumber',
|
type: JVXETypes.input,
|
width:"200px",
|
placeholder: '请输入${title}',
|
defaultValue:'',
|
},
|
]
|
},
|
url: {
|
add: "/tms/tmsToolInbound/add",
|
edit: "/tms/tmsToolInbound/edit",
|
queryById: "/tms/tmsToolInbound/queryById",
|
tmsToolInboundDetail: {
|
list: '/tms/tmsToolInbound/queryTmsToolInboundDetailByMainId'
|
},
|
}
|
}
|
},
|
props: {
|
//表单禁用
|
disabled: {
|
type: Boolean,
|
default: false,
|
required: false
|
}
|
},
|
computed: {
|
formDisabled(){
|
return this.disabled
|
},
|
},
|
created () {
|
},
|
methods: {
|
addBefore(){
|
this.tmsToolInboundDetailTable.dataSource=[]
|
},
|
getAllTable() {
|
let values = this.tableKeys.map(key => getRefPromise(this, key))
|
return Promise.all(values)
|
},
|
/** 调用完edit()方法之后会自动调用此方法 */
|
editAfter() {
|
this.$nextTick(() => {
|
})
|
// 加载子表数据
|
if (this.model.id) {
|
let params = { id: this.model.id }
|
this.requestSubTableData(this.url.tmsToolInboundDetail.list, params, this.tmsToolInboundDetailTable)
|
}
|
},
|
//校验所有一对一子表表单
|
validateSubForm(allValues){
|
return new Promise((resolve,reject)=>{
|
Promise.all([
|
]).then(() => {
|
resolve(allValues)
|
}).catch(e => {
|
if (e.error === VALIDATE_FAILED) {
|
// 如果有未通过表单验证的子表,就自动跳转到它所在的tab
|
this.activeKey = e.index == null ? this.activeKey : this.refKeys[e.index]
|
} else {
|
console.error(e)
|
}
|
})
|
})
|
},
|
/** 整理成formData */
|
classifyIntoFormData(allValues) {
|
let main = Object.assign(this.model, allValues.formValue)
|
return {
|
...main, // 展开
|
tmsToolInboundDetailList: allValues.tablesValue[0].tableData,
|
}
|
},
|
validateError(msg){
|
this.$message.error(msg)
|
},
|
|
}
|
}
|
</script>
|
|
<style scoped>
|
</style>
|