feat: update of partner

This commit is contained in:
eleanor.mao
2025-05-15 01:02:00 +08:00
parent 7aafc3a789
commit d2ac64f20c
52 changed files with 1435 additions and 265 deletions

View 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>;
}