Compare commits
10 Commits
1a56115ac9
...
b88beeb9e7
| Author | SHA1 | Date |
|---|---|---|
|
|
b88beeb9e7 | |
|
|
a9d318c6e2 | |
|
|
d6671e055a | |
|
|
01fc78fb12 | |
|
|
7f84b72ddc | |
|
|
08fbd58c61 | |
|
|
0713644961 | |
|
|
d15067f2fe | |
|
|
14b302bd1a | |
|
|
6f896c8695 |
|
|
@ -1,12 +0,0 @@
|
||||||
# http://editorconfig.org
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
charset = utf-8
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
||||||
2
.env.dev
2
.env.dev
|
|
@ -1,2 +1,2 @@
|
||||||
# 配置文档参考 https://taro-docs.jd.com/docs/next/env-mode-config
|
# 配置文档参考 https://taro-docs.jd.com/docs/next/env-mode-config
|
||||||
# TARO_APP_ID="开发环境下的小程序appid"
|
TARO_APP_ID="wxa76ef89a218f32f8"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
{
|
{
|
||||||
"extends": ["taro/react"],
|
"extends": ["taro/react"],
|
||||||
|
"plugins": ["prettier"],
|
||||||
"rules": {
|
"rules": {
|
||||||
"react/jsx-uses-react": "off",
|
"react/jsx-uses-react": "off",
|
||||||
"react/react-in-jsx-scope": "off"
|
"react/react-in-jsx-scope": "off",
|
||||||
|
"prettier/prettier": "error"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
_
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
. "$(dirname "$0")/_/husky.sh"
|
||||||
|
|
||||||
|
npx lint-staged
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
/**/.gitignore
|
||||||
|
dist/
|
||||||
|
deploy_versions/
|
||||||
|
.temp/
|
||||||
|
.rn_temp/
|
||||||
|
node_modules/
|
||||||
|
.DS_Store
|
||||||
|
.swc
|
||||||
|
.husky
|
||||||
|
.prettierignore
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": true,
|
||||||
|
"proseWrap": "preserve",
|
||||||
|
"arrowParens": "avoid",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"jsxSingleQuote": true,
|
||||||
|
"endOfLine": "auto"
|
||||||
|
}
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
import TestUtils from '@tarojs/test-utils-react'
|
|
||||||
|
|
||||||
describe('Testing', () => {
|
|
||||||
|
|
||||||
test('Test', async () => {
|
|
||||||
const testUtils = new TestUtils()
|
|
||||||
await testUtils.createApp()
|
|
||||||
await testUtils.PageLifecycle.onShow('pages/index/index')
|
|
||||||
expect(testUtils.html()).toMatchSnapshot()
|
|
||||||
})
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
@ -2,9 +2,12 @@
|
||||||
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
|
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
|
||||||
module.exports = {
|
module.exports = {
|
||||||
presets: [
|
presets: [
|
||||||
['taro', {
|
[
|
||||||
|
'taro',
|
||||||
|
{
|
||||||
framework: 'react',
|
framework: 'react',
|
||||||
ts: true
|
ts: true,
|
||||||
}]
|
},
|
||||||
]
|
],
|
||||||
}
|
],
|
||||||
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
import type { UserConfigExport } from "@tarojs/cli";
|
import type { UserConfigExport } from '@tarojs/cli';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
logger: {
|
logger: {
|
||||||
quiet: false,
|
quiet: false,
|
||||||
stats: true
|
stats: true,
|
||||||
},
|
},
|
||||||
mini: {},
|
mini: {},
|
||||||
h5: {}
|
h5: {},
|
||||||
} satisfies UserConfigExport
|
} satisfies UserConfigExport;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import { defineConfig, type UserConfigExport } from '@tarojs/cli'
|
import { defineConfig, type UserConfigExport } from '@tarojs/cli';
|
||||||
import TsconfigPathsPlugin from 'tsconfig-paths-webpack-plugin'
|
import TsconfigPathsPlugin from 'tsconfig-paths-webpack-plugin';
|
||||||
import devConfig from './dev'
|
import devConfig from './dev';
|
||||||
import prodConfig from './prod'
|
import prodConfig from './prod';
|
||||||
|
|
||||||
// https://taro-docs.jd.com/docs/next/config#defineconfig-辅助函数
|
// https://taro-docs.jd.com/docs/next/config#defineconfig-辅助函数
|
||||||
export default defineConfig(async (merge, { command, mode }) => {
|
export default defineConfig(async (merge, { command, mode }) => {
|
||||||
|
|
@ -13,92 +13,93 @@ export default defineConfig(async (merge, { command, mode }) => {
|
||||||
640: 2.34 / 2,
|
640: 2.34 / 2,
|
||||||
750: 1,
|
750: 1,
|
||||||
375: 2,
|
375: 2,
|
||||||
828: 1.81 / 2
|
828: 1.81 / 2,
|
||||||
},
|
},
|
||||||
sourceRoot: 'src',
|
sourceRoot: 'src',
|
||||||
outputRoot: 'dist',
|
outputRoot: 'dist',
|
||||||
plugins: [],
|
plugins: [],
|
||||||
defineConstants: {
|
defineConstants: {},
|
||||||
},
|
|
||||||
copy: {
|
copy: {
|
||||||
patterns: [
|
patterns: [],
|
||||||
],
|
options: {},
|
||||||
options: {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
framework: 'react',
|
framework: 'react',
|
||||||
compiler: 'webpack5',
|
compiler: {
|
||||||
|
type: 'webpack5',
|
||||||
|
prebundle: {
|
||||||
|
exclude: ['taro-ui'],
|
||||||
|
},
|
||||||
|
},
|
||||||
cache: {
|
cache: {
|
||||||
enable: false // Webpack 持久化缓存配置,建议开启。默认配置请参考:https://docs.taro.zone/docs/config-detail#cache
|
enable: false, // Webpack 持久化缓存配置,建议开启。默认配置请参考:https://docs.taro.zone/docs/config-detail#cache
|
||||||
},
|
},
|
||||||
mini: {
|
mini: {
|
||||||
postcss: {
|
postcss: {
|
||||||
pxtransform: {
|
pxtransform: {
|
||||||
enable: true,
|
enable: true,
|
||||||
config: {
|
config: {},
|
||||||
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
url: {
|
url: {
|
||||||
enable: true,
|
enable: true,
|
||||||
config: {
|
config: {
|
||||||
limit: 1024 // 设定转换尺寸上限
|
limit: 1024, // 设定转换尺寸上限
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
cssModules: {
|
cssModules: {
|
||||||
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
||||||
config: {
|
config: {
|
||||||
namingPattern: 'module', // 转换模式,取值为 global/module
|
namingPattern: 'module', // 转换模式,取值为 global/module
|
||||||
generateScopedName: '[name]__[local]___[hash:base64:5]'
|
generateScopedName: '[name]__[local]___[hash:base64:5]',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
webpackChain(chain) {
|
webpackChain(chain) {
|
||||||
chain.resolve.plugin('tsconfig-paths').use(TsconfigPathsPlugin)
|
chain.resolve.plugin('tsconfig-paths').use(TsconfigPathsPlugin);
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
h5: {
|
h5: {
|
||||||
|
esnextModules: ['taro-ui'],
|
||||||
publicPath: '/',
|
publicPath: '/',
|
||||||
staticDirectory: 'static',
|
staticDirectory: 'static',
|
||||||
output: {
|
output: {
|
||||||
filename: 'js/[name].[hash:8].js',
|
filename: 'js/[name].[hash:8].js',
|
||||||
chunkFilename: 'js/[name].[chunkhash:8].js'
|
chunkFilename: 'js/[name].[chunkhash:8].js',
|
||||||
},
|
},
|
||||||
miniCssExtractPluginOption: {
|
miniCssExtractPluginOption: {
|
||||||
ignoreOrder: true,
|
ignoreOrder: true,
|
||||||
filename: 'css/[name].[hash].css',
|
filename: 'css/[name].[hash].css',
|
||||||
chunkFilename: 'css/[name].[chunkhash].css'
|
chunkFilename: 'css/[name].[chunkhash].css',
|
||||||
},
|
},
|
||||||
postcss: {
|
postcss: {
|
||||||
autoprefixer: {
|
autoprefixer: {
|
||||||
enable: true,
|
enable: true,
|
||||||
config: {}
|
config: {},
|
||||||
},
|
},
|
||||||
cssModules: {
|
cssModules: {
|
||||||
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
||||||
config: {
|
config: {
|
||||||
namingPattern: 'module', // 转换模式,取值为 global/module
|
namingPattern: 'module', // 转换模式,取值为 global/module
|
||||||
generateScopedName: '[name]__[local]___[hash:base64:5]'
|
generateScopedName: '[name]__[local]___[hash:base64:5]',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
webpackChain(chain) {
|
webpackChain(chain) {
|
||||||
chain.resolve.plugin('tsconfig-paths').use(TsconfigPathsPlugin)
|
chain.resolve.plugin('tsconfig-paths').use(TsconfigPathsPlugin);
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
rn: {
|
rn: {
|
||||||
appName: 'taroDemo',
|
appName: 'taroDemo',
|
||||||
postcss: {
|
postcss: {
|
||||||
cssModules: {
|
cssModules: {
|
||||||
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// 本地开发构建配置(不混淆压缩)
|
// 本地开发构建配置(不混淆压缩)
|
||||||
return merge({}, baseConfig, devConfig)
|
return merge({}, baseConfig, devConfig);
|
||||||
}
|
}
|
||||||
// 生产构建配置(默认开启压缩混淆等)
|
// 生产构建配置(默认开启压缩混淆等)
|
||||||
return merge({}, baseConfig, prodConfig)
|
return merge({}, baseConfig, prodConfig);
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import type { UserConfigExport } from "@tarojs/cli";
|
import type { UserConfigExport } from '@tarojs/cli';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mini: {},
|
mini: {},
|
||||||
h5: {
|
h5: {
|
||||||
|
|
@ -28,5 +29,5 @@ export default {
|
||||||
// postProcess: (context) => ({ ...context, outputPath: path.join(staticDir, 'index.html') })
|
// postProcess: (context) => ({ ...context, outputPath: path.join(staticDir, 'index.html') })
|
||||||
// }))
|
// }))
|
||||||
// }
|
// }
|
||||||
}
|
},
|
||||||
} satisfies UserConfigExport
|
} satisfies UserConfigExport;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
const defineJestConfig = require('@tarojs/test-utils-react/dist/jest.js').default
|
|
||||||
|
|
||||||
module.exports = defineJestConfig({
|
|
||||||
testEnvironment: 'jsdom',
|
|
||||||
testMatch: ['<rootDir>/__tests__/**/*.(spec|test).[jt]s?(x)']
|
|
||||||
})
|
|
||||||
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
|
|
@ -30,7 +30,8 @@
|
||||||
"dev:jd": "npm run build:jd -- --watch",
|
"dev:jd": "npm run build:jd -- --watch",
|
||||||
"dev:quickapp": "npm run build:quickapp -- --watch",
|
"dev:quickapp": "npm run build:quickapp -- --watch",
|
||||||
"dev:harmony-hybrid": "npm run build:harmony-hybrid -- --watch",
|
"dev:harmony-hybrid": "npm run build:harmony-hybrid -- --watch",
|
||||||
"test": "jest"
|
"test": "jest",
|
||||||
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 3 versions",
|
"last 3 versions",
|
||||||
|
|
@ -55,7 +56,8 @@
|
||||||
"@tarojs/shared": "3.6.24",
|
"@tarojs/shared": "3.6.24",
|
||||||
"@tarojs/taro": "3.6.24",
|
"@tarojs/taro": "3.6.24",
|
||||||
"react": "^18.0.0",
|
"react": "^18.0.0",
|
||||||
"react-dom": "^18.0.0"
|
"react-dom": "^18.0.0",
|
||||||
|
"taro-ui": "^3.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.8.0",
|
"@babel/core": "^7.8.0",
|
||||||
|
|
@ -76,10 +78,13 @@
|
||||||
"eslint": "^8.12.0",
|
"eslint": "^8.12.0",
|
||||||
"eslint-config-taro": "3.6.24",
|
"eslint-config-taro": "3.6.24",
|
||||||
"eslint-plugin-import": "^2.12.0",
|
"eslint-plugin-import": "^2.12.0",
|
||||||
|
"eslint-plugin-prettier": "^5.1.3",
|
||||||
"eslint-plugin-react": "^7.8.2",
|
"eslint-plugin-react": "^7.8.2",
|
||||||
"eslint-plugin-react-hooks": "^4.2.0",
|
"eslint-plugin-react-hooks": "^4.2.0",
|
||||||
|
"husky": "^9.0.11",
|
||||||
"jest": "^29.3.1",
|
"jest": "^29.3.1",
|
||||||
"jest-environment-jsdom": "^29.5.0",
|
"jest-environment-jsdom": "^29.5.0",
|
||||||
|
"lint-staged": "^15.2.2",
|
||||||
"postcss": "^8.4.18",
|
"postcss": "^8.4.18",
|
||||||
"react-refresh": "^0.11.0",
|
"react-refresh": "^0.11.0",
|
||||||
"stylelint": "^14.4.0",
|
"stylelint": "^14.4.0",
|
||||||
|
|
@ -87,5 +92,8 @@
|
||||||
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
||||||
"typescript": "^5.1.0",
|
"typescript": "^5.1.0",
|
||||||
"webpack": "5.78.0"
|
"webpack": "5.78.0"
|
||||||
|
},
|
||||||
|
"lint-staged": {
|
||||||
|
"*": "prettier --write"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"miniprogramRoot": "dist/",
|
"miniprogramRoot": "dist/",
|
||||||
"projectname": "EVA-Notify",
|
"projectname": "EVA-Notify",
|
||||||
"description": "A Wechat miniprogram project of EVA platform",
|
"description": "A Wechat miniprogram project of EVA platform",
|
||||||
"appid": "wx636eb7cf2b84f305",
|
"appid": "wxa76ef89a218f32f8",
|
||||||
"setting": {
|
"setting": {
|
||||||
"urlCheck": true,
|
"urlCheck": true,
|
||||||
"es6": false,
|
"es6": false,
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,26 @@
|
||||||
export default defineAppConfig({
|
export default defineAppConfig({
|
||||||
pages: [
|
pages: ['pages/index/index', 'pages/repair/repair', 'pages/user/user'],
|
||||||
'pages/index/index'
|
|
||||||
],
|
|
||||||
window: {
|
window: {
|
||||||
backgroundTextStyle: 'light',
|
backgroundTextStyle: 'light',
|
||||||
navigationBarBackgroundColor: '#fff',
|
navigationBarBackgroundColor: '#fff',
|
||||||
navigationBarTitleText: 'WeChat',
|
navigationBarTitleText: 'EVA Notify',
|
||||||
navigationBarTextStyle: 'black'
|
navigationBarTextStyle: 'black',
|
||||||
}
|
},
|
||||||
})
|
tabBar: {
|
||||||
|
custom: true,
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
pagePath: 'pages/index/index',
|
||||||
|
text: '主页',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
pagePath: 'pages/repair/repair',
|
||||||
|
text: '维修',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
pagePath: 'pages/user/user',
|
||||||
|
text: '我的',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
|
||||||
16
src/app.ts
16
src/app.ts
|
|
@ -1,15 +1,15 @@
|
||||||
import { PropsWithChildren } from 'react'
|
import { PropsWithChildren } from 'react';
|
||||||
import { useLaunch } from '@tarojs/taro'
|
import { useLaunch } from '@tarojs/taro';
|
||||||
import './app.scss'
|
import 'taro-ui/dist/style/index.scss';
|
||||||
|
import './app.scss';
|
||||||
|
|
||||||
function App({ children }: PropsWithChildren<any>) {
|
function App({ children }: PropsWithChildren<any>) {
|
||||||
|
|
||||||
useLaunch(() => {
|
useLaunch(() => {
|
||||||
console.log('App launched.')
|
console.log('App launched.');
|
||||||
})
|
});
|
||||||
|
|
||||||
// children 是将要会渲染的页面
|
// children 是将要会渲染的页面
|
||||||
return children
|
return children;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App
|
export default App;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
export default {
|
||||||
|
component: true,
|
||||||
|
};
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@import '~taro-ui/dist/style/components/tab-bar.scss';
|
||||||
|
@import '~taro-ui/dist/style/components/badge.scss';
|
||||||
|
@import '~taro-ui/dist/style/components/icon.scss';
|
||||||
|
|
@ -0,0 +1,66 @@
|
||||||
|
import { Component, ReactNode } from 'react';
|
||||||
|
import { AtTabBar } from 'taro-ui';
|
||||||
|
import Taro from '@tarojs/taro';
|
||||||
|
import 'taro-ui/dist/style/index.scss';
|
||||||
|
import './index.scss';
|
||||||
|
|
||||||
|
const navList: Array<Taro.TabBarItem> = [
|
||||||
|
{
|
||||||
|
pagePath: '/pages/index/index',
|
||||||
|
text: '主页',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
pagePath: '/pages/repair/repair',
|
||||||
|
text: '维修',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
pagePath: '/pages/user/user',
|
||||||
|
text: '我的',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default class Index extends Component {
|
||||||
|
state = {
|
||||||
|
selected: 0,
|
||||||
|
tabList: [
|
||||||
|
{
|
||||||
|
title: '主页',
|
||||||
|
iconType: 'home',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '维修',
|
||||||
|
iconType: 'settings',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '我的',
|
||||||
|
iconType: 'user',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
handleClick(idx: number) {
|
||||||
|
this.switchTab(idx, navList[idx].pagePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
switchTab(idx: number, url: string) {
|
||||||
|
this.setSelected(idx);
|
||||||
|
Taro.switchTab({ url });
|
||||||
|
}
|
||||||
|
|
||||||
|
setSelected(idx: number) {
|
||||||
|
this.setState({
|
||||||
|
selected: idx,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render(): ReactNode {
|
||||||
|
return (
|
||||||
|
<AtTabBar
|
||||||
|
fixed
|
||||||
|
tabList={this.state.tabList}
|
||||||
|
onClick={this.handleClick.bind(this)}
|
||||||
|
current={this.state.selected}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,17 +1,22 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||||
<meta content="width=device-width,initial-scale=1,user-scalable=no" name="viewport">
|
<meta
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
content="width=device-width,initial-scale=1,user-scalable=no"
|
||||||
<meta name="apple-touch-fullscreen" content="yes">
|
name="viewport"
|
||||||
<meta name="format-detection" content="telephone=no,address=no">
|
/>
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="white">
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
|
<meta name="apple-touch-fullscreen" content="yes" />
|
||||||
|
<meta name="format-detection" content="telephone=no,address=no" />
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||||
<title>EVA-Notify</title>
|
<title>EVA-Notify</title>
|
||||||
<script><%= htmlWebpackPlugin.options.script %></script>
|
<script>
|
||||||
</head>
|
<%= htmlWebpackPlugin.options.script %>
|
||||||
<body>
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
export default definePageConfig({
|
export default definePageConfig({
|
||||||
navigationBarTitleText: '首页'
|
usingComponents: {},
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,29 @@
|
||||||
import { View, Text } from '@tarojs/components'
|
import { View, Text } from '@tarojs/components';
|
||||||
import { useLoad } from '@tarojs/taro'
|
import { Component, ReactNode } from 'react';
|
||||||
import './index.scss'
|
import Taro from '@tarojs/taro';
|
||||||
|
import type CustomTabBar from '../../custom-tab-bar';
|
||||||
|
import './index.scss';
|
||||||
|
|
||||||
export default function Index() {
|
class Index extends Component {
|
||||||
|
state = {
|
||||||
|
msg: 'Hello World!',
|
||||||
|
};
|
||||||
|
|
||||||
useLoad(() => {
|
// 以下是TabBar相关
|
||||||
console.log('Page loaded.')
|
pageCtx = Taro.getCurrentInstance().page;
|
||||||
})
|
componentDidShow() {
|
||||||
|
const tabbar = Taro.getTabBar<CustomTabBar>(this.pageCtx);
|
||||||
|
tabbar?.setSelected(0);
|
||||||
|
}
|
||||||
|
// 以上是TabBar相关
|
||||||
|
|
||||||
|
render(): ReactNode {
|
||||||
return (
|
return (
|
||||||
<View className='index'>
|
<View>
|
||||||
<Text>Hello world!</Text>
|
<Text>{this.state.msg}</Text>
|
||||||
</View>
|
</View>
|
||||||
)
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default Index;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
export default definePageConfig({
|
||||||
|
usingComponents: {},
|
||||||
|
});
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
import { View, Text } from '@tarojs/components';
|
||||||
|
import { Component, ReactNode } from 'react';
|
||||||
|
import Taro from '@tarojs/taro';
|
||||||
|
import type CustomTabBar from '../../custom-tab-bar';
|
||||||
|
import './repair.scss';
|
||||||
|
|
||||||
|
export default class RepairPage extends Component {
|
||||||
|
// 以下是TabBar相关
|
||||||
|
pageCtx = Taro.getCurrentInstance().page;
|
||||||
|
componentDidShow() {
|
||||||
|
const tabbar = Taro.getTabBar<CustomTabBar>(this.pageCtx);
|
||||||
|
tabbar?.setSelected(1);
|
||||||
|
}
|
||||||
|
// 以上是TabBar相关
|
||||||
|
|
||||||
|
render(): ReactNode {
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>Repair Page</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
export default definePageConfig({
|
||||||
|
usingComponents: {},
|
||||||
|
});
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
import { View, Text } from '@tarojs/components';
|
||||||
|
import { Component, ReactNode } from 'react';
|
||||||
|
import Taro from '@tarojs/taro';
|
||||||
|
import type CustomTabBar from '../../custom-tab-bar';
|
||||||
|
import './user.scss';
|
||||||
|
|
||||||
|
export default class UserPage extends Component {
|
||||||
|
// 以下是TabBar相关
|
||||||
|
pageCtx = Taro.getCurrentInstance().page;
|
||||||
|
componentDidShow() {
|
||||||
|
const tabbar = Taro.getTabBar<CustomTabBar>(this.pageCtx);
|
||||||
|
tabbar?.setSelected(2);
|
||||||
|
}
|
||||||
|
// 以上是TabBar相关
|
||||||
|
|
||||||
|
render(): ReactNode {
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>User Page</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -17,12 +17,10 @@
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"typeRoots": [
|
"typeRoots": ["node_modules/@types"],
|
||||||
"node_modules/@types"
|
|
||||||
],
|
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./src/*"]
|
"@/*": ["./src/*"]
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
"include": ["./src", "./types", "./config"],
|
"include": ["./src", "./types", "./config"],
|
||||||
"compileOnSave": false
|
"compileOnSave": false
|
||||||
|
|
|
||||||
|
|
@ -14,16 +14,24 @@ declare module '*.styl';
|
||||||
declare namespace NodeJS {
|
declare namespace NodeJS {
|
||||||
interface ProcessEnv {
|
interface ProcessEnv {
|
||||||
/** NODE 内置环境变量, 会影响到最终构建生成产物 */
|
/** NODE 内置环境变量, 会影响到最终构建生成产物 */
|
||||||
NODE_ENV: 'development' | 'production',
|
NODE_ENV: 'development' | 'production';
|
||||||
/** 当前构建的平台 */
|
/** 当前构建的平台 */
|
||||||
TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd'
|
TARO_ENV:
|
||||||
|
| 'weapp'
|
||||||
|
| 'swan'
|
||||||
|
| 'alipay'
|
||||||
|
| 'h5'
|
||||||
|
| 'rn'
|
||||||
|
| 'tt'
|
||||||
|
| 'quickapp'
|
||||||
|
| 'qq'
|
||||||
|
| 'jd';
|
||||||
/**
|
/**
|
||||||
* 当前构建的小程序 appid
|
* 当前构建的小程序 appid
|
||||||
* @description 若不同环境有不同的小程序,可通过在 env 文件中配置环境变量`TARO_APP_ID`来方便快速切换 appid, 而不必手动去修改 dist/project.config.json 文件
|
* @description 若不同环境有不同的小程序,可通过在 env 文件中配置环境变量`TARO_APP_ID`来方便快速切换
|
||||||
|
* appid, 而不必手动去修改 dist/project.config.json 文件
|
||||||
* @see https://taro-docs.jd.com/docs/next/env-mode-config#特殊环境变量-taro_app_id
|
* @see https://taro-docs.jd.com/docs/next/env-mode-config#特殊环境变量-taro_app_id
|
||||||
*/
|
*/
|
||||||
TARO_APP_ID: string
|
TARO_APP_ID: string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue