|
|
@@ -1,7 +1,16 @@
|
|
|
<template>
|
|
|
<view class="page" :style="{'height':windowHeight}">
|
|
|
|
|
|
- <scroll-view scroll-y :style="{'height':windowHeight}">
|
|
|
+ <view class="flex-col" v-if="equityList.length === 0">
|
|
|
+ <view class="flex-row justify-center">
|
|
|
+ <image class="empty" src="/static/imageIcon/empty.png" mode="widthFix"></image>
|
|
|
+ </view>
|
|
|
+ <view class="emptyText flex-row justify-center">
|
|
|
+ <text>暂无内容</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <scroll-view v-else scroll-y :style="{'height':windowHeight}">
|
|
|
<view class="row-list flex-row justify-start" v-for="(item,index) in equityList" :key="index">
|
|
|
<view class="h-text flex-col justify-center ">
|
|
|
<view class="money">
|