|
@@ -0,0 +1,220 @@
|
|
|
+<template>
|
|
|
+ <div v-if="key>0">
|
|
|
+ <avue-crud ref="crud"
|
|
|
+ :key="key"
|
|
|
+ :option="option" :data="dataList" :page.sync="page" :search.sync="search"
|
|
|
+ :cell-style="cellStyle" @search-change="searchChange" @current-change="currentChange"
|
|
|
+ @size-change="sizeChange"
|
|
|
+ @refresh-change="refreshChange" @on-load="onLoad" :table-loading="loading" @saveColumn="saveColumn"
|
|
|
+ @resetColumn="resetColumn" @search-criteria-switch="searchCriteriaSwitch">
|
|
|
+ <template slot="menuLeft">
|
|
|
+ <el-button type="info" size="small" @click="outExport">导出
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ <template slot="corpNameSearch" slot-scope="scope">
|
|
|
+ <crop-select v-model="search.corpId" corpType="KH"/>
|
|
|
+ </template>
|
|
|
+ </avue-crud>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {getToken} from "@/util/auth";
|
|
|
+import {getListThree} from "@/api/statisticAnalysis/analysisOfCoping"
|
|
|
+import {getList} from "@/api/financialManagement/paymentRequest";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "index",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ UConfiguration: {
|
|
|
+ multipleChoices: false,
|
|
|
+ multiple: false,
|
|
|
+ disabled: false,
|
|
|
+ searchShow: true,
|
|
|
+ collapseTags: false,
|
|
|
+ placeholder: '请点击右边按钮选择',
|
|
|
+ dicData: []
|
|
|
+ },
|
|
|
+ form: {},
|
|
|
+ search: {},
|
|
|
+ dataList: [],
|
|
|
+ loading: false,
|
|
|
+ detailData: {},
|
|
|
+ page: {
|
|
|
+ pageSize: 20,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0,
|
|
|
+ pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
|
|
|
+ },
|
|
|
+ option: {},
|
|
|
+ key:0,
|
|
|
+ optionBack: {
|
|
|
+ searchShow: false,
|
|
|
+ searchShowBtn: false,
|
|
|
+ align: "center",
|
|
|
+ searchMenuPosition: "right",
|
|
|
+ searchSpan: 8,
|
|
|
+ searchMenuSpan: 8,
|
|
|
+ searchLabelWidth: 100,
|
|
|
+ border: true,
|
|
|
+ index: true,
|
|
|
+ addBtn: false,
|
|
|
+ viewBtn: false,
|
|
|
+ editBtn: false,
|
|
|
+ delBtn: false,
|
|
|
+ highlightCurrentRow: true,
|
|
|
+ menu: false,
|
|
|
+ height: "auto",
|
|
|
+ summaryText: "合计",
|
|
|
+ showSummary: true,
|
|
|
+ sumColumnList: [{
|
|
|
+ name: "amount",
|
|
|
+ type: "sum",
|
|
|
+ decimals: 2
|
|
|
+ }],
|
|
|
+ column: [{
|
|
|
+ label: "合同号",
|
|
|
+ prop: "srcOrderno",
|
|
|
+ overHidden: true
|
|
|
+ }, {
|
|
|
+ label: "往来单位",
|
|
|
+ prop: "corpName",
|
|
|
+ overHidden: true
|
|
|
+ }, {
|
|
|
+ label: "提单号",
|
|
|
+ prop: "billNo",
|
|
|
+ overHidden: true
|
|
|
+ }, {
|
|
|
+ label: "结算日期",
|
|
|
+ prop: "settlementDate",
|
|
|
+ searchProp: "bsDateList",
|
|
|
+ width: 100,
|
|
|
+ overHidden: true,
|
|
|
+ type: "date",
|
|
|
+ searchRange: true,
|
|
|
+ searchDefaultTime: ["00:00:00", "23:59:59"],
|
|
|
+ format: "yyyy-MM-dd",
|
|
|
+ valueFormat: "yyyy-MM-dd HH:mm:ss"
|
|
|
+ }, {
|
|
|
+ label: "人民币金额",
|
|
|
+ prop: "amount"
|
|
|
+ }]
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ props:{
|
|
|
+ condition:Object
|
|
|
+ },
|
|
|
+ async created() {
|
|
|
+ this.search = this.condition
|
|
|
+ this.option = await this.getColumnData(this.getColumnName(244.3), this.optionBack);
|
|
|
+ this.key++
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ cellStyle() {
|
|
|
+ return "padding:0;height:40px;";
|
|
|
+ },
|
|
|
+ searchCriteriaSwitch(type) {
|
|
|
+ if (type) {
|
|
|
+ this.option.height = this.option.height - 46;
|
|
|
+ } else {
|
|
|
+ this.option.height = this.option.height + 46;
|
|
|
+ }
|
|
|
+ this.$refs.crud.getTableHeight();
|
|
|
+ },
|
|
|
+ //点击搜索按钮触发
|
|
|
+ searchChange(params, done) {
|
|
|
+ this.page.currentPage = 1;
|
|
|
+ this.onLoad(this.page, params);
|
|
|
+ done();
|
|
|
+ },
|
|
|
+ refreshChange() {
|
|
|
+ this.onLoad(this.page, this.search);
|
|
|
+ },
|
|
|
+ currentChange(val) {
|
|
|
+ this.page.currentPage = val;
|
|
|
+ },
|
|
|
+ sizeChange(val) {
|
|
|
+ this.page.currentPage = 1;
|
|
|
+ this.page.pageSize = val;
|
|
|
+ },
|
|
|
+ onLoad(page, params = {}) {
|
|
|
+ let data = this.deepClone(Object.assign({}, params, this.search));
|
|
|
+ this.loading = true;
|
|
|
+ getList(
|
|
|
+ page.currentPage,
|
|
|
+ page.pageSize,
|
|
|
+ Object.assign(data,{billType:"付费",})
|
|
|
+ ).then(res => {
|
|
|
+ this.dataList = res.data.data.records ? res.data.data.records : [];
|
|
|
+ this.page.total = res.data.data.total;
|
|
|
+ }).finally(() => {
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ //列保存触发
|
|
|
+ async saveColumn() {
|
|
|
+ const inSave = await this.saveColumnData(this.getColumnName(244.3), this.option);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("保存成功");
|
|
|
+ //关闭窗口
|
|
|
+ this.$refs.crud.$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async resetColumn() {
|
|
|
+ this.option = this.optionBack;
|
|
|
+ const inSave = await this.delColumnData(this.getColumnName(244.3), this.optionBack);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("重置成功");
|
|
|
+ this.$refs.crud.$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ outExport() {
|
|
|
+ let config = {params: {...this.search,billType:"付费"}}
|
|
|
+ if (config.params) {
|
|
|
+ for (const propName of Object.keys(config.params)) {
|
|
|
+ const value = config.params[propName];
|
|
|
+ if (value !== null && typeof (value) !== "undefined") {
|
|
|
+ if (value instanceof Array) {
|
|
|
+ for (const key of Object.keys(value)) {
|
|
|
+ let params = propName + '[' + key + ']';
|
|
|
+ config.params[params] = value[key]
|
|
|
+ }
|
|
|
+ delete config.params[propName]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const routeData = this.$router.resolve({
|
|
|
+ path: '/api/trade-finance/settlement/expenseExport', //跳转目标窗口的地址
|
|
|
+ query: {
|
|
|
+ ...config.params //括号内是要传递给新窗口的参数
|
|
|
+ }
|
|
|
+ })
|
|
|
+ window.open(routeData.href.slice(1, routeData.href.length) + '&' + `${this.website.tokenHeader}=${getToken()}`);
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+.page-crad ::v-deep .basic-container__card {
|
|
|
+ height: 94.2vh;
|
|
|
+}
|
|
|
+::v-deep .el-dialog {
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__body {
|
|
|
+ padding: 20px 20px;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .el-table__expanded-cell[class*="cell"] {
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+.itemTable ::v-deep .el-table {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+</style>
|