feat: update of partner
This commit is contained in:
parent
7aafc3a789
commit
d2ac64f20c
@ -7,6 +7,7 @@ import { REFRESH_UNREAD_COUNT_TIME } from '@/constants/message';
|
|||||||
import http from '@/http';
|
import http from '@/http';
|
||||||
import store from '@/store';
|
import store from '@/store';
|
||||||
import { requestUnreadMessageCount } from '@/utils/message';
|
import { requestUnreadMessageCount } from '@/utils/message';
|
||||||
|
import { getInviteCode } from '@/utils/partner';
|
||||||
import qiniuUpload from '@/utils/qiniu-upload';
|
import qiniuUpload from '@/utils/qiniu-upload';
|
||||||
import { requestUserInfo, updateLastLoginTime } from '@/utils/user';
|
import { requestUserInfo, updateLastLoginTime } from '@/utils/user';
|
||||||
|
|
||||||
@ -16,7 +17,11 @@ function App({ children }: PropsWithChildren<BL.Anything>) {
|
|||||||
useLaunch(async () => {
|
useLaunch(async () => {
|
||||||
console.log('App launched.');
|
console.log('App launched.');
|
||||||
await http.init();
|
await http.init();
|
||||||
requestUserInfo();
|
requestUserInfo().then(userInfo => {
|
||||||
|
if (userInfo.isPartner) {
|
||||||
|
getInviteCode();
|
||||||
|
}
|
||||||
|
});
|
||||||
updateLastLoginTime();
|
updateLastLoginTime();
|
||||||
qiniuUpload.init();
|
qiniuUpload.init();
|
||||||
requestUnreadMessageCount();
|
requestUnreadMessageCount();
|
||||||
|
41
src/components/partner-banner/index.less
Normal file
41
src/components/partner-banner/index.less
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
@import '@/styles/variables.less';
|
||||||
|
@import '@/styles/common.less';
|
||||||
|
|
||||||
|
.partner-fragment-banner {
|
||||||
|
width: 100%;
|
||||||
|
height: 90px;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
|
||||||
|
&__image {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__btn {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
top: 0;
|
||||||
|
font-size: 0;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__close {
|
||||||
|
width: 64px;
|
||||||
|
height: 38px;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
66
src/components/partner-banner/index.tsx
Normal file
66
src/components/partner-banner/index.tsx
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
import { Button, Image } from '@tarojs/components';
|
||||||
|
|
||||||
|
import { useCallback, useState } from 'react';
|
||||||
|
|
||||||
|
import LoginDialog from '@/components/login-dialog';
|
||||||
|
import { PageUrl } from '@/constants/app';
|
||||||
|
import useUserInfo from '@/hooks/use-user-info';
|
||||||
|
import { becomePartner, getPartnerBannerClose, setPartnerBannerClose } from '@/utils/partner';
|
||||||
|
import { navigateTo } from '@/utils/route';
|
||||||
|
import { isNeedPhone } from '@/utils/user';
|
||||||
|
import './index.less';
|
||||||
|
|
||||||
|
const PREFIX = 'partner-fragment-banner';
|
||||||
|
|
||||||
|
export default function PartnerBanner() {
|
||||||
|
const userInfo = useUserInfo();
|
||||||
|
const needPhone = isNeedPhone(userInfo);
|
||||||
|
const isPartner = userInfo.isPartner;
|
||||||
|
|
||||||
|
const [visible, setVisible] = useState(false);
|
||||||
|
const [bannerClose, setBannerClose] = useState<boolean>(getPartnerBannerClose());
|
||||||
|
|
||||||
|
const handlePartnerBannerClose = useCallback(e => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
setBannerClose(true);
|
||||||
|
setPartnerBannerClose();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleBind = useCallback(async () => {
|
||||||
|
if (!isPartner) {
|
||||||
|
await becomePartner();
|
||||||
|
}
|
||||||
|
await navigateTo(PageUrl.Partner);
|
||||||
|
}, [isPartner]);
|
||||||
|
|
||||||
|
const handleClick = useCallback(async () => {
|
||||||
|
if (needPhone) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await handleBind();
|
||||||
|
}, [handleBind, needPhone]);
|
||||||
|
|
||||||
|
if (bannerClose) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className={PREFIX} onClick={handleClick}>
|
||||||
|
<Image
|
||||||
|
className={`${PREFIX}__image`}
|
||||||
|
src="https://publiccdn.neighbourhood.com.cn/img/partner_banner.png"
|
||||||
|
mode="scaleToFill"
|
||||||
|
/>
|
||||||
|
{needPhone && (
|
||||||
|
<Button className={`${PREFIX}__btn`} onClick={() => setVisible(true)}>
|
||||||
|
placeholder
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<div className={`${PREFIX}__close`} onClick={handlePartnerBannerClose} />
|
||||||
|
</div>
|
||||||
|
{visible && <LoginDialog onCancel={() => setVisible(false)} onSuccess={handleBind} needPhone={needPhone} />}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
@ -44,87 +44,4 @@
|
|||||||
color: @blHighlightColor;
|
color: @blHighlightColor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__kanban {
|
|
||||||
border-radius: 16px;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
position: relative;
|
|
||||||
background: #6d3df5;
|
|
||||||
color: #fff;
|
|
||||||
|
|
||||||
&-bg {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-content {
|
|
||||||
position: relative;
|
|
||||||
min-height: 280px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 36px 40px;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-button {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 2;
|
|
||||||
top: 44px;
|
|
||||||
right: 56px;
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 24px;
|
|
||||||
&__image {
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&-title {
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
letter-spacing: 0.02em;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
&-money {
|
|
||||||
font-family: 'Helvetica Neue';
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
&-total {
|
|
||||||
margin-bottom: 24px;
|
|
||||||
.partner-fragment-entry__kanban {
|
|
||||||
&-title {
|
|
||||||
font-size: 26px;
|
|
||||||
line-height: 40px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
&-money {
|
|
||||||
font-size: 48px;
|
|
||||||
line-height: 42px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&-details {
|
|
||||||
.flex-row();
|
|
||||||
&-part {
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
.partner-fragment-entry__kanban {
|
|
||||||
&-title {
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 36px;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
}
|
|
||||||
&-money {
|
|
||||||
font-size: 32px;
|
|
||||||
line-height: 42px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
import { BaseEventOrig, Button, ButtonProps, Image } from '@tarojs/components';
|
import { Button } from '@tarojs/components';
|
||||||
|
|
||||||
import { useCallback, useState } from 'react';
|
import { useCallback, useState } from 'react';
|
||||||
|
|
||||||
import { PageUrl } from '@/constants/app';
|
import LoginDialog from '@/components/login-dialog';
|
||||||
|
import PartnerKanban from '@/components/partner-kanban';
|
||||||
import useUserInfo from '@/hooks/use-user-info';
|
import useUserInfo from '@/hooks/use-user-info';
|
||||||
import { navigateTo } from '@/utils/route';
|
import { becomePartner } from '@/utils/partner';
|
||||||
import Toast from '@/utils/toast';
|
import { isNeedPhone, requestUserInfo } from '@/utils/user';
|
||||||
import { requestUserInfo, setPhoneNumber } from '@/utils/user';
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
const PREFIX = 'partner-fragment-entry';
|
const PREFIX = 'partner-fragment-entry';
|
||||||
@ -16,93 +16,42 @@ type JoinEntryProps = {
|
|||||||
};
|
};
|
||||||
function JoinEntry({ onBindSuccess }: JoinEntryProps) {
|
function JoinEntry({ onBindSuccess }: JoinEntryProps) {
|
||||||
const userInfo = useUserInfo();
|
const userInfo = useUserInfo();
|
||||||
|
const needPhone = isNeedPhone(userInfo);
|
||||||
|
const [visible, setVisible] = useState(false);
|
||||||
|
|
||||||
const hasPhone = !!userInfo.phone;
|
|
||||||
|
|
||||||
const handleGetPhoneNumber = useCallback(async (e: BaseEventOrig<ButtonProps.onGetPhoneNumberEventDetail>) => {
|
|
||||||
const encryptedData = e.detail.encryptedData;
|
|
||||||
const iv = e.detail.iv;
|
|
||||||
if (!encryptedData || !iv) {
|
|
||||||
return Toast.error('取消授权');
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
await setPhoneNumber({ encryptedData, iv });
|
|
||||||
await requestUserInfo();
|
|
||||||
Toast.success('绑定成功');
|
|
||||||
onBindSuccess();
|
|
||||||
} catch (err) {
|
|
||||||
Toast.error('绑定失败');
|
|
||||||
}
|
|
||||||
}, []);
|
|
||||||
return (
|
return (
|
||||||
<div className={`${PREFIX}__join`}>
|
<>
|
||||||
<div className={`${PREFIX}__join-title`}>
|
<div className={`${PREFIX}__join`}>
|
||||||
加入播络合伙人,高达<span className="highlight">75%</span>分成
|
<div className={`${PREFIX}__join-title`}>
|
||||||
|
加入播络合伙人,高达<span className="highlight">75%</span>分成
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__join-desc`}>模式简单,分成比例高,欢迎各位群主、经纪人或机构</div>
|
||||||
|
{!needPhone && (
|
||||||
|
<Button className={`${PREFIX}__join-button`} onClick={onBindSuccess}>
|
||||||
|
立即加入
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
{needPhone && (
|
||||||
|
<Button className={`${PREFIX}__join-button`} onClick={() => setVisible(true)}>
|
||||||
|
立即加入
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className={`${PREFIX}__join-desc`}>模式简单,分成比例高,欢迎各位群主、经纪人或机构</div>
|
{visible && <LoginDialog onCancel={() => setVisible(false)} onSuccess={onBindSuccess} needPhone={needPhone} />}
|
||||||
{hasPhone && (
|
</>
|
||||||
<Button className={`${PREFIX}__join-button`} onClick={onBindSuccess}>
|
|
||||||
立即加入
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
{!hasPhone && (
|
|
||||||
<Button className={`${PREFIX}__join-button`} openType="getPhoneNumber" onGetPhoneNumber={handleGetPhoneNumber}>
|
|
||||||
立即加入
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function PartnerKanban() {
|
|
||||||
const handleNavigate = useCallback(() => {
|
|
||||||
navigateTo(PageUrl.Partner);
|
|
||||||
}, []);
|
|
||||||
return (
|
|
||||||
<div className={`${PREFIX}__kanban`}>
|
|
||||||
<Image className={`${PREFIX}__kanban-bg`} src={require('@/statics/png/partner_bg.png')} mode="scaleToFill" />
|
|
||||||
<div className={`${PREFIX}__kanban-content`}>
|
|
||||||
<div className={`${PREFIX}__kanban-button`} onClick={handleNavigate}>
|
|
||||||
查看详情
|
|
||||||
<Image
|
|
||||||
className={`${PREFIX}__kanban-button__image`}
|
|
||||||
mode="aspectFit"
|
|
||||||
src={require('@/statics/svg/caret-right.svg')}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className={`${PREFIX}__kanban-total`}>
|
|
||||||
<div className={`${PREFIX}__kanban-title`}>总收益(元)</div>
|
|
||||||
<div className={`${PREFIX}__kanban-money`}>1666.66</div>
|
|
||||||
</div>
|
|
||||||
<div className={`${PREFIX}__kanban-details`}>
|
|
||||||
<div className={`${PREFIX}__kanban-details-part`}>
|
|
||||||
<div className={`${PREFIX}__kanban-title`}>可提现(元)</div>
|
|
||||||
<div className={`${PREFIX}__kanban-money`}>666.23</div>
|
|
||||||
</div>
|
|
||||||
<div className={`${PREFIX}__kanban-details-part`}>
|
|
||||||
<div className={`${PREFIX}__kanban-title`}>提现中(元)</div>
|
|
||||||
<div className={`${PREFIX}__kanban-money`}>666.23</div>
|
|
||||||
</div>
|
|
||||||
<div className={`${PREFIX}__kanban-details-part`}>
|
|
||||||
<div className={`${PREFIX}__kanban-title`}>待分账(元)</div>
|
|
||||||
<div className={`${PREFIX}__kanban-money`}>666.23</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function PartnerEntry() {
|
export default function PartnerEntry() {
|
||||||
const [state, setState] = useState(1);
|
const userInfo = useUserInfo();
|
||||||
// TODO: 开通状态检查
|
|
||||||
const handleBindSuccess = useCallback(() => {
|
const handleBindSuccess = useCallback(async () => {
|
||||||
setState(0);
|
await becomePartner();
|
||||||
|
await requestUserInfo();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
if (state === 0) {
|
if (userInfo.isPartner) {
|
||||||
return <JoinEntry onBindSuccess={handleBindSuccess} />;
|
return <PartnerKanban simple />;
|
||||||
}
|
}
|
||||||
return <PartnerKanban />;
|
return <JoinEntry onBindSuccess={handleBindSuccess} />;
|
||||||
}
|
}
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
line-height: 88px;
|
line-height: 88px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0;
|
top: 98px;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
@ -121,3 +121,10 @@
|
|||||||
margin-left: 32px;
|
margin-left: 32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#posterCanvas {
|
||||||
|
position: fixed;
|
||||||
|
bottom: -99999px;
|
||||||
|
left: -99999px;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
@ -1,12 +1,120 @@
|
|||||||
import { Button } from '@tarojs/components';
|
import { Button, Canvas } from '@tarojs/components';
|
||||||
|
import Taro from '@tarojs/taro';
|
||||||
|
|
||||||
import { useCallback } from 'react';
|
import { useCallback, useState } from 'react';
|
||||||
|
|
||||||
import { openCustomerServiceChat } from '@/utils/common';
|
import { openCustomerServiceChat } from '@/utils/common';
|
||||||
|
import { getPartnerQrcode } from '@/utils/partner';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
const PREFIX = 'partner-intro';
|
const PREFIX = 'partner-intro';
|
||||||
|
|
||||||
export default function PartnerIntro() {
|
export default function PartnerIntro() {
|
||||||
|
const [posterPath, setPosterPath] = useState('');
|
||||||
|
const getQrcode = async () => {
|
||||||
|
try {
|
||||||
|
const data = await getPartnerQrcode(); // 假设 getPartnerQrcode 返回 ArrayBuffer
|
||||||
|
const base64 = Taro.arrayBufferToBase64(data);
|
||||||
|
return `data:image/png;base64,${base64}`;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('获取二维码失败', error);
|
||||||
|
Taro.showToast({ title: '获取二维码失败', icon: 'none' });
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const saveCanvasToTempFile = (): Promise<string> => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
try {
|
||||||
|
const query = Taro.createSelectorQuery().select('#posterCanvas');
|
||||||
|
query.fields({ node: true }).exec(async res => {
|
||||||
|
const canvas = res[0].node;
|
||||||
|
const tempFilePath = await Taro.canvasToTempFilePath({
|
||||||
|
canvas,
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
width: 1500, // 实际绘制宽度
|
||||||
|
height: 2668, // 实际绘制高度
|
||||||
|
destWidth: 750, // 目标显示宽度
|
||||||
|
destHeight: 1334, // 目标显示高度
|
||||||
|
fileType: 'jpg',
|
||||||
|
});
|
||||||
|
|
||||||
|
setPosterPath(tempFilePath.tempFilePath);
|
||||||
|
|
||||||
|
resolve(tempFilePath.tempFilePath);
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error('保存 Canvas 到临时文件失败', error);
|
||||||
|
Taro.showToast({ title: '保存 Canvas 失败', icon: 'none' });
|
||||||
|
reject(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const drawCanvas = (qrCode: string): Promise<string> => {
|
||||||
|
const query = Taro.createSelectorQuery().select('#posterCanvas');
|
||||||
|
return new Promise(resolve => {
|
||||||
|
query.fields({ node: true, size: true }).exec(async res => {
|
||||||
|
const canvas = res[0].node;
|
||||||
|
const ctx = canvas.getContext('2d');
|
||||||
|
|
||||||
|
canvas.width = 1500;
|
||||||
|
canvas.height = 2668;
|
||||||
|
ctx.scale(2, 2);
|
||||||
|
|
||||||
|
// 绘制背景图片
|
||||||
|
const bgImage = canvas.createImage();
|
||||||
|
const poster = 'https://publiccdn.neighbourhood.com.cn/img/poster.png'
|
||||||
|
bgImage.src = poster;
|
||||||
|
bgImage.onload = () => {
|
||||||
|
ctx.drawImage(bgImage, 0, 0, 750, 1334);
|
||||||
|
|
||||||
|
const qrCodeImage = canvas.createImage();
|
||||||
|
qrCodeImage.src = qrCode; // 假设 getQrcode() 返回的是二维码图片的路径
|
||||||
|
qrCodeImage.onload = () => {
|
||||||
|
ctx.drawImage(qrCodeImage, 235, 894, 280, 280); // 绘制二维码,位置和大小
|
||||||
|
saveCanvasToTempFile().then(tempPath => {
|
||||||
|
resolve(tempPath);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
|
bgImage.onerror = err => {
|
||||||
|
console.error(err);
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const savePoster = async () => {
|
||||||
|
let filePath = posterPath;
|
||||||
|
if (!filePath) {
|
||||||
|
Taro.showLoading({ title: '正在生成海报' });
|
||||||
|
const qrCode = await getQrcode();
|
||||||
|
filePath = await drawCanvas(qrCode);
|
||||||
|
Taro.hideLoading();
|
||||||
|
}
|
||||||
|
|
||||||
|
const res = await Taro.getSetting();
|
||||||
|
const hasPermission = res.authSetting['scope.writePhotosAlbum'];
|
||||||
|
if (hasPermission === false) {
|
||||||
|
Taro.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '需要访问相册权限才能保存图片,请前往设置开启权限',
|
||||||
|
showCancel: false,
|
||||||
|
success() {
|
||||||
|
Taro.openSetting();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
await Taro.authorize({ scope: 'scope.writePhotosAlbum' });
|
||||||
|
await Taro.saveImageToPhotosAlbum({ filePath });
|
||||||
|
Taro.showToast({ title: '保存成功', icon: 'success' });
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
Taro.showToast({ title: '保存失败', icon: 'none' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const handleOpenService = useCallback(() => {
|
const handleOpenService = useCallback(() => {
|
||||||
openCustomerServiceChat('https://work.weixin.qq.com/kfid/kfc4fcf6b109b3771d7');
|
openCustomerServiceChat('https://work.weixin.qq.com/kfid/kfc4fcf6b109b3771d7');
|
||||||
}, []);
|
}, []);
|
||||||
@ -45,17 +153,16 @@ export default function PartnerIntro() {
|
|||||||
<div className={`${PREFIX}__tip`}>注:收益不设时限,可重复享有,播络保留活动最终解释权</div>
|
<div className={`${PREFIX}__tip`}>注:收益不设时限,可重复享有,播络保留活动最终解释权</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<Canvas id="posterCanvas" canvas-id="posterCanvas" type="2d" style="width: 750px; height: 1334px;" />
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function PartnerIntroFooter() {
|
<div className={`${PREFIX}__footer`}>
|
||||||
return (
|
<Button className={`${PREFIX}__download-button`} onClick={savePoster}>
|
||||||
<div className={`${PREFIX}__footer`}>
|
下载海报
|
||||||
<Button className={`${PREFIX}__download-button`}>下载海报</Button>
|
</Button>
|
||||||
<Button className={`${PREFIX}__share-button`} openType="share">
|
<Button className={`${PREFIX}__share-button`} openType="share">
|
||||||
分享邀请
|
分享邀请
|
||||||
</Button>
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
86
src/components/partner-invite-list/index.less
Normal file
86
src/components/partner-invite-list/index.less
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
@import '@/styles/common.less';
|
||||||
|
|
||||||
|
.partner-invite-list {
|
||||||
|
padding-top: 72px;
|
||||||
|
&__title {
|
||||||
|
height: 72px;
|
||||||
|
width: 100%;
|
||||||
|
background: #f7f7f7;
|
||||||
|
padding: 0 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
line-height: 72px;
|
||||||
|
font-size: 24px;
|
||||||
|
color: rgba(0, 0, 0, 0.5);
|
||||||
|
position: fixed;
|
||||||
|
top: 98rpx;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
.flex-row();
|
||||||
|
|
||||||
|
&-time-id {
|
||||||
|
padding: 0 8px;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-created {
|
||||||
|
padding: 0 8px;
|
||||||
|
min-width: 96px;
|
||||||
|
max-width: 196px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-joined {
|
||||||
|
text-align: right;
|
||||||
|
width: 96px;
|
||||||
|
padding: 0 8px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__item {
|
||||||
|
height: 131px;
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
padding: 24px 32px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
font-size: 28px;
|
||||||
|
|
||||||
|
&-content {
|
||||||
|
.flex-row();
|
||||||
|
width: 100%;
|
||||||
|
border-bottom: 1px solid #e6e7e8;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-time-id {
|
||||||
|
padding-right: 8px;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
&-item {
|
||||||
|
line-height: 40px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
.noWrap();
|
||||||
|
}
|
||||||
|
&-id {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 36px;
|
||||||
|
color: #999999;
|
||||||
|
.noWrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
&-created {
|
||||||
|
padding: 0 8px;
|
||||||
|
min-width: 96px;
|
||||||
|
max-width: 196px;
|
||||||
|
line-height: 83px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-joined {
|
||||||
|
width: 96px;
|
||||||
|
text-align: right;
|
||||||
|
line-height: 83px;
|
||||||
|
padding-left: 8px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
119
src/components/partner-invite-list/index.tsx
Normal file
119
src/components/partner-invite-list/index.tsx
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
import { List, PullRefresh } from '@taroify/core';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
|
|
||||||
|
import ListPlaceholder from '@/components/list-placeholder';
|
||||||
|
import { InviteUserInfo } from '@/types/partner';
|
||||||
|
import { logWithPrefix } from '@/utils/common';
|
||||||
|
import { formatTimestamp, formatUserId, getPartnerInviteList as requestData } from '@/utils/partner';
|
||||||
|
|
||||||
|
import './index.less';
|
||||||
|
|
||||||
|
const PREFIX = 'partner-invite-list';
|
||||||
|
const log = logWithPrefix(PREFIX);
|
||||||
|
|
||||||
|
function PartnerList(props: {
|
||||||
|
refreshDisabled?: boolean;
|
||||||
|
visible?: boolean;
|
||||||
|
listHeight?: number;
|
||||||
|
className?: string;
|
||||||
|
onListEmpty?: () => void;
|
||||||
|
}) {
|
||||||
|
const { className, listHeight, refreshDisabled, visible = true, onListEmpty } = props;
|
||||||
|
const [refreshing, setRefreshing] = useState(false);
|
||||||
|
const [loadingMore, setLoadingMore] = useState(false);
|
||||||
|
const [loadMoreError, setLoadMoreError] = useState(false);
|
||||||
|
const [dataList, setDataList] = useState<InviteUserInfo[]>([]);
|
||||||
|
const onListEmptyRef = useRef(onListEmpty);
|
||||||
|
|
||||||
|
const handleRefresh = useCallback(async () => {
|
||||||
|
log('start pull refresh');
|
||||||
|
try {
|
||||||
|
setRefreshing(true);
|
||||||
|
setLoadMoreError(false);
|
||||||
|
const list = await requestData();
|
||||||
|
setDataList(list);
|
||||||
|
!list.length && onListEmptyRef.current?.();
|
||||||
|
log('pull refresh success');
|
||||||
|
} catch (e) {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadMoreError(true);
|
||||||
|
log('pull refresh failed');
|
||||||
|
} finally {
|
||||||
|
setRefreshing(false);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
onListEmptyRef.current = onListEmpty;
|
||||||
|
}, [onListEmpty]);
|
||||||
|
|
||||||
|
// 初始化数据&配置变更后刷新数据
|
||||||
|
useEffect(() => {
|
||||||
|
// 列表不可见时,先不做处理
|
||||||
|
if (!visible) {
|
||||||
|
log('visible changed, but is not visible, only clear list');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const refresh = async () => {
|
||||||
|
log('visible changed, start refresh list data');
|
||||||
|
try {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadingMore(true);
|
||||||
|
setLoadMoreError(false);
|
||||||
|
const list = await requestData();
|
||||||
|
setDataList(list);
|
||||||
|
!list.length && onListEmptyRef.current?.();
|
||||||
|
} catch (e) {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadMoreError(true);
|
||||||
|
} finally {
|
||||||
|
log('visible changed, refresh list data end');
|
||||||
|
setLoadingMore(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
refresh();
|
||||||
|
}, [visible]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={PREFIX}>
|
||||||
|
<div className={`${PREFIX}__title`}>
|
||||||
|
<div className={`${PREFIX}__title-time-id`}>邀请时间|用户编号</div>
|
||||||
|
<div className={`${PREFIX}__title-created`}>模卡</div>
|
||||||
|
<div className={`${PREFIX}__title-joined`}>合伙人</div>
|
||||||
|
</div>
|
||||||
|
<PullRefresh
|
||||||
|
className={classNames(`${PREFIX}__pull-refresh`, className)}
|
||||||
|
loading={refreshing}
|
||||||
|
onRefresh={handleRefresh}
|
||||||
|
disabled={refreshDisabled}
|
||||||
|
>
|
||||||
|
<List
|
||||||
|
hasMore={false}
|
||||||
|
onLoad={() => {}}
|
||||||
|
loading={loadingMore || refreshing}
|
||||||
|
disabled={loadMoreError}
|
||||||
|
fixedHeight={typeof listHeight !== 'undefined'}
|
||||||
|
style={listHeight ? { height: `${listHeight}px` } : undefined}
|
||||||
|
>
|
||||||
|
{dataList.map(item => (
|
||||||
|
<div className={`${PREFIX}__item`} key={item.id || item.userId}>
|
||||||
|
<div className={`${PREFIX}__item-content`}>
|
||||||
|
<div className={`${PREFIX}__item-time-id`}>
|
||||||
|
<div className={`${PREFIX}__item-time`}>{formatTimestamp(item.created)}</div>
|
||||||
|
<div className={`${PREFIX}__item-id`}>{formatUserId(item.userId)}</div>
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__item-created`}>{item.isCreateResume ? '已创建' : '未创建'}</div>
|
||||||
|
<div className={`${PREFIX}__item-joined`}>{item.isPartner ? '已加入' : '未加入'}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
<ListPlaceholder hasMore={false} loadingMore={loadingMore} loadMoreError={loadMoreError} />
|
||||||
|
</List>
|
||||||
|
</PullRefresh>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PartnerList;
|
174
src/components/partner-kanban/index.less
Normal file
174
src/components/partner-kanban/index.less
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
@import '@/styles/variables.less';
|
||||||
|
@import '@/styles/common.less';
|
||||||
|
|
||||||
|
.partner-kanban {
|
||||||
|
border-radius: 16px;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
position: relative;
|
||||||
|
background: #6d3df5;
|
||||||
|
color: #fff;
|
||||||
|
|
||||||
|
&__simple {
|
||||||
|
}
|
||||||
|
|
||||||
|
&__bg {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 16px;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__content {
|
||||||
|
position: relative;
|
||||||
|
min-height: 280px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 36px 40px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__button {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
top: 44px;
|
||||||
|
right: 56px;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 24px;
|
||||||
|
&-image {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__title {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
letter-spacing: 0.02em;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
&__money {
|
||||||
|
font-family: 'Helvetica Neue';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
&__total {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
.partner-kanban {
|
||||||
|
&__title {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 40px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
&__money {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 42px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__details {
|
||||||
|
.flex-row();
|
||||||
|
&-part {
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
.partner-kanban {
|
||||||
|
&__title {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 36px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
&__money {
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 42px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__buttons {
|
||||||
|
margin-top: 30px;
|
||||||
|
.flex-row();
|
||||||
|
gap: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__withdraw {
|
||||||
|
.button(@height: 72px; @borderRadius: 8px; @highlight: 0);
|
||||||
|
background: #fff;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__record {
|
||||||
|
.button(@height: 72px; @borderRadius: 8px; @highlight: 1);
|
||||||
|
background: #b6bef4;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-tip-dialog {
|
||||||
|
&__container {
|
||||||
|
.flex-column();
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 42px;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__confirm-button {
|
||||||
|
.button(@width: 360px, @height: 72px, @fontSize: 28px, @fontWeight: 400, @borderRadius: 44px);
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-withdraw-dialog {
|
||||||
|
&__container {
|
||||||
|
.flex-column();
|
||||||
|
color: @blColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 36px;
|
||||||
|
line-height: 57px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__count {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 80px;
|
||||||
|
line-height: 57px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 38px;
|
||||||
|
|
||||||
|
.yuan {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__hint {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 36px;
|
||||||
|
text-align: center;
|
||||||
|
color: @blColorG1;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
&__confirm-button {
|
||||||
|
.button(@width: 360px, @height: 72px, @fontSize: 28px, @fontWeight: 400, @borderRadius: 44px);
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__cancel-button {
|
||||||
|
width: 204px;
|
||||||
|
height: 39px;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 39px;
|
||||||
|
color: @blHighlightColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
148
src/components/partner-kanban/index.tsx
Normal file
148
src/components/partner-kanban/index.tsx
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
import { Button, Image } from '@tarojs/components';
|
||||||
|
|
||||||
|
import { Dialog } from '@taroify/core';
|
||||||
|
import { Question } from '@taroify/icons';
|
||||||
|
import { useCallback, useState, useEffect } from 'react';
|
||||||
|
|
||||||
|
import { PageUrl } from '@/constants/app';
|
||||||
|
import { PartnerProfitsState } from '@/types/partner';
|
||||||
|
import { formatMoney, getPartnerProfitStat } from '@/utils/partner';
|
||||||
|
import { navigateTo } from '@/utils/route';
|
||||||
|
|
||||||
|
import './index.less';
|
||||||
|
|
||||||
|
const PREFIX = 'partner-kanban';
|
||||||
|
|
||||||
|
function TipDialog(props: { open: boolean; onClose: () => void }) {
|
||||||
|
return (
|
||||||
|
<Dialog open={props.open} onClose={props.onClose}>
|
||||||
|
<Dialog.Content>
|
||||||
|
<div className={`${PREFIX}-tip-dialog__container`}>
|
||||||
|
<div
|
||||||
|
className={`${PREFIX}-tip-dialog__title`}
|
||||||
|
>{`会员支付的收益无需提现,\n支付15日后自动分账至微信零钱`}</div>
|
||||||
|
<Button className={`${PREFIX}-tip-dialog__confirm-button`} onClick={props.onClose}>
|
||||||
|
我知道了
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</Dialog.Content>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function WithdrawDialog(props: { open: boolean; onClose: () => void; count: number }) {
|
||||||
|
const handleWithdraw = useCallback(() => {}, []);
|
||||||
|
return (
|
||||||
|
<Dialog open={props.open} onClose={props.onClose}>
|
||||||
|
<Dialog.Content>
|
||||||
|
<div className={`${PREFIX}-withdraw-dialog__container`}>
|
||||||
|
<div className={`${PREFIX}-withdraw-dialog__title`}>本次申请提现金额为</div>
|
||||||
|
<div className={`${PREFIX}-withdraw-dialog__count`}>
|
||||||
|
{props.count}
|
||||||
|
<div className="yuan">元</div>
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}-withdraw-dialog__hint`}>单笔最大500元</div>
|
||||||
|
<Button className={`${PREFIX}-withdraw-dialog__confirm-button`} onClick={handleWithdraw}>
|
||||||
|
提现
|
||||||
|
</Button>
|
||||||
|
<div className={`${PREFIX}-withdraw-dialog__cancel-button`} onClick={props.onClose}>
|
||||||
|
取消
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Dialog.Content>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
type PartnerKanbanProps = {
|
||||||
|
simple?: boolean;
|
||||||
|
};
|
||||||
|
export default function PartnerKanban({ simple }: PartnerKanbanProps) {
|
||||||
|
const [tipOpen, setTipOpen] = useState(false);
|
||||||
|
const [withdrawOpen, setWithdrawOpen] = useState(false);
|
||||||
|
const [stats, setStats] = useState<PartnerProfitsState>({
|
||||||
|
withdraw: 0,
|
||||||
|
available: 0,
|
||||||
|
withdrawing: 0,
|
||||||
|
});
|
||||||
|
const total = stats.withdrawing + stats.available + stats.withdraw;
|
||||||
|
const handleNavigate = useCallback(() => {
|
||||||
|
navigateTo(PageUrl.Partner);
|
||||||
|
}, []);
|
||||||
|
const handleNavigateRecord = useCallback(() => {
|
||||||
|
navigateTo(PageUrl.WithdrawRecord);
|
||||||
|
}, []);
|
||||||
|
const handleViewTip = useCallback(() => {
|
||||||
|
setTipOpen(true);
|
||||||
|
}, []);
|
||||||
|
const handleTipClose = useCallback(() => {
|
||||||
|
setTipOpen(false);
|
||||||
|
}, []);
|
||||||
|
const handleViewWithdraw = useCallback(() => {
|
||||||
|
setWithdrawOpen(true);
|
||||||
|
}, []);
|
||||||
|
const handleWithdrawClose = useCallback(() => {
|
||||||
|
setWithdrawOpen(false);
|
||||||
|
}, []);
|
||||||
|
const getProfitStats = useCallback(async () => {
|
||||||
|
const data = await getPartnerProfitStat();
|
||||||
|
setStats(data);
|
||||||
|
}, []);
|
||||||
|
useEffect(() => {
|
||||||
|
getProfitStats();
|
||||||
|
}, []);
|
||||||
|
return (
|
||||||
|
<div className={`${PREFIX} ${simple ? `${PREFIX}__simple` : ''}`}>
|
||||||
|
<Image
|
||||||
|
className={`${PREFIX}__bg`}
|
||||||
|
src="https://publiccdn.neighbourhood.com.cn/img/partner_bg.png"
|
||||||
|
mode="aspectFill"
|
||||||
|
/>
|
||||||
|
<div className={`${PREFIX}__content`}>
|
||||||
|
{simple && (
|
||||||
|
<div className={`${PREFIX}__button`} onClick={handleNavigate}>
|
||||||
|
查看详情
|
||||||
|
<Image
|
||||||
|
className={`${PREFIX}__button-image`}
|
||||||
|
mode="aspectFit"
|
||||||
|
src={require('@/statics/svg/caret-right.svg')}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className={`${PREFIX}__total`}>
|
||||||
|
<div className={`${PREFIX}__title`}>总收益(元)</div>
|
||||||
|
<div className={`${PREFIX}__money`}>{formatMoney(total)}</div>
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__details`}>
|
||||||
|
<div className={`${PREFIX}__details-part`}>
|
||||||
|
<div className={`${PREFIX}__title`}>可提现(元)</div>
|
||||||
|
<div className={`${PREFIX}__money`}>{formatMoney(stats.available)}</div>
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__details-part`}>
|
||||||
|
<div className={`${PREFIX}__title`}>提现中(元)</div>
|
||||||
|
<div className={`${PREFIX}__money`}>{formatMoney(stats.withdrawing)}</div>
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__details-part`}>
|
||||||
|
<div className={`${PREFIX}__title`}>
|
||||||
|
已提现(元)
|
||||||
|
{!simple && <Question onClick={handleViewTip} />}
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__money`}>{formatMoney(stats.withdraw)}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{!simple && (
|
||||||
|
<div className={`${PREFIX}__buttons`}>
|
||||||
|
<Button className={`${PREFIX}__withdraw`} onClick={handleViewWithdraw}>
|
||||||
|
提现
|
||||||
|
</Button>
|
||||||
|
<Button className={`${PREFIX}__record`} onClick={handleNavigateRecord}>
|
||||||
|
提现记录
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
{!simple && <TipDialog open={tipOpen} onClose={handleTipClose} />}
|
||||||
|
{!simple && <WithdrawDialog count={350} open={withdrawOpen} onClose={handleWithdrawClose} />}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
117
src/components/partner-profit/ProfitList.tsx
Normal file
117
src/components/partner-profit/ProfitList.tsx
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
import { List, PullRefresh } from '@taroify/core';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
|
|
||||||
|
import ListPlaceholder from '@/components/list-placeholder';
|
||||||
|
import { GetProfitRequest, PartnerProfitItem, ProfitType } from '@/types/partner';
|
||||||
|
import { logWithPrefix } from '@/utils/common';
|
||||||
|
import { formatMoney, formatTimestamp, getProfitList as requestData } from '@/utils/partner';
|
||||||
|
|
||||||
|
import './index.less';
|
||||||
|
import { PROFIT_STATUS_MAP, PROFIT_TYPE_MAP } from '@/constants/partner';
|
||||||
|
|
||||||
|
export interface IPartnerProfitListProps extends GetProfitRequest {
|
||||||
|
visible?: boolean;
|
||||||
|
refreshDisabled?: boolean;
|
||||||
|
listHeight?: number;
|
||||||
|
className?: string;
|
||||||
|
onListEmpty?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PREFIX = 'partner-profit';
|
||||||
|
const log = logWithPrefix(PREFIX);
|
||||||
|
|
||||||
|
function ProfitList(props: IPartnerProfitListProps) {
|
||||||
|
const { className, listHeight, refreshDisabled, visible = true, profitType, onListEmpty } = props;
|
||||||
|
const [refreshing, setRefreshing] = useState(false);
|
||||||
|
const [loadingMore, setLoadingMore] = useState(false);
|
||||||
|
const [loadMoreError, setLoadMoreError] = useState(false);
|
||||||
|
const [dataList, setDataList] = useState<PartnerProfitItem[]>([]);
|
||||||
|
const onListEmptyRef = useRef(onListEmpty);
|
||||||
|
|
||||||
|
const handleRefresh = useCallback(async () => {
|
||||||
|
log('start pull refresh');
|
||||||
|
try {
|
||||||
|
setRefreshing(true);
|
||||||
|
setLoadMoreError(false);
|
||||||
|
const list = await requestData({ profitType });
|
||||||
|
setDataList(list);
|
||||||
|
!list.length && onListEmptyRef.current?.();
|
||||||
|
log('pull refresh success');
|
||||||
|
} catch (e) {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadMoreError(true);
|
||||||
|
log('pull refresh failed');
|
||||||
|
} finally {
|
||||||
|
setRefreshing(false);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
onListEmptyRef.current = onListEmpty;
|
||||||
|
}, [onListEmpty]);
|
||||||
|
|
||||||
|
// 初始化数据&配置变更后刷新数据
|
||||||
|
useEffect(() => {
|
||||||
|
// 列表不可见时,先不做处理
|
||||||
|
if (!visible) {
|
||||||
|
log('visible changed, but is not visible, only clear list');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const refresh = async () => {
|
||||||
|
log('visible changed, start refresh list data');
|
||||||
|
try {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadingMore(true);
|
||||||
|
setLoadMoreError(false);
|
||||||
|
const list = await requestData({ profitType });
|
||||||
|
setDataList(list);
|
||||||
|
!list.length && onListEmptyRef.current?.();
|
||||||
|
} catch (e) {
|
||||||
|
setDataList([]);
|
||||||
|
setLoadMoreError(true);
|
||||||
|
} finally {
|
||||||
|
log('visible changed, refresh list data end');
|
||||||
|
setLoadingMore(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
refresh();
|
||||||
|
}, [visible, profitType]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={`${PREFIX}__tab-content`}>
|
||||||
|
<PullRefresh
|
||||||
|
className={classNames(`${PREFIX}__pull-refresh`, className)}
|
||||||
|
loading={refreshing}
|
||||||
|
onRefresh={handleRefresh}
|
||||||
|
disabled={refreshDisabled}
|
||||||
|
>
|
||||||
|
<List
|
||||||
|
hasMore={false}
|
||||||
|
onLoad={() => {}}
|
||||||
|
loading={loadingMore || refreshing}
|
||||||
|
disabled={loadMoreError}
|
||||||
|
fixedHeight={typeof listHeight !== 'undefined'}
|
||||||
|
style={listHeight ? { height: `${listHeight}px` } : undefined}
|
||||||
|
>
|
||||||
|
{dataList.map(item => (
|
||||||
|
<div className={`${PREFIX}__row`} key={item.id}>
|
||||||
|
<div className={`${PREFIX}__row-content`}>
|
||||||
|
<div className={`${PREFIX}__item time`}>{formatTimestamp(item.created)}</div>
|
||||||
|
<div className={`${PREFIX}__item project`}>{PROFIT_TYPE_MAP[profitType]}</div>
|
||||||
|
<div className={`${PREFIX}__item status`}>
|
||||||
|
{profitType === ProfitType.Anchor ? '已结算' : PROFIT_STATUS_MAP[item.status]}
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__item income`}>+{formatMoney(item.profit)}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
<ListPlaceholder hasMore={false} loadingMore={loadingMore} loadMoreError={loadMoreError} />
|
||||||
|
</List>
|
||||||
|
</PullRefresh>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ProfitList;
|
96
src/components/partner-profit/index.less
Normal file
96
src/components/partner-profit/index.less
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
@import '@/styles/variables.less';
|
||||||
|
@import '@/styles/common.less';
|
||||||
|
|
||||||
|
.partner-profit {
|
||||||
|
height: calc(100vh - 98rpx);
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
.flex-column();
|
||||||
|
align-items: normal;
|
||||||
|
|
||||||
|
&__top {
|
||||||
|
padding: 12px 24px;
|
||||||
|
}
|
||||||
|
&__main {
|
||||||
|
position: relative;
|
||||||
|
flex-grow: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__tabs {
|
||||||
|
height: 100%;
|
||||||
|
.taroify-tabs__content {
|
||||||
|
height: calc(100% - 98rpx);
|
||||||
|
}
|
||||||
|
.taroify-tabs__tab-pane {
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
height: 72px;
|
||||||
|
width: 100%;
|
||||||
|
background: #f7f7f7;
|
||||||
|
padding: 0 32px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
line-height: 72px;
|
||||||
|
font-size: 24px;
|
||||||
|
color: rgba(0, 0, 0, 0.5);
|
||||||
|
position: absolute;
|
||||||
|
top:0;
|
||||||
|
left:0;
|
||||||
|
z-index: 1;
|
||||||
|
.flex-row();
|
||||||
|
}
|
||||||
|
|
||||||
|
&__row {
|
||||||
|
padding: 0 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__row-content {
|
||||||
|
border-bottom: 1px solid #e6e7e8;
|
||||||
|
font-size: 28px;
|
||||||
|
color: @blColor;
|
||||||
|
height: 100px;
|
||||||
|
.flex-row();
|
||||||
|
|
||||||
|
.income {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 30px;
|
||||||
|
color: #ff5051;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__item {
|
||||||
|
padding: 0 8px;
|
||||||
|
&:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
&:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
&.time,
|
||||||
|
&.project {
|
||||||
|
flex: 2;
|
||||||
|
}
|
||||||
|
&.status {
|
||||||
|
width: 96px;
|
||||||
|
padding: 0 8px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
&.income {
|
||||||
|
text-align: right;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__tab-content {
|
||||||
|
padding-top: 72rpx;
|
||||||
|
height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #fff;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
}
|
47
src/components/partner-profit/index.tsx
Normal file
47
src/components/partner-profit/index.tsx
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import { Tabs } from '@taroify/core';
|
||||||
|
|
||||||
|
import PartnerKanban from '@/components/partner-kanban';
|
||||||
|
import { ProfitType } from '@/types/partner';
|
||||||
|
|
||||||
|
import ProfitList from './ProfitList';
|
||||||
|
|
||||||
|
import './index.less';
|
||||||
|
|
||||||
|
const PREFIX = 'partner-profit';
|
||||||
|
|
||||||
|
function TableTitle() {
|
||||||
|
return (
|
||||||
|
<div className={`${PREFIX}__title`}>
|
||||||
|
<div className={`${PREFIX}__item time`}>结算时间</div>
|
||||||
|
<div className={`${PREFIX}__item project`}>项目</div>
|
||||||
|
<div className={`${PREFIX}__item status`}>状态</div>
|
||||||
|
<div className={`${PREFIX}__item income`}>收入(元)</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function PartnerProfit() {
|
||||||
|
return (
|
||||||
|
<div className={PREFIX}>
|
||||||
|
<div className={`${PREFIX}__top`}>
|
||||||
|
<PartnerKanban />
|
||||||
|
</div>
|
||||||
|
<div className={`${PREFIX}__main`}>
|
||||||
|
<Tabs className={`${PREFIX}__tabs`}>
|
||||||
|
<Tabs.TabPane title="推荐主播收益">
|
||||||
|
<TableTitle />
|
||||||
|
<ProfitList profitType={ProfitType.Anchor} />
|
||||||
|
</Tabs.TabPane>
|
||||||
|
<Tabs.TabPane title="推荐会员权益">
|
||||||
|
<TableTitle />
|
||||||
|
<ProfitList profitType={ProfitType.Member} />
|
||||||
|
</Tabs.TabPane>
|
||||||
|
<Tabs.TabPane title="推荐合伙人收益">
|
||||||
|
<TableTitle />
|
||||||
|
<ProfitList profitType={ProfitType.Partner} />
|
||||||
|
</Tabs.TabPane>
|
||||||
|
</Tabs>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
@ -30,4 +30,9 @@
|
|||||||
&__protocol {
|
&__protocol {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
.page-user--1 ~ & {
|
||||||
|
position: static;
|
||||||
|
padding-bottom: 174px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -72,6 +72,7 @@ export enum PageUrl {
|
|||||||
ProtocolWebview = 'pages/protocol-webview/index',
|
ProtocolWebview = 'pages/protocol-webview/index',
|
||||||
PrivacyWebview = 'pages/privacy-webview/index',
|
PrivacyWebview = 'pages/privacy-webview/index',
|
||||||
Partner = 'pages/partner/index',
|
Partner = 'pages/partner/index',
|
||||||
|
WithdrawRecord = 'pages/withdraw-record/index',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum PluginUrl {
|
export enum PluginUrl {
|
||||||
|
@ -8,5 +8,6 @@ export enum CacheKey {
|
|||||||
APP_MODE = '__bl_app_mode__',
|
APP_MODE = '__bl_app_mode__',
|
||||||
APP_MODE_NEW = '__bl_app_mode_2__',
|
APP_MODE_NEW = '__bl_app_mode_2__',
|
||||||
LAST_SELECT_MY_JOB = '__last_select_my_job__',
|
LAST_SELECT_MY_JOB = '__last_select_my_job__',
|
||||||
CLOSE_PARTNER_BANNER = '__last_close_partner_banner__',
|
CLOSE_PARTNER_BANNER = '__close_partner_banner__',
|
||||||
|
INVITE_CODE = '__invite_code__',
|
||||||
}
|
}
|
||||||
|
21
src/constants/partner.ts
Normal file
21
src/constants/partner.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
export enum ProfitType {
|
||||||
|
Anchor = '1',
|
||||||
|
Member = '2',
|
||||||
|
Partner = '3',
|
||||||
|
}
|
||||||
|
export enum ProfitStatus {
|
||||||
|
AVAILABLE = '1',
|
||||||
|
WITHDRAWING = '2',
|
||||||
|
WITHDRAW = '3',
|
||||||
|
}
|
||||||
|
|
||||||
|
export const PROFIT_TYPE_MAP = {
|
||||||
|
[ProfitType.Anchor]: '主播被开聊',
|
||||||
|
[ProfitType.Member]: '会员支付',
|
||||||
|
[ProfitType.Partner]: '合伙人收益分成',
|
||||||
|
};
|
||||||
|
export const PROFIT_STATUS_MAP = {
|
||||||
|
[ProfitStatus.AVAILABLE]: '可提现',
|
||||||
|
[ProfitStatus.WITHDRAWING]: '提现中',
|
||||||
|
[ProfitStatus.WITHDRAW]: '已提现',
|
||||||
|
};
|
@ -146,22 +146,3 @@
|
|||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.partner-banner {
|
|
||||||
width: 100%;
|
|
||||||
height: 90px;
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
&__image {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__close {
|
|
||||||
width: 64px;
|
|
||||||
height: 38px;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -4,10 +4,11 @@ import { NodesRef, useDidHide } from '@tarojs/taro';
|
|||||||
import { Tabs } from '@taroify/core';
|
import { Tabs } from '@taroify/core';
|
||||||
import { ArrowUp, ArrowDown } from '@taroify/icons';
|
import { ArrowUp, ArrowDown } from '@taroify/icons';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { useCallback, useEffect, useState, MouseEvent } from 'react';
|
import { useCallback, useEffect, useState } from 'react';
|
||||||
|
|
||||||
import JobList, { IJobListProps } from '@/components/job-list';
|
import JobList, { IJobListProps } from '@/components/job-list';
|
||||||
import Overlay from '@/components/overlay';
|
import Overlay from '@/components/overlay';
|
||||||
|
import PartnerBanner from '@/components/partner-banner';
|
||||||
import SalarySelect from '@/components/salary-select';
|
import SalarySelect from '@/components/salary-select';
|
||||||
import SearchInput from '@/components/search';
|
import SearchInput from '@/components/search';
|
||||||
import { APP_TAB_BAR_ID, PageUrl } from '@/constants/app';
|
import { APP_TAB_BAR_ID, PageUrl } from '@/constants/app';
|
||||||
@ -18,8 +19,6 @@ import { SalaryRange } from '@/types/job';
|
|||||||
import { Coordinate } from '@/types/location';
|
import { Coordinate } from '@/types/location';
|
||||||
import { logWithPrefix } from '@/utils/common';
|
import { logWithPrefix } from '@/utils/common';
|
||||||
import { navigateTo } from '@/utils/route';
|
import { navigateTo } from '@/utils/route';
|
||||||
import { getPartnerBannerClose, setPartnerBannerClose } from '@/utils/partner';
|
|
||||||
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
@ -43,18 +42,6 @@ const CALC_LIST_PROPS: IUseListHeightProps = {
|
|||||||
|
|
||||||
const log = logWithPrefix(PREFIX);
|
const log = logWithPrefix(PREFIX);
|
||||||
|
|
||||||
const PartnerBanner = (props: { onClose: (e: MouseEvent) => void }) => {
|
|
||||||
const handleClick = useCallback(() => {
|
|
||||||
navigateTo(PageUrl.Partner);
|
|
||||||
}, []);
|
|
||||||
return (
|
|
||||||
<div className="partner-banner" onClick={handleClick}>
|
|
||||||
<Image className="partner-banner__image" src={require('@/statics/png/partner_banner.png')} mode="aspectFill" />
|
|
||||||
<div className="partner-banner__close" onClick={props.onClose} />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const NoGroupTips = (props: { className?: string; height?: number }) => {
|
const NoGroupTips = (props: { className?: string; height?: number }) => {
|
||||||
const { className, height } = props;
|
const { className, height } = props;
|
||||||
return (
|
return (
|
||||||
@ -93,7 +80,6 @@ function JobFragment(props: IProps) {
|
|||||||
const [salaryRange, setSalaryRange] = useState<SalaryRange | undefined>();
|
const [salaryRange, setSalaryRange] = useState<SalaryRange | undefined>();
|
||||||
const [showSalarySelect, setShowSalarySelect] = useState<boolean>(false);
|
const [showSalarySelect, setShowSalarySelect] = useState<boolean>(false);
|
||||||
const { latitude, longitude } = coordinate;
|
const { latitude, longitude } = coordinate;
|
||||||
const [bannerClose, setBannerClose] = useState<boolean>(getPartnerBannerClose());
|
|
||||||
|
|
||||||
const handleClickSearch = useCallback(() => navigateTo(PageUrl.JobSearch, { city: cityCode }), [cityCode]);
|
const handleClickSearch = useCallback(() => navigateTo(PageUrl.JobSearch, { city: cityCode }), [cityCode]);
|
||||||
|
|
||||||
@ -117,13 +103,6 @@ function JobFragment(props: IProps) {
|
|||||||
[setTabType]
|
[setTabType]
|
||||||
);
|
);
|
||||||
|
|
||||||
const handlePartnerBannerClose = useCallback(e => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
setBannerClose(true);
|
|
||||||
setPartnerBannerClose();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useDidHide(() => setShowSalarySelect(false));
|
useDidHide(() => setShowSalarySelect(false));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -153,7 +132,7 @@ function JobFragment(props: IProps) {
|
|||||||
<Tabs className={`${PREFIX}__type-tabs`} value={tabType} onChange={onTypeChange}>
|
<Tabs className={`${PREFIX}__type-tabs`} value={tabType} onChange={onTypeChange}>
|
||||||
{JOB_TABS.map(tab => (
|
{JOB_TABS.map(tab => (
|
||||||
<Tabs.TabPane title={tab.title} key={tab.type} value={tab.type}>
|
<Tabs.TabPane title={tab.title} key={tab.type} value={tab.type}>
|
||||||
{!bannerClose && <PartnerBanner onClose={handlePartnerBannerClose} />}
|
<PartnerBanner />
|
||||||
<ListWrapper
|
<ListWrapper
|
||||||
category={tab.type}
|
category={tab.type}
|
||||||
cityCode={cityCode}
|
cityCode={cityCode}
|
||||||
|
@ -95,6 +95,7 @@ export const APP_CONFIG: AppConfigType = {
|
|||||||
PageUrl.ProtocolWebview,
|
PageUrl.ProtocolWebview,
|
||||||
PageUrl.PrivacyWebview,
|
PageUrl.PrivacyWebview,
|
||||||
PageUrl.Partner,
|
PageUrl.Partner,
|
||||||
|
PageUrl.WithdrawRecord,
|
||||||
// PageUrl.DevDebug,
|
// PageUrl.DevDebug,
|
||||||
],
|
],
|
||||||
window: {
|
window: {
|
||||||
|
12
src/hooks/use-invite-code.tsx
Normal file
12
src/hooks/use-invite-code.tsx
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { useSelector } from 'react-redux';
|
||||||
|
|
||||||
|
import useUserInfo from '@/hooks/use-user-info';
|
||||||
|
import { selectPartnerInfo } from '@/store/selector/partner';
|
||||||
|
|
||||||
|
function useInviteCode() {
|
||||||
|
const data = useSelector(selectPartnerInfo);
|
||||||
|
const userInfo = useUserInfo();
|
||||||
|
return userInfo?.isPartner ? data?.inviteCode : undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default useInviteCode;
|
@ -1,7 +1,5 @@
|
|||||||
// export const DOMAIN = 'http://10.147.18.100:8082';
|
export const DOMAIN = 'http://192.168.60.120:8082';
|
||||||
export const DOMAIN = 'https://neighbourhood.cn';
|
// 'https://neighbourhood.cn';
|
||||||
|
|
||||||
|
|
||||||
export const BASE_URL = `${DOMAIN}/api`;
|
export const BASE_URL = `${DOMAIN}/api`;
|
||||||
|
|
||||||
export enum API {
|
export enum API {
|
||||||
@ -77,4 +75,11 @@ export enum API {
|
|||||||
MESSAGE_GET_ACTION_DETAIL = '/chat/action/getActionDetail',
|
MESSAGE_GET_ACTION_DETAIL = '/chat/action/getActionDetail',
|
||||||
MESSAGE_CONFIRM_ACTION = '/chat/action/confirm',
|
MESSAGE_CONFIRM_ACTION = '/chat/action/confirm',
|
||||||
MESSAGE_LIST_STATUS = '/chat/msg/listStatus',
|
MESSAGE_LIST_STATUS = '/chat/msg/listStatus',
|
||||||
|
// partner
|
||||||
|
PARTNER_QRCODE = '/user/getInviteQrCode',
|
||||||
|
GET_INVITE_CODE = '/user/getUserInviteCode',
|
||||||
|
GET_INVITE_LIST = '/user/inviteUsers',
|
||||||
|
BECOME_PARTNER = '/user/becomePartner',
|
||||||
|
GET_PROFIT_LIST = '/profit/profits',
|
||||||
|
GET_PROFIT_STAT = '/profit/partnerProfitsStat',
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ class Http {
|
|||||||
url: BASE_URL + url,
|
url: BASE_URL + url,
|
||||||
data,
|
data,
|
||||||
method: method,
|
method: method,
|
||||||
header: { 'content-type': contentType },
|
header: { 'content-type': contentType /*, 'user-Id': '588002047871053824' */ },
|
||||||
};
|
};
|
||||||
return this.request(option);
|
return this.request(option);
|
||||||
};
|
};
|
||||||
|
@ -57,7 +57,9 @@
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&__banner {
|
||||||
|
padding: 0 24px;
|
||||||
|
}
|
||||||
&__overlay-outer {
|
&__overlay-outer {
|
||||||
top: 82px;
|
top: 82px;
|
||||||
}
|
}
|
||||||
@ -79,7 +81,7 @@
|
|||||||
&__empty-box {
|
&__empty-box {
|
||||||
width: 386px;
|
width: 386px;
|
||||||
height: 278px;
|
height: 278px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__tips-title {
|
&__tips-title {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
@ -88,4 +90,4 @@
|
|||||||
color: @blColor;
|
color: @blColor;
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Image } from '@tarojs/components';
|
import { Image } from '@tarojs/components';
|
||||||
import Taro, { NodesRef, useDidShow, useLoad } from '@tarojs/taro';
|
import Taro, { NodesRef, useDidShow, useLoad, useShareAppMessage } from '@tarojs/taro';
|
||||||
|
|
||||||
import { ArrowUp, ArrowDown } from '@taroify/icons';
|
import { ArrowUp, ArrowDown } from '@taroify/icons';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
@ -12,10 +12,12 @@ import CustomNavigationBar from '@/components/custom-navigation-bar';
|
|||||||
import HomePage from '@/components/home-page';
|
import HomePage from '@/components/home-page';
|
||||||
import Overlay from '@/components/overlay';
|
import Overlay from '@/components/overlay';
|
||||||
import PageLoading from '@/components/page-loading';
|
import PageLoading from '@/components/page-loading';
|
||||||
|
import PartnerBanner from '@/components/partner-banner';
|
||||||
import SwitchBar from '@/components/switch-bar';
|
import SwitchBar from '@/components/switch-bar';
|
||||||
import { APP_TAB_BAR_ID, EventName, OpenSource, PageUrl } from '@/constants/app';
|
import { APP_TAB_BAR_ID, EventName, OpenSource, PageUrl } from '@/constants/app';
|
||||||
import { EmployType, JobManageStatus } from '@/constants/job';
|
import { EmployType, JobManageStatus } from '@/constants/job';
|
||||||
import { ALL_ANCHOR_SORT_TYPES, ANCHOR_SORT_TYPE_TITLE_MAP, AnchorSortType } from '@/constants/material';
|
import { ALL_ANCHOR_SORT_TYPES, ANCHOR_SORT_TYPE_TITLE_MAP, AnchorSortType } from '@/constants/material';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import useListHeight, { IUseListHeightProps } from '@/hooks/use-list-height';
|
import useListHeight, { IUseListHeightProps } from '@/hooks/use-list-height';
|
||||||
import useLocation from '@/hooks/use-location';
|
import useLocation from '@/hooks/use-location';
|
||||||
import { JobManageInfo } from '@/types/job';
|
import { JobManageInfo } from '@/types/job';
|
||||||
@ -25,9 +27,10 @@ import { logWithPrefix } from '@/utils/common';
|
|||||||
import { getLastSelectMyJobId, requestJobManageList, setLastSelectMyJobId } from '@/utils/job';
|
import { getLastSelectMyJobId, requestJobManageList, setLastSelectMyJobId } from '@/utils/job';
|
||||||
import { getWxLocation } from '@/utils/location';
|
import { getWxLocation } from '@/utils/location';
|
||||||
import { requestUnreadMessageCount } from '@/utils/message';
|
import { requestUnreadMessageCount } from '@/utils/message';
|
||||||
import { navigateTo } from '@/utils/route';
|
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||||
|
import { getPageQuery, navigateTo } from '@/utils/route';
|
||||||
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
import Toast from '@/utils/toast';
|
import Toast from '@/utils/toast';
|
||||||
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
const PREFIX = 'page-anchor';
|
const PREFIX = 'page-anchor';
|
||||||
@ -82,6 +85,7 @@ export default function AnchorPage() {
|
|||||||
latitude: location.latitude,
|
latitude: location.latitude,
|
||||||
longitude: location.longitude,
|
longitude: location.longitude,
|
||||||
});
|
});
|
||||||
|
const inviteCode = useInviteCode();
|
||||||
log('jobId', selectJob);
|
log('jobId', selectJob);
|
||||||
|
|
||||||
const handleChangeSelectJob = useCallback((select?: JobManageInfo) => {
|
const handleChangeSelectJob = useCallback((select?: JobManageInfo) => {
|
||||||
@ -161,6 +165,9 @@ export default function AnchorPage() {
|
|||||||
}, [location]);
|
}, [location]);
|
||||||
|
|
||||||
useLoad(async () => {
|
useLoad(async () => {
|
||||||
|
const query = getPageQuery();
|
||||||
|
getInviteCodeFromQueryAndUpdate(query);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { jobResults = [] } = await requestJobManageList({ status: JobManageStatus.Open });
|
const { jobResults = [] } = await requestJobManageList({ status: JobManageStatus.Open });
|
||||||
if (!jobResults.length) {
|
if (!jobResults.length) {
|
||||||
@ -178,6 +185,10 @@ export default function AnchorPage() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useShareAppMessage(() => {
|
||||||
|
return getCommonShareMessage(true, inviteCode);
|
||||||
|
});
|
||||||
|
|
||||||
useDidShow(() => requestUnreadMessageCount());
|
useDidShow(() => requestUnreadMessageCount());
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -204,6 +215,9 @@ export default function AnchorPage() {
|
|||||||
{showFilter ? <ArrowUp /> : <ArrowDown />}
|
{showFilter ? <ArrowUp /> : <ArrowDown />}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className={`${PREFIX}__banner`}>
|
||||||
|
<PartnerBanner />
|
||||||
|
</div>
|
||||||
<ListWrapper
|
<ListWrapper
|
||||||
filters={filters}
|
filters={filters}
|
||||||
ready={!loading}
|
ready={!loading}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Image } from '@tarojs/components';
|
import { Image } from '@tarojs/components';
|
||||||
import { NodesRef, useShareAppMessage } from '@tarojs/taro';
|
import { NodesRef, useLoad, useShareAppMessage } from '@tarojs/taro';
|
||||||
|
|
||||||
import { List } from '@taroify/core';
|
import { List } from '@taroify/core';
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
@ -7,8 +7,11 @@ import { useCallback } from 'react';
|
|||||||
import HomePage from '@/components/home-page';
|
import HomePage from '@/components/home-page';
|
||||||
import LoginButton from '@/components/login-button';
|
import LoginButton from '@/components/login-button';
|
||||||
import { APP_TAB_BAR_ID } from '@/constants/app';
|
import { APP_TAB_BAR_ID } from '@/constants/app';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import useListHeight, { IUseListHeightProps } from '@/hooks/use-list-height';
|
import useListHeight, { IUseListHeightProps } from '@/hooks/use-list-height';
|
||||||
import { openCustomerServiceChat } from '@/utils/common';
|
import { openCustomerServiceChat } from '@/utils/common';
|
||||||
|
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||||
|
import { getPageQuery } from '@/utils/route';
|
||||||
import { getCommonShareMessage } from '@/utils/share';
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
@ -56,10 +59,16 @@ const GROUPS: GroupItem[] = [
|
|||||||
|
|
||||||
export default function GroupV2() {
|
export default function GroupV2() {
|
||||||
const listHeight = useListHeight(CALC_LIST_PROPS);
|
const listHeight = useListHeight(CALC_LIST_PROPS);
|
||||||
|
const inviteCode = useInviteCode();
|
||||||
|
|
||||||
const handleClick = useCallback((group: GroupItem) => openCustomerServiceChat(group.serviceUrl), []);
|
const handleClick = useCallback((group: GroupItem) => openCustomerServiceChat(group.serviceUrl), []);
|
||||||
|
|
||||||
useShareAppMessage(() => getCommonShareMessage());
|
useLoad(() => {
|
||||||
|
const query = getPageQuery();
|
||||||
|
getInviteCodeFromQueryAndUpdate(query);
|
||||||
|
});
|
||||||
|
|
||||||
|
useShareAppMessage(() => getCommonShareMessage(true, inviteCode));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HomePage>
|
<HomePage>
|
||||||
|
@ -15,6 +15,7 @@ import { RoleType, EventName, PageUrl } from '@/constants/app';
|
|||||||
import { CertificationStatusType } from '@/constants/company';
|
import { CertificationStatusType } from '@/constants/company';
|
||||||
import { CollectEventName, ReportEventId } from '@/constants/event';
|
import { CollectEventName, ReportEventId } from '@/constants/event';
|
||||||
import { EMPLOY_TYPE_TITLE_MAP } from '@/constants/job';
|
import { EMPLOY_TYPE_TITLE_MAP } from '@/constants/job';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import useUserInfo from '@/hooks/use-user-info';
|
import useUserInfo from '@/hooks/use-user-info';
|
||||||
import useRoleType from '@/hooks/user-role-type';
|
import useRoleType from '@/hooks/user-role-type';
|
||||||
import { RESPONSE_ERROR_CODE } from '@/http/constant';
|
import { RESPONSE_ERROR_CODE } from '@/http/constant';
|
||||||
@ -27,6 +28,7 @@ import { getJobTitle, getJobSalary, postPublishJob, requestJobDetail } from '@/u
|
|||||||
import { calcDistance, isValidLocation } from '@/utils/location';
|
import { calcDistance, isValidLocation } from '@/utils/location';
|
||||||
import { requestProfileDetail } from '@/utils/material';
|
import { requestProfileDetail } from '@/utils/material';
|
||||||
import { isChatWithSelf, postCreateChat } from '@/utils/message';
|
import { isChatWithSelf, postCreateChat } from '@/utils/message';
|
||||||
|
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||||
import { getJumpUrl, getPageQuery, navigateTo } from '@/utils/route';
|
import { getJumpUrl, getPageQuery, navigateTo } from '@/utils/route';
|
||||||
import { getCommonShareMessage } from '@/utils/share';
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
import { formatDate } from '@/utils/time';
|
import { formatDate } from '@/utils/time';
|
||||||
@ -181,6 +183,7 @@ export default function JobDetail() {
|
|||||||
const userInfo = useUserInfo();
|
const userInfo = useUserInfo();
|
||||||
const [data, setData] = useState<JobDetails | null>(null);
|
const [data, setData] = useState<JobDetails | null>(null);
|
||||||
const isOwner = roleType === RoleType.Company && userInfo.userId === data?.userId;
|
const isOwner = roleType === RoleType.Company && userInfo.userId === data?.userId;
|
||||||
|
const inviteCode = useInviteCode();
|
||||||
|
|
||||||
const onDev = useCallback(async () => data && copy(data.id), [data]);
|
const onDev = useCallback(async () => data && copy(data.id), [data]);
|
||||||
|
|
||||||
@ -216,7 +219,8 @@ export default function JobDetail() {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useLoad(async () => {
|
useLoad(async () => {
|
||||||
const query = getPageQuery<Pick<JobDetails, 'id'>>();
|
const query = getPageQuery<Pick<JobDetails, 'id'> & { c: string }>();
|
||||||
|
getInviteCodeFromQueryAndUpdate(query);
|
||||||
const jobId = query?.id;
|
const jobId = query?.id;
|
||||||
if (!jobId) {
|
if (!jobId) {
|
||||||
return;
|
return;
|
||||||
@ -232,11 +236,11 @@ export default function JobDetail() {
|
|||||||
|
|
||||||
useShareAppMessage(() => {
|
useShareAppMessage(() => {
|
||||||
if (!data) {
|
if (!data) {
|
||||||
return getCommonShareMessage();
|
return getCommonShareMessage(true, inviteCode);
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
title: getJobTitle(data) || '',
|
title: getJobTitle(data) || '',
|
||||||
path: getJumpUrl(PageUrl.JobDetail, { id: data.id, share: true }),
|
path: getJumpUrl(PageUrl.JobDetail, { id: data.id, share: true, c: inviteCode }),
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,12 +10,14 @@ import MaterialGuide from '@/components/material-guide';
|
|||||||
import { EventName, OpenSource, PageUrl } from '@/constants/app';
|
import { EventName, OpenSource, PageUrl } from '@/constants/app';
|
||||||
import { EmployType, JOB_PAGE_TABS, SortType } from '@/constants/job';
|
import { EmployType, JOB_PAGE_TABS, SortType } from '@/constants/job';
|
||||||
import JobFragment from '@/fragments/job/base';
|
import JobFragment from '@/fragments/job/base';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import useLocation from '@/hooks/use-location';
|
import useLocation from '@/hooks/use-location';
|
||||||
import useNavigation from '@/hooks/use-navigation';
|
import useNavigation from '@/hooks/use-navigation';
|
||||||
import { Coordinate } from '@/types/location';
|
import { Coordinate } from '@/types/location';
|
||||||
import { logWithPrefix } from '@/utils/common';
|
import { logWithPrefix } from '@/utils/common';
|
||||||
import { getWxLocation, isNotNeedAuthorizeLocation, requestLocation } from '@/utils/location';
|
import { getWxLocation, isNotNeedAuthorizeLocation, requestLocation } from '@/utils/location';
|
||||||
import { requestUnreadMessageCount } from '@/utils/message';
|
import { requestUnreadMessageCount } from '@/utils/message';
|
||||||
|
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||||
import { getJumpUrl, getPageQuery, navigateTo } from '@/utils/route';
|
import { getJumpUrl, getPageQuery, navigateTo } from '@/utils/route';
|
||||||
import { getCommonShareMessage } from '@/utils/share';
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
import Toast from '@/utils/toast';
|
import Toast from '@/utils/toast';
|
||||||
@ -29,6 +31,7 @@ const log = logWithPrefix(PREFIX);
|
|||||||
export default function Job() {
|
export default function Job() {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const { barHeight, statusBarHeight } = useNavigation();
|
const { barHeight, statusBarHeight } = useNavigation();
|
||||||
|
const inviteCode = useInviteCode();
|
||||||
const [tabType, setTabType] = useState<EmployType>(EmployType.All);
|
const [tabType, setTabType] = useState<EmployType>(EmployType.All);
|
||||||
const [sortType, setSortType] = useState<SortType>(SortType.RECOMMEND);
|
const [sortType, setSortType] = useState<SortType>(SortType.RECOMMEND);
|
||||||
const [cityCode, setCityCode] = useState<string>(location.cityCode);
|
const [cityCode, setCityCode] = useState<string>(location.cityCode);
|
||||||
@ -101,11 +104,12 @@ export default function Job() {
|
|||||||
}, [location]);
|
}, [location]);
|
||||||
|
|
||||||
useLoad(async () => {
|
useLoad(async () => {
|
||||||
const query = getPageQuery<{ sortType: SortType }>();
|
const query = getPageQuery<{ sortType: SortType; c?: string; scene?: string }>();
|
||||||
const type = query.sortType;
|
const type = query.sortType;
|
||||||
if (type === SortType.CREATE_TIME) {
|
if (type === SortType.CREATE_TIME) {
|
||||||
setSortType(type);
|
setSortType(type);
|
||||||
}
|
}
|
||||||
|
getInviteCodeFromQueryAndUpdate(query);
|
||||||
if (await isNotNeedAuthorizeLocation()) {
|
if (await isNotNeedAuthorizeLocation()) {
|
||||||
log('not need authorize location');
|
log('not need authorize location');
|
||||||
requestLocation();
|
requestLocation();
|
||||||
@ -121,10 +125,10 @@ export default function Job() {
|
|||||||
if (sortType === SortType.CREATE_TIME) {
|
if (sortType === SortType.CREATE_TIME) {
|
||||||
return {
|
return {
|
||||||
title: '这里有今日全城新增通告,快来看看',
|
title: '这里有今日全城新增通告,快来看看',
|
||||||
path: getJumpUrl(PageUrl.Job, { sortType }),
|
path: getJumpUrl(PageUrl.Job, { sortType, c: inviteCode }),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return getCommonShareMessage();
|
return getCommonShareMessage(true, inviteCode);
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -10,6 +10,7 @@ import { EventName, OpenSource, PageUrl } from '@/constants/app';
|
|||||||
import { CollectEventName } from '@/constants/event';
|
import { CollectEventName } from '@/constants/event';
|
||||||
import { MaterialViewSource } from '@/constants/material';
|
import { MaterialViewSource } from '@/constants/material';
|
||||||
import ProfileViewFragment from '@/fragments/profile/view';
|
import ProfileViewFragment from '@/fragments/profile/view';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import { RESPONSE_ERROR_CODE } from '@/http/constant';
|
import { RESPONSE_ERROR_CODE } from '@/http/constant';
|
||||||
import { HttpError } from '@/http/error';
|
import { HttpError } from '@/http/error';
|
||||||
import { JobManageInfo } from '@/types/job';
|
import { JobManageInfo } from '@/types/job';
|
||||||
@ -20,9 +21,9 @@ import { collectEvent } from '@/utils/event';
|
|||||||
import { requestHasPublishedJob, requestJobDetail } from '@/utils/job';
|
import { requestHasPublishedJob, requestJobDetail } from '@/utils/job';
|
||||||
import { getMaterialShareMessage, requestReadProfile, requestShareProfile } from '@/utils/material';
|
import { getMaterialShareMessage, requestReadProfile, requestShareProfile } from '@/utils/material';
|
||||||
import { isChatWithSelf, postCreateChat } from '@/utils/message';
|
import { isChatWithSelf, postCreateChat } from '@/utils/message';
|
||||||
|
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||||
import { getPageQuery, navigateBack, navigateTo, redirectTo } from '@/utils/route';
|
import { getPageQuery, navigateBack, navigateTo, redirectTo } from '@/utils/route';
|
||||||
import Toast from '@/utils/toast';
|
import Toast from '@/utils/toast';
|
||||||
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
const PREFIX = 'page-material-view';
|
const PREFIX = 'page-material-view';
|
||||||
@ -37,6 +38,7 @@ interface IShareContext {
|
|||||||
resumeId: string;
|
resumeId: string;
|
||||||
source: MaterialViewSource.Share;
|
source: MaterialViewSource.Share;
|
||||||
shareCode: string;
|
shareCode: string;
|
||||||
|
c?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const isShareContext = (context: IViewContext | IShareContext): context is IShareContext => {
|
const isShareContext = (context: IViewContext | IShareContext): context is IShareContext => {
|
||||||
@ -68,6 +70,7 @@ export default function MaterialViewPage() {
|
|||||||
const [noTimeDialogVisible, setNoTimeDialogVisible] = useState(false);
|
const [noTimeDialogVisible, setNoTimeDialogVisible] = useState(false);
|
||||||
const [noVipLimitVisible, setNoVipLimitVisible] = useState(false);
|
const [noVipLimitVisible, setNoVipLimitVisible] = useState(false);
|
||||||
const [vipExpiredVisible, setVipExpiredVisible] = useState(false);
|
const [vipExpiredVisible, setVipExpiredVisible] = useState(false);
|
||||||
|
const inviteCode = useInviteCode();
|
||||||
|
|
||||||
const onDev = useCallback(async () => profile && copy(profile.userId), [profile]);
|
const onDev = useCallback(async () => profile && copy(profile.userId), [profile]);
|
||||||
|
|
||||||
@ -139,6 +142,7 @@ export default function MaterialViewPage() {
|
|||||||
|
|
||||||
useLoad(async () => {
|
useLoad(async () => {
|
||||||
const context = getPageQuery<IViewContext | IShareContext>();
|
const context = getPageQuery<IViewContext | IShareContext>();
|
||||||
|
getInviteCodeFromQueryAndUpdate(context as BL.Anything);
|
||||||
try {
|
try {
|
||||||
const profileDetail = await requestProfile(context);
|
const profileDetail = await requestProfile(context);
|
||||||
setProfile(profileDetail);
|
setProfile(profileDetail);
|
||||||
@ -172,7 +176,7 @@ export default function MaterialViewPage() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
useShareAppMessage(async () => {
|
useShareAppMessage(async () => {
|
||||||
const shareMessage = await getMaterialShareMessage(profile);
|
const shareMessage = await getMaterialShareMessage(profile, true, inviteCode);
|
||||||
return shareMessage as BL.Anything;
|
return shareMessage as BL.Anything;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -6,5 +6,17 @@
|
|||||||
--tabs-active-color: @blHighlightColor;
|
--tabs-active-color: @blHighlightColor;
|
||||||
--tabs-nav-background-color: #fff;
|
--tabs-nav-background-color: #fff;
|
||||||
--tabs-wrap-height: 98px;
|
--tabs-wrap-height: 98px;
|
||||||
|
|
||||||
|
> .taroify-tabs__wrap {
|
||||||
|
position: fixed;
|
||||||
|
width: 100vw;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .taroify-tabs__content {
|
||||||
|
padding-top: var(--tabs-wrap-height);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,35 +1,38 @@
|
|||||||
import { useShareAppMessage } from '@tarojs/taro';
|
import { useShareAppMessage } from '@tarojs/taro';
|
||||||
|
|
||||||
import { Tabs } from '@taroify/core';
|
import { Tabs } from '@taroify/core';
|
||||||
import { useState } from 'react';
|
|
||||||
|
|
||||||
import PartnerIntro, { PartnerIntroFooter } from '@/components/partner-intro';
|
import PartnerIntro from '@/components/partner-intro';
|
||||||
|
import PartnerInviteList from '@/components/partner-invite-list';
|
||||||
|
import PartnerProfit from '@/components/partner-profit';
|
||||||
|
import useInviteCode from '@/hooks/use-invite-code';
|
||||||
import { getCommonShareMessage } from '@/utils/share';
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
|
|
||||||
import './index.less';
|
import './index.less';
|
||||||
|
|
||||||
const PREFIX = 'partner';
|
const PREFIX = 'partner';
|
||||||
|
|
||||||
export default function Partner() {
|
export default function Partner() {
|
||||||
const [tab, setTab] = useState(0);
|
const inviteCode = useInviteCode();
|
||||||
|
|
||||||
useShareAppMessage(() => {
|
useShareAppMessage(() => {
|
||||||
return getCommonShareMessage(false);
|
console.log('Partner inviteCode', inviteCode);
|
||||||
|
return getCommonShareMessage(false, inviteCode);
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={PREFIX}>
|
<div className={PREFIX}>
|
||||||
<Tabs swipeable className={`${PREFIX}__tabs`} value={tab} onChange={setTab}>
|
<Tabs className={`${PREFIX}__tabs`}>
|
||||||
<Tabs.TabPane value={0} title="简介">
|
<Tabs.TabPane value={0} title="简介">
|
||||||
<PartnerIntro />
|
<PartnerIntro />
|
||||||
</Tabs.TabPane>
|
</Tabs.TabPane>
|
||||||
<Tabs.TabPane value={1} title="邀请名单">
|
<Tabs.TabPane value={1} title="邀请名单">
|
||||||
邀请名单
|
<PartnerInviteList />
|
||||||
</Tabs.TabPane>
|
</Tabs.TabPane>
|
||||||
<Tabs.TabPane value={2} title="我的收益">
|
<Tabs.TabPane value={2} title="我的收益">
|
||||||
我的收益
|
<PartnerProfit />
|
||||||
</Tabs.TabPane>
|
</Tabs.TabPane>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
{tab === 0 && <PartnerIntroFooter />}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -84,4 +84,4 @@
|
|||||||
width: 36px;
|
width: 36px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ export default function User() {
|
|||||||
<CustomNavigationBar className={`${PREFIX}__navigation-bar`}>
|
<CustomNavigationBar className={`${PREFIX}__navigation-bar`}>
|
||||||
<SwitchBar title={roleType === RoleType.Anchor ? '切换为企业' : '切换为主播'} onClick={handleSwitchRoleType} />
|
<SwitchBar title={roleType === RoleType.Anchor ? '切换为企业' : '切换为主播'} onClick={handleSwitchRoleType} />
|
||||||
</CustomNavigationBar>
|
</CustomNavigationBar>
|
||||||
<div className={PREFIX}>
|
<div className={`${PREFIX} ${PREFIX}--${roleType}`}>
|
||||||
<div className={`${PREFIX}__header`}>
|
<div className={`${PREFIX}__header`}>
|
||||||
<Image
|
<Image
|
||||||
mode="aspectFill"
|
mode="aspectFill"
|
||||||
|
3
src/pages/withdraw-record/index.config.ts
Normal file
3
src/pages/withdraw-record/index.config.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export default definePageConfig({
|
||||||
|
navigationBarTitleText: '提现记录',
|
||||||
|
});
|
5
src/pages/withdraw-record/index.less
Normal file
5
src/pages/withdraw-record/index.less
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
@import '@/styles/common.less';
|
||||||
|
@import '@/styles/variables.less';
|
||||||
|
|
||||||
|
.withdraw-record {
|
||||||
|
}
|
14
src/pages/withdraw-record/index.tsx
Normal file
14
src/pages/withdraw-record/index.tsx
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { useShareAppMessage } from '@tarojs/taro';
|
||||||
|
|
||||||
|
import { getCommonShareMessage } from '@/utils/share';
|
||||||
|
import './index.less';
|
||||||
|
|
||||||
|
const PREFIX = 'withdraw-record';
|
||||||
|
|
||||||
|
export default function WithdrawRecord() {
|
||||||
|
useShareAppMessage(() => {
|
||||||
|
return getCommonShareMessage(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
return <div className={PREFIX}></div>;
|
||||||
|
}
|
Binary file not shown.
Before Width: | Height: | Size: 57 KiB |
Binary file not shown.
Before Width: | Height: | Size: 560 KiB |
3
src/store/actions/partner.ts
Normal file
3
src/store/actions/partner.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { SET_INVITE_CODE } from '../constants';
|
||||||
|
|
||||||
|
export const setInviteCode = (value: string) => ({ type: SET_INVITE_CODE, value });
|
@ -4,3 +4,4 @@ export const SET_LOCATION_INFO = 'SET_LOCATION_INFO';
|
|||||||
export const SET_USER_INFO = 'SET_USER_INFO';
|
export const SET_USER_INFO = 'SET_USER_INFO';
|
||||||
export const SET_BIND_PHONE = 'SET_BIND_PHONE';
|
export const SET_BIND_PHONE = 'SET_BIND_PHONE';
|
||||||
export const SET_USER_MESSAGE = 'SET_USER_MESSAGE';
|
export const SET_USER_MESSAGE = 'SET_USER_MESSAGE';
|
||||||
|
export const SET_INVITE_CODE = 'SET_INVITE_CODE';
|
||||||
|
@ -2,10 +2,12 @@ import { combineReducers } from 'redux';
|
|||||||
|
|
||||||
import appState from './app';
|
import appState from './app';
|
||||||
import message from './message';
|
import message from './message';
|
||||||
|
import partnerInfo from './partner';
|
||||||
import userInfo from './user';
|
import userInfo from './user';
|
||||||
|
|
||||||
export default combineReducers({
|
export default combineReducers({
|
||||||
appState,
|
appState,
|
||||||
userInfo,
|
userInfo,
|
||||||
message,
|
message,
|
||||||
|
partnerInfo,
|
||||||
});
|
});
|
||||||
|
22
src/store/reducers/partner.ts
Normal file
22
src/store/reducers/partner.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Action } from 'redux';
|
||||||
|
|
||||||
|
import { PartnerInfo } from '@/types/partner';
|
||||||
|
|
||||||
|
import { SET_INVITE_CODE } from '../constants';
|
||||||
|
|
||||||
|
const INIT_STATE: Partial<PartnerInfo> = {};
|
||||||
|
|
||||||
|
const partnerInfo = (state: Partial<PartnerInfo> = INIT_STATE, action: Action): Partial<PartnerInfo> => {
|
||||||
|
const { type, value } = action as BL.Anything;
|
||||||
|
switch (type) {
|
||||||
|
case SET_INVITE_CODE: {
|
||||||
|
return {
|
||||||
|
inviteCode: value,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default partnerInfo;
|
5
src/store/selector/partner.ts
Normal file
5
src/store/selector/partner.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { IState } from '@/types/store';
|
||||||
|
|
||||||
|
export const selectPartnerInfo = (state: IState) => {
|
||||||
|
return state.partnerInfo;
|
||||||
|
};
|
60
src/types/partner.ts
Normal file
60
src/types/partner.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
export interface PartnerProfitsState {
|
||||||
|
withdraw: number;
|
||||||
|
available: number;
|
||||||
|
withdrawing: number;
|
||||||
|
}
|
||||||
|
export interface PartnerInviteCode {
|
||||||
|
inviteCode: string;
|
||||||
|
}
|
||||||
|
export interface PartnerInfo extends PartnerInviteCode {}
|
||||||
|
export interface InviteUserInfo {
|
||||||
|
id: string; // 用户ID,可选
|
||||||
|
userId: string; // 用户唯一标识
|
||||||
|
nickName: string; // 用户昵称
|
||||||
|
bandPhone: boolean; // 是否绑定了手机号,可选
|
||||||
|
avatarUrl: string; // 用户头像URL,可选
|
||||||
|
isDefaultAvatar: boolean; // 是否使用默认头像,可选
|
||||||
|
isDefaultNickname: boolean; // 是否使用默认昵称,可选
|
||||||
|
isBindPhone: boolean; // 是否绑定了手机号,可选
|
||||||
|
created: string; // 用户创建时间戳,可选
|
||||||
|
updated: string; // 用户更新时间戳,可选
|
||||||
|
isBoss: boolean; // 是否是老板,可选
|
||||||
|
isPartner: boolean; // 是否是合作伙伴,可选
|
||||||
|
userBoss: {
|
||||||
|
level: string; // 上级老板的等级,可选
|
||||||
|
expireTime: string; // 上级老板的过期时间,可选
|
||||||
|
isExpire: boolean; // 上级老板是否过期,可选
|
||||||
|
};
|
||||||
|
bossAuthStatus: string; // 老板认证状态,可选
|
||||||
|
existAvailableJob: boolean; // 是否存在可用的工作,可选
|
||||||
|
isCreateResume: boolean; // 是否创建了简历,可选
|
||||||
|
imAcctNo: string; // 即时通讯账号,可选
|
||||||
|
phone: string; // 用户手机号,可选
|
||||||
|
roleType: string; // 角色类型,可选
|
||||||
|
}
|
||||||
|
export enum ProfitType {
|
||||||
|
Anchor = '1',
|
||||||
|
Member = '2',
|
||||||
|
Partner = '3',
|
||||||
|
}
|
||||||
|
export enum ProfitStatus {
|
||||||
|
AVAILABLE = '1',
|
||||||
|
WITHDRAWING = '2',
|
||||||
|
WITHDRAW = '3',
|
||||||
|
}
|
||||||
|
export interface GetProfitRequest {
|
||||||
|
profitType: ProfitType;
|
||||||
|
}
|
||||||
|
export interface PartnerProfitItem {
|
||||||
|
id: number; // 唯一标识
|
||||||
|
userId: string; // 用户ID
|
||||||
|
profit: number; // 利润
|
||||||
|
profitType: ProfitType; // 利润类型
|
||||||
|
status: ProfitStatus; // 状态
|
||||||
|
relatedId: string; // 相关ID
|
||||||
|
remark: string; // 备注
|
||||||
|
created: string; // 创建时间
|
||||||
|
updated: string; // 更新时间
|
||||||
|
profitTypeEnum: string; // 利润类型枚举
|
||||||
|
statusEnum: string; // 状态枚举
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
import { RoleType, PageType } from '@/constants/app';
|
import { RoleType, PageType } from '@/constants/app';
|
||||||
import { UserMessage } from '@/types/message';
|
import { UserMessage } from '@/types/message';
|
||||||
|
import { PartnerInfo } from '@/types/partner';
|
||||||
|
|
||||||
import { LocationInfo } from './location';
|
import { LocationInfo } from './location';
|
||||||
import { UserInfo } from './user';
|
import { UserInfo } from './user';
|
||||||
@ -8,6 +9,7 @@ export interface IState {
|
|||||||
appState: AppState;
|
appState: AppState;
|
||||||
userInfo: UserInfo;
|
userInfo: UserInfo;
|
||||||
message: UserMessage;
|
message: UserMessage;
|
||||||
|
partnerInfo: PartnerInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AppState {
|
export interface AppState {
|
||||||
|
@ -13,6 +13,7 @@ export interface UserInfo {
|
|||||||
created?: string;
|
created?: string;
|
||||||
updated?: string;
|
updated?: string;
|
||||||
isBoss?: boolean; // 是否通告主
|
isBoss?: boolean; // 是否通告主
|
||||||
|
isPartner?: boolean;
|
||||||
userBoss?: {
|
userBoss?: {
|
||||||
level: string;
|
level: string;
|
||||||
expireTime: string;
|
expireTime: string;
|
||||||
|
@ -139,7 +139,11 @@ export const requestAnchorList = async (data: GetAnchorListRequest) => {
|
|||||||
return http.post<GetAnchorListResponse>(API.GET_ANCHOR_LIST, { data });
|
return http.post<GetAnchorListResponse>(API.GET_ANCHOR_LIST, { data });
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getMaterialShareMessage = async (profile?: MaterialProfile | null, needShareCode: boolean = true) => {
|
export const getMaterialShareMessage = async (
|
||||||
|
profile?: MaterialProfile | null,
|
||||||
|
needShareCode: boolean = true,
|
||||||
|
inviteCode?: string
|
||||||
|
) => {
|
||||||
if (!profile) {
|
if (!profile) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -149,7 +153,12 @@ export const getMaterialShareMessage = async (profile?: MaterialProfile | null,
|
|||||||
const title = `${name} ${workedSecCategoryStr ? `播过 ${workedSecCategoryStr}` : ''}`.trim();
|
const title = `${name} ${workedSecCategoryStr ? `播过 ${workedSecCategoryStr}` : ''}`.trim();
|
||||||
return {
|
return {
|
||||||
title,
|
title,
|
||||||
path: getJumpUrl(PageUrl.MaterialView, { shareCode, resumeId: id, source: MaterialViewSource.Share }),
|
path: getJumpUrl(PageUrl.MaterialView, {
|
||||||
|
shareCode,
|
||||||
|
resumeId: id,
|
||||||
|
source: MaterialViewSource.Share,
|
||||||
|
c: inviteCode,
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
} catch (error: unknown) {
|
} catch (error: unknown) {
|
||||||
const e = error as HttpError;
|
const e = error as HttpError;
|
||||||
|
@ -1,7 +1,110 @@
|
|||||||
import Taro from '@tarojs/taro';
|
import Taro from '@tarojs/taro';
|
||||||
|
|
||||||
import { CacheKey } from '@/constants/cache-key';
|
import { CacheKey } from '@/constants/cache-key';
|
||||||
|
import http from '@/http';
|
||||||
|
import { API } from '@/http/api';
|
||||||
|
import store from '@/store';
|
||||||
|
import { setInviteCode } from '@/store/actions/partner';
|
||||||
|
import {
|
||||||
|
GetProfitRequest,
|
||||||
|
InviteUserInfo,
|
||||||
|
PartnerInviteCode,
|
||||||
|
PartnerProfitItem,
|
||||||
|
PartnerProfitsState,
|
||||||
|
} from '@/types/partner';
|
||||||
|
import { requestUserInfo } from '@/utils/user';
|
||||||
|
|
||||||
|
export const getInviteCodeFromQuery = (query: Record<string, string>): string | undefined => {
|
||||||
|
if (query) {
|
||||||
|
if (query.scene) {
|
||||||
|
return query.scene.replace('c%3D', '');
|
||||||
|
}
|
||||||
|
if (query.c) {
|
||||||
|
return query.c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getInviteCodeFromQueryAndUpdate = (query: Record<string, string>) => {
|
||||||
|
const code = getInviteCodeFromQuery(query);
|
||||||
|
if (!code) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
console.log('get code', code);
|
||||||
|
requestUserInfo(code);
|
||||||
|
};
|
||||||
|
|
||||||
export const getPartnerBannerClose = (): boolean => Taro.getStorageSync(CacheKey.CLOSE_PARTNER_BANNER);
|
export const getPartnerBannerClose = (): boolean => Taro.getStorageSync(CacheKey.CLOSE_PARTNER_BANNER);
|
||||||
|
|
||||||
export const setPartnerBannerClose = () => Taro.setStorageSync(CacheKey.CLOSE_PARTNER_BANNER, true);
|
export const setPartnerBannerClose = () => Taro.setStorageSync(CacheKey.CLOSE_PARTNER_BANNER, true);
|
||||||
|
|
||||||
|
export const becomePartner = async () => {
|
||||||
|
await http.post(API.BECOME_PARTNER);
|
||||||
|
await getInviteCode();
|
||||||
|
};
|
||||||
|
export const getPartnerQrcode = async () => {
|
||||||
|
return await http.post(API.PARTNER_QRCODE, {
|
||||||
|
responseType: 'arraybuffer',
|
||||||
|
});
|
||||||
|
};
|
||||||
|
export const getPartnerProfitStat = async () => {
|
||||||
|
return await http.post<PartnerProfitsState>(API.GET_PROFIT_STAT);
|
||||||
|
};
|
||||||
|
export const getPartnerInviteList = async () => {
|
||||||
|
return await http.post<InviteUserInfo[]>(API.GET_INVITE_LIST);
|
||||||
|
};
|
||||||
|
export const dispatchUpdateInviteCode = (code: string) => store.dispatch(setInviteCode(code));
|
||||||
|
export const getInviteCode = async () => {
|
||||||
|
const { inviteCode } = await http.post<PartnerInviteCode>(API.GET_INVITE_CODE);
|
||||||
|
dispatchUpdateInviteCode(inviteCode);
|
||||||
|
return inviteCode;
|
||||||
|
};
|
||||||
|
export const getProfitList = async (data: GetProfitRequest) => {
|
||||||
|
return await http.post<PartnerProfitItem[]>(API.GET_PROFIT_LIST, { data });
|
||||||
|
};
|
||||||
|
export const formatMoney = (cents: number) => {
|
||||||
|
if (!cents) {
|
||||||
|
return '0';
|
||||||
|
}
|
||||||
|
const yuan = cents / 100;
|
||||||
|
return yuan.toFixed(2);
|
||||||
|
};
|
||||||
|
export function formatTimestamp(timestamp: string): string {
|
||||||
|
// 将字符串时间戳转换为数字类型
|
||||||
|
const time = Number(timestamp);
|
||||||
|
|
||||||
|
// 创建 Date 对象
|
||||||
|
const date = new Date(time);
|
||||||
|
|
||||||
|
// 获取年、月、日、时、分、秒
|
||||||
|
const YYYY = date.getFullYear();
|
||||||
|
const MM = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1
|
||||||
|
const DD = String(date.getDate()).padStart(2, '0');
|
||||||
|
const HH = String(date.getHours()).padStart(2, '0');
|
||||||
|
const mm = String(date.getMinutes()).padStart(2, '0');
|
||||||
|
const ss = String(date.getSeconds()).padStart(2, '0');
|
||||||
|
|
||||||
|
// 拼接成所需的格式
|
||||||
|
return `${YYYY}.${MM}.${DD} ${HH}:${mm}:${ss}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatUserId(input: string): string {
|
||||||
|
const length = input.length;
|
||||||
|
|
||||||
|
// 如果长度小于8,隐藏最后4位
|
||||||
|
if (length < 8) {
|
||||||
|
const beforeMask = input.slice(0, length - 4); // 前部分
|
||||||
|
const maskedPart = '****'; // 替换最后4位为星号
|
||||||
|
return beforeMask + maskedPart;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果长度大于或等于8,隐藏倒数第五位到倒数第二位
|
||||||
|
const start = length - 8; // 倒数第八个字符的索引
|
||||||
|
const beforeMask = input.slice(0, start); // 前部分
|
||||||
|
const maskedPart = '****'; // 替换倒数第五位到倒数第二位为星号
|
||||||
|
const afterMask = input.slice(start + 4); // 后部分
|
||||||
|
|
||||||
|
// 拼接结果
|
||||||
|
return beforeMask + maskedPart + afterMask;
|
||||||
|
}
|
||||||
|
@ -75,7 +75,7 @@ export async function requestAllBuyProduct(productCode: ProductType) {
|
|||||||
|
|
||||||
export async function requestCsQrCode(_type: QrCodeType) {
|
export async function requestCsQrCode(_type: QrCodeType) {
|
||||||
const result = await http.post<CustomerServiceInfo>(API.CS_QR_CODE);
|
const result = await http.post<CustomerServiceInfo>(API.CS_QR_CODE);
|
||||||
return `${DOMAIN}/${result.vxQrCode}`;
|
return result.vxQrCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function requestCreatePayInfo(params: Omit<CreatePayInfoRequest, 'payChannel' | 'payType' | 'userId'>) {
|
export async function requestCreatePayInfo(params: Omit<CreatePayInfoRequest, 'payChannel' | 'payType' | 'userId'>) {
|
||||||
|
@ -15,10 +15,11 @@ const getRandomCount = () => {
|
|||||||
return (seed % 300) + 500;
|
return (seed % 300) + 500;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getCommonShareMessage = (useCapture: boolean = true): ShareAppMessageReturn => {
|
export const getCommonShareMessage = (useCapture: boolean = true, inviteCode?: string): ShareAppMessageReturn => {
|
||||||
|
console.log('share share message', getJumpUrl(PageUrl.Job, inviteCode ? { c: inviteCode } : undefined));
|
||||||
return {
|
return {
|
||||||
title: `昨天新增了${getRandomCount()}条主播通告,宝子快来看看`,
|
title: `昨天新增了${getRandomCount()}条主播通告,宝子快来看看`,
|
||||||
path: getJumpUrl(PageUrl.Job),
|
path: getJumpUrl(PageUrl.Job, inviteCode ? { c: inviteCode } : undefined),
|
||||||
imageUrl: useCapture ? undefined : imageUrl,
|
imageUrl: useCapture ? undefined : imageUrl,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -33,6 +33,8 @@ export const isValidUserInfo = (info: UserInfo) => !!info.userId;
|
|||||||
export const isNeedLogin = (info: UserInfo) => !info.isBindPhone;
|
export const isNeedLogin = (info: UserInfo) => !info.isBindPhone;
|
||||||
// export const isNeedLogin = (info: UserInfo) => !info.isBindPhone || info.userId === '534740874077898752';
|
// export const isNeedLogin = (info: UserInfo) => !info.isBindPhone || info.userId === '534740874077898752';
|
||||||
|
|
||||||
|
export const isNeedPhone = (info: UserInfo) => isNeedLogin(info) || !info.phone;
|
||||||
|
|
||||||
export const updateLastLoginTime = () => {
|
export const updateLastLoginTime = () => {
|
||||||
lastOpenMiniProgramTime = Taro.getStorageSync<number>(CacheKey.LAST_OPEN_MINI_PROGRAM_TIME) ?? null;
|
lastOpenMiniProgramTime = Taro.getStorageSync<number>(CacheKey.LAST_OPEN_MINI_PROGRAM_TIME) ?? null;
|
||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
@ -98,8 +100,8 @@ export const ensureUserInfo = async (info: UserInfo, toast = true) => {
|
|||||||
|
|
||||||
export const dispatchUpdateUser = (userInfo: Partial<UserInfo>) => store.dispatch(setUserInfo(userInfo));
|
export const dispatchUpdateUser = (userInfo: Partial<UserInfo>) => store.dispatch(setUserInfo(userInfo));
|
||||||
|
|
||||||
export async function requestUserInfo() {
|
export async function requestUserInfo(inviteCode?: string) {
|
||||||
const userInfo = await http.post<UserInfo>(API.USER);
|
const userInfo = await http.post<UserInfo>(API.USER, { data: inviteCode ? { inviteCode } : {} });
|
||||||
dispatchUpdateUser(userInfo);
|
dispatchUpdateUser(userInfo);
|
||||||
return userInfo;
|
return userInfo;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user