修改pages.json-首页
parent
827f48bbd8
commit
a312c6981d
20
pages.json
20
pages.json
|
@ -7,7 +7,16 @@
|
|||
"^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
|
||||
}
|
||||
},
|
||||
"pages": [{
|
||||
"pages": [
|
||||
{
|
||||
"path": "pages/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "若依移动端框架",
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/signln/harvestaddress",
|
||||
"style": {
|
||||
"navigationBarTitleText": "收货地址",
|
||||
|
@ -28,14 +37,7 @@
|
|||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "若依移动端框架",
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/signln/signid",
|
||||
"style": {
|
||||
|
|
|
@ -15,45 +15,45 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<up-tabbar
|
||||
class="up-tabbar-container"
|
||||
:fixed="true"
|
||||
:placeholder="true"
|
||||
:safeAreaInsetBottom="true"
|
||||
>
|
||||
<!-- <view class="flex justifyCenter"> -->
|
||||
<view class="flex alignCenter justifyCenter">
|
||||
<view class="flex justifyCenter alignCenter commentInput">
|
||||
<image class="commentInput-img" src="../../../static/logo.png" mode=""></image>
|
||||
<text class="commentInput-text">友好评论~</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<up-tabbar
|
||||
:fixed="true"
|
||||
:placeholder="true"
|
||||
:safeAreaInsetBottom="true"
|
||||
>
|
||||
<!-- <view class="flex justifyCenter"> -->
|
||||
<view class="flex alignCenter justifyCenter">
|
||||
<view class="flex justifyCenter alignCenter commentInput">
|
||||
<image class="commentInput-img" src="../../../static/logo.png" mode=""></image>
|
||||
<text class="commentInput-text">友好评论~</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="postValue.isLike" @click.stop="cancelCollection()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-8.png" mode=""></image>
|
||||
<text class="commentInput-txt-like">{{postValue.likeCount}}</text>
|
||||
</view>
|
||||
<view v-if="!postValue.isLike" @click.stop="addCollection()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-7.png" mode=""></image>
|
||||
<text class="commentInput-txt">{{postValue.likeCount}}</text>
|
||||
</view>
|
||||
|
||||
<view v-if="postValue.isLike" @click.stop="cancelCollection()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-8.png" mode=""></image>
|
||||
<text class="commentInput-txt-like">{{postValue.likeCount}}</text>
|
||||
</view>
|
||||
<view v-if="!postValue.isLike" @click.stop="addCollection()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-7.png" mode=""></image>
|
||||
<text class="commentInput-txt">{{postValue.likeCount}}</text>
|
||||
</view>
|
||||
<view v-if="postValue.ifFavorite" @click.stop="cancelFavorite()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-2.png" mode=""></image>
|
||||
<text class="commentInput-txt-favorite">{{postValue.favoriteCount}}</text>
|
||||
</view>
|
||||
<view v-if="!postValue.ifFavorite" @click.stop="addFavorite()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-1.png" mode=""></image>
|
||||
<text class="commentInput-txt">{{postValue.favoriteCount}}</text>
|
||||
</view>
|
||||
|
||||
<view v-if="postValue.ifFavorite" @click.stop="cancelFavorite()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-2.png" mode=""></image>
|
||||
<text class="commentInput-txt-favorite">{{postValue.favoriteCount}}</text>
|
||||
</view>
|
||||
<view v-if="!postValue.ifFavorite" @click.stop="addFavorite()" class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu3-1.png" mode=""></image>
|
||||
<text class="commentInput-txt">{{postValue.favoriteCount}}</text>
|
||||
</view>
|
||||
|
||||
<view class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu2-9.png" mode=""></image>
|
||||
<text class="commentInput-txt">转发</text>
|
||||
</view>
|
||||
<!-- </view> -->
|
||||
</up-tabbar>
|
||||
</view>
|
||||
<view class="flex alignCenter justifyCenter flexColumn">
|
||||
<image class="commentInput-img" src="../../../static/images/icon/tu2-9.png" mode=""></image>
|
||||
<text class="commentInput-txt">转发</text>
|
||||
</view>
|
||||
<!-- </view> -->
|
||||
</up-tabbar>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
Loading…
Reference in New Issue