|
@@ -3,7 +3,7 @@
|
3
|
3
|
<div class="system-table-search">
|
4
|
4
|
<div class="flex-h">
|
5
|
5
|
<div class="flex-item flex-h">
|
6
|
|
- <el-button size="mini" type="success" @click='addVisible = true'>新增</el-button>
|
|
6
|
+ <el-button size="mini" type="success" @click='handleAdd'>新增</el-button>
|
7
|
7
|
</div>
|
8
|
8
|
<ul>
|
9
|
9
|
<li>
|
|
@@ -214,6 +214,14 @@ export default {
|
214
|
214
|
handleReport (row) {
|
215
|
215
|
this.GetOrdersByRecord({id: row.RecordId, callback: this.ordersExport})
|
216
|
216
|
},
|
|
217
|
+ handleAdd () {
|
|
218
|
+ this.detail = {
|
|
219
|
+ CaseId: '',
|
|
220
|
+ Month: '',
|
|
221
|
+ Num: 0,
|
|
222
|
+ }
|
|
223
|
+ this.addVisible = true
|
|
224
|
+ }
|
217
|
225
|
},
|
218
|
226
|
mounted () {
|
219
|
227
|
this.getList()
|