...
|
...
|
@@ -2,18 +2,20 @@ |
|
|
<layout-body>
|
|
|
<layout-filter>
|
|
|
<filter-item>
|
|
|
<p><span class="bold-title">状态:提现成功</span><br /><span class="no">交易成功时间:2020-03-31 23:43:21</span></p>
|
|
|
<p><span class="bold-title">状态:提现成功</span><br/><span class="no">交易成功时间:2020-03-31 23:43:21</span></p>
|
|
|
</filter-item>
|
|
|
<filter-item>
|
|
|
<p><span class="no">创建时间:2020-3-30 21:34:23</span><span class="no">店铺:一件代发店铺</span><span class="no">供应商:一件代发供应商</span></p>
|
|
|
<p><span class="no">创建时间:2020-3-30 21:34:23</span><span class="no">店铺:一件代发店铺</span><span
|
|
|
class="no">供应商:一件代发供应商</span></p>
|
|
|
</filter-item>
|
|
|
</layout-filter>
|
|
|
<layout-list>
|
|
|
<!-- <Table border :columns="columns" :row-class-name="rowClassName" :data="dataList"></Table>-->
|
|
|
<!-- <Table border :columns="columns" :row-class-name="rowClassName" :data="dataList"></Table>-->
|
|
|
<table border class="table-body">
|
|
|
<tr class="tr-body" v-for="(row, outerIndex) in dataArray" :key="outerIndex">
|
|
|
<!-- flex: 0 0 x% 自适应布局,每一大列的宽度按百分比显示 -->
|
|
|
<div class="td-box" :style="{flex: '0 0 ' + 100 / row.length + '%'}" v-for="(col, innerIndex) in row" :key="innerIndex">
|
|
|
<div class="td-box" :style="{flex: '0 0 ' + 100 / row.length + '%'}" v-for="(col, innerIndex) in row"
|
|
|
:key="innerIndex">
|
|
|
<td class="td-key">{{ col.key }}</td>
|
|
|
<td class="td-value">{{ col.value }}</td>
|
|
|
</div>
|
...
|
...
|
@@ -29,7 +31,7 @@ |
|
|
</layout-body>
|
|
|
</template>
|
|
|
<script>
|
|
|
// import _ from 'lodash';
|
|
|
// import _ from 'lodash';
|
|
|
import {Detail} from './store';
|
|
|
|
|
|
export default {
|
...
|
...
|
@@ -44,9 +46,9 @@ |
|
|
},
|
|
|
methods: {
|
|
|
backList() {
|
|
|
this.$router.push({ name: 'finance.withdraw.withdrawlist' });
|
|
|
this.$router.push({name: 'finance.withdraw.withdrawlist'});
|
|
|
},
|
|
|
handleTeacherData () {
|
|
|
handleTeacherData() {
|
|
|
// if (!teacher) {
|
|
|
// return
|
|
|
// }
|
...
|
...
|
@@ -89,7 +91,7 @@ |
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.bold-title{
|
|
|
.bold-title {
|
|
|
font-size: 20px;
|
|
|
font-weight: bold;
|
|
|
}
|
...
|
...
|
|