新建下载账单、查询交易页面
This commit is contained in:
3
src/user_pages/queryTransactions/index.config.ts
Normal file
3
src/user_pages/queryTransactions/index.config.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: '查找交易',
|
||||
})
|
||||
0
src/user_pages/queryTransactions/index.scss
Normal file
0
src/user_pages/queryTransactions/index.scss
Normal file
10
src/user_pages/queryTransactions/index.tsx
Normal file
10
src/user_pages/queryTransactions/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import { View } from "@tarojs/components";
|
||||
|
||||
const QueryTransactions: React.FC = () => {
|
||||
return (
|
||||
<View>查询交易</View>
|
||||
);
|
||||
};
|
||||
|
||||
export default QueryTransactions;
|
||||
Reference in New Issue
Block a user