|
@@ -42,7 +42,7 @@
|
|
|
id="productPricingEdit-afterCityPrice"
|
|
|
v-model="form.afterCityPrice"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="form.afterProvincePrice||0.01"
|
|
|
:max="999999"
|
|
|
placeholder="请输入市级价"
|
|
|
ref="afterCityPrice"
|
|
@@ -54,7 +54,7 @@
|
|
|
id="productPricingEdit-afterSpecialPrice"
|
|
|
v-model="form.afterSpecialPrice"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="form.afterCityPrice||0.01"
|
|
|
:max="999999"
|
|
|
placeholder="请输入特约价"
|
|
|
ref="afterSpecialPrice"
|
|
@@ -66,7 +66,7 @@
|
|
|
id="productPricingEdit-afterTerminalPrice"
|
|
|
v-model="form.afterTerminalPrice"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="form.afterSpecialPrice||0.01"
|
|
|
:max="999999"
|
|
|
placeholder="请输入终端价"
|
|
|
ref="afterTerminalPrice"
|
|
@@ -78,7 +78,7 @@
|
|
|
id="productPricingEdit-afterCarOwnersPrice"
|
|
|
v-model="form.afterCarOwnersPrice"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="form.afterTerminalPrice||0.01"
|
|
|
:max="999999"
|
|
|
placeholder="请输入车主价"
|
|
|
ref="afterCarOwnersPrice"
|