Name Last Update
api Loading commit data...
components Loading commit data...
hooks Loading commit data...
pages Loading commit data...
plugins Loading commit data...
static Loading commit data...
store Loading commit data...
styles Loading commit data...
subPackages/accountGroup Loading commit data...
uniCloud-aliyun Loading commit data...
uni_modules Loading commit data...
utils Loading commit data...
.gitignore Loading commit data...
AndroidManifest.xml Loading commit data...
App.vue Loading commit data...
README.md Loading commit data...
androidPrivacy.json Loading commit data...
folder-alias.json Loading commit data...
google-services.json Loading commit data...
index.html Loading commit data...
main.js Loading commit data...
manifest.json Loading commit data...
package-lock.json Loading commit data...
package.json Loading commit data...
pages.json Loading commit data...
pnpm-lock.yaml Loading commit data...
uni.promisify.adaptor.js Loading commit data...
uni.scss Loading commit data...
    //   { value: 'feat', name: 'feat:     新增功能' },
    //   { value: 'fix', name: 'fix:      修复缺陷' },
    //   { value: 'docs', name: 'docs:     文档变更' },
    //   { value: 'style', name: 'style:    代码格式' },
    //   { value: 'refactor', name: 'refactor: 代码重构' },
    //   { value: 'perf', name: 'perf:     性能优化' },
    //   { value: 'test', name: 'test:     添加疏漏测试或已有测试改动' },
    //   { value: 'build', name: 'build:    构建流程、外部依赖变更 (如升级 npm 包、修改打包配置等)' },
    //   { value: 'ci', name: 'ci:       修改 CI 配置、脚本' },
    //   { value: 'revert', name: 'revert:   回滚 commit' },
    //   { value: 'chore', name: 'chore:    对构建过程或辅助工具和库的更改 (不影响源文件、测试用例)' },
    //   { value: 'wip', name: 'wip:      正在开发中' },
    //   { value: 'workflow', name: 'workflow: 工作流程改进' },
    //   { value: 'types', name: 'types:    类型定义文件修改' },

在微信小程序平台中,echarts在开发者工具中会脱离图层,不用管,在真机中会正常显示 在微信小程序平台中,为了缩小包体积,目前使用的echarts.min.js是压缩过的,仅支持折线图、饼图、柱状图、热力图、桑基图,如果需要其他图表,自行前往ECharts 在线构建器选取,同时请注意小程序包体积限制。 升级打包时,必须修改manifest.json中的 应用版本名称 和 应用版本号 (都需要大于上一次设置的值)

App平台中 由于app不支持i18n的变量替换,因此需要使用replace进行替换,例如:this.$t('homePage.title').replace('${version}', this.version)