- 集成消息服务API,实现消息列表分页加载功能 - 添加消息未读数量实时更新,每30秒自动刷新一次 - 实现消息标记已读、删除消息等操作功能 - 优化消息界面UI,支持无限滚动加载更多消息 - 添加消息内容预览和跳转到相关业务单据功能 - 在个人中心页面增加调试模式开关快捷入口 - 修复订单车辆组件中草帘价格验证逻辑问题 - 更新供应商称重模块,新增计价方式和定金支付验证 - 调整包装创建页面品牌选择样式布局 - 更新应用版本号至v0.0.76 - 集成经销商对账记录等相关业务服务模块
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "app-client",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "",
|
|
"templateInfo": {
|
|
"name": "default",
|
|
"typescript": true,
|
|
"css": "sass"
|
|
},
|
|
"scripts": {
|
|
"build:weapp": "taro build --type weapp",
|
|
"build:swan": "taro build --type swan",
|
|
"build:alipay": "taro build --type alipay",
|
|
"build:tt": "taro build --type tt",
|
|
"build:h5": "taro build --type h5",
|
|
"build:rn": "taro build --type rn",
|
|
"build:qq": "taro build --type qq",
|
|
"build:jd": "taro build --type jd",
|
|
"build:quickapp": "taro build --type quickapp",
|
|
"dev:weapp": "taro build --type weapp --watch",
|
|
"dev:swan": "npm run build:swan -- --watch",
|
|
"dev:alipay": "npm run build:alipay -- --watch",
|
|
"dev:tt": "npm run build:tt -- --watch",
|
|
"dev:h5": "npm run build:h5 -- --watch",
|
|
"dev:rn": "npm run build:rn -- --watch",
|
|
"dev:qq": "npm run build:qq -- --watch",
|
|
"dev:jd": "npm run build:jd -- --watch",
|
|
"dev:quickapp": "npm run build:quickapp -- --watch",
|
|
"test": "jest",
|
|
"postinstall": "weapp-tw patch",
|
|
"lint": "eslint --ext .js,.tsx,.ts,.jsx src",
|
|
"lint-staged": "lint-staged",
|
|
"fix-types": "node ../../scripts/fix-types.js",
|
|
"format": "prettier --cache --write src/pages src/components",
|
|
"openapi2ts": "openapi2ts && prettier --cache --write ./src/services && npm run fix-types"
|
|
},
|
|
"browserslist": [
|
|
"last 3 versions",
|
|
"Android >= 4.1",
|
|
"ios >= 8"
|
|
],
|
|
"author": ""
|
|
}
|