statistics-dialog.vue 10.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
<template>
  <el-dialog
    title="合同费用统计"
    :visible.sync="visible"
    width="900px"
    :close-on-click-modal="false"
    @close="handleClose"
  >
    <!-- 查询条件 -->
    <el-form
      ref="queryFormRef"
      :model="queryForm"
      :rules="queryRules"
      :inline="true"
      label-width="100px"
      label-position="right"
      style="margin-bottom: 20px"
    >
      <el-form-item label="门店" prop="storeId" required>
        <el-select
          v-model="queryForm.storeId"
          placeholder="请选择门店"
          filterable
          style="width: 200px"
        >
          <el-option
            v-for="store in storeList"
            :key="store.id"
            :label="store.fullName"
            :value="store.id"
          />
        </el-select>
      </el-form-item>
      <el-form-item label="年份">
        <el-date-picker
          v-model="queryForm.year"
          type="year"
          placeholder="选择年份"
          format="yyyy"
          value-format="yyyy"
          style="width: 200px"
        />
      </el-form-item>
      <el-form-item label="月份">
        <el-select
          v-model="queryForm.month"
          placeholder="请选择月份"
          style="width: 200px"
        >
          <el-option
            v-for="m in 12"
            :key="m"
            :label="m + '月'"
            :value="m"
          />
        </el-select>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery" :loading="loading">
          查询
        </el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>

    <!-- 统计结果 -->
    <div v-if="statisticsData" class="statistics-result">
      <!-- 总费用卡片 -->
      <div class="total-card">
        <div class="total-icon">
          <i class="el-icon-money"></i>
        </div>
        <div class="total-content">
          <div class="total-label">总费用</div>
          <div class="total-value">{{ formatMoney(statisticsData.totalAmount) }}</div>
          <div class="total-info">
            {{ statisticsData.storeName }} - {{ statisticsData.year }}年{{ statisticsData.month }}月
          </div>
        </div>
      </div>

      <!-- 按分类统计 -->
      <div v-if="statisticsData.categoryDetails && statisticsData.categoryDetails.length > 0" class="category-section">
        <h3>按分类统计</h3>
        <el-table
          :data="statisticsData.categoryDetails"
          border
          stripe
          style="margin-top: 12px"
        >
          <el-table-column
            prop="category"
            label="分类"
            width="150"
            align="center"
          >
            <template slot-scope="scope">
              <span>{{ scope.row.category || '无' }}</span>
            </template>
          </el-table-column>
          <el-table-column
            prop="amount"
            label="费用总额"
            width="150"
            align="right"
          >
            <template slot-scope="scope">
              <span style="color: #f56c6c; font-weight: 600;">
                {{ formatMoney(scope.row.amount) }}
              </span>
            </template>
          </el-table-column>
          <el-table-column
            prop="detailCount"
            label="明细数量"
            width="120"
            align="center"
          >
            <template slot-scope="scope">
              <span>{{ scope.row.detailCount || 0 }} 条</span>
            </template>
          </el-table-column>
          <el-table-column
            label="操作"
            width="100"
            align="center"
          >
            <template slot-scope="scope">
              <el-button
                type="text"
                size="small"
                @click="viewCategoryDetails(scope.row)"
              >
                查看明细
              </el-button>
            </template>
          </el-table-column>
        </el-table>
      </div>

      <!-- 无数据提示 -->
      <el-empty
        v-else
        description="暂无统计数据"
        :image-size="100"
      />
    </div>

    <!-- 明细弹窗 -->
    <el-dialog
      title="费用明细"
      :visible.sync="detailDialogVisible"
      width="800px"
      append-to-body
    >
      <el-table
        :data="currentCategoryDetails"
        border
        stripe
        max-height="400"
      >
        <el-table-column
          prop="contractTitle"
          label="合同标题"
          min-width="150"
          show-overflow-tooltip
        >
          <template slot-scope="scope">
            <span>{{ scope.row.contractTitle || '无' }}</span>
          </template>
        </el-table-column>
        <el-table-column
          prop="category"
          label="分类"
          width="120"
          align="center"
        >
          <template slot-scope="scope">
            <span>{{ scope.row.category || '无' }}</span>
          </template>
        </el-table-column>
        <el-table-column
          prop="dueAmount"
          label="应缴金额"
          width="120"
          align="right"
        >
          <template slot-scope="scope">
            <span>{{ formatMoney(scope.row.dueAmount) || '无' }}</span>
          </template>
        </el-table-column>
        <el-table-column
          prop="isPaid"
          label="缴费状态"
          width="100"
          align="center"
        >
          <template slot-scope="scope">
            <el-tag :type="scope.row.isPaid === 1 ? 'success' : 'warning'">
              {{ scope.row.isPaid === 1 ? '已缴费' : '未缴费' }}
            </el-tag>
          </template>
        </el-table-column>
        <el-table-column
          prop="actualPaymentAmount"
          label="实际缴费金额"
          width="140"
          align="right"
        >
          <template slot-scope="scope">
            <span>{{ formatMoney(scope.row.actualPaymentAmount) || '无' }}</span>
          </template>
        </el-table-column>
      </el-table>
    </el-dialog>

    <div slot="footer" class="dialog-footer">
      <el-button @click="handleClose">关闭</el-button>
    </div>
  </el-dialog>
</template>

<script>
import { getExpenseStatistics } from '@/api/extend/contract'
import { getStoreSelector } from '@/api/extend/store'

export default {
  name: 'StatisticsDialog',
  data() {
    return {
      visible: false,
      loading: false,
      storeList: [],
      statisticsData: null,
      detailDialogVisible: false,
      currentCategoryDetails: [],
      queryForm: {
        storeId: '',
        year: '',
        month: '',
        categories: []
      },
      queryRules: {
        storeId: [
          { required: true, message: '请选择门店', trigger: 'change' }
        ]
      }
    }
  },
  methods: {
    // 打开弹窗
    open() {
      this.visible = true
      this.loadStoreList()
      // 重置查询条件为空
      this.queryForm = {
        storeId: '',
        year: '',
        month: '',
        categories: []
      }
      this.statisticsData = null
    },
    // 加载门店列表
    async loadStoreList() {
      try {
        const response = await getStoreSelector()
        if (response.code === 200 && response.data) {
          this.storeList = response.data.list || []
        }
      } catch (error) {
        console.error('获取门店列表失败:', error)
        this.storeList = []
      }
    },
    // 查询统计
    async handleQuery() {
      // 验证表单
      try {
        await this.$refs.queryFormRef.validate()
      } catch (error) {
        return // 验证失败,不执行查询
      }

      this.loading = true
      try {
        const params = {
          storeId: this.queryForm.storeId
        }
        
        // 只在有值时才添加其他参数
        if (this.queryForm.year) {
          params.year = parseInt(this.queryForm.year)
        }
        if (this.queryForm.month) {
          params.month = this.queryForm.month
        }
        if (this.queryForm.categories && this.queryForm.categories.length > 0) {
          params.categories = this.queryForm.categories
        }

        const response = await getExpenseStatistics(params)

        if (response.code === 200 && response.data) {
          this.statisticsData = response.data
        } else {
          this.$message.error(response.msg || '获取统计数据失败')
          this.statisticsData = null
        }
      } catch (error) {
        console.error('获取统计数据失败:', error)
        this.$message.error('获取统计数据失败')
        this.statisticsData = null
      } finally {
        this.loading = false
      }
    },
    // 重置查询
    resetQuery() {
      this.$refs.queryFormRef.resetFields()
      this.statisticsData = null
    },
    // 查看分类明细
    viewCategoryDetails(categoryData) {
      if (categoryData.details && categoryData.details.length > 0) {
        this.currentCategoryDetails = categoryData.details
        this.detailDialogVisible = true
      } else {
        this.$message.info('该分类暂无明细数据')
      }
    },
    // 关闭弹窗
    handleClose() {
      this.visible = false
      this.statisticsData = null
      this.detailDialogVisible = false
      this.currentCategoryDetails = []
      // 重置表单验证状态
      if (this.$refs.queryFormRef) {
        this.$refs.queryFormRef.resetFields()
      }
    },
    // 格式化金额
    formatMoney(amount) {
      if (amount === null || amount === undefined) return '¥0.00'
      return '¥' + Number(amount).toFixed(2)
    }
  }
}
</script>

<style lang="scss" scoped>
.statistics-result {
  .total-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    color: #fff;

    .total-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      margin-right: 20px;

      i {
        font-size: 40px;
      }
    }

    .total-content {
      flex: 1;

      .total-label {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 8px;
      }

      .total-value {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 8px;
      }

      .total-info {
        font-size: 12px;
        opacity: 0.8;
      }
    }
  }

  .category-section {
    h3 {
      margin: 0 0 12px 0;
      color: #303133;
      font-size: 16px;
      font-weight: 600;
    }
  }
}

.dialog-footer {
  text-align: right;
}
</style>