feat: update of partner
This commit is contained in:
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>;
|
||||
}
|
||||
Reference in New Issue
Block a user