|
|
|
@ -200,7 +200,7 @@ |
|
|
|
</el-pagination> |
|
|
|
|
|
|
|
<!-- 打样模态框 --> |
|
|
|
<el-dialog :title="modalData.title" @close="closeModalDiaLog" @open="openModalDialog" :close-on-click-modal="false" v-drag :visible.sync="modalFlag" top="10vh" width="1200px"> |
|
|
|
<el-dialog :title="modalData.title" @close="closeModalDiaLog" @open="openModalDialog" :close-on-click-modal="false" v-drag :visible.sync="modalFlag" top="5vh" width="1200px"> |
|
|
|
<el-form label-position="top" ref="modalForm" :model="modalData" :rules="rules"> |
|
|
|
<el-row :gutter="15"> |
|
|
|
<el-col :span="8"> |
|
|
|
@ -300,6 +300,13 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="15"> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="样品用途" class="auto" prop="sendSamplesUsage" :show-message="false"> |
|
|
|
<el-input v-model="modalData.sendSamplesUsage" :disabled="detailVisible" clearable></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="15"> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="样品寄送地址" class="auto"> |
|
|
|
@ -920,6 +927,7 @@ export default { |
|
|
|
this.modalData.consignee = '' |
|
|
|
this.modalData.consigneeContact = '' |
|
|
|
this.modalData.sendSamplesAddress = '' |
|
|
|
this.modalData.sendSamplesUsage = '' |
|
|
|
} |
|
|
|
}, |
|
|
|
'modalData.projectId'(newV, oldV) { |
|
|
|
@ -1121,13 +1129,15 @@ export default { |
|
|
|
isReject: '', |
|
|
|
nodeId: '', |
|
|
|
proofingAmount: undefined, |
|
|
|
sendSamplesUsage: '' |
|
|
|
}, |
|
|
|
proofingDetailData: { |
|
|
|
technicalConsiderations: '', |
|
|
|
isNeedToSendSamples: '', |
|
|
|
sendSamplesAddress: '', |
|
|
|
consignee: '', |
|
|
|
consigneeContact: '' |
|
|
|
consigneeContact: '', |
|
|
|
sendSamplesUsage: '' |
|
|
|
}, |
|
|
|
proofingResultData: { |
|
|
|
proofingResultStatus: '', |
|
|
|
@ -2055,6 +2065,13 @@ export default { |
|
|
|
message: '要求交付日期不能为空', |
|
|
|
trigger: ['change', 'blur'] |
|
|
|
} |
|
|
|
], |
|
|
|
sendSamplesUsage: [ |
|
|
|
{ |
|
|
|
required: true, |
|
|
|
message: '要求样品用途不能为空', |
|
|
|
trigger: ['change', 'blur'] |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
enterResultRules: { |
|
|
|
@ -2595,6 +2612,7 @@ export default { |
|
|
|
nodeId: row.nodeId, |
|
|
|
approvalUsername: row.approvalUsername, |
|
|
|
proofingAmount: row.proofingAmount, |
|
|
|
sendSamplesUsage: row.sendSamplesUsage |
|
|
|
} |
|
|
|
this.searchDelegateAccessByUser(); |
|
|
|
this.modalDisableFlag = true |
|
|
|
@ -2649,7 +2667,8 @@ export default { |
|
|
|
rejectFlag: row.rejectFlag, |
|
|
|
rejectStepId: row.rejectStepId, |
|
|
|
isReject: row.isReject, |
|
|
|
nodeId: row.nodeId |
|
|
|
nodeId: row.nodeId, |
|
|
|
sendSamplesUsage: row.sendSamplesUsage |
|
|
|
} |
|
|
|
this.searchDelegateAccessByUser(); |
|
|
|
this.modalDisableFlag = true |
|
|
|
@ -2726,7 +2745,6 @@ export default { |
|
|
|
* 客户信息新增/编辑 |
|
|
|
*/ |
|
|
|
saveData() { |
|
|
|
console.log(this.modalData) |
|
|
|
this.$refs.modalForm.validate((valid, obj) => { |
|
|
|
if (!valid) { |
|
|
|
let i = 1; |
|
|
|
@ -3563,7 +3581,8 @@ export default { |
|
|
|
proofingResultStatus: 'B', |
|
|
|
nextToDo: '', |
|
|
|
createBy: this.$store.state.user.name, |
|
|
|
nodeId: '' |
|
|
|
nodeId: '', |
|
|
|
sendSamplesUsage: '' |
|
|
|
}; |
|
|
|
this.selectionDelegateAccess = []; |
|
|
|
this.projectPartList = []; |
|
|
|
|