|
@@ -0,0 +1,363 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container organization-index">
|
|
|
+ <div class="title-container">
|
|
|
+ <breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div style="width: 100%; height: 50px;">
|
|
|
+ <el-date-picker style="margin-right: 20px;float: left;" v-model="selectDate" type="daterange"
|
|
|
+ :picker-options="pickerOptions" format="yyyy 年 MM 月 dd 日" value-format="yyyy-MM-dd" range-separator="至"
|
|
|
+ start-placeholder="开始日期" end-placeholder="结束日期" align="right">
|
|
|
+ </el-date-picker>
|
|
|
+ <el-button class="filter-item" style="margin-left: 10px;float: left;" type="primary" @click="searchList1()"
|
|
|
+ round>搜索
|
|
|
+ </el-button>
|
|
|
+ <el-button class="filter-item" round type="success" @click="resetParams1()">重置
|
|
|
+ </el-button>
|
|
|
+ <el-button class="filter-item" round type="info" @click="exportAssetsMarketDepEfficiency()"
|
|
|
+ :disabled="exportStatus">导出
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <el-table :data="depEfficiency" fit stripe highlight-current-row
|
|
|
+ :header-row-style="{ color: '#333333', 'font-size': '14px' }" style=" width: 100%; float: right;
|
|
|
+ border-left: 1px solid #ebeced;
|
|
|
+ border-right: 1px solid #ebeced;
|
|
|
+ color: #333333; font-size: 14px;">
|
|
|
+ <el-table-column label="评估目的" width="150">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.evaluateAim }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="接单数">
|
|
|
+ <el-table-column label="当期接单量">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-link v-if="row.currentPeriodOrderVolume > 0"
|
|
|
+ @click="setListQueryParms('order', row.departmentId, listQueryByDepartment.startTime, listQueryByDepartment.endTime)">
|
|
|
+ {{ row.currentPeriodOrderVolume }}
|
|
|
+ </el-link>
|
|
|
+ <span v-else>{{ row.currentPeriodOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比接单增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比接单增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="预评">
|
|
|
+ <el-table-column label="当期预评出具数量">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-link v-if="row.currentPeriodStatementVolume > 0"
|
|
|
+ @click="setListQueryParms('statement', row.departmentId, listQueryByDepartment.startTime, listQueryByDepartment.endTime)">
|
|
|
+ {{ row.currentPeriodStatementVolume }}
|
|
|
+ </el-link>
|
|
|
+ <span v-else>{{ row.currentPeriodStatementVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比预评出具增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYStatementVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比预评出具增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQStatementVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="报告">
|
|
|
+ <el-table-column label="当期报告出具数量">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-link v-if="row.currentPeriodReportVolume > 0"
|
|
|
+ @click="setListQueryParms('report', row.departmentId, listQueryByDepartment.startTime, listQueryByDepartment.endTime)">
|
|
|
+ {{ row.currentPeriodReportVolume }}
|
|
|
+ </el-link>
|
|
|
+ <span v-else>{{ row.currentPeriodReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比报告出具增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比报告出具增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="应收款">
|
|
|
+ <el-table-column label="当期应收款">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-link v-if="row.currentPeriodShouldAmountSum > 0"
|
|
|
+ @click="setListQueryParms('should', row.departmentId, listQueryByDepartment.startTime, listQueryByDepartment.endTime)">
|
|
|
+ {{ row.currentPeriodShouldAmountSum }}
|
|
|
+ </el-link>
|
|
|
+ <span v-else>{{ row.currentPeriodShouldAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比应收款增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYShouldAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比应收款增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQShouldAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="实收款">
|
|
|
+ <el-table-column label="当期实收款">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-link v-if="row.currentPeriodRealAmountSum > 0"
|
|
|
+ @click="setListQueryParms('real', row.departmentId, listQueryByDepartment.startTime, listQueryByDepartment.endTime)">
|
|
|
+ {{ row.currentPeriodRealAmountSum }}
|
|
|
+ </el-link>
|
|
|
+ <span v-else>{{ row.currentPeriodRealAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比实收款增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYRealAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比实收款增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQRealAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="实收款总计">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.totalRealAmountSum }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="出单率">
|
|
|
+ <el-table-column label="当期出单率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.currentPeriodOrderHasReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比出单增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYOrderHasReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比出单增减率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQOrderHasReportVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="死单率">
|
|
|
+ <el-table-column label="当期死单率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.currentPeriodDeadOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="同比死单率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.YoYDeadOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="环比死单率(%)">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.QoQDeadOrderVolume }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <el-dialog title="资产订单列表" :visible.sync="dialogVisible" width="70%" @open="getAssetsEvaEffDetailVO()">
|
|
|
+ <y-page-list-layout :get-page-list="getAssetsEvaEffDetailVO" :page-list="pageData" :page-para="listQueryDetail">
|
|
|
+ <template slot="left">
|
|
|
+ <el-button class="filter-item" round type="info" @click="exportAssetsEvaEffDetail()">导出
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ <parentTable ref="table" :data="pageData.records" slot="table" style="width: 100%;" :isBoard=800
|
|
|
+ class="tableFull">
|
|
|
+ <el-table-column label="项目编号" align="center">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.orderId }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </parentTable>
|
|
|
+ </y-page-list-layout>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import Breadcrumb from '@/components/Breadcrumb'
|
|
|
+import YPageListLayout from '@/components/YPageListLayout'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'assetsEvaluateEfficiency',
|
|
|
+ components: {
|
|
|
+ Breadcrumb,
|
|
|
+ YPageListLayout
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ dialogVisible: false,
|
|
|
+ listLoading: false,
|
|
|
+ // 时间
|
|
|
+ selectDate: [],
|
|
|
+ listQueryByDepartment: {
|
|
|
+ // 开始时间
|
|
|
+ startTime: null,
|
|
|
+ // 结束时间
|
|
|
+ endTime: null,
|
|
|
+ // 部门id
|
|
|
+ departmentId: null
|
|
|
+ },
|
|
|
+ listQueryDetail: {
|
|
|
+ // 效率类型(接单:order、预评:statement、报告:report、应收款:should、实收款:real)
|
|
|
+ efficiencyType: null,
|
|
|
+ // 开始时间
|
|
|
+ startTime: null,
|
|
|
+ // 结束时间
|
|
|
+ endTime: null,
|
|
|
+ // 市场部门id
|
|
|
+ marketDepartmentId: null,
|
|
|
+ // 客户经理id
|
|
|
+ clientManagerId: null
|
|
|
+ },
|
|
|
+ // 下单部门
|
|
|
+ marketDepartment: [],
|
|
|
+ pickerOptions: {
|
|
|
+ shortcuts: [{
|
|
|
+ text: '最近一周',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ text: '最近一个月',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ text: '最近三个月',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ exportStatus: true,
|
|
|
+ depEfficiency: [],
|
|
|
+ pageData: { records: [] },
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.selectDate.push(this.getDefaultStartDate());
|
|
|
+ this.selectDate.push(this.getDefaultEndDate());
|
|
|
+ this.getPersonalDepEfficiencyVO();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getDefaultStartDate() {
|
|
|
+ const currentDate = new Date();
|
|
|
+ const currentYear = currentDate.getFullYear();
|
|
|
+ var currentMonth = String(currentDate.getMonth()).padStart(2, "0");
|
|
|
+ return currentYear + '-' + currentMonth + '-' + '23'
|
|
|
+ },
|
|
|
+ getDefaultEndDate() {
|
|
|
+ const currentDate = new Date();
|
|
|
+ const currentYear = currentDate.getFullYear();
|
|
|
+ var currentMonth = String(currentDate.getMonth() + 1).padStart(2, "0");
|
|
|
+ return currentYear + '-' + currentMonth + '-' + '22'
|
|
|
+ },
|
|
|
+ // 条件查询
|
|
|
+ searchList1() {
|
|
|
+ this.getPersonalDepEfficiencyVO()
|
|
|
+ },
|
|
|
+ // 重置搜索条件
|
|
|
+ resetParams1() {
|
|
|
+ this.exportStatus = true;
|
|
|
+ this.listQueryByDepartment = {
|
|
|
+ // 开始时间
|
|
|
+ startTime: null,
|
|
|
+ // 结束时间
|
|
|
+ endTime: null,
|
|
|
+ // 部门id
|
|
|
+ departmentId: null
|
|
|
+ };
|
|
|
+ this.selectDate = [];
|
|
|
+ this.selectDate.push(this.getDefaultStartDate());
|
|
|
+ this.selectDate.push(this.getDefaultEndDate());
|
|
|
+ this.getPersonalDepEfficiencyVO();
|
|
|
+ },
|
|
|
+ getPersonalDepEfficiencyVO() {
|
|
|
+ if (this.selectDate) {
|
|
|
+ this.listQueryByDepartment.startTime = this.selectDate[0] + ' 00:00:00';
|
|
|
+ this.listQueryByDepartment.endTime = this.selectDate[1] + ' 23:59:59';
|
|
|
+ }
|
|
|
+ this.$api.statistical.getPersonalDepEfficiencyVO(this.listQueryByDepartment).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.depEfficiency = res.data;
|
|
|
+ if (this.listQueryByDepartment.startTime !== null && this.listQueryByDepartment.endTime !== null && res.data.length > 0) {
|
|
|
+ this.exportStatus = false;
|
|
|
+ } else {
|
|
|
+ this.exportStatus = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ exportAssetsMarketDepEfficiency() {
|
|
|
+ this.$utils.exportUtil(
|
|
|
+ "assets/statisticalStatement/market/dep/getEfficiencyVO/export", this.listQueryByDepartment,
|
|
|
+ "导出"
|
|
|
+ );
|
|
|
+ },
|
|
|
+ setListQueryParms(efficiencyType, departmentId, startTime, endTime, userId) {
|
|
|
+ this.dialogVisible = true;
|
|
|
+ this.listQueryDetail.efficiencyType = efficiencyType;
|
|
|
+ this.listQueryDetail.marketDepartmentId = departmentId;
|
|
|
+ this.listQueryDetail.startTime = startTime;
|
|
|
+ this.listQueryDetail.endTime = endTime;
|
|
|
+ if (userId) {
|
|
|
+ this.listQueryDetail.clientManagerId = userId;
|
|
|
+ } else {
|
|
|
+ this.listQueryDetail.clientManagerId = null;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 效率详情列表查询
|
|
|
+ getAssetsEvaEffDetailVO() {
|
|
|
+ this.$api.statistical.getAssetsEvaEffDetailVO(this.listQueryDetail).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.pageData = res.data;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 效率详情列表查询导出
|
|
|
+ exportAssetsEvaEffDetail() {
|
|
|
+ this.$utils.exportUtil(
|
|
|
+ "assets/statisticalStatement/evaluate/getAssetsEvaEffDetailVO/export", this.listQueryDetail,
|
|
|
+ "导出"
|
|
|
+ );
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+/* el-table 列数据为空自动显示 - */
|
|
|
+.tableFull :empty::before {
|
|
|
+ content: '-';
|
|
|
+ color: gray;
|
|
|
+}
|
|
|
+</style>
|