更新:培训班湖分金额板块,改成一星~五星

This commit is contained in:
2025-10-23 14:59:40 +08:00
parent 17f904c360
commit 0ddb75b7a5
2 changed files with 31 additions and 4 deletions

BIN
dist.zip

Binary file not shown.

View File

@@ -91,10 +91,13 @@
<el-table-column label="svip价格" align="center" width="80"> <el-table-column label="svip价格" align="center" width="80">
<template slot-scope="scope">{{ scope.row.svipFee }}</template> <template slot-scope="scope">{{ scope.row.svipFee }}</template>
</el-table-column> </el-table-column>
<el-table-column label="湖粉价格" align="center" width="130"> <el-table-column label="湖粉价格" align="center" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
一星湖粉 {{ scope.row.oneHuFee }}<br/>
二星湖粉 {{ scope.row.twoHuFee }}<br/>
三星湖粉 {{ scope.row.threeHuFee }}<br/> 三星湖粉 {{ scope.row.threeHuFee }}<br/>
星湖粉 {{ scope.row.fiveHuFee }} 星湖粉 {{ scope.row.fourHuFee }}<br/>
五星及以上湖粉 {{ scope.row.fiveHuFee }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="App名称" align="center" width="90"> <el-table-column label="App名称" align="center" width="90">
@@ -224,12 +227,24 @@
<el-input v-model="addForm.svipFee" placeholder="请输入svip价格"></el-input> <el-input v-model="addForm.svipFee" placeholder="请输入svip价格"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="湖粉价格"> <el-form-item label="湖粉价格">
<div class="hufen_block">
<span>一星湖粉</span>
<el-input v-model="addForm.oneHuFee" placeholder="请输入湖粉价格(30湖分以上)"></el-input>
</div>
<div class="hufen_block">
<span>二星湖粉</span>
<el-input v-model="addForm.twoHuFee" placeholder="请输入湖粉价格(60湖分以上)"></el-input>
</div>
<div class="hufen_block"> <div class="hufen_block">
<span>三星湖粉</span> <span>三星湖粉</span>
<el-input v-model="addForm.threeHuFee" placeholder="请输入湖粉价格(90湖分以上)"></el-input> <el-input v-model="addForm.threeHuFee" placeholder="请输入湖粉价格(90湖分以上)"></el-input>
</div> </div>
<div class="hufen_block"> <div class="hufen_block">
<span>星湖粉</span> <span>星湖粉</span>
<el-input v-model="addForm.fourHuFee" placeholder="请输入湖粉价格(120湖分以上)"></el-input>
</div>
<div class="hufen_block">
<span>五星及以上湖粉</span>
<el-input v-model="addForm.fiveHuFee" placeholder="请输入湖粉价格(150湖分以上)"></el-input> <el-input v-model="addForm.fiveHuFee" placeholder="请输入湖粉价格(150湖分以上)"></el-input>
</div> </div>
</el-form-item> </el-form-item>
@@ -337,7 +352,10 @@ export default {
vipFee: '', vipFee: '',
svipType: '', svipType: '',
svipFee: '', svipFee: '',
oneHuFee: '',
twoHuFee: '',
threeHuFee: '', threeHuFee: '',
fourHuFee: '',
fiveHuFee: '', fiveHuFee: '',
singupFlag: 1, //1可报名 0不可报名 singupFlag: 1, //1可报名 0不可报名
displayFlag: 0, //0上架 1下架 displayFlag: 0, //0上架 1下架
@@ -584,7 +602,10 @@ export default {
svipType: svipType, svipType: svipType,
displayApp: appType, displayApp: appType,
svipFee: data.svipFee, svipFee: data.svipFee,
oneHuFee: data.oneHuFee,
twoHuFee: data.twoHuFee,
threeHuFee: data.threeHuFee, threeHuFee: data.threeHuFee,
fourHuFee: data.fourHuFee,
fiveHuFee: data.fiveHuFee, fiveHuFee: data.fiveHuFee,
sort: data.sort sort: data.sort
}), }),
@@ -649,7 +670,10 @@ export default {
svipType: svipType, svipType: svipType,
displayApp: appType, displayApp: appType,
svipFee: this.addForm.svipFee, svipFee: this.addForm.svipFee,
oneHuFee: this.addForm.oneHuFee,
twoHuFee: this.addForm.twoHuFee,
threeHuFee: this.addForm.threeHuFee, threeHuFee: this.addForm.threeHuFee,
fourHuFee: this.addForm.fourHuFee,
fiveHuFee: this.addForm.fiveHuFee, fiveHuFee: this.addForm.fiveHuFee,
sort: this.addForm.sort sort: this.addForm.sort
}), }),
@@ -710,7 +734,10 @@ export default {
} }
this.addForm.svipFee = data.svipFee; this.addForm.svipFee = data.svipFee;
this.addForm.oneHuFee = data.oneHuFee;
this.addForm.twoHuFee = data.twoHuFee;
this.addForm.threeHuFee = data.threeHuFee; this.addForm.threeHuFee = data.threeHuFee;
this.addForm.fourHuFee = data.fourHuFee;
this.addForm.fiveHuFee = data.fiveHuFee; this.addForm.fiveHuFee = data.fiveHuFee;
this.addForm.sort = data.sort; this.addForm.sort = data.sort;
this.$nextTick(() => { this.$nextTick(() => {
@@ -814,7 +841,7 @@ export default {
align-items: center; align-items: center;
span{ span{
width: 70px; width: 120px;
display: inline-block; display: inline-block;
} }
.el-input{ .el-input{