|
@@ -11,12 +11,12 @@
|
|
|
<u-cell v-for="(item, index) in invoiceList" :key="index">
|
|
|
<view slot="title" class="u-slot-title">
|
|
|
<u--text mode="name" :text="item.userName" bold></u--text>
|
|
|
- <u--text :text="('前上级:'+item.beforeParentName)"></u--text>
|
|
|
- <u--text :text="('现上级:'+item.afterParentName)"></u--text>
|
|
|
+ <u--text :text="('前上级:'+item.beforeParentName)" size="12"></u--text>
|
|
|
+ <u--text :text="('现上级:'+item.afterParentName)" size="12"></u--text>
|
|
|
</view>
|
|
|
<view slot="right-icon" style="margin-top: 20px">
|
|
|
<u--text :text="item.typeMsg" bold align="right"></u--text>
|
|
|
- <u--text :text="item.updateTime"></u--text>
|
|
|
+ <u--text :text="item.updateTime" size="12"></u--text>
|
|
|
</view>
|
|
|
</u-cell>
|
|
|
</u-cell-group>
|
|
@@ -117,7 +117,7 @@ export default {
|
|
|
invoiceList: [],
|
|
|
nav: 1, // 1:发票记录 2:抬头管理
|
|
|
page: 1,
|
|
|
- limit: 30,
|
|
|
+ limit: 300,
|
|
|
loading: false,
|
|
|
finished: false,
|
|
|
specialInvoice: true
|
|
@@ -149,8 +149,12 @@ export default {
|
|
|
this.getStatistics();
|
|
|
},
|
|
|
methods: {
|
|
|
- click(name) {
|
|
|
- console.log(name);
|
|
|
+ click(index) {
|
|
|
+ if (index == 0 ){
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/users/user_earningsCount/index'
|
|
|
+ })
|
|
|
+ }
|
|
|
},
|
|
|
getStatistics() {
|
|
|
uni.showLoading({
|