|
@@ -1,15 +1,12 @@
|
|
|
<template>
|
|
|
<div class="order-list">
|
|
|
<div class="header">
|
|
|
- <Icon class="icon" color="#736F6F" name="arrow-left" size="16"/>
|
|
|
<ul>
|
|
|
<li
|
|
|
v-for="(item, index) in tabList"
|
|
|
:key="index"
|
|
|
:class="{ active: index === currentTab }"
|
|
|
- @click="tabChange(index)"
|
|
|
- >
|
|
|
- {{ item }}
|
|
|
+ @click="tabChange(index)">{{ item }}
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
@@ -19,12 +16,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { Icon } from 'vant'
|
|
|
-
|
|
|
export default {
|
|
|
- components: {
|
|
|
- Icon
|
|
|
- },
|
|
|
data () {
|
|
|
return {
|
|
|
tabList: ['订单'],
|
|
@@ -92,6 +84,5 @@ export default {
|
|
|
height: 100vh;
|
|
|
padding-top: 43px;
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
</style>
|