|
@@ -357,6 +357,7 @@
|
|
|
{ validator: validateMonth, trigger: 'blur' },
|
|
|
]"
|
|
|
:label-width="formLabelWidth"
|
|
|
+ :placeholder="monthRule"
|
|
|
>
|
|
|
<el-input
|
|
|
v-model="form.groupPurchaseMonthFee"
|
|
@@ -384,6 +385,7 @@
|
|
|
v-model="form.currentMonthFee"
|
|
|
:disabled="addDisabled"
|
|
|
class="feeInput"
|
|
|
+ :placeholder="monthRule"
|
|
|
>
|
|
|
<template slot="append">元/月</template>
|
|
|
</el-input>
|
|
@@ -444,11 +446,13 @@
|
|
|
{ validator: validateQuarterly, trigger: 'blur' },
|
|
|
]"
|
|
|
:label-width="formLabelWidth"
|
|
|
+
|
|
|
>
|
|
|
<el-input
|
|
|
v-model="form.currentQuarterlyFee"
|
|
|
:disabled="addDisabled"
|
|
|
class="feeInput"
|
|
|
+ :placeholder="quarterlyRule"
|
|
|
>
|
|
|
<template slot="append">元/季度</template>
|
|
|
</el-input>
|
|
@@ -514,6 +518,7 @@
|
|
|
v-model="form.currentHalfYearFee"
|
|
|
:disabled="addDisabled"
|
|
|
class="feeInput"
|
|
|
+ :placeholder="halfYearRule"
|
|
|
>
|
|
|
<template slot="append">元/半年</template>
|
|
|
</el-input>
|
|
@@ -579,6 +584,7 @@
|
|
|
v-model="form.currentYearFee"
|
|
|
:disabled="addDisabled"
|
|
|
class="feeInput"
|
|
|
+ :placeholder="yearRule"
|
|
|
>
|
|
|
<template slot="append">元/年</template>
|
|
|
</el-input>
|