transaction-list.vue 3.24 KB
<template>
  <div class="stat-shop">
    <layout-body>
      <p slot="title">服务费账单</p>
      <layout-filter class="box-filter" :inline="true" :col="1">
      <filter-item :label="filters.dateRange.label">
        <Date-picker v-model="filters.dateRange.model" type="datetimerange"
                     :placeholder="filters.dateRange.label" format="yyyy-MM-dd" @on-change="dateRange">
        </Date-picker>
        <div class="quick">
          <a href="javascript:;" @click="() => { changeLimit(0); }">今日</a>
          <a href="javascript:;" @click="() => { changeLimit(1); }">昨天</a>
          <a href="javascript:;" @click="() => { changeLimit(7); }">近7天</a>
          <a href="javascript:;" @click="() => { changeLimit(30); }">近30天</a>
        </div>
      </filter-item>
    </layout-body>

  </div>
</template>

<script>
import FinanceService from 'services/finance/finance-service';
import { ShopAccountList } from './store';
import moment from "moment";

export default {
  data() {
    return ShopAccountList.call(this);
  }, watch: {
    date() {
      this.loadData();
    },
    day(newDay) {
      const curDay = moment().format('YYYY-MM-DD');
      if (newDay === this.beginTime || !newDay) {
        return;
      }
      this.dateRange = newDay !== this.curDay ? [newDay, curDay] : [newDay, newDay];
    },
    dateRange(newDate) {
      this.beginTime = moment(Array.isArray(newDate) ? newDate[0] : newDate).format('YYYY-MM-DD');
      this.endTime = moment(Array.isArray(newDate) ? newDate[1] : newDate).format('YYYY-MM-DD');
      this.day = (this.beginTime === this.endTime) === this.today ? '' : this.beginTime;
      this.pageData.current = 1;
      this.list();
    },
  },
};
</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: 220px;
  }
}

.ivu-table-cell {
  padding-left: 6px;
  padding-right: 6px;
}
</style>