This commit is contained in:
zoujiandong
2026-09-08 14:07:44 +08:00
parent 7d6267e7e3
commit 6623001b5b
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -52,12 +52,12 @@
<a-row :gutter="24" >
<a-col :span="12">
<a-form-item field="avatar" label="药店编码:">
<span>{{modalForm.product_pharmacy_code}} </span>
<span>{{modalForm.pharmacy_code}} </span>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="第三方药房编码:">
<span>{{modalForm.pharmacy_code || '-'}}</span>
<a-form-item label="第三方药房药品编码:">
<span>{{modalForm.product_pharmacy_code || '-'}}</span>
</a-form-item>
</a-col>
</a-row>
+4 -4
View File
@@ -5,11 +5,11 @@
<a-form-item field="product_name" label="药品名称">
<a-input :style="{ width: '182px' }" v-model="queryForm.product_name" placeholder="请输入药品名称或通用名" @press-enter="handleQuery" />
</a-form-item>
<a-form-item field="product_pharmacy_code" label="药店编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.product_pharmacy_code" placeholder="请输入药品编码" @press-enter="handleQuery" />
<a-form-item field="pharmacy_code" label="药店编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.pharmacy_code" placeholder="请输入药品编码" @press-enter="handleQuery" />
</a-form-item>
<a-form-item field="pharmacy_code" label="第三方药房编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.pharmacy_code" placeholder="请输入第三方药房编码" @press-enter="handleQuery" />
<a-form-item field="product_pharmacy_code" label="第三方药房编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.product_pharmacy_code" placeholder="请输入第三方药房编码" @press-enter="handleQuery" />
</a-form-item>
<a-form-item field="manufacturer" label="生产企业">
<a-input :style="{ width: '182px' }" v-model="queryForm.manufacturer" placeholder="请输入生产企业" @press-enter="handleQuery" />
+3 -3
View File
@@ -12,8 +12,8 @@
<a-input :style="{ width: '182px' }" v-model="queryForm.mnemonic_code" placeholder="请输入药品助记码" @press-enter="handleQuery" />
</a-form-item>
<a-form-item field="product_pharmacy_code" label="药店编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.product_pharmacy_code" placeholder="请输入药品编码" @press-enter="handleQuery" />
<a-form-item field="pharmacy_code" label="药店编码">
<a-input :style="{ width: '182px' }" v-model="queryForm.pharmacy_code" placeholder="请输入药品编码" @press-enter="handleQuery" />
</a-form-item>
<a-form-item field="pharmacy_id" label="所属药房">
<a-select v-model="queryForm.pharmacy_id" placeholder="请选择所属药房" allow-clear allow-search :style="{ width: '182px' }">
@@ -199,7 +199,7 @@
{ title: '单价(元)', dataIndex: 'product_price', slotName: 'product_price',width: 150 },
{ title: '批准文号', dataIndex: 'license_number',width:200 },
{ title: '生产厂家', dataIndex: 'manufacturer',width:200 },
{ title: '药店编码', dataIndex: 'product_pharmacy_code',width:100 },
{ title: '药店编码', dataIndex: 'pharmacy_code',width:100 },
{ title: '库存', dataIndex: 'stock',width:100 },
{ title: '购买上限', dataIndex: 'prescription_num',width:100 },
{ title: '状态', dataIndex: 'product_status',slotName:'product_status',width:100 },