|
|
|
@ -469,11 +469,50 @@ |
|
|
|
<el-input v-model="costImpactData.remark" :disabled="showModalFlag||changeCostImpactFlag('remark') === 'N'" style="width: 611px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-form :inline="true" label-position="top" style="margin-top: 10px;"> |
|
|
|
<el-form-item label=" "> |
|
|
|
<el-button type="primary" :disabled="showModalFlag" @click="chooseManuFacturingCostModal" style="width: 95px">制造成本变更</el-button> |
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
<div> |
|
|
|
<h3 class="large-bold-text">制造成本变更</h3> |
|
|
|
</div> |
|
|
|
<el-form ref="dataForm" label-position="right"> |
|
|
|
<el-row style="padding-top: 10px;height: 150px" :style="{borderTop:'1px solid #ccc'}"> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-form-item label="制造成本是否变更"> |
|
|
|
<el-checkbox v-model="modalData.manuFacturingFlag" true-label="Y"></el-checkbox> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="16"> |
|
|
|
<el-form-item label="If yes,Please write down the detail in information"></el-form-item> |
|
|
|
<el-checkbox-group v-model="selectedOptions1" @change="selectedOptions1Change"> |
|
|
|
<el-checkbox label="工艺变更费用">工艺变更费用</el-checkbox> |
|
|
|
<el-checkbox label="材料变更费用">材料变更费用</el-checkbox> |
|
|
|
<el-checkbox label="模具变更费用">模具变更费用</el-checkbox> |
|
|
|
<el-checkbox label="其他">其他</el-checkbox> |
|
|
|
</el-checkbox-group> |
|
|
|
<el-form-item label="备注/remark"> |
|
|
|
<el-input type="textarea" v-model="modalData.manuFacturingCostRemark1" :rows="3" resize='none'></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row style="padding-top: 10px;height: 150px" :style="{borderTop:'1px solid #ccc'}"> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-form-item label="是否需要重新报价"> |
|
|
|
<el-checkbox v-model="modalData.quotationFlag" true-label="Y"></el-checkbox> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="If yes,Please write down the detail in information"></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="16"> |
|
|
|
<el-form-item label="备注/remark"> |
|
|
|
<el-input type="textarea" v-model="modalData.manuFacturingCostRemark2" :rows="3" resize='none'></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<!-- <el-form :inline="true" label-position="top" style="margin-top: 10px;">--> |
|
|
|
<!-- <el-form-item label=" ">--> |
|
|
|
<!-- <el-button type="primary" :disabled="showModalFlag" @click="chooseManuFacturingCostModal" style="width: 95px">制造成本变更</el-button>--> |
|
|
|
<!-- </el-form-item>--> |
|
|
|
<!-- </el-form>--> |
|
|
|
</div> |
|
|
|
</el-tab-pane > |
|
|
|
|
|
|
|
@ -4184,9 +4223,12 @@ |
|
|
|
requestDetailSearch(this.modalData).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.chooseDataList = data.rows |
|
|
|
|
|
|
|
this.$set(this.modalData,'manuFacturingFlag',data.rows[0].manuFacturingFlag) |
|
|
|
this.selectedOptions1 = data.rows[0].manuFacturingType.split(';') |
|
|
|
this.$set(this.modalData,'manuFacturingType',data.rows[0].manuFacturingType) |
|
|
|
// 回显多选框 |
|
|
|
if (data.rows[0].manuFacturingType != null) { |
|
|
|
this.selectedOptions1 = data.rows[0].manuFacturingType.split(';') |
|
|
|
} |
|
|
|
this.$set(this.modalData,'manuFacturingCostRemark1',data.rows[0].manuFacturingCostRemark1) |
|
|
|
this.$set(this.modalData,'quotationFlag',data.rows[0].quotationFlag) |
|
|
|
this.$set(this.modalData,'manuFacturingCostRemark2',data.rows[0].manuFacturingCostRemark2) |
|
|
|
|