11 lines
400 B
Plaintext
11 lines
400 B
Plaintext
<view class="tab-wrap">
|
|
<view class="tab-con">
|
|
<text class="{{currentTab==0 ? 'tab-active' : ''}}" data-current="0" bindtap="swichNav">文章</text>
|
|
<text class="{{currentTab==1 ? 'tab-active' : ''}}" data-current="1" bindtap="swichNav">我的商品</text>
|
|
</view>
|
|
</view>
|
|
<view class="pub-container">
|
|
|
|
</view>
|
|
<article-list wx:if="{{currentTab==0}}" />
|
|
<goods-list wx:if="{{currentTab==1}}" /> |