123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631 |
- <template>
- <view :style="colorStyle">
- <view class="acea-row nav" v-show="(nav !== 3)">
- <view class="acea-row row-center-wrapper" :class="{ on: nav === 1 }" @click="navTab(1)">{{partnerStr}}
- </view>
- <!-- <view class="acea-row row-center-wrapper" :class="{ on: nav === 2 }" @click="navTab(2)">{{ $t(`绑定记录`) }}
- </view> -->
- </view>
- <view v-show="(nav === 2)" class="record-wrapper">
- <u-cell-group>
- <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)" 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" size="12"></u--text>
- </view>
- </u-cell>
- </u-cell-group>
- <view v-show="page === 2 && !invoiceList.length" class="nothing">
- <image :src="imgHost + '/statics/images/noInvoice.png'"></image>
- <view>{{ $t(`没有绑定信息哟~`) }}</view>
- </view>
- </view>
- <view v-show="(nav === 1)">
- <view class="list">
- <u-grid :border="true" col="2" @click="click">
- <u-grid-item v-for="(listItem, listIndex) in list" :key="listIndex">
- <text class="grid-text">{{ (listItem.title) }}{{ listIndex == 0 ? ' >' : '' }}</text>
- <text class="grid-text-amount">{{ listItem.count }}{{ listIndex <= 1 ? '元' : '' }}</text>
- </u-grid-item>
- </u-grid>
- <view class="imageUrl">
- <view class="imageUrlin" v-if="url">
- <ayQrcode ref="qrcode" qrcode_id="qrcode" :modal="modal_qr" :url="url" @hideQrcode="hideQrcode"
- :height="qr_height" :width="qr_width" />
- <!-- <u--image src="https://cdn.uviewui.com/uview/album/1.jpg" height="200px" width="100%"
- :showLoading="true">
- <view slot="error" style="font-size: 24rpx;">加载失败</view>
- </u--image> -->
- </view>
- </view>
- </view>
- <!-- <view v-show="page === 2 && !invoiceList.length" class="nothing">
- <image :src="imgHost + '/statics/images/noInvoice.png'"></image>
- <view>{{ $t(`没有消费商信息哟~`) }}</view>
- </view> -->
- <!-- <button v-if="isGongFu" class="add-link" :url="`/pages/goods_details/index?id=${gongFuId}&zoneType=8`">
- {{ $t(`邀请用户立即参与`) }}</button> -->
- <button v-if="isGongFu" class="add-link" open-type="share">
- {{ $t(`邀请用户立即参与`) }}</button>
- <navigator v-else class="add-link" :url="`/pages/goods/goods_list_mall/index?zoneType=8&title=共富1580`">
- {{ $t(`邀请用户立即参与`) }}</navigator>
- </view>
- <view v-show="(nav === 3)">
- <view class="list-nav3">
- <u-empty mode="permission" text="您还未参与共富1580" icon="http://cdn.uviewui.com/uview/empty/permission.png"
- :height="600">
- </u-empty>
- </view>
- <navigator v-if="isGongFu" class="add-link" :url="`/pages/goods_details/index?id=${gongFuId}&zoneType=8`">
- {{ $t(`立即参与`) }}</navigator>
- <navigator v-else class="add-link" :url="`/pages/goods/goods_list_mall/index?zoneType=8&title=共富1580`">
- {{ $t(`立即参与`) }}</navigator>
- </view>
- <!-- #ifndef MP -->
- <home></home>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import ayQrcode from "@/components/ay-qrcode/ay-qrcode.vue"
- import home from '@/components/home';
- import {
- mapGetters
- } from "vuex";
- import {
- invoiceList,
- invoiceDelete,
- getUserInfo
- } from '@/api/user.js';
- import {
- postStatistics,
- linkedBindLogList,
- getGoodsInfo,
- postLinkedUrl
- } from '@/api/home.js';
- import {
- orderInvoiceList
- } from '@/api/order.js';
- import colors from '@/mixins/color.js';
- import { HTTP_REQUEST_URL } from '@/config/app';
- export default {
- components: {
- home,
- ayQrcode
- },
- mixins: [colors],
- data() {
- return {
- //二维码相关参数
- modal_qr: false,
- url: '', // 要生成的二维码值
- partnerStr: '',
- list: [{
- name: 'photo',
- title: '累计收益',
- count: 0
- },
- {
- name: 'lock',
- title: '今日收益',
- count: 0
- },
- {
- name: 'star',
- title: '直属伙伴',
- count: 0
- },
- {
- name: 'hourglass',
- title: '团队伙伴',
- count: 0
- },
- {
- name: 'home',
- title: '我的幸运数',
- count: 0
- },
- {
- name: 'star',
- title: '当前幸运数',
- count: 0
- },
- ],
- imgHost: HTTP_REQUEST_URL,
- orderList: [],
- invoiceList: [],
- nav: 1, // 1:发票记录 2:抬头管理
- page: 1,
- limit: 300,
- where: {
- zoneType: 8,
- current: 1,
- size: 20,
- },
- loading: false,
- finished: false,
- specialInvoice: true,
- storeInfo: {},
- promotionShare: '',
- isGongFu: true,
- gongFuId: true,
- qr_height: 200,
- qr_width: 200,
- };
- },
- watch: {
- nav: {
- immediate: true,
- handler(value) {
- this.page = 1;
- switch (value) {
- case 1:
- this.orderList = [];
- this.getStatistics();
- break;
- case 2:
- this.invoiceList = [];
- this.getInvoiceList();
- break;
- }
- }
- }
- },
- computed: mapGetters(['isLogin']),
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function (res) {
- let userInfo = this.$Cache.get("USER_INFO", true)
- let that = this;
- return {
- title: userInfo.realName + "邀请您购买共富1580商品",
- imageUrl: "http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" || that.storeInfo.image,
- path: "/pages/goods_details/index?id=" + that.gongFuId + "&inviteCode=" + that.promotionShare
- +"&zoneType=8",
- };
-
- },
- onLoad(option) {
- let that = this
- if (option.from === 'invoice_form') {
- this.nav = 2;
- }
- uni.getSystemInfo({
- success: function (res) {
- that.qr_width = res.windowWidth * 0.4
- that.qr_height = res.windowWidth * 0.4
- },
- });
- this.getStatistics();
- },
- methods: {
- // 展示二维码
- showQrcode() {
- let _this = this;
- this.modal_qr = true;
- // uni.showLoading()
- setTimeout(function () {
- // uni.hideLoading()
- _this.$refs.qrcode.crtQrCode()
- }, 50)
- },
- //传入组件的方法
- hideQrcode() {
- this.modal_qr = false;
- },
- click(index) {
- if (index == 0) {
- uni.navigateTo({
- url: '/pages/users/user_earningsCount/index'
- })
- }
- if (index == 2) {
- uni.navigateTo({
- url: '/pages/users/user_directPartner/index'
- })
- }
- },
- getStatistics() {
- let that = this
- uni.showLoading({
- title: this.$t(`加载中`)
- });
- postStatistics({
- userId: this.$store.state.app.uid
- }
- ).then(res => {
- uni.hideLoading();
- if (res.data.isPartner == -1) {
- this.nav = 3
- } else {
- this.list[0].count = res.data.earningsCount || 0
- this.list[1].count = res.data.todayEarnings || 0
- this.list[2].count = res.data.oneCount || 0
- this.list[3].count = res.data.twoCount || 0
- this.list[4].count = res.data.sort || 0
- this.list[5].count = res.data.outSort || 0
- this.partnerStr = res.data.partnerStr
- this.specialInvoice = true
- if (res.data.sheraUrl) {
- this.url = res.data.sheraUrl
- this.showQrcode()
- }
- }
- });
- getGoodsInfo(that.where).then(res => {
- let list = res.data;
- if (that.where.zoneType == 8 && list.length == 1) {
- // 自动跳转共富1580商品详情参数准备
- that.gongFuId = list[0].id
- that.storeInfo = list[0]
- that.isGongFu = true
- // that.godDetail(list[0])
- } else {
- that.isGongFu = false
- }
- })
- postLinkedUrl().then(res => {
- this.promotionShare = res.data.promotionNo
- })
- },
- // 菜单切换
- navTab(nav) {
- if (this.nav !== nav) {
- this.nav = nav;
- }
- },
- // 记录列表
- getOrderList() {
- uni.showLoading({
- title: this.$t(`加载中`)
- });
- orderInvoiceList({
- page: this.page,
- limit: this.limit
- }).then(res => {
- const {
- data
- } = res;
- uni.hideLoading();
- this.orderList = this.orderList.concat(data);
- this.finished = data.length < this.limit;
- this.page += 1;
- }).catch(err => {
- uni.showToast({
- title: err.msg,
- icon: 'none'
- });
- });
- },
- // 发票列表
- getInvoiceList() {
- uni.showLoading({
- title: this.$t(`加载中`)
- });
- linkedBindLogList({
- userId: this.$store.state.app.uid,
- current: this.page,
- size: this.limit
- }).then(res => {
- const {
- data
- } = res;
- uni.hideLoading();
- this.invoiceList = this.invoiceList.concat(data);
- this.finished = data.length < this.limit;
- this.page += 1;
- }).catch(err => {
- uni.showToast({
- title: err.msg,
- icon: 'none'
- });
- });
- },
- // 编辑发票
- editInvoice(id) {
- uni.navigateTo({
- url: `/pages/users/user_invoice_form/index?id=${id}`
- });
- },
- // 删除发票
- deleteInvoice(id) {
- let that = this;
- uni.showModal({
- content: that.$t(`删除该发票?`),
- confirmColor: '#E93323',
- success(res) {
- if (res.confirm) {
- invoiceDelete(id).then(() => {
- that.$util.Tips({
- title: that.$t(`删除成功`),
- icon: 'success'
- }, () => {
- let index = that.invoiceList.findIndex(value => {
- return value.id == id;
- });
- that.invoiceList.splice(index, 1);
- });
- }).catch(err => {
- return that.$util.Tips({
- title: err
- });
- });
- }
- }
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .imageUrl {
- margin-top: 30px;
- width: 100%;
- height: 100%;
- background-color: white;
- }
- .imageUrlin {
- width: 50%;
- height: 200px;
- margin-left: auto;
- margin-right: auto;
- }
- .grid-text {
- font-size: 16px;
- color: #3b3c3d;
- padding: 20rpx 20px 20rpx 0rpx;
- /* #ifndef APP-PLUS */
- box-sizing: border-box;
- /* #endif */
- }
- .grid-text-amount {
- font-size: 16px;
- color: #d82a64;
- padding: 10rpx 20px 20rpx 0rpx;
- /* #ifndef APP-PLUS */
- box-sizing: border-box;
- /* #endif */
- }
- .nav {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9;
- width: 100%;
- height: 90rpx;
- background-color: #FFFFFF;
- }
- .nav .acea-row {
- flex: 1;
- border-top: 3rpx solid transparent;
- border-bottom: 3rpx solid transparent;
- font-size: 30rpx;
- color: #282828;
- }
- .nav .on {
- border-bottom-color: var(--view-theme);
- color: var(--view-theme);
- }
- .list {
- padding: 14rpx 32rpx;
- margin-top: 90rpx;
- margin-bottom: 140rpx;
- background-color: white;
- }
- .list-nav3 {
- margin-top: 2rpx;
- height: 1200px;
- background-image: url('http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg');
- }
- .list .item {
- padding: 28rpx 32rpx;
- background-color: #FFFFFF;
- }
- .list .item~.item {
- margin-top: 14rpx;
- }
- .list .item-hd .acea-row {
- flex: 1;
- min-width: 0;
- }
- .list .name {
- font-weight: 600;
- font-size: 30rpx;
- color: #282828;
- }
- .list .label {
- width: 56rpx;
- height: 28rpx;
- border: 1rpx solid var(--view-theme);
- margin-left: 18rpx;
- font-size: 20rpx;
- line-height: 26rpx;
- text-align: center;
- color: var(--view-theme);
- }
- .list .type {
- // width: 172rpx;
- height: 42rpx;
- margin-left: 30rpx;
- background-color: #FCF0E0;
- font-size: 24rpx;
- line-height: 42rpx;
- text-align: center;
- color: #D67300;
- }
- .list .type.special {
- background-color: #FDE9E7;
- color: #E93323;
- }
- .list .item-bd {
- margin-top: 18rpx;
- }
- .list .cell {
- font-size: 26rpx;
- color: #666666;
- }
- .list .cell~.cell {
- margin-top: 12rpx;
- }
- .list .item-ft {
- margin-top: 11rpx;
- }
- .list .btn {
- font-size: 26rpx;
- color: #282828;
- cursor: pointer;
- }
- .list .btn~.btn {
- margin-left: 35rpx;
- }
- .list .btn .iconfont {
- margin-right: 10rpx;
- font-size: 24rpx;
- color: #000000;
- }
- .add-link {
- position: fixed;
- right: 30rpx;
- bottom: 33rpx;
- left: 30rpx;
- height: 86rpx;
- border-radius: 43rpx;
- background-color: var(--view-theme);
- font-size: 30rpx;
- line-height: 86rpx;
- text-align: center;
- color: #FFFFFF;
- .iconfont {
- margin-right: 14rpx;
- font-size: 28rpx;
- }
- }
- .nothing {
- margin-top: 254rpx;
- font-size: 26rpx;
- text-align: center;
- color: #999999;
- .image {
- width: 400rpx;
- height: 260rpx;
- margin-bottom: 20rpx;
- }
- }
- .record-wrapper {
- margin-top: 90rpx;
- background-color: white;
- .item {
- padding-right: 30rpx;
- padding-left: 30rpx;
- border-radius: 6rpx;
- margin: 30rpx;
- background-color: #FFFFFF;
- .item-hd {
- padding-top: 36rpx;
- padding-bottom: 36rpx;
- .image {
- width: 78rpx;
- height: 78rpx;
- border-radius: 6rpx;
- }
- .text {
- flex: 1;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- margin-left: 24rpx;
- font-size: 26rpx;
- line-height: 37rpx;
- color: #282828;
- }
- }
- .item-bd {
- padding: 26rpx 30rpx 25rpx 32rpx;
- border-radius: 20rpx;
- background-color: #F5F6F7;
- font-size: 26rpx;
- line-height: 37rpx;
- color: #818181;
- .name {
- margin-bottom: 8rpx;
- font-weight: bold;
- font-size: 26rpx;
- color: #282828;
- }
- .money {
- font-weight: bold;
- font-size: 24rpx;
- color: #282828;
- .num {
- font-size: 32rpx;
- }
- }
- }
- .item-ft {
- padding-top: 30rpx;
- padding-bottom: 30rpx;
- font-weight: bold;
- font-size: 28rpx;
- color: #282828;
- .link {
- width: 150rpx;
- height: 57rpx;
- border: 1rpx solid #707070;
- border-radius: 29rpx;
- font-weight: normal;
- font-size: 26rpx;
- line-height: 57rpx;
- text-align: center;
- color: #282828;
- }
- }
- }
- }
- </style>
|