|
|
@@ -243,7 +243,7 @@
|
|
|
type="number"
|
|
|
step="0.01"
|
|
|
style="width: 150px"
|
|
|
- placeholder="请输入"
|
|
|
+ :placeholder="domain.placeholderRatio || '请输入'"
|
|
|
>
|
|
|
<template #append>倍</template>
|
|
|
</el-input>
|
|
|
@@ -259,7 +259,7 @@
|
|
|
type="number"
|
|
|
step="0.01"
|
|
|
style="width: 150px"
|
|
|
- placeholder="请输入"
|
|
|
+ :placeholder="domain.placeholderDosage || '请输入'"
|
|
|
>
|
|
|
<template #append>{{ domain.unit }}</template>
|
|
|
</el-input>
|
|
|
@@ -723,6 +723,12 @@ const getDetail = async () => {
|
|
|
};
|
|
|
dynamicValidateForm.executeStyle = data?.prescription?.pesticideFertilizerList[0]?.executeStyle;
|
|
|
servicePricePerMu.value = detailData.value.serviceMuPrice || null;
|
|
|
+ if (isDoingComplete.value) {
|
|
|
+ data?.prescription?.pesticideFertilizerList.forEach(item => {
|
|
|
+ item.placeholderRatio = item.ratio || '';
|
|
|
+ item.placeholderDosage = item.dosage || '';
|
|
|
+ });
|
|
|
+ }
|
|
|
const pesticideFertilizerCodes = data?.prescription?.pesticideFertilizerList.map(item => item.code);
|
|
|
getPriceList(data.schemeId, pesticideFertilizerCodes);
|
|
|
|