元
This commit is contained in:
parent
98c4c774a2
commit
bc9927a1d8
@ -6,7 +6,7 @@
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="100px"
|
||||
label-width="110px"
|
||||
>
|
||||
<el-form-item
|
||||
label="护理站名称"
|
||||
@ -68,7 +68,7 @@
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="耗材包价格" prop="consumablePrice">
|
||||
<el-form-item label="耗材包价格(元)" prop="consumablePrice">
|
||||
<el-input
|
||||
v-model="queryParams.consumablePrice"
|
||||
placeholder="请输入耗材包价格"
|
||||
@ -181,7 +181,7 @@
|
||||
prop="consumableUnit"
|
||||
/>
|
||||
<el-table-column
|
||||
label="耗材包价格"
|
||||
label="耗材包价格(元)"
|
||||
align="center"
|
||||
prop="consumablePrice"
|
||||
/>
|
||||
@ -261,7 +261,7 @@
|
||||
maxlength="10"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="耗材包价格" prop=" ">
|
||||
<el-form-item label="耗材包价格(元)" prop=" ">
|
||||
<el-input
|
||||
v-model="form.consumablePrice"
|
||||
placeholder="请输入耗材包价格"
|
||||
@ -285,7 +285,7 @@
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
|
||||
<!-- 添加护理站耗材信息对话框 -->
|
||||
<el-dialog
|
||||
:title="title"
|
||||
@ -297,7 +297,7 @@
|
||||
ref="form"
|
||||
:model="form"
|
||||
:rules="rules"
|
||||
label-width="100px"
|
||||
label-width="120px"
|
||||
:inline="true"
|
||||
>
|
||||
<div
|
||||
@ -359,7 +359,7 @@
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
label="耗材包价格"
|
||||
label="耗材包价格(元)"
|
||||
:rules="rules.nurseStationConsumables.consumablePrice"
|
||||
:prop="`nurseStationConsumables.${index}.consumablePrice`"
|
||||
>
|
||||
@ -524,7 +524,7 @@
|
||||
:inline="true"
|
||||
label-width="90px"
|
||||
>
|
||||
|
||||
|
||||
<el-form-item label="护理站编码" prop="nurseStationCode">
|
||||
<el-input
|
||||
style="width: 180px"
|
||||
@ -593,8 +593,8 @@
|
||||
prop="nurseStationName"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
|
||||
<el-table-column label="联系电话" align="center" prop="phone" />
|
||||
<el-table-column
|
||||
label="护理站地址"
|
||||
@ -602,7 +602,7 @@
|
||||
prop="address"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
|
||||
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
|
||||
@ -50,22 +50,7 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="护理类型" prop="nurseTypeId" label-width="90px">
|
||||
<el-select
|
||||
v-model="queryParams.nurseTypeId"
|
||||
clearable
|
||||
placeholder="请选择护理类型"
|
||||
v-loadmore="loadMore"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in typelist"
|
||||
:key="item.id"
|
||||
:label="item.nurseTypeName"
|
||||
:value="item.id"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="护理项目编号" prop="nurseItemCode">
|
||||
<el-input
|
||||
v-model="queryParams.nurseItemCode"
|
||||
@ -164,7 +149,7 @@
|
||||
{{ item.serveDurationUnit }}
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="价格" style="margin-left: 30px">
|
||||
<el-form-item label="价格(元)" style="margin-left: 30px">
|
||||
<div
|
||||
v-for="(item, index) in props.row.nurseStationItemPrices"
|
||||
:key="index"
|
||||
@ -355,7 +340,7 @@
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
v-model="scope.row.price"
|
||||
placeholder="小数点后两位"
|
||||
placeholder="小数点后两位(元)"
|
||||
type="number"
|
||||
oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+3)} if(value.length>6){value=value.slice(0,6)}"
|
||||
></el-input>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user