|
|
@@ -92,6 +92,12 @@
|
|
|
<el-input style="width: 100px;" type="number" v-model="productId" placeholder="项目ID"></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="inlineb">
|
|
|
+ <span class="vsub">最小金额:</span>
|
|
|
+ <div class="inlineb">
|
|
|
+ <el-input style="width: 100px;" type="number" v-model="minRealAmount" placeholder="最小实付金额"></el-input>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
|
|
|
<el-button type="primary" @click="getFinanceList">筛选</el-button>
|
|
|
<el-button @click="downFinanceList" class="export-excel" type="primary">导出报表</el-button>
|
|
|
@@ -497,6 +503,7 @@ export default {
|
|
|
PayCount: 0,
|
|
|
paySuccess: 0,
|
|
|
productId: "",
|
|
|
+ minRealAmount: "",
|
|
|
productType: [0],
|
|
|
orderTypes: "",
|
|
|
orderTypesOption: [],
|
|
|
@@ -1013,6 +1020,7 @@ export default {
|
|
|
order: this.searchId,
|
|
|
user: this.checkUser,
|
|
|
product_id: this.productId,
|
|
|
+ min_real_amount: this.minRealAmount ? this.minRealAmount * 100 : 0,
|
|
|
page: this.currentPage,
|
|
|
page_size: this.currentPageSize
|
|
|
};
|