withdraw.vue 6.52 KB
<template>
  <div class="stat-shop">
    <layout-body>
      <p slot="title">资金总览</p>
      <layout-filter ref="filter" :model="filters" class="box-filter" :inline="true" :col="1">
        <filter-item label="起止时间">
          <Date-picker
            v-model="filters.createTime.model"
            type="datetimerange"
            format="yyyy-MM-dd"
            placeholder="选择日期和时间"
            @on-change="createTimeChange"
          ></Date-picker>
          <div class="quick">
            <a
              href="javascript:;"
              @click="
                () => {
                  timeFlag(1);
                }
              "
              >今天</a
            >
            <a
              href="javascript:;"
              @click="
                () => {
                  timeFlag(2);
                }
              "
              >昨天</a
            >
            <a
              href="javascript:;"
              @click="
                () => {
                  timeFlag(3);
                }
              "
              >最近7天</a
            >
            <a
              href="javascript:;"
              @click="
                () => {
                  timeFlag(4);
                }
              "
              >最近30天</a
            >
          </div>
        </filter-item>
        <filter-item>
          <div class="select-container">
            <Select v-model.trim="filters.withdrawStatus.model" :placeholder="filters.withdrawStatus.label">
              <Option v-for="option in filters.withdrawStatus.options" :key="option.value" :value="option.value">{{
                option.label
              }}</Option>
            </Select>
          </div>
          <div class="select-container">
            <Input v-model.trim="filters.statementSn.model" :placeholder="filters.statementSn.label" />
          </div>
          <div class="select-container">
            <Input v-model.trim="filters.targetAccount.model" :placeholder="filters.targetAccount.label" />
          </div>
          <div class="select-container">
            <Button type="primary" @click="search">查询</Button>
            <Button type="primary" @click="reset">全部</Button>
            <Button>导出</Button>
          </div>
        </filter-item>
      </layout-filter>
      <layout-list>
        <Table border :columns="tableCols" :data="tableData"></Table>
        <Page
          :total="pageData.total"
          :current="pageData.current"
          :page-size="pageData.pageSize"
          show-total
          @on-change="pageChange"
        ></Page>
      </layout-list>
    </layout-body>
  </div>
</template>
<script>
import _ from 'lodash';
import moment from 'moment';
import { Withdraw } from './store';
import FinanceService from 'services/finance/finance-service';

export default {
  data() {
    return Withdraw.call(this);
  },
  created() {
    this.financeService = new FinanceService();
    this.search();
  },
  methods: {
    filterValues() {
      const values = {
        pageNo: 1,
        pageSize: 10,
      };
      const fields = this.filters;
      const keysMap = {
        beginTime: 'beginTime',
        endTime: 'endTime',
        timeFlag: 'timeFlag',
        withdrawStatus: 'withdrawStatus',
        statementSn: 'statementSn',
      };

      if (this.enableFilter) {
        _.each(keysMap, (val, key) => {
          values[key] = fields[val].model;
        });
      }
      return values;
    },
    search() {
      let params = {};
      this.enableFilter = true;
      params = this.filterValues();
      this.list(params);
      this.pageData.current = 1;
    },
    reset() {
      let params = {};
      this.enableFilter = false;
      params = this.filterValues();
      this.list(params);
      this.pageData.current = 1;
    },
    timeFlag(flag) {
      let params = {};
      this.enableFilter = false;
      params = this.filterValues();
      params.timeFlag = flag;
      this.list(params);
      this.pageData.current = 1;
    },
    createTimeChange(time) {
      if (!_.isArray(time)) {
        time = time.split(' - ');
      }
      if ((time[0] + '').length) {
        this.filters.beginTime.model = moment(time[0]).format('YYYY-MM-DD');
        this.filters.endTime.model = moment(time[1]).format('YYYY-MM-DD');
      }
    },
    pageChange(page) {
      const params = this.filterValues();
      params.pageNo = page;
      this.pageData.current = page;
      this.list(params);
    },
    list(params) {
      this.financeService.shopWithdrawList(params).then(ret => {
        this.tableData = _.get(ret, 'data.records', []);
        this.pageData.total = _.get(ret, 'data.totalCount', 0);
        this.pageData.current = _.get(ret, 'data.pageNo', 1);
      });
    },
    getDetailById(id) {
      this.$router.push({
        name: 'finance.withdraw.detail',
        params: {
          id,
        },
      });
    },
  },
};
</script>
<style lang="scss">
.stat-shop {
  .ivu-tabs-tabpane {
    height: 400px;
    position: relative;
  }
}

.layout-container {
  min-height: 200px;
  margin: 15px;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;

  .layout-filter .line {
    border-top: none;
    margin-bottom: 0;
  }
}

.shop-card {
  margin-top: 10px;
  margin-bottom: 10px;
}

.box-title {
  font-weight: 700;
  color: #495060;
  font-size: 16px;
  line-height: 22px;
  margin: 5px;

  &:before {
    content: ' ';
    display: inline-block;
    width: 5px;
    margin-right: 2px;
    height: 22px;
    vertical-align: top;
    background-color: #999;
  }
}

.box-item {
  width: 90%;
  height: 50px;
  padding: 0 0 0 15px;
  line-height: 50px;
  font-size: 14px;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 10px;

  .box-item-label {
    display: inline-block;
    min-width: 75px;
    vertical-align: top;
    font-weight: normal;
  }

  .box-item-value {
    font-size: 20px;
    font-weight: 600;
  }

  i {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 22px;
    text-align: center;
    margin-top: -7px;
    vertical-align: middle;
    margin-right: 3px;
  }
}

.box-filter {
  .ivu-date-picker {
    margin-left: 0;
    width: 220px !important;
  }

  .quick {
    display: inline-block;
    margin-left: 20px;
    margin-right: 50px;

    a {
      margin-right: 5px;
    }
  }

  .select-container {
    display: inline-block;
    width: 280px;
  }
}

.ivu-table-cell {
  padding-left: 6px;
  padding-right: 6px;
}

.action-column {
  .cell-action-row {
    margin-top: 10px;

    &:last-child {
      margin-bottom: 10px;
    }
  }
}
</style>