diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json
index 1b8d0f6..8ae452a 100644
--- a/.hbuilderx/launch.json
+++ b/.hbuilderx/launch.json
@@ -2,7 +2,7 @@
"version" : "1.0",
"configurations" : [
{
- "playground" : "custom",
+ "playground" : "standard",
"type" : "uni-app:app-android"
}
]
diff --git a/App.vue b/App.vue
index 96a7a46..01387a1 100644
--- a/App.vue
+++ b/App.vue
@@ -1,9 +1,9 @@
diff --git a/api/login/login.js b/api/login/login.js
index ad323a6..f1f4109 100644
--- a/api/login/login.js
+++ b/api/login/login.js
@@ -41,3 +41,13 @@ export const forgetPwd = (data) => {
})
}
+/**
+ * 绑定
+ */
+export const bind = (data) => {
+ return http.request({
+ url: '/Login/registerCode',
+ method: 'POST',
+ params: data
+ })
+}
\ No newline at end of file
diff --git a/api/me/me.js b/api/me/me.js
index 3da06c2..72d2b8e 100644
--- a/api/me/me.js
+++ b/api/me/me.js
@@ -9,4 +9,67 @@ export const selectByUserId = (data) => {
data: data,
method: 'GET'
})
+}
+
+/**
+ * 获取客服微信
+ */
+export const commonType = (type) => {
+ return http.request({
+ url: `/common/type/${type}`,
+ method: 'GET'
+ })
+}
+
+/**
+ * 金币明细
+ */
+export const queryUserMoneyDetails = (data) => {
+ return http.request({
+ url: '/moneyDetails/queryUserMoneyDetails',
+ method: 'GET',
+ data: data
+ })
+}
+
+/**
+ * 意见反馈
+ */
+export const sendMessage = (data) => {
+ return http.request({
+ url: '/message/sendMessage',
+ method: 'POST',
+ data: data
+ })
+}
+
+/**
+ * 帮助中心
+ */
+export const selectHelpList = (data) => {
+ return http.request({
+ url: '/helpWord/selectHelpList',
+ method: 'GET',
+ data: data
+ })
+}
+
+/**
+ * 个人中心数据
+ */
+export const collectVideoSummary = () => {
+ return http.request({
+ url: '/courseCollect/collectVideoSummary',
+ method: 'GET'
+ })
+}
+
+/**
+ * 金币
+ */
+export const selectUserMoney = () => {
+ return http.request({
+ url: '/moneyDetails/selectUserMoney',
+ method: 'GET'
+ })
}
\ No newline at end of file
diff --git a/api/me/message.js b/api/me/message.js
new file mode 100644
index 0000000..c670391
--- /dev/null
+++ b/api/me/message.js
@@ -0,0 +1,11 @@
+import http from '@/http/http.js'
+
+/**
+ * 获取消息列表
+ */
+export const selectMessageByUserId = (data) => {
+ return http.request({
+ url: '/message/selectMessageByUserId',
+ data: data,
+ })
+}
\ No newline at end of file
diff --git a/api/me/withdraw.js b/api/me/withdraw.js
new file mode 100644
index 0000000..425201a
--- /dev/null
+++ b/api/me/withdraw.js
@@ -0,0 +1,71 @@
+import http from '@/http/http.js'
+
+/**
+ * 获取提现金额
+ */
+export const selectUserMoney = (data) => {
+ return http.request({
+ url: '/moneyDetails/selectUserMoney',
+ })
+}
+
+/**
+ * 获取提现记录
+ */
+export const selectPayDetails = (data) => {
+ return http.request({
+ url: '/cash/selectPayDetails',
+ data: data
+ })
+}
+
+/**
+ * 红包明细记录
+ */
+export const queryUserMoneyDetails = (data) => {
+ return http.request({
+ url: '/moneyDetails/queryUserMoneyDetails',
+ data: data
+ })
+}
+
+
+/**
+ * 修改提现账号
+ */
+export const updateUser = (data) => {
+ return http.request({
+ url: '/user/updateUser',
+ params: data
+ })
+}
+
+/**
+ * 获取看广告状态
+ */
+export const canCash = (data) => {
+ return http.request({
+ url: '/cash/canCash',
+ })
+}
+
+/**
+ * 广告状态修改
+ */
+export const state = (data) => {
+ return http.request({
+ url: '/ad/state',
+ data: data,
+ })
+}
+
+/**
+ * 广告状态修改
+ */
+export const withdraw = (data) => {
+ return http.request({
+ url: '/cash/withdraw',
+ data: data,
+ })
+}
+
diff --git a/api/share/index.js b/api/share/index.js
new file mode 100644
index 0000000..a36b9bd
--- /dev/null
+++ b/api/share/index.js
@@ -0,0 +1,32 @@
+import http from '@/http/http.js'
+
+/**
+ * 获取已邀请列表
+ */
+export const selectInviteByUserIdLists = (data) => {
+ return http.request({
+ url: '/invite/selectInviteByUserIdLists',
+ data: data,
+ })
+}
+
+/**
+ * 获取邀请战绩
+ */
+export const selectInviteMoney = (data) => {
+ return http.request({
+ url: '/invite/selectInviteMoney',
+ data: data,
+ })
+}
+
+/**
+ * 获取海报数据
+ */
+export const selectBannerList = (data) => {
+ return http.request({
+ url: '/banner/selectBannerList',
+ data: data,
+ })
+}
+
diff --git a/api/user/user.js b/api/user/user.js
index 0f89981..93846b2 100644
--- a/api/user/user.js
+++ b/api/user/user.js
@@ -8,4 +8,15 @@ export const selectUserById = (data) => {
url: '/user/selectUserById',
data: data
})
-}
\ No newline at end of file
+}
+
+/**
+ * 修改用户信息
+ */
+export const updateUsers = (data) => {
+ return http.request({
+ url: '/user/updateUsers',
+ method: 'POST',
+ data: data,
+ })
+}
diff --git a/http/http.js b/http/http.js
index 041d67f..653ab23 100644
--- a/http/http.js
+++ b/http/http.js
@@ -162,7 +162,7 @@ function request(args) {
result += encodeURIComponent(key) + '=' + encodeURIComponent(params[key]) + "&"
}
})
- url = url+'?'+result
+ url = url+'?'+(result.slice(0,result.length-1))
params = null
}
let headerObject = {}
diff --git a/manifest.json b/manifest.json
index 175630e..4bf0cc6 100644
--- a/manifest.json
+++ b/manifest.json
@@ -3,7 +3,7 @@
"appid" : "__UNI__E0B05B1",
"description" : "",
"versionName" : "1.0.0",
- "versionCode" : "100",
+ "versionCode" : 100,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
diff --git a/pages.json b/pages.json
index a1e3eea..794f373 100644
--- a/pages.json
+++ b/pages.json
@@ -28,7 +28,7 @@
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
- },
+ },
{
"path": "pages/task/index",
"style": {
@@ -42,13 +42,47 @@
"enablePullDownRefresh": true
}
}, {
- "path": "pages/watching_history/watching_history"
+ "path": "pages/watching_history/watching_history",
+ "style": {
+ "enablePullDownRefresh": true
+ }
}, {
"path": "pages/me/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
+ }, {
+ "path": "pages/me/contact",
+ "style": {
+ "navigationBarTitleText": "联系客服"
+ }
+ }, {
+ "path": "pages/me/gold_record",
+ "style": {
+ "navigationBarTitleText": "金币明细",
+ "enablePullDownRefresh": true
+ }
+ }, {
+ "path": "pages/me/feedback",
+ "style": {
+ "navigationBarTitleText": "意见反馈"
+ }
+ }, {
+ "path": "pages/me/help_center",
+ "style": {
+ "navigationBarTitleText": "帮助中心"
+ }
+ }, {
+ "path": "pages/me/setting",
+ "style": {
+ "navigationBarTitleText": "设置"
+ }
+ }, {
+ "path": "pages/me/help_center_detail",
+ "style": {
+ "navigationBarTitleText": ""
+ }
}, {
"path": "pages/login/login",
"style": {
@@ -61,6 +95,11 @@
"navigationBarTitleText": "注册",
"navigationStyle": "custom"
}
+ }, {
+ "path": "pages/login/bind",
+ "style": {
+ "navigationBarTitleText": "修改手机号"
+ }
}, {
"path": "pages/login/registerApp",
"style": {
@@ -73,6 +112,11 @@
"navigationBarTitleText": "忘记密码",
"navigationStyle": "custom"
}
+ }, {
+ "path": "pages/login/download",
+ "style": {
+ "navigationBarTitleText": "下载"
+ }
}, {
"path": "pages/me/userInfo",
"style": {
@@ -88,6 +132,37 @@
"style": {
"navigationBarTitleText": "服务协议"
}
+ }, {
+ "path": "pages/me/message",
+ "style": {
+ "navigationBarTitleText": "消息中心"
+ }
+ }, {
+ "path": "pages/me/withdraw/index",
+ "style": {
+ "navigationBarTitleText": "申请提现",
+ "navigationStyle": "custom"
+ }
+ }, {
+ "path": "pages/me/withdraw/realName",
+ "style": {
+ "navigationBarTitleText": "实名认证"
+ }
+ }, {
+ "path": "pages/me/withdraw/alipay",
+ "style": {
+ "navigationBarTitleText": "提现账号"
+ }
+ }, {
+ "path": "pages/me/withdraw/moneyList",
+ "style": {
+ "navigationBarTitleText": "红包明细"
+ }
+ }, {
+ "path": "pages/share/index",
+ "style": {
+ "navigationBarTitleText": "分享"
+ }
},
{
"path": "pages/index/search/index",
diff --git a/pages/chasingDrama/index.vue b/pages/chasingDrama/index.vue
index 33a131c..190d722 100644
--- a/pages/chasingDrama/index.vue
+++ b/pages/chasingDrama/index.vue
@@ -53,12 +53,15 @@ import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app';
async function selectByUserIdAjax() {
try {
const res1 = await selectByUserId({ page: 1, limit: 6, classify: 3 });
- const res2 = await selectByUserId({ page: 1, limit: 6, classify: 6 });
+ const res2 = await selectByUserId({ page: 1, limit: 6, classify: 1 });
data.list1 = res1.records;
data.list2 = res2.records;
} catch (error) {
console.log(error);
}
+ setTimeout(() => {
+ uni.stopPullDownRefresh();
+ }, 500);
}
const data = reactive({
diff --git a/pages/login/appEq.vue b/pages/login/appEq.vue
deleted file mode 100644
index d2e05f4..0000000
--- a/pages/login/appEq.vue
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-
-
- 斯耀短剧APP
- 海量电子榨菜 免费又过瘾
-
-
-
-
-
-
- 点击右上角按钮,选择浏览器打开下载!
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/login/bind.vue b/pages/login/bind.vue
index 7d8245a..1e25199 100644
--- a/pages/login/bind.vue
+++ b/pages/login/bind.vue
@@ -1,27 +1,26 @@
-
-
+
+
手机号
-
-
+
验证码
-
-
+
-
+
-
-
\ No newline at end of file
diff --git a/pages/login/download.vue b/pages/login/download.vue
new file mode 100644
index 0000000..410dc30
--- /dev/null
+++ b/pages/login/download.vue
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+ 斯耀短剧APP
+ 海量电子榨菜 免费又过瘾
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/login/forgetPwd.vue b/pages/login/forgetPwd.vue
index 3be07f2..e0f2e11 100644
--- a/pages/login/forgetPwd.vue
+++ b/pages/login/forgetPwd.vue
@@ -1,5 +1,6 @@
+
@@ -74,7 +75,7 @@
title: '验证码发送成功请注意查收',
icon: 'none',
})
- data.countDown();
+ countDown();
} else {
uni.showModal({
showCancel: false,
@@ -98,7 +99,7 @@
data.count = count - 1;
data.sending = true;
data.sendTime = count - 1 + '秒后重新获取';
- setTimeout(data.countDown.bind(data), 1000);
+ setTimeout(countDown.bind(this), 1000);
}
}
@@ -179,9 +180,7 @@
padding-top: 48rpx;
box-sizing: border-box;
}
- .flex{
- display: flex;
- }
+
.footerView {
display: flex;
justify-content: center;
@@ -214,6 +213,8 @@
color: #EC6F48;
border: none;
background-color: transparent;
+ margin: 0;
+ padding: 0;
}
.send-msg::after{
border: none;
@@ -258,6 +259,9 @@
background-color: #fff;
align-items: center;
padding: 22rpx 32rpx 22rpx 24rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
}
}
diff --git a/pages/login/login.vue b/pages/login/login.vue
index d4dae0c..d8bfcf5 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -1,5 +1,6 @@
+
@@ -18,14 +19,14 @@
- 忘记密码
+ 忘记密码
没有账号?
- 立即注册
+ 立即注册
@@ -35,9 +36,9 @@
同意
- 《隐私政策》
+ 《隐私政策》
和
- 《用户服务协议》
+ 《用户服务协议》
@@ -49,6 +50,7 @@
import { reactive } from 'vue';
import { onLoad} from '@dcloudio/uni-app'
import { login } from '@/api/login/login.js';
+ import { linkTo } from '@/utils/app.js';
let data = reactive({
mobile: '',
password: '',
@@ -59,24 +61,6 @@
})
- /**
- * 注册
- */
- function register () {
- uni.navigateTo({
- url: '/pages/login/register'
- });
- }
-
- /**
- * 忘记密码
- */
- function forget () {
- uni.navigateTo({
- url: '/pages/login/forgetPwd'
- });
- }
-
/**
* 获取手机号/密码
*/
@@ -130,17 +114,19 @@
})
console.log(res)
uni.setStorageSync('token', res.token)
- uni.setStorageSync('userId', res.user.userId)
- uni.setStorageSync('userName', res.user.userName)
- uni.setStorageSync('avatar', res.user.avatar ? res.user.avatar : '../../static/default/avatar.png')
- uni.setStorageSync('phone', res.user.phone)
- uni.setStorageSync('invitationCode', res.user.invitationCode)
- uni.setStorageSync('sex', res.user.sex)
- uni.setStorageSync('userId', res.user.userId)
+ uni.setStorageSync('userInfo', res.user)
+
+ // uni.setStorageSync('userId', res.user.userId)
+ // uni.setStorageSync('userName', res.user.userName)
+ // uni.setStorageSync('avatar', res.user.avatar ? res.user.avatar : '../../static/default/avatar.png')
+ // uni.setStorageSync('phone', res.user.phone)
+ // uni.setStorageSync('invitationCode', res.user.invitationCode)
+ // uni.setStorageSync('sex', res.user.sex)
+ // uni.setStorageSync('userId', res.user.userId)
//设置渠道码
- if (res.user.qdCode) {
- uni.setStorageSync('qdCode', res.user.qdCode)
- }
+ // if (res.user.qdCode) {
+ // uni.setStorageSync('qdCode', res.user.qdCode)
+ // }
uni.hideLoading();
uni.showToast({
title: '登录成功',
diff --git a/pages/login/register.vue b/pages/login/register.vue
index 9f65a0a..4dd5f69 100644
--- a/pages/login/register.vue
+++ b/pages/login/register.vue
@@ -1,5 +1,6 @@
+
@@ -35,9 +36,10 @@
注册即同意
- 《隐私政策》
- 与
- 《用户协议》
+ 《隐私政策》
+ 和
+ 《用户服务协议》
+
@@ -48,7 +50,7 @@
import { onLoad} from '@dcloudio/uni-app'
import {setSendMsg,registerCode} from '@/api/login/login.js';
import {commonType} from '@/api/init.js';
-
+ import { linkTo } from '@/utils/app.js';
let data = reactive({
code: '',
@@ -81,13 +83,11 @@
uni.showToast({
title: '请输入手机号',
icon: 'none',
- duration: 1000
})
} else if (data.mobile.length !== 11) {
uni.showToast({
title: '请输入正确的手机号',
icon: 'none',
- duration: 1000
})
} else {
uni.showLoading({
@@ -103,7 +103,7 @@
icon: 'none',
duration: 1000
})
- data.countDown();
+ countDown();
} else {
uni.showModal({
showCancel: false,
@@ -130,7 +130,7 @@
data.count = count - 1;
data.sending = true;
data.sendTime = count - 1 + '秒后重新获取';
- setTimeout(data.countDown.bind(data), 1000);
+ setTimeout(countDown.bind(this), 1000);
}
}
@@ -374,6 +374,9 @@
background-color: #fff;
align-items: center;
padding: 22rpx 32rpx 22rpx 24rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
}
}
diff --git a/pages/me/agreement.vue b/pages/me/agreement.vue
index e82dc7d..a034ba9 100644
--- a/pages/me/agreement.vue
+++ b/pages/me/agreement.vue
@@ -11,8 +11,6 @@
+
+
diff --git a/pages/me/feedback.vue b/pages/me/feedback.vue
new file mode 100644
index 0000000..8226a61
--- /dev/null
+++ b/pages/me/feedback.vue
@@ -0,0 +1,124 @@
+
+
+
+
+ 问题和意见
+ 快速键入
+
+
+
+
+
+
+
+ QQ/邮箱
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
+
diff --git a/pages/me/gold_record.vue b/pages/me/gold_record.vue
new file mode 100644
index 0000000..dba0694
--- /dev/null
+++ b/pages/me/gold_record.vue
@@ -0,0 +1,91 @@
+
+
+
+
+ 类型:{{ item.title }}
+ 内容:{{ item.content }}
+ 时间:{{ item.createTime }}
+ +{{ item.money }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/me/help_center.vue b/pages/me/help_center.vue
new file mode 100644
index 0000000..a93abde
--- /dev/null
+++ b/pages/me/help_center.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+ {{ val.helpWordTitle }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/me/help_center_detail.vue b/pages/me/help_center_detail.vue
new file mode 100644
index 0000000..60c46dd
--- /dev/null
+++ b/pages/me/help_center_detail.vue
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
diff --git a/pages/me/index.vue b/pages/me/index.vue
index c938966..644c8d2 100644
--- a/pages/me/index.vue
+++ b/pages/me/index.vue
@@ -9,29 +9,31 @@
-
-
+
+
- 159****3331
+ {{ userInfo.phone || '请登录' }}
-
+
我的喜欢
- 0
-
-
+ {{ likeData.likeCount }}
+
+
我的追剧
- 0
-
-
+ {{ likeData.collectCount }}
+
+
我的红包
- 0
+ {{ amount || 0 }}
@@ -39,63 +41,60 @@
- 123133.00
+ {{ gold }}
- 金币明细
-
-
- 观看历史
-
+
+ 金币明细
+
+
+
+ 观看历史
+
+
+
-
-
- 我在八零年代当后妈
- 看到8集
-
-
-
- 姜小姐的反击
- 看到12集
-
-
-
- 霸道载誉归来
- 看到3集
+
+
+ {{ item.title }}
+ 看到{{ item.courseDetailsName }}
+
+
+
-
+
+
+
\ No newline at end of file
diff --git a/pages/me/privacy.vue b/pages/me/privacy.vue
index ceb90a8..18e749d 100644
--- a/pages/me/privacy.vue
+++ b/pages/me/privacy.vue
@@ -11,8 +11,6 @@
+
+
diff --git a/pages/me/userInfo.vue b/pages/me/userInfo.vue
index c7baad0..d097fa2 100644
--- a/pages/me/userInfo.vue
+++ b/pages/me/userInfo.vue
@@ -3,7 +3,7 @@
-
@@ -26,7 +26,7 @@
import { reactive } from 'vue';
import { onShow} from '@dcloudio/uni-app'
import config from '@/commons/config.js';
- import {selectUserById} from '@/api/user/user.js';
+ import { selectUserById, updateUsers } from '@/api/user/user.js';
let data = reactive({
userInfo: {
@@ -37,7 +37,6 @@
})
onShow(() => {
- // console.log(1)
getUserInfo()
})
@@ -46,9 +45,7 @@
*/
async function getUserInfo () {
let res = await selectUserById()
- if ( res.code == 0 ) {
- data.userInfo = res.data
- }
+ data.userInfo = res
}
/**
@@ -130,25 +127,25 @@
title: '温馨提示',
content: '确定保存信息',
confirmColor: '#ff7581',
- success: e => {
+ success: async e => {
if (e.confirm) {
- http.request({
- url:'app/user/updateUsers',
- method: 'post',
- data: {
+ let res = await updateUsers({
userName: data.userInfo.userName,
avatar: data.userInfo.avatar,
phone: data.userInfo.phone,
- }
- }).then(res => {
- uni.showToast({
- title: '保存成功',
- icon: "none"
})
- setTimeout(function() {
- uni.navigateBack()
- }, 1000)
+ uni.showToast({
+ title: '保存成功',
+ icon: "none"
})
+ let userInfo = uni.getStorageSync('userInfo');
+ userInfo.userName = data.userInfo.userName
+ userInfo.avatar = data.userInfo.avatar
+ userInfo.phone = data.userInfo.phone
+ uni.setStorageSync('userInfo', userInfo);
+ setTimeout(function() {
+ uni.navigateBack()
+ }, 1000)
}
}
diff --git a/pages/me/withdraw/alipay.vue b/pages/me/withdraw/alipay.vue
new file mode 100644
index 0000000..b6451b0
--- /dev/null
+++ b/pages/me/withdraw/alipay.vue
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+ 请正确填写收款人的支付宝账户和真实的收款人姓名
+ 否则将无法正常收款,请须知
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/me/withdraw/index.vue b/pages/me/withdraw/index.vue
new file mode 100644
index 0000000..284d6f1
--- /dev/null
+++ b/pages/me/withdraw/index.vue
@@ -0,0 +1,551 @@
+
+
+
+
+
+ 申请提现
+ 规则
+
+
+ 可提现总额
+ ¥ {{ data.mayMoney }}
+
+
+ 提现金额
+
+
+
+ ¥
+
+
+
+ 全部
+
+
+
+
+
+ {{data.isWithdraw?'立即提现':'观看广告提现'}}
+
+
+ 实名认证
+
+ 红包明细
+
+
+
+
+
+
+ 提现成功
+
+ 提现中
+
+ 提现失败
+
+
+
+
+ 收款人账号:{{ item.zhifubao }}
+ 收款人姓名:{{ item.zhifubaoName }}
+ 发起时间:{{ item.createAt }}
+ 成功时间 {{ item.outAt }}
+
+ 失败原因:{{ item.refund }}
+
+
+
+
+ ¥{{ item.money }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/me/withdraw/moneyList.vue b/pages/me/withdraw/moneyList.vue
new file mode 100644
index 0000000..cbf7fe3
--- /dev/null
+++ b/pages/me/withdraw/moneyList.vue
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+ 类型: {{item.title}}
+ 内容: {{item.content}}
+ 时间: {{item.createTime}}
+
+
+ - ¥{{item.money}}
+ + ¥{{item.money}}
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/me/withdraw/realName.vue b/pages/me/withdraw/realName.vue
new file mode 100644
index 0000000..38e3065
--- /dev/null
+++ b/pages/me/withdraw/realName.vue
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 请正确填写收款人的银行卡号和真实的收款人姓名
+ 手机号需是银行卡银行卡预留手机号
+ 银行卡号需与收款人姓名一致
+ 身份证信息仅可使用一次
+ 否则将无法正常收款,请须知
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/share/index.vue b/pages/share/index.vue
new file mode 100644
index 0000000..dd0cd4a
--- /dev/null
+++ b/pages/share/index.vue
@@ -0,0 +1,443 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 邀请详情
+
+
+
+ 您的邀请码
+
+
+
+ {{data.invitationCode}}
+
+
+ 一键分享
+ 保存海报
+
+
+
+
+
+ 我的邀请战绩
+
+
+ 已邀请
+ {{data.inviteCount}}人
+
+
+ 签到
+ {{data.inviteSignCount}}人
+
+
+ 金币收益
+
+
+
+ 红包收益
+
+
+
+ 好友签到成功可额外获得1元现金红包
+
+
+
+
+ 已邀请列表
+
+
+
+
+ {{item.userName}}
+
+
+ 已签到
+ 未签到
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/watching_history/watching_history.vue b/pages/watching_history/watching_history.vue
index 04447a4..b79f92a 100644
--- a/pages/watching_history/watching_history.vue
+++ b/pages/watching_history/watching_history.vue
@@ -26,7 +26,7 @@