This commit is contained in:
ChenQiuYu 2025-05-06 16:45:32 +08:00
parent 42a123e58b
commit 36619d5bce
1 changed files with 13 additions and 4 deletions

View File

@ -9,7 +9,7 @@
<el-popover <el-popover
placement="top-start" placement="top-start"
trigger="hover" trigger="hover"
width="400" width="500"
@show="getHilistInfo(item)" @show="getHilistInfo(item)"
@hide="colosInfo" @hide="colosInfo"
@ -20,12 +20,21 @@
<div class="detail"> <div class="detail">
<div style="display: flex;justify-content: space-between"> <div style="display: flex;justify-content: space-between">
<div style="font-size: 18px;font-weight: 500;color: #000">{{ hilistInfo.name }}</div> <div style="font-size: 18px;font-weight: 500;color: #000">{{ hilistInfo.name }}[{{ hilistInfo.json?.category||'-' }}]</div>
<div>{{ item.selectedPrice }}/{{ item.selectedUnit }}</div> <div>{{ item.selectedPrice }}/{{ item.selectedUnit }}</div>
</div> </div>
<div> <div style="display: flex;justify-content: space-between">
<div>规格:{{hilistInfo.json?.dosage_specifications||'-'}}</div> <div>规格:{{hilistInfo.json?.dosage_specifications||'-'}}</div>
<div>生产厂商:{{hilistInfo.json?.producer||'-'}}</div>
<div>限价:{{hilistInfo.json?.stock||'0'}}</div>
</div>
<div style="display: flex;justify-content: space-between">
<div>批准文号:{{hilistInfo.json?.approval_number||'-'}}</div>
<div>本位码:{{hilistInfo.json?.standard_code ||'-'}}</div>
</div>
<div style="display: flex;justify-content: space-between">
<div>限价:{{ hilistInfo.hilistPricUplmtAmt ? hilistInfo.hilistPricUplmtAmt : '无' }}</div>
<div>限价类型:{{ hilistInfo.hilistLmtpricType ? hilistInfo.hilistLmtpricType : '无' }}</div>
</div> </div>
</div> </div>
</el-popover> </el-popover>