|
@@ -16,6 +16,11 @@
|
|
<el-button class="filter-item" style="float: left;" round type="warning" @click="resetSearch()">重置
|
|
<el-button class="filter-item" style="float: left;" round type="warning" @click="resetSearch()">重置
|
|
</el-button>
|
|
</el-button>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template slot="right">
|
|
|
|
+ <PermissionButton menu-code="_views_payment_collection_export" class-name="filter-item" round type="primary" name="导出"
|
|
|
|
+ @click="paymentExport">
|
|
|
|
+ </PermissionButton>
|
|
|
|
+ </template>
|
|
<parentTable v-loading="listLoading" :data="pageData.records" slot="table" style="width: 100%;">
|
|
<parentTable v-loading="listLoading" :data="pageData.records" slot="table" style="width: 100%;">
|
|
<el-table-column label="事业部流水号" align="center" width="160">
|
|
<el-table-column label="事业部流水号" align="center" width="160">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
@@ -76,6 +81,9 @@
|
|
<el-tab-pane label="回款记录" name="sec">
|
|
<el-tab-pane label="回款记录" name="sec">
|
|
<y-page-list-layout :page-list="pageXData" :page-para="listQuery" :get-page-list="getXList">
|
|
<y-page-list-layout :page-list="pageXData" :page-para="listQuery" :get-page-list="getXList">
|
|
<template slot="left">
|
|
<template slot="left">
|
|
|
|
+ <el-input v-model="listQuery.itemName" placeholder="项目名称" clearable
|
|
|
|
+ style="margin-left: 20px;width: 320px;float: left;">
|
|
|
|
+ </el-input>
|
|
<el-input v-model="listQuery.name" placeholder="回款名称" clearable
|
|
<el-input v-model="listQuery.name" placeholder="回款名称" clearable
|
|
style="margin-left: 20px;width: 320px;float: left;">
|
|
style="margin-left: 20px;width: 320px;float: left;">
|
|
</el-input>
|
|
</el-input>
|
|
@@ -294,6 +302,12 @@ export default {
|
|
that.listLoading = false
|
|
that.listLoading = false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ paymentExport(){
|
|
|
|
+ this.$utils.exportUtil(
|
|
|
|
+ "/paymentCollection/item/export", this.listQuery,
|
|
|
|
+ "导出"
|
|
|
|
+ );
|
|
|
|
+ }
|
|
},
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|