Authored by jiran.zhao

'一件代发'

@@ -23,4 +23,12 @@ export default [ @@ -23,4 +23,12 @@ export default [
23 pageName: '服务费账单', 23 pageName: '服务费账单',
24 }, 24 },
25 }, 25 },
  26 + {
  27 + path: '/transactionlist.html',
  28 + name: 'transactionlist',
  29 + component: () => import(/* webpackChunkName: "finance.withdraw" */ './transaction-list'),
  30 + meta: {
  31 + pageName: '交易账务明细',
  32 + },
  33 + },
26 ]; 34 ];
1 import WithdrawList from './withdraw-list'; 1 import WithdrawList from './withdraw-list';
2 import Detail from './detail'; 2 import Detail from './detail';
3 import ServiceList from './service-list'; 3 import ServiceList from './service-list';
4 -import ShopAccountList from './shop-account-list'; 4 +import TransactionList from './transaction-list';
5 import WithdrawApply from './withdraw-apply'; 5 import WithdrawApply from './withdraw-apply';
6 6
7 -export { WithdrawList, Detail, ServiceList, ShopAccountList, WithdrawApply }; 7 +export { WithdrawList, Detail, ServiceList, TransactionList, WithdrawApply };
  1 +<template>
  2 + <div class="stat-shop"></div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {};
  7 +</script>
  8 +
  9 +<style lang="scss">
  10 +.stat-shop {
  11 + .ivu-tabs-tabpane {
  12 + height: 400px;
  13 + position: relative;
  14 + }
  15 +}
  16 +</style>