Merge branch 'dev'
This commit is contained in:
commit
e465d7337a
@ -13,8 +13,8 @@
|
||||
<a-select :style="{width:'300px'}" allow-search placeholder="请选择药品名称" v-model="modalForm.product_name"
|
||||
:loading="loading" @change="changeMedince" @search="handList" :disabled="modalSatus=='edit'">
|
||||
<a-option size="large" style="max-width:400px" v-for="item in medinceList" :key="item.product_platform_id"
|
||||
:value="item.product_platform_id" :label="item.product_name">
|
||||
{{item.product_name }}
|
||||
:value="item.product_platform_id" :label="item.product_name+'('+item.product_platform_code+')'">
|
||||
{{item.product_name+'('+item.product_platform_code+')' }}
|
||||
</a-option>
|
||||
</a-select>
|
||||
|
||||
@ -129,7 +129,7 @@
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="product_type" label="药品类型:">
|
||||
<a-select :style="{width:'200px'}" v-model="modalForm.product_type" placeholder="请选择药品类型">
|
||||
<a-select disabled :style="{width:'200px'}" v-model="modalForm.product_type" placeholder="请选择药品类型">
|
||||
<a-option :value="0">未知</a-option>
|
||||
<a-option :value="1" >中成药</a-option>
|
||||
<a-option :value="2">西药</a-option>
|
||||
@ -145,7 +145,7 @@
|
||||
<a-row :gutter="24" style="margin-top: 35px;">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="common_name" label="药品通用名称:">
|
||||
<a-input :disabled="modalSatus=='edit'" :style="{ width: '200px' }" v-model="modalForm.common_name" placeholder="请输入药品通用名称" />
|
||||
<a-input disabled :style="{ width: '200px' }" v-model="modalForm.common_name" placeholder="请输入药品通用名称" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@ -157,7 +157,7 @@
|
||||
<a-row :gutter="24" style="margin-top: 35px;">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="product_price" label="药品价格(元):">
|
||||
<a-input-number :style="{ width: '200px' }" v-model="modalForm.product_price" :min="0" placeholder="请输入药品价格" />
|
||||
<a-input-number disabled :style="{ width: '200px' }" v-model="modalForm.product_price" :min="0" placeholder="请输入药品价格" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@ -169,7 +169,7 @@
|
||||
<a-row :gutter="24" style="margin-top: 35px;">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="license_number" label="批准文号:">
|
||||
<a-input :disabled="modalSatus=='edit'" :style="{ width: '200px' }" v-model="modalForm.license_number" placeholder="请输入批准文号" />
|
||||
<a-input disabled :style="{ width: '200px' }" v-model="modalForm.license_number" placeholder="请输入批准文号" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@ -181,7 +181,7 @@
|
||||
<a-row :gutter="24" style="margin-top: 35px;">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="product_platform_code" label="处方平台编码:">
|
||||
<a-input :disabled="modalSatus=='edit'" :style="{ width: '200px' }" v-model="modalForm.product_platform_code" placeholder="请输入处方平台编码" />
|
||||
<a-input disabled :style="{ width: '200px' }" v-model="modalForm.product_platform_code" placeholder="请输入处方平台编码" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user