|
@@ -83,8 +83,8 @@
|
|
|
<span style="color: #1890ff;cursor: pointer;" @click="openDetails(scope.row)">{{ scope.row.id }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column v-if="!zhichu" label="购票数量" align="center" prop="quantity" />
|
|
|
- <el-table-column v-if="!zhichu" label="实付单价" align="center" prop="price" />
|
|
|
+ <el-table-column label="购票数量" align="center" prop="quantity" />
|
|
|
+ <el-table-column label="实付单价" align="center" prop="price" />
|
|
|
<el-table-column label="金额(元)" align="center" prop="type">
|
|
|
<template slot-scope="scope">
|
|
|
<span>¥{{ scope.row.orderPrice }}</span>
|
|
@@ -186,7 +186,6 @@ export default {
|
|
|
visibleType: '',
|
|
|
handleExportLoading: false,
|
|
|
tableData: {},
|
|
|
- zhichu:false,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -198,11 +197,6 @@ export default {
|
|
|
this.loading = true;
|
|
|
pageList(this.addDateRange(this.queryParams, this.dateRange))
|
|
|
.then(response => {
|
|
|
- if(this.queryParams.incomeExpenses=='支出'){
|
|
|
- this.zhichu=true;
|
|
|
- }else{
|
|
|
- this.zhichu=false;
|
|
|
- }
|
|
|
this.dataList = response.data.rows;
|
|
|
this.total = response.data.total;
|
|
|
this.loading = false;
|