|
|
@@ -44,6 +44,15 @@
|
|
|
<el-table-column label="年费" width="80">
|
|
|
<template slot-scope="{ row }">{{ formatPrice(row.priceYearly) }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="原价月费" width="90">
|
|
|
+ <template slot-scope="{ row }">{{ formatPrice(row.originalPriceMonthly) }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="原价季费" width="90">
|
|
|
+ <template slot-scope="{ row }">{{ formatPrice(row.originalPriceQuarterly) }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="原价年费" width="90">
|
|
|
+ <template slot-scope="{ row }">{{ formatPrice(row.originalPriceYearly) }}</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="孩子上限" width="90" align="center">
|
|
|
<template slot-scope="{ row }">{{ row.maxChildren || '—' }}</template>
|
|
|
</el-table-column>
|
|
|
@@ -255,6 +264,16 @@
|
|
|
<el-form-item label="年费(元)">
|
|
|
<el-input-number v-model="editForm.priceYearly" :min="0" :step="100" :precision="0" style="width:160px;" />
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="月原价(元)">
|
|
|
+ <el-input-number v-model="editForm.originalPriceMonthly" :min="0" :step="100" :precision="0" style="width:160px;" />
|
|
|
+ <span style="color:#999;margin-left:8px;font-size:12px;">留空/0 表示无折扣</span>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="季原价(元)">
|
|
|
+ <el-input-number v-model="editForm.originalPriceQuarterly" :min="0" :step="100" :precision="0" style="width:160px;" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="年原价(元)">
|
|
|
+ <el-input-number v-model="editForm.originalPriceYearly" :min="0" :step="100" :precision="0" style="width:160px;" />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="孩子上限">
|
|
|
<el-input-number v-model="editForm.maxChildren" :min="0" :max="99" :step="1" style="width:160px;" />
|
|
|
</el-form-item>
|