|
|
@ -704,6 +704,9 @@ export default { |
|
|
this.saveQuote.customerInquiryNo = row.customerQuoteNo |
|
|
this.saveQuote.customerInquiryNo = row.customerQuoteNo |
|
|
|
|
|
|
|
|
this.insideInquiryVisible = false |
|
|
this.insideInquiryVisible = false |
|
|
|
|
|
}, |
|
|
|
|
|
handleInquiryBlur(){ |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
created() { |
|
|
created() { |
|
|
@ -778,20 +781,20 @@ export default { |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item label="内部询价单号" prop="insideInquiryNo" :show-message="false"> |
|
|
<el-form-item label="内部询价单号" prop="insideInquiryNo" :show-message="false"> |
|
|
<span slot="label"> |
|
|
|
|
|
|
|
|
<span slot="label" v-if="saveQuote.id <= 0"> |
|
|
<a @click="insideInquiryVisible = true">内部询价单号</a> |
|
|
<a @click="insideInquiryVisible = true">内部询价单号</a> |
|
|
</span> |
|
|
</span> |
|
|
<el-input v-model="saveQuote.insideInquiryNo"></el-input> |
|
|
|
|
|
|
|
|
<el-input v-model="saveQuote.insideInquiryNo" @blur="handleInquiryBlur" :disabled="saveQuote.id > 0"></el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
<el-row :gutter="10"> |
|
|
<el-row :gutter="10"> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item label="客户编码" prop="customerNo" :show-message="false"> |
|
|
<el-form-item label="客户编码" prop="customerNo" :show-message="false"> |
|
|
<span slot="label"> |
|
|
|
|
|
|
|
|
<span slot="label" v-if="saveQuote.id <= 0"> |
|
|
<a @click="customerVisible = true">客户编码</a> |
|
|
<a @click="customerVisible = true">客户编码</a> |
|
|
</span> |
|
|
</span> |
|
|
<el-input v-model="saveQuote.customerNo" @blur="customerNoBlur"></el-input> |
|
|
|
|
|
|
|
|
<el-input v-model="saveQuote.customerNo" :disabled="saveQuote.id > 0" @blur="customerNoBlur"></el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="16"> |
|
|
<el-col :span="16"> |
|
|
@ -801,10 +804,10 @@ export default { |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item label="项目编码" prop="projectNo" :show-message="false"> |
|
|
<el-form-item label="项目编码" prop="projectNo" :show-message="false"> |
|
|
<span slot="label" v-if="saveQuote.customerNo && saveQuote.customerDesc"> |
|
|
|
|
|
|
|
|
<span slot="label" v-if="saveQuote.customerNo && saveQuote.customerDesc && saveQuote.id <= 0"> |
|
|
<a @click="projectVisible = true" >项目编码</a> |
|
|
<a @click="projectVisible = true" >项目编码</a> |
|
|
</span> |
|
|
</span> |
|
|
<el-input v-model="saveQuote.projectNo" @blur="projectNoBlur"></el-input> |
|
|
|
|
|
|
|
|
<el-input v-model="saveQuote.projectNo" :disabled="saveQuote.id > 0" @blur="projectNoBlur"></el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="16"> |
|
|
<el-col :span="16"> |
|
|
|