|
|
|
@ -203,7 +203,7 @@ |
|
|
|
v-model="modalData.priorityLevel" dict-type="priority_Level"></dict-data-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-if="modalData.flag !== '1'"> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="询价金额"> |
|
|
|
<el-input-number :step="0" :disabled="quotationInformationFlag('quotationAmount') === 'N' && modalData.flag === '2'" |
|
|
|
:controls="false" v-model="modalData.quotationAmount"></el-input-number> |
|
|
|
@ -277,11 +277,17 @@ |
|
|
|
clearable dict-type="delivery_terms" :use-default-value="modalData.flag === '1'"></dict-data-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="客户询价单号" prop="customerQuoteNo"> |
|
|
|
<el-input :disabled="quotationInformationFlag('customerQuoteNo') === 'N' && modalData.flag === '2'" v-model="modalData.customerQuoteNo"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="是否需要Sourcing"> |
|
|
|
<dict-data-select v-if="modalFlag" :disabled="quotationInformationFlag('sourcing') === 'N' && modalData.flag === '2'" |
|
|
|
v-model="modalData.sourcing" dict-type="sourcing"></dict-data-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="10" v-if="false"> |
|
|
|
<el-col :span="24"> |
|
|
|
@ -1194,6 +1200,7 @@ export default { |
|
|
|
quoteType: '', |
|
|
|
tracker: '', |
|
|
|
trackerName: '', |
|
|
|
sourcing:'', |
|
|
|
quoter: '', |
|
|
|
quoterName: '', |
|
|
|
customerQuoteNo: '', |
|
|
|
@ -2275,6 +2282,7 @@ export default { |
|
|
|
customerNo: '', |
|
|
|
customerDesc: '', |
|
|
|
deliveryTerms: '', |
|
|
|
sourcing:'', |
|
|
|
quoteType: '', |
|
|
|
projectId: '', |
|
|
|
projectName: '', |
|
|
|
@ -2332,6 +2340,7 @@ export default { |
|
|
|
tracker: row.tracker, |
|
|
|
trackerName: row.trackerName, |
|
|
|
quoter: row.quoter, |
|
|
|
sourcing:row.sourcing, |
|
|
|
quoterName: row.quoterName, |
|
|
|
customerQuoteNo: row.customerQuoteNo, |
|
|
|
quotationStatus: row.quotationStatus, |
|
|
|
@ -3356,7 +3365,7 @@ export default { |
|
|
|
} |
|
|
|
await getNodeAuthority(tempData).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.plmQuotationInformationArr = data.rows.plmQuotationInformation |
|
|
|
this.plmQuotationInformationArr = data.rows.plm_quotation_information |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|