Commit a3076247 authored by 全球's avatar 全球

代码合并

parents c5b4f298 3ce0ac8d
...@@ -156,7 +156,6 @@ const routes = [ ...@@ -156,7 +156,6 @@ const routes = [
} }
]; ];
const router = new VueRouter({ const router = new VueRouter({
mode: "history", mode: "history",
base: process.env.BASE_URL, base: process.env.BASE_URL,
......
...@@ -56,7 +56,7 @@ class bridgeToAppFun { ...@@ -56,7 +56,7 @@ class bridgeToAppFun {
console.log("an"); console.log("an");
window.android.logout(); window.android.logout();
} else { } else {
console.log('ios'); console.log("ios");
jsBridge.callhandler("logout"); jsBridge.callhandler("logout");
} }
} }
...@@ -66,15 +66,15 @@ class bridgeToAppFun { ...@@ -66,15 +66,15 @@ class bridgeToAppFun {
console.log("an"); console.log("an");
try { try {
const referrer = document.referrer; const referrer = document.referrer;
if (referrer !== '') { if (referrer !== "") {
console.log('reffer不为空', referrer); console.log("reffer不为空", referrer);
// location.href = referrer; // location.href = referrer;
} else { } else {
console.log('调用navigateBack'); console.log("调用navigateBack");
window.android.navigateBack(); window.android.navigateBack();
} }
} catch { } catch {
console.log('返回调用失败,都不行'); console.log("返回调用失败,都不行");
} }
} else { } else {
jsBridge.callhandler("navigateBack"); jsBridge.callhandler("navigateBack");
......
...@@ -63,7 +63,7 @@ export default { ...@@ -63,7 +63,7 @@ export default {
queryData() { queryData() {
const _this = this; const _this = this;
queryAerialDelivery().then(res => { queryAerialDelivery().then(res => {
console.log('空投池', res); console.log("空投池", res);
if (res.code === 0) { if (res.code === 0) {
_this.total = res.data.total; _this.total = res.data.total;
_this.userPoolVos = res.data.userPoolVos; _this.userPoolVos = res.data.userPoolVos;
......
...@@ -43,13 +43,14 @@ export default { ...@@ -43,13 +43,14 @@ export default {
return { return {
preNum: "125", preNum: "125",
currentNum: "325", currentNum: "325",
rules: rules: "提现规则:",
"提现规则:" , rulesMent:
rulesMent:'1、结算:所有购买及推广产生的佣金实时结算,月度肥料及进步奖每月1号结算上个月收益,在APP我的收益页面可随时查询收益情况。', "1、结算:所有购买及推广产生的佣金实时结算,月度肥料及进步奖每月1号结算上个月收益,在APP我的收益页面可随时查询收益情况。",
rulesWith:'2、提现:可提现部分为结算后已通过平台审核的佣金,佣金审核周期为1-15个工作日,审核通过后可实时提现。', rulesWith:
rulesPoundage:'3、手续费:提现无需手续费。', "2、提现:可提现部分为结算后已通过平台审核的佣金,佣金审核周期为1-15个工作日,审核通过后可实时提现。",
rulesTax:'4、税费:提现时系统自动扣除2%个人所得税,剩余税费由平台替缴。', rulesPoundage: "3、手续费:提现无需手续费。",
rulesAttribution:'此规则最终解释权归西田森市场运营部所有', rulesTax: "4、税费:提现时系统自动扣除2%个人所得税,剩余税费由平台替缴。",
rulesAttribution: "此规则最终解释权归西田森市场运营部所有"
}; };
}, },
mounted() { mounted() {
......
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
name: "CashOutRecord", name: "CashOutRecord",
data() { data() {
return { return {
maxDate:'', maxDate: "",
show: false, show: false,
options: [{ text: "2021年3月", value: 0 }], options: [{ text: "2021年3月", value: 0 }],
selected: "", selected: "",
...@@ -48,9 +48,9 @@ export default { ...@@ -48,9 +48,9 @@ export default {
}; };
}, },
mounted() { mounted() {
this.maxDate = new Date(), (this.maxDate = new Date()),
this.selected = `${this.currentDate.getFullYear()}${this.currentDate.getMonth() + (this.selected = `${this.currentDate.getFullYear()}${this.currentDate.getMonth() +
1}月`; 1}月`);
const time = this.currentDate.toLocaleDateString().replace(/\//g, "-"); const time = this.currentDate.toLocaleDateString().replace(/\//g, "-");
this.getRecordList(time); this.getRecordList(time);
}, },
......
...@@ -22,11 +22,11 @@ ...@@ -22,11 +22,11 @@
<div class="real"> <div class="real">
<p class="real-item"> <p class="real-item">
<span>实际到账</span> <span>实际到账</span>
<span>{{account}}</span> <span>{{ account }}</span>
</p> </p>
<p class="real-item"> <p class="real-item">
<span>税款</span> <span>税款</span>
<span>{{rate}}</span> <span>{{ rate }}</span>
</p> </p>
<p class="explain"> <p class="explain">
<span>扣税说明</span> <span>扣税说明</span>
...@@ -99,8 +99,8 @@ export default { ...@@ -99,8 +99,8 @@ export default {
userPhone: this.$userId, userPhone: this.$userId,
bank: "", bank: "",
money: null, money: null,
account:0, account: 0,
rate:0, rate: 0,
remainMoney: 100, remainMoney: 100,
resultDialogTitle: "", resultDialogTitle: "",
resultDialogTip: "", resultDialogTip: "",
...@@ -122,10 +122,10 @@ export default { ...@@ -122,10 +122,10 @@ export default {
return false; return false;
} }
}, },
inputClick(){ inputClick() {
this.rate = this.money * 0.02 this.rate = this.money * 0.02;
this.account = this.money - this.rate this.account = this.money - this.rate;
}, },
canCashOut() { canCashOut() {
const params = { const params = {
userId: this.$userId userId: this.$userId
...@@ -188,9 +188,9 @@ export default { ...@@ -188,9 +188,9 @@ export default {
} }
}); });
}, },
onCloseDialog(){ onCloseDialog() {
this.validCodeDialogShow = false; this.validCodeDialogShow = false;
}, },
onSubmit() { onSubmit() {
this.validCodeDialogShow = false; this.validCodeDialogShow = false;
const params = { const params = {
......
This diff is collapsed.
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
<div class="invite-code"> <div class="invite-code">
<div class="nav"> <div class="nav">
<van-icon <van-icon
name="arrow-left" name="arrow-left"
size="20" size="20"
class="nav-left" class="nav-left"
@click="back" color="#ffffff"
@click="handlerBack"
/> />
<img :src="imgSrc" alt="" class="imgCode" /> <img :src="imgSrc" alt="" class="imgCode" />
</div> </div>
...@@ -24,6 +25,14 @@ export default { ...@@ -24,6 +25,14 @@ export default {
this.inviteCode(); this.inviteCode();
}, },
methods: { methods: {
handlerBack() {
try {
this.$bridgeToAppFun.navigateBack();
} catch {
console.log("不能和App交互");
this.$router.go(-1);
}
},
inviteCode() { inviteCode() {
const _this = this; const _this = this;
let loading = _this.$toast.loading({ let loading = _this.$toast.loading({
...@@ -35,9 +44,6 @@ export default { ...@@ -35,9 +44,6 @@ export default {
_this.imgSrc = _this.getUserPhoto(res); _this.imgSrc = _this.getUserPhoto(res);
}); });
}, },
back(){
this.$router.go(-1)
},
getUserPhoto(res) { getUserPhoto(res) {
let uInt8Array = new Uint8Array(res); let uInt8Array = new Uint8Array(res);
let len = uInt8Array.length; let len = uInt8Array.length;
......
...@@ -60,25 +60,27 @@ export default { ...@@ -60,25 +60,27 @@ export default {
}); });
}, },
onRead(file) { onRead(file) {
if (!localStorage.getItem('user').inviteCode) { if (!localStorage.getItem("user").inviteCode) {
this.$toast.fail('当前用户没有邀请码'); this.$toast.fail("当前用户没有邀请码");
return return;
} }
const inviteCode = JSON.parse(localStorage.getItem('user').inviteCode); const inviteCode = JSON.parse(localStorage.getItem("user").inviteCode);
const params = { const params = {
inviteCode: inviteCode inviteCode: inviteCode
}; };
const fd = new FormData(); const fd = new FormData();
fd.append("files", file.file); fd.append("files", file.file);
uploadImage(params, fd).then(res => { uploadImage(params, fd)
console.log(res); .then(res => {
this.avatar = file.content; console.log(res);
this.imageUrl = res.zxUrl; this.avatar = file.content;
this.canSubmit = true; this.imageUrl = res.zxUrl;
}).catch(err => { this.canSubmit = true;
console.log('上传图像', err); })
this.$toast.fail('图片上传失败,请重新选择'); .catch(err => {
}); console.log("上传图像", err);
this.$toast.fail("图片上传失败,请重新选择");
});
}, },
onDeleteAvatar(file, detail) { onDeleteAvatar(file, detail) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
......
...@@ -129,7 +129,7 @@ export default { ...@@ -129,7 +129,7 @@ export default {
} }
_this.time = 60; _this.time = 60;
_this.disabled = true; _this.disabled = true;
_this.handelSendSmsApi(); _this.handelSendSmsApi();
_this.timer = setInterval(() => { _this.timer = setInterval(() => {
if (_this.time === 0) { if (_this.time === 0) {
clearInterval(_this.timer); clearInterval(_this.timer);
...@@ -169,7 +169,7 @@ export default { ...@@ -169,7 +169,7 @@ export default {
this.$toast.clear(); this.$toast.clear();
_this.registerBtnDisabled = false; _this.registerBtnDisabled = false;
if (res.code === 0) { if (res.code === 0) {
this.$toast("注册成功"); this.$toast("注册成功");
//_this.$toast.sucess(res.msg); //_this.$toast.sucess(res.msg);
} else { } else {
_this.show = true; _this.show = true;
......
...@@ -84,11 +84,16 @@ export default { ...@@ -84,11 +84,16 @@ export default {
}); });
}, },
logout() { logout() {
logout().then().catch(err => { logout()
console.log('后台退出err', err); .then(res => {
}); if (res.code == 0) {
localStorage.clear();
}
})
.catch(err => {
console.log(err);
});
this.$bridgeToAppFun.logoutToApp(); this.$bridgeToAppFun.logoutToApp();
localStorage.removeItem("token");
}, },
jumpToInstructions() { jumpToInstructions() {
this.$router.push("/instructions"); this.$router.push("/instructions");
...@@ -106,11 +111,11 @@ export default { ...@@ -106,11 +111,11 @@ export default {
}, },
onFillInviteeCode() { onFillInviteeCode() {
if (!this.fillCode) { if (!this.fillCode) {
this.$toast.fail('请填写推荐人邀请码') this.$toast.fail("请填写推荐人邀请码");
return; return;
} }
if (!/^[A-z|\d]{6}$/.test(this.fillCode)) { if (!/^[A-z|\d]{6}$/.test(this.fillCode)) {
this.$toast.fail('邀请码只支持6位数字+字母的组合') this.$toast.fail("邀请码只支持6位数字+字母的组合");
return; return;
} }
this.inviteeCodeDialog = false; this.inviteeCodeDialog = false;
...@@ -122,7 +127,7 @@ export default { ...@@ -122,7 +127,7 @@ export default {
fillInviteCode(params).then(); fillInviteCode(params).then();
}, },
fillInviterCode() { fillInviterCode() {
if (this.inviteeCode === "未填写" || this.inviteeCode == '1') { if (this.inviteeCode === "未填写" || this.inviteeCode == "1") {
this.inviteeCodeDialog = true; this.inviteeCodeDialog = true;
this.fillCode = ""; this.fillCode = "";
} }
...@@ -135,8 +140,8 @@ export default { ...@@ -135,8 +140,8 @@ export default {
.settings { .settings {
box-sizing: border-box; box-sizing: border-box;
padding: 10px 16px; padding: 10px 16px;
.van-less{ .van-less {
.van-cell__right-icon{ .van-cell__right-icon {
display: none; display: none;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment