|
|
@@ -6,7 +6,7 @@
|
|
|
<nuxt-link to="/mobile/center/user/invoice/invoiceRecord" tag=div><span>开票记录</span></nuxt-link>
|
|
|
</div>
|
|
|
<div class="mobile-invoice">
|
|
|
- <div class="mi-remind-area">
|
|
|
+ <div class="mi-remind-area" :class="{less: !showMoreRemind}">
|
|
|
<p class="title">温馨提示</p>
|
|
|
<p class="content">
|
|
|
<span class="inline-block">1、</span>
|
|
|
@@ -24,6 +24,10 @@
|
|
|
<span class="inline-block">4、</span>
|
|
|
<span class="inline-block">发票邮寄费用将由卖家承担。</span>
|
|
|
</p>
|
|
|
+ <p class="more" @click="showMoreRemind = !showMoreRemind">{{showMoreRemind ? '收起' : '查看更多'}}
|
|
|
+ <i v-show="showMoreRemind" class="iconfont icon-shangshuangjiantou"></i>
|
|
|
+ <i v-show="!showMoreRemind" class="iconfont icon-xiashuangjiantou"></i>
|
|
|
+ </p>
|
|
|
</div>
|
|
|
<div class="search-content mi-search-content">
|
|
|
<input type="text" placeholder="商家名称/订单号" v-model="keyword">
|
|
|
@@ -87,6 +91,11 @@
|
|
|
name: 'invoice-view',
|
|
|
layout: 'mobile',
|
|
|
middleware: 'authenticated',
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ showMoreRemind: false
|
|
|
+ }
|
|
|
+ },
|
|
|
computed: {
|
|
|
invoices () {
|
|
|
return this.$store.state.invoice.data.Buyerinvoices
|