|
@@ -6,20 +6,6 @@
|
|
|
</h2>
|
|
|
<div class="m-core">
|
|
|
<!-- v-permission="'sporadicChargeInfo/add'" -->
|
|
|
- <div
|
|
|
- class="newBand"
|
|
|
- v-permission="'sporadicChargeInfo/add'"
|
|
|
- @click="newVisible"
|
|
|
- >
|
|
|
- 新增公用收费
|
|
|
- </div>
|
|
|
- <div
|
|
|
- class="newBand"
|
|
|
- v-permission="'sporadicChargeInfo/add'"
|
|
|
- @click="newVisible1"
|
|
|
- >
|
|
|
- 新增个人收费
|
|
|
- </div>
|
|
|
<save-form
|
|
|
:inline="true"
|
|
|
:model="searchForm"
|
|
@@ -93,6 +79,22 @@
|
|
|
>
|
|
|
</el-form-item>
|
|
|
</save-form>
|
|
|
+ <el-button
|
|
|
+ v-permission="'sporadicChargeInfo/add'"
|
|
|
+ @click="newVisible"
|
|
|
+ type="primary"
|
|
|
+ style="margin-bottom:20px"
|
|
|
+ >
|
|
|
+ 新增公用收费
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ v-permission="'sporadicChargeInfo/add'"
|
|
|
+ @click="newVisible1"
|
|
|
+ type="primary"
|
|
|
+ style="margin-bottom:20px"
|
|
|
+ >
|
|
|
+ 新增个人收费
|
|
|
+ </el-button>
|
|
|
<div class="tableWrap">
|
|
|
<el-table
|
|
|
:data="tableList"
|
|
@@ -230,6 +232,7 @@
|
|
|
:disabled="!isNew"
|
|
|
clearable
|
|
|
filterable
|
|
|
+ style="width: 180px !important"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in (isNew ? orderType1 : orderType)"
|
|
@@ -291,6 +294,7 @@
|
|
|
clearable
|
|
|
@change="onMusicGroupChange"
|
|
|
filterable
|
|
|
+ style="width: 180px !important"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(item, index) in selects.branchs"
|
|
@@ -310,6 +314,7 @@
|
|
|
:disabled="!isNew || !maskForm.organId"
|
|
|
clearable
|
|
|
filterable
|
|
|
+ style="width: 180px !important"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in maskMusicList"
|
|
@@ -378,6 +383,7 @@
|
|
|
:disabled="!isNew1"
|
|
|
clearable
|
|
|
filterable
|
|
|
+ style="width: 180px !important"
|
|
|
>
|
|
|
<template v-for="item in (isNew1 ? orderType1 : orderType)">
|
|
|
<el-option
|
|
@@ -419,6 +425,7 @@
|
|
|
:disabled="!isNew1"
|
|
|
clearable
|
|
|
filterable
|
|
|
+ style="width: 180px !important"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(item, index) in maskMusicList1"
|
|
@@ -1027,4 +1034,7 @@ export default {
|
|
|
.el-input {
|
|
|
width: 180px !important;
|
|
|
}
|
|
|
+/deep/.el-select {
|
|
|
+ width: auto !important;
|
|
|
+}
|
|
|
</style>
|