|
|
@@ -0,0 +1,155 @@
|
|
|
+<template>
|
|
|
+ <basic-container>
|
|
|
+ <avue-crud
|
|
|
+ v-bind="bindVal"
|
|
|
+ v-on="onEvent"
|
|
|
+ v-model="form"
|
|
|
+ :page.sync="page"
|
|
|
+ >
|
|
|
+ <template slot="menuLeft">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ size="small"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ @click="handleExport"
|
|
|
+ >
|
|
|
+ 导出
|
|
|
+ </el-button>
|
|
|
+ <print-table-btn @click="printTable" />
|
|
|
+
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <year-month-select v-model="params.yearAndMonth" :showAllYear="false"></year-month-select>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="rqSearch">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="params.rq"
|
|
|
+ type="daterange"
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ style="width: 220px !important;"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="jczSearch">
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <span>净残值:</span>
|
|
|
+ <avue-input-number v-model="params.jczStart" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <span style="width: 20px; text-align: center;">至</span>
|
|
|
+ <avue-input-number v-model="params.jczEnd" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="zcyzSearch">
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <span>资产原值:</span>
|
|
|
+ <avue-input-number v-model="params.zcyzStart" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <span style="width: 20px; text-align: center;">至</span>
|
|
|
+ <avue-input-number v-model="params.zcyzEnd" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="ytxeSearch">
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <span>月摊销额:</span>
|
|
|
+ <avue-input-number v-model="params.ytxeStart" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <span style="width: 20px; text-align: center;">至</span>
|
|
|
+ <avue-input-number v-model="params.ytxeEnd" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="ysygsSearch">
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <span>月使用工时:</span>
|
|
|
+ <avue-input-number v-model="params.ysygsStart" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <span style="width: 20px; text-align: center;">至</span>
|
|
|
+ <avue-input-number v-model="params.ysygsEnd" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template slot="yyfgsSearch">
|
|
|
+ <div style="display: flex; align-items: center;">
|
|
|
+ <span>已研发工时:</span>
|
|
|
+ <avue-input-number v-model="params.yyfgsStart" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ <span style="width: 20px; text-align: center;">至</span>
|
|
|
+ <avue-input-number v-model="params.yyfgsEnd" :min="0" style="width: 100px !important;"></avue-input-number>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ </avue-crud>
|
|
|
+
|
|
|
+ <upload-excel-dialog ref="uploadExcelDialog" :uploadAfter="uploadAfter"/>
|
|
|
+
|
|
|
+ <WideTablePrinter
|
|
|
+ ref="printWideTable"
|
|
|
+ :columns="wideTableColumns"
|
|
|
+ :data="data"
|
|
|
+ :print-title="printTitle"
|
|
|
+ :rows-per-page="30"
|
|
|
+ :default-landscape="true"
|
|
|
+ />
|
|
|
+ </basic-container>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import YearMonthSelect from "@/components/year-month-select";
|
|
|
+import {exportBlob} from "@/api/common";
|
|
|
+import {getToken} from "@/util/auth";
|
|
|
+import {downloadXls} from "@/util/util";
|
|
|
+import moment from "moment";
|
|
|
+import Decimal from "decimal.js";
|
|
|
+
|
|
|
+
|
|
|
+export default window.$crudCommon({
|
|
|
+ components: {
|
|
|
+ YearMonthSelect,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ params: {
|
|
|
+ yearAndMonth: moment(new Date()).format('YYYYMM'),
|
|
|
+ },
|
|
|
+ defaultColumns: [],
|
|
|
+
|
|
|
+ wideTableColumns: [],
|
|
|
+ printTitle: "",
|
|
|
+ };
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ 'params.yearAndMonth'(newVal) {
|
|
|
+ this.page.currentPage = 1;
|
|
|
+ this.getList(this.page);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ loadData() {},
|
|
|
+ handleExport() {
|
|
|
+ exportBlob(`/api/kd-scientific/lease/export?${this.website.tokenHeader}=${getToken()}`, this.params).then(res => {
|
|
|
+ downloadXls(res.data, `研发费用汇总表${this.params.yearAndMonth}.xlsx`);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 打印表格
|
|
|
+ * @param isLandscape 是否横向打印
|
|
|
+ */
|
|
|
+ printTable(isLandscape) {
|
|
|
+ this.wideTableColumns = this.$refs.crud.columnOption;
|
|
|
+ this.printTitle = `研发费用汇总表${this.params.yearAndMonth}`;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.printWideTable.printTable(isLandscape);
|
|
|
+ })
|
|
|
+ },
|
|
|
+ },
|
|
|
+}, {
|
|
|
+ // 模块路径
|
|
|
+ name: 'yfCostManage/yfCostStatistics/amortizeCostSummaryList',
|
|
|
+ res: ({ data }) => {
|
|
|
+ return data;
|
|
|
+ },
|
|
|
+});
|
|
|
+</script>
|