作者 张晓杰

产品类型

... ... @@ -11,7 +11,7 @@
</a-col>
<a-col :span="24">
<a-form-model-item label="产品类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="productType">
<a-select size="small" v-model="model.productType" placeholder="请选择设计人员" allowClear disabled>
<a-select size="small" v-model="model.productType" placeholder="请选择产品类型" allowClear disabled>
<a-select-option v-for="(item,index) in productTypeOptions" :key="index" :value="item.productTypeId" >{{ item.productTypeName }}</a-select-option>
</a-select>
</a-form-model-item>
... ...
... ... @@ -102,9 +102,10 @@
querygx(){
// var that = this;
const params = {
orderNumber:this.model.orderId,
productType:this.model.productTypeId
orderId:this.model.orderId,
productType:this.model.productType
}
console.log(params)
querygx(this.url.querygx,params).then((res)=>{
if(res.success){
console.log('res',res)
... ...