|
@@ -8,13 +8,16 @@
|
|
<el-table :data="dataList"
|
|
<el-table :data="dataList"
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}">
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}">
|
|
<el-table-column prop="organName"
|
|
<el-table-column prop="organName"
|
|
|
|
+ label="乐团模式">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="收费方式名称"
|
|
label="所属分部">
|
|
label="所属分部">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="chargeTypeName"
|
|
<el-table-column prop="chargeTypeName"
|
|
- label="收费类型">
|
|
|
|
|
|
+ label="收费方式名称">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="courseFee"
|
|
<el-table-column prop="courseFee"
|
|
- label="课程费用">
|
|
|
|
|
|
+ label="课程费用(元)">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column align='center'
|
|
<el-table-column align='center'
|
|
label="操作">
|
|
label="操作">
|
|
@@ -38,51 +41,8 @@
|
|
<el-dialog :title="formTitle[formActionTitle]"
|
|
<el-dialog :title="formTitle[formActionTitle]"
|
|
:visible.sync="chargeStatus"
|
|
:visible.sync="chargeStatus"
|
|
@close="onFormClose('ruleForm')"
|
|
@close="onFormClose('ruleForm')"
|
|
- width="500px">
|
|
|
|
- <el-form :model="form"
|
|
|
|
- :rules="rules"
|
|
|
|
- ref="ruleForm">
|
|
|
|
- <el-form-item label="所属分部"
|
|
|
|
- prop="organId"
|
|
|
|
- :label-width="formLabelWidth">
|
|
|
|
- <el-select v-model.trim="form.organId"
|
|
|
|
- clearable
|
|
|
|
- filterable>
|
|
|
|
- <el-option v-for="(item, index) in branchList"
|
|
|
|
- :key="index"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item label="收费类型"
|
|
|
|
- prop="chargeTypeId"
|
|
|
|
- :label-width="formLabelWidth">
|
|
|
|
- <el-select v-model.trim="form.chargeTypeId"
|
|
|
|
- clearable
|
|
|
|
- filterable>
|
|
|
|
- <el-option v-for="(item, index) in typesList"
|
|
|
|
- :key="index"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item label="课程费用"
|
|
|
|
- prop="courseFee"
|
|
|
|
- :label-width="formLabelWidth">
|
|
|
|
- <el-input type="number"
|
|
|
|
- @mousewheel.native.prevent
|
|
|
|
- v-model.trim="form.courseFee"
|
|
|
|
- autocomplete="off"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-form>
|
|
|
|
- <span slot="footer"
|
|
|
|
- class="dialog-footer">
|
|
|
|
- <el-button @click="chargeStatus = false">取 消</el-button>
|
|
|
|
- <el-button @click="onTypesSubmit('ruleForm')"
|
|
|
|
- type="primary">确 定</el-button>
|
|
|
|
- </span>
|
|
|
|
|
|
+ width="850px">
|
|
|
|
+ <chargesForm/>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -90,8 +50,12 @@
|
|
<script>
|
|
<script>
|
|
import pagination from '@/components/Pagination/index'
|
|
import pagination from '@/components/Pagination/index'
|
|
import { chargeTypeList, chargeTypeOrganizationFeeAdd, chargeTypeOrganizationFeeDelete, chargeTypeOrganizationFeeUpdate, chargeTypeOrganizationFee, branchQueryPage } from '@/api/specialSetting'
|
|
import { chargeTypeList, chargeTypeOrganizationFeeAdd, chargeTypeOrganizationFeeDelete, chargeTypeOrganizationFeeUpdate, chargeTypeOrganizationFee, branchQueryPage } from '@/api/specialSetting'
|
|
|
|
+import chargesForm from './modals/chargesForm'
|
|
export default {
|
|
export default {
|
|
- components: { pagination },
|
|
|
|
|
|
+ components: {
|
|
|
|
+ pagination,
|
|
|
|
+ chargesForm
|
|
|
|
+ },
|
|
name: 'chargesList',
|
|
name: 'chargesList',
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
@@ -256,4 +220,4 @@ export default {
|
|
/deep/.el-table {
|
|
/deep/.el-table {
|
|
display: inline-block;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
-</style>
|
|
|
|
|
|
+</style>
|