|
|
@@ -0,0 +1,141 @@
|
|
|
+<template>
|
|
|
+ <div class="app-content">
|
|
|
+ <!-- <div class="invite-top-img">
|
|
|
+ <img src="../../static/images/interest/invite.png" alt mode="widthFix" />
|
|
|
+ </div> -->
|
|
|
+ <div class="list-content">
|
|
|
+ <!-- <div class="invite-tabs">
|
|
|
+ <div class="tabs-list">
|
|
|
+ <div class="tabs-img">
|
|
|
+ <img src="../../static/images/user/attr-default.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="tab-list-right">
|
|
|
+ <div class>已邀请(人)</div>
|
|
|
+ <div class="tabs-num">29</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="tabs-list">
|
|
|
+ <div class="tabs-img">
|
|
|
+ <img src="../../static/images/user/attr-default.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="tabs-list-right">
|
|
|
+ <div class>已下单(人)</div>
|
|
|
+ <div class="tabs-num">6</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+ <!-- 邀请记录 -->
|
|
|
+ <!-- <div class="invite-list-blo">
|
|
|
+ <div class="invite-list-tit flex-center-between">
|
|
|
+ <div class="app-size-30">邀请记录</div>
|
|
|
+ <div class="flex-center-end app-color-3">
|
|
|
+ <span>规则说明</span>
|
|
|
+ <i class="iconfont iconxiaoxi"></i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="invite-list-wrap">
|
|
|
+ <div class="invite-list flex-center-between" v-for="(item, index) in 6" :key="index">
|
|
|
+ <div class="list-left flex-center-start">
|
|
|
+ <div class="list-img">
|
|
|
+ <img src="../../static/images/user/attr-default.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class>
|
|
|
+ <div class="app-size-30">冯宝宝</div>
|
|
|
+ <div class="app-color-3">
|
|
|
+ <span>2019-10-10 10:00 下单</span>
|
|
|
+ <span class="app-price">¥198</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="app-size-26">已兑奖</div>
|
|
|
+ </div>
|
|
|
+ <div class="load-more flex-center-center app-color-3">加载更多...</div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+ </div>
|
|
|
+ <!-- 弹窗 -->
|
|
|
+ <alert-module :show="showAlert" @click="hideAlert" @cancel="hideAlert" :maskClosable="hideAlert" >
|
|
|
+
|
|
|
+ </alert-module>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import alertModule from '@/components/plugin/alert'
|
|
|
+export default {
|
|
|
+ name: 'invite',
|
|
|
+ components: {
|
|
|
+ alertModule
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ showAlert: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ hideAlert() {
|
|
|
+ this.showAlert = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .app-content {
|
|
|
+ width: 100%;
|
|
|
+ // position: relative;
|
|
|
+ }
|
|
|
+ .list-content {
|
|
|
+ position: relative;
|
|
|
+ top: -100px;
|
|
|
+ width: 96%;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ .invite-tabs {
|
|
|
+ padding: 20px 60px 24px;
|
|
|
+ // border-bottom: 20px solid #f5f5f5;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ color: $fontColor3;
|
|
|
+ border-radius: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ @include disFlex(center, space-between);
|
|
|
+ .tabs-list {
|
|
|
+ @include disFlex(center, flex-end);
|
|
|
+ }
|
|
|
+ .tabs-img {
|
|
|
+ width: 90px;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+ .tabs-num {
|
|
|
+ font-size: 40px;
|
|
|
+ color: #FF5400;
|
|
|
+ margin-top: 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .invite-list-blo {
|
|
|
+ padding: 20px 20px 24px;
|
|
|
+ border-radius: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ .invite-list-tit {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .iconfont {
|
|
|
+ margin-left: 10px;
|
|
|
+ font-size: 34px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .invite-list-wrap {
|
|
|
+ .invite-list {
|
|
|
+ padding: 14px 0;
|
|
|
+ border-bottom: 1px solid $borderColor;
|
|
|
+ }
|
|
|
+ .list-img {
|
|
|
+ width: 80px;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+ // 加载更多
|
|
|
+ .load-more {
|
|
|
+ padding: 24px 0 6px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|