1
This commit is contained in:
parent
157249f2c6
commit
6054db8315
@ -1,4 +1,3 @@
|
||||
# 开发环境
|
||||
# 请求接口地址
|
||||
VITE_REQUEST_BASE_URL = https://36.112.48.190
|
||||
#VITE_REQUEST_BASE_URL = http://10.75.166.6:8080
|
||||
VITE_REQUEST_BASE_URL = http://10.75.15.249:8080
|
||||
|
@ -1,4 +1,3 @@
|
||||
# 生产环境
|
||||
# 请求接口地址
|
||||
VITE_REQUEST_BASE_URL = https://36.112.48.190
|
||||
#VITE_REQUEST_BASE_URL = http://10.75.166.6:8080
|
||||
|
@ -6,7 +6,7 @@
|
||||
{
|
||||
"app-plus" :
|
||||
{
|
||||
"launchtype" : "remote"
|
||||
"launchtype" : "local"
|
||||
},
|
||||
"default" :
|
||||
{
|
||||
|
@ -2,8 +2,8 @@
|
||||
"name" : "数智产销",
|
||||
"appid" : "__UNI__9F097F0",
|
||||
"description" : "",
|
||||
"versionName" : "1.0.4",
|
||||
"versionCode" : 20241128,
|
||||
"versionName" : "1.1.0",
|
||||
"versionCode" : 20241222,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
@ -16,13 +16,15 @@
|
||||
"autoclose" : true,
|
||||
"delay" : 0
|
||||
},
|
||||
"compatible" : {
|
||||
"ignoreVersion" : true
|
||||
},
|
||||
/* 模块配置 */
|
||||
"modules" : {
|
||||
"Geolocation" : {},
|
||||
"Fingerprint" : {},
|
||||
"Camera" : {},
|
||||
"Barcode" : {},
|
||||
"Push" : {}
|
||||
"Barcode" : {}
|
||||
},
|
||||
/* 应用发布信息 */
|
||||
"distribute" : {
|
||||
@ -57,12 +59,6 @@
|
||||
"system" : {
|
||||
"__platform__" : [ "android" ]
|
||||
}
|
||||
},
|
||||
"push" : {
|
||||
"unipush" : {
|
||||
"version" : "2",
|
||||
"offline" : false
|
||||
}
|
||||
}
|
||||
},
|
||||
"icons" : {
|
||||
@ -123,3 +119,5 @@
|
||||
},
|
||||
"vueVersion" : "3"
|
||||
}
|
||||
/* 模块配置 */
|
||||
|
||||
|
5
node_modules/.store/dayjs@1.11.13/node_modules/dayjs/package.json
generated
vendored
5
node_modules/.store/dayjs@1.11.13/node_modules/dayjs/package.json
generated
vendored
@ -80,8 +80,5 @@
|
||||
"rollup-plugin-terser": "^7.0.2",
|
||||
"size-limit": "^0.18.0",
|
||||
"typescript": "^2.8.3"
|
||||
},
|
||||
"__npminstall_done": true,
|
||||
"_from": "dayjs@1.11.13",
|
||||
"_resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz"
|
||||
}
|
||||
}
|
||||
|
@ -211,6 +211,7 @@
|
||||
if (!departure.value.trim()) return proxy.$toast('请输入出发地')
|
||||
if (!destination.value.trim()) return proxy.$toast('请输入目的地')
|
||||
if (!reason.value.trim()) return proxy.$toast('请输入请假事由')
|
||||
|
||||
qjAddApi({
|
||||
sysOrgCode: orgCode.value,
|
||||
username: store.userinfo.username,
|
||||
|
@ -97,17 +97,17 @@
|
||||
});
|
||||
|
||||
/*生产环境 begin */
|
||||
// loginApi({
|
||||
// username: un,
|
||||
// password: pw,
|
||||
// ip: getDeviceIp()
|
||||
loginApi({
|
||||
username: un,
|
||||
password: pw,
|
||||
ip: getDeviceIp()
|
||||
/*生产环境 end */
|
||||
|
||||
/*开发环境 begin */
|
||||
localLoginApi({
|
||||
username: username.value,
|
||||
password: password.value,
|
||||
captcha: 'app'
|
||||
// localLoginApi({
|
||||
// username: username.value,
|
||||
// password: password.value,
|
||||
// captcha: 'app'
|
||||
/*开发环境 end */
|
||||
}).then((loginres) => {
|
||||
// console.log("===============",loginres)
|
||||
|
@ -1,13 +0,0 @@
|
||||
// 简单的使用示例
|
||||
'use strict';
|
||||
const uniPush = uniCloud.getPushManager({appId:"__UNI__9F097F0"}) //注意这里需要传入你的应用appId,用于指定接收消息的客户端
|
||||
exports.main = async (event, context) => {
|
||||
return await uniPush.sendMessage({
|
||||
"push_clientid": "4033dd01957129991552f89ee7b538f1", //填写上一步在uni-app客户端获取到的客户端推送标识push_clientid
|
||||
"title": "通知栏显示的标题",
|
||||
"content": "通知栏显示的内容",
|
||||
"payload": {
|
||||
"text":"体验一下uni-push2.0"
|
||||
}
|
||||
})
|
||||
};
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"name": "uniPush",
|
||||
"dependencies": {},
|
||||
"extensions": {
|
||||
"uni-cloud-push": {}
|
||||
}
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
// 本文件用于,使用JQL语法操作项目关联的uniCloud空间的数据库,方便开发调试和远程数据库管理
|
||||
// 编写clientDB的js API(也支持常规js语法,比如var),可以对云数据库进行增删改查操作。不支持uniCloud-db组件写法
|
||||
// 可以全部运行,也可以选中部分代码运行。点击工具栏上的运行按钮或者按下【F5】键运行代码
|
||||
// 如果文档中存在多条JQL语句,只有最后一条语句生效
|
||||
// 如果混写了普通js,最后一条语句需是数据库操作语句
|
||||
// 此处代码运行不受DB Schema的权限控制,移植代码到实际业务中注意在schema中配好permission
|
||||
// 不支持clientDB的action
|
||||
// 数据库查询有最大返回条数限制,详见:https://uniapp.dcloud.net.cn/uniCloud/cf-database.html#limit
|
||||
// 详细JQL语法,请参考:https://uniapp.dcloud.net.cn/uniCloud/jql.html
|
||||
|
||||
// 下面示例查询uni-id-users表的所有数据
|
||||
db.collection('uni-id-users').get();
|
@ -1,6 +0,0 @@
|
||||
## 0.0.3(2022-11-11)
|
||||
- 修复 config 方法获取根节点为数组格式配置时错误的转化为了对象的Bug
|
||||
## 0.0.2(2021-04-16)
|
||||
- 修改插件package信息
|
||||
## 0.0.1(2021-03-15)
|
||||
- 初始化项目
|
@ -1,81 +0,0 @@
|
||||
{
|
||||
"id": "uni-config-center",
|
||||
"displayName": "uni-config-center",
|
||||
"version": "0.0.3",
|
||||
"description": "uniCloud 配置中心",
|
||||
"keywords": [
|
||||
"配置",
|
||||
"配置中心"
|
||||
],
|
||||
"repository": "",
|
||||
"engines": {
|
||||
"HBuilderX": "^3.1.0"
|
||||
},
|
||||
"dcloudext": {
|
||||
"sale": {
|
||||
"regular": {
|
||||
"price": "0.00"
|
||||
},
|
||||
"sourcecode": {
|
||||
"price": "0.00"
|
||||
}
|
||||
},
|
||||
"contact": {
|
||||
"qq": ""
|
||||
},
|
||||
"declaration": {
|
||||
"ads": "无",
|
||||
"data": "无",
|
||||
"permissions": "无"
|
||||
},
|
||||
"npmurl": "",
|
||||
"type": "unicloud-template-function"
|
||||
},
|
||||
"directories": {
|
||||
"example": "../../../scripts/dist"
|
||||
},
|
||||
"uni_modules": {
|
||||
"dependencies": [],
|
||||
"encrypt": [],
|
||||
"platforms": {
|
||||
"cloud": {
|
||||
"tcb": "y",
|
||||
"aliyun": "y"
|
||||
},
|
||||
"client": {
|
||||
"App": {
|
||||
"app-vue": "u",
|
||||
"app-nvue": "u"
|
||||
},
|
||||
"H5-mobile": {
|
||||
"Safari": "u",
|
||||
"Android Browser": "u",
|
||||
"微信浏览器(Android)": "u",
|
||||
"QQ浏览器(Android)": "u"
|
||||
},
|
||||
"H5-pc": {
|
||||
"Chrome": "u",
|
||||
"IE": "u",
|
||||
"Edge": "u",
|
||||
"Firefox": "u",
|
||||
"Safari": "u"
|
||||
},
|
||||
"小程序": {
|
||||
"微信": "u",
|
||||
"阿里": "u",
|
||||
"百度": "u",
|
||||
"字节跳动": "u",
|
||||
"QQ": "u"
|
||||
},
|
||||
"快应用": {
|
||||
"华为": "u",
|
||||
"联盟": "u"
|
||||
},
|
||||
"Vue": {
|
||||
"vue2": "y",
|
||||
"vue3": "u"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,93 +0,0 @@
|
||||
# 为什么使用uni-config-center
|
||||
|
||||
实际开发中很多插件需要配置文件才可以正常运行,如果每个插件都单独进行配置的话就会产生下面这样的目录结构
|
||||
|
||||
```bash
|
||||
cloudfunctions
|
||||
└─────common 公共模块
|
||||
├─plugin-a // 插件A对应的目录
|
||||
│ ├─index.js
|
||||
│ ├─config.json // plugin-a对应的配置文件
|
||||
│ └─other-file.cert // plugin-a依赖的其他文件
|
||||
└─plugin-b // plugin-b对应的目录
|
||||
├─index.js
|
||||
└─config.json // plugin-b对应的配置文件
|
||||
```
|
||||
|
||||
假设插件作者要发布一个项目模板,里面使用了很多需要配置的插件,无论是作者发布还是用户使用都是一个大麻烦。
|
||||
|
||||
uni-config-center就是用了统一管理这些配置文件的,使用uni-config-center后的目录结构如下
|
||||
|
||||
```bash
|
||||
cloudfunctions
|
||||
└─────common 公共模块
|
||||
├─plugin-a // 插件A对应的目录
|
||||
│ └─index.js
|
||||
├─plugin-b // plugin-b对应的目录
|
||||
│ └─index.js
|
||||
└─uni-config-center
|
||||
├─index.js // config-center入口文件
|
||||
├─plugin-a
|
||||
│ ├─config.json // plugin-a对应的配置文件
|
||||
│ └─other-file.cert // plugin-a依赖的其他文件
|
||||
└─plugin-b
|
||||
└─config.json // plugin-b对应的配置文件
|
||||
```
|
||||
|
||||
使用uni-config-center后的优势
|
||||
|
||||
- 配置文件统一管理,分离插件主体和配置信息,更新插件更方便
|
||||
- 支持对config.json设置schema,插件使用者在HBuilderX内编写config.json文件时会有更好的提示(后续HBuilderX会提供支持)
|
||||
|
||||
# 用法
|
||||
|
||||
在要使用uni-config-center的公共模块或云函数内引入uni-config-center依赖,请参考:[使用公共模块](https://uniapp.dcloud.net.cn/uniCloud/cf-common)
|
||||
|
||||
```js
|
||||
const createConfig = require('uni-config-center')
|
||||
|
||||
const uniIdConfig = createConfig({
|
||||
pluginId: 'uni-id', // 插件id
|
||||
defaultConfig: { // 默认配置
|
||||
tokenExpiresIn: 7200,
|
||||
tokenExpiresThreshold: 600,
|
||||
},
|
||||
customMerge: function(defaultConfig, userConfig) { // 自定义默认配置和用户配置的合并规则,不设置的情况侠会对默认配置和用户配置进行深度合并
|
||||
// defaudltConfig 默认配置
|
||||
// userConfig 用户配置
|
||||
return Object.assign(defaultConfig, userConfig)
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
// 以如下配置为例
|
||||
// {
|
||||
// "tokenExpiresIn": 7200,
|
||||
// "passwordErrorLimit": 6,
|
||||
// "bindTokenToDevice": false,
|
||||
// "passwordErrorRetryTime": 3600,
|
||||
// "app-plus": {
|
||||
// "tokenExpiresIn": 2592000
|
||||
// },
|
||||
// "service": {
|
||||
// "sms": {
|
||||
// "codeExpiresIn": 300
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// 获取配置
|
||||
uniIdConfig.config() // 获取全部配置,注意:uni-config-center内不存在对应插件目录时会返回空对象
|
||||
uniIdConfig.config('tokenExpiresIn') // 指定键值获取配置,返回:7200
|
||||
uniIdConfig.config('service.sms.codeExpiresIn') // 指定键值获取配置,返回:300
|
||||
uniIdConfig.config('tokenExpiresThreshold', 600) // 指定键值获取配置,如果不存在则取传入的默认值,返回:600
|
||||
|
||||
// 获取文件绝对路径
|
||||
uniIdConfig.resolve('custom-token.js') // 获取uni-config-center/uni-id/custom-token.js文件的路径
|
||||
|
||||
// 引用文件(require)
|
||||
uniIDConfig.requireFile('custom-token.js') // 使用require方式引用uni-config-center/uni-id/custom-token.js文件。文件不存在时返回undefined,文件内有其他错误导致require失败时会抛出错误。
|
||||
|
||||
// 判断是否包含某文件
|
||||
uniIDConfig.hasFile('custom-token.js') // 配置目录是否包含某文件,true: 文件存在,false: 文件不存在
|
||||
```
|
File diff suppressed because one or more lines are too long
@ -1,13 +0,0 @@
|
||||
{
|
||||
"name": "uni-config-center",
|
||||
"version": "0.0.3",
|
||||
"description": "配置中心",
|
||||
"main": "index.js",
|
||||
"keywords": [],
|
||||
"author": "DCloud",
|
||||
"license": "Apache-2.0",
|
||||
"origin-plugin-dev-name": "uni-config-center",
|
||||
"origin-plugin-version": "0.0.3",
|
||||
"plugin-dev-name": "uni-config-center",
|
||||
"plugin-version": "0.0.3"
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
## 1.0.18(2024-07-08)
|
||||
- checkToken时如果传入的token为空则返回uni-id-check-token-failed错误码以便uniIdRouter能正常跳转
|
||||
## 1.0.17(2024-04-26)
|
||||
- 兼容uni-app-x对客户端uniPlatform的调整(uni-app-x内uniPlatform区分app-android、app-ios)
|
||||
## 1.0.16(2023-04-25)
|
||||
- 新增maxTokenLength配置,用于限制数据库用户记录token数组的最大长度
|
||||
## 1.0.15(2023-04-06)
|
||||
- 修复部分语言国际化出错的Bug
|
||||
## 1.0.14(2023-03-07)
|
||||
- 修复 admin用户包含其他角色时未包含在token的Bug
|
||||
## 1.0.13(2022-07-21)
|
||||
- 修复 创建token时未传角色权限信息生成的token不正确的bug
|
||||
## 1.0.12(2022-07-15)
|
||||
- 提升与旧版本uni-id的兼容性(补充读取配置文件时回退平台app-plus、h5),但是仍推荐使用新平台名进行配置(app、web)
|
||||
## 1.0.11(2022-07-14)
|
||||
- 修复 部分情况下报`read property 'reduce' of undefined`的错误
|
||||
## 1.0.10(2022-07-11)
|
||||
- 将token存储在用户表的token字段内,与旧版本uni-id保持一致
|
||||
## 1.0.9(2022-07-01)
|
||||
- checkToken兼容token内未缓存角色权限的情况,此时将查库获取角色权限
|
||||
## 1.0.8(2022-07-01)
|
||||
- 修复clientDB默认依赖时部分情况下获取不到uni-id配置的Bug
|
||||
## 1.0.7(2022-06-30)
|
||||
- 修复config文件不合法时未抛出具体错误的Bug
|
||||
## 1.0.6(2022-06-28)
|
||||
- 移除插件内的数据表schema
|
||||
## 1.0.5(2022-06-27)
|
||||
- 修复使用多应用配置时报`Cannot read property 'appId' of undefined`的Bug
|
||||
## 1.0.4(2022-06-27)
|
||||
- 修复使用自定义token内容功能报错的Bug [详情](https://ask.dcloud.net.cn/question/147945)
|
||||
## 1.0.2(2022-06-23)
|
||||
- 对齐旧版本uni-id默认配置
|
||||
## 1.0.1(2022-06-22)
|
||||
- 补充对uni-config-center的依赖
|
||||
## 1.0.0(2022-06-21)
|
||||
- 提供uni-id token创建、校验、刷新接口,简化旧版uni-id公共模块
|
@ -1,84 +0,0 @@
|
||||
{
|
||||
"id": "uni-id-common",
|
||||
"displayName": "uni-id-common",
|
||||
"version": "1.0.18",
|
||||
"description": "包含uni-id token生成、校验、刷新功能的云函数公共模块",
|
||||
"keywords": [
|
||||
"uni-id-common",
|
||||
"uniCloud",
|
||||
"token",
|
||||
"权限"
|
||||
],
|
||||
"repository": "https://gitcode.net/dcloud/uni-id-common",
|
||||
"engines": {
|
||||
},
|
||||
"dcloudext": {
|
||||
"sale": {
|
||||
"regular": {
|
||||
"price": 0
|
||||
},
|
||||
"sourcecode": {
|
||||
"price": 0
|
||||
}
|
||||
},
|
||||
"contact": {
|
||||
"qq": ""
|
||||
},
|
||||
"declaration": {
|
||||
"ads": "无",
|
||||
"data": "无",
|
||||
"permissions": "无"
|
||||
},
|
||||
"npmurl": "",
|
||||
"type": "unicloud-template-function"
|
||||
},
|
||||
"uni_modules": {
|
||||
"dependencies": ["uni-config-center"],
|
||||
"encrypt": [],
|
||||
"platforms": {
|
||||
"cloud": {
|
||||
"tcb": "y",
|
||||
"aliyun": "y",
|
||||
"alipay": "n"
|
||||
},
|
||||
"client": {
|
||||
"Vue": {
|
||||
"vue2": "u",
|
||||
"vue3": "u"
|
||||
},
|
||||
"App": {
|
||||
"app-vue": "u",
|
||||
"app-nvue": "u"
|
||||
},
|
||||
"H5-mobile": {
|
||||
"Safari": "u",
|
||||
"Android Browser": "u",
|
||||
"微信浏览器(Android)": "u",
|
||||
"QQ浏览器(Android)": "u"
|
||||
},
|
||||
"H5-pc": {
|
||||
"Chrome": "u",
|
||||
"IE": "u",
|
||||
"Edge": "u",
|
||||
"Firefox": "u",
|
||||
"Safari": "u"
|
||||
},
|
||||
"小程序": {
|
||||
"微信": "u",
|
||||
"阿里": "u",
|
||||
"百度": "u",
|
||||
"字节跳动": "u",
|
||||
"QQ": "u",
|
||||
"钉钉": "u",
|
||||
"快手": "u",
|
||||
"飞书": "u",
|
||||
"京东": "u"
|
||||
},
|
||||
"快应用": {
|
||||
"华为": "u",
|
||||
"联盟": "u"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
# uni-id-common
|
||||
|
||||
文档请参考:[uni-id-common](https://uniapp.dcloud.net.cn/uniCloud/uni-id-common.html)
|
File diff suppressed because one or more lines are too long
@ -1,20 +0,0 @@
|
||||
{
|
||||
"name": "uni-id-common",
|
||||
"version": "1.0.18",
|
||||
"description": "uni-id token生成、校验、刷新",
|
||||
"main": "index.js",
|
||||
"homepage": "https:\/\/uniapp.dcloud.io\/uniCloud\/uni-id-common.html",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https:\/\/gitee.com\/dcloud\/uni-id-common.git"
|
||||
},
|
||||
"author": "DCloud",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"uni-config-center": "file:..\/..\/..\/..\/..\/uni-config-center\/uniCloud\/cloudfunctions\/common\/uni-config-center"
|
||||
},
|
||||
"origin-plugin-dev-name": "uni-id-common",
|
||||
"origin-plugin-version": "1.0.18",
|
||||
"plugin-dev-name": "uni-id-common",
|
||||
"plugin-version": "1.0.18"
|
||||
}
|
BIN
unpackage/cache/apk/__UNI__9F097F0_cm.apk
vendored
BIN
unpackage/cache/apk/__UNI__9F097F0_cm.apk
vendored
Binary file not shown.
1
unpackage/cache/apk/apkurl
vendored
1
unpackage/cache/apk/apkurl
vendored
@ -1 +0,0 @@
|
||||
https://app.liuyingyong.cn/build/download/8cc29db0-9a56-11ef-94b2-653680120b70
|
1
unpackage/cache/apk/cmManifestCache.json
vendored
1
unpackage/cache/apk/cmManifestCache.json
vendored
File diff suppressed because one or more lines are too long
3
unpackage/cache/certdata
vendored
3
unpackage/cache/certdata
vendored
@ -1,3 +0,0 @@
|
||||
andrCertfile=D:/projects/cxc-szcx-uniapp/certificate/book.keystore
|
||||
andrCertAlias=__uni__f0afd30
|
||||
andrCertPass=4Z2SSz2hk5AO56cxUDfY3A==
|
@ -1,11 +0,0 @@
|
||||
|
||||
;(function(){
|
||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
||||
const __uniConfig = {"pages":[],"globalStyle":{"navigationBar":{"type":"default","backgroundImage":"linear-gradient(to left , #256FBC, #044D87)"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"数智产销","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.15","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#333333","selectedColor":"#01508B","borderStyle":"black","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#FFFFFF","list":[{"text":"首页","pagePath":"pages/tab/index","iconPath":"/static/tab/index1.png","selectedIconPath":"/static/tab/index2.png"},{"text":"任务","pagePath":"pages/task/todotask","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"办公","pagePath":"pages/tab/office","iconPath":"/static/tab/product1.png","selectedIconPath":"/static/tab/product2.png"},{"text":"我的","pagePath":"pages/tab/my","iconPath":"/static/tab/user1.png","selectedIconPath":"/static/tab/user2.png"}],"selectedIndex":0,"shown":true},"locales":{},"darkmode":false,"themeConfig":{}};
|
||||
const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":0,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/todotask","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/my","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"type":"default","titleText":"我的任务","titleColor":"#fff"},"isNVue":false}},{"path":"pages/task/handle","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/talk/message_list","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"消息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/conversation","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"昵称","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/system","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"系统通知","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/document/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/document/detail","meta":{"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/meeting/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/meeting/detail","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/leave/application","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"请假申请","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/checkin/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/useredit/useredit","meta":{"navigationBar":{"titleText":"资料编辑","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/add_address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"添加地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/addressbook","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"通讯录","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/manage","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/product/index","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"生产数据","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/userlist/index","meta":{"navigationBar":{"titleText":"","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/detail","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/zhiban/index","meta":{"navigationBar":{"titleText":"值班信息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/task/self","meta":{"navigationBar":{"titleText":"本人发起","type":"default","titleColor":"#ffffff"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
|
||||
__uniConfig.styles=[];//styles
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:16})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:u,window:u,document:u,frames:u,self:u,location:u,navigator:u,localStorage:u,history:u,Caches:u,screen:u,alert:u,confirm:u,prompt:u,fetch:u,XMLHttpRequest:u,WebSocket:u,webkit:u,print:u}}}});
|
||||
})();
|
||||
|
File diff suppressed because one or more lines are too long
3
unpackage/cache/wgt/__UNI__9F097F0/app.css
vendored
3
unpackage/cache/wgt/__UNI__9F097F0/app.css
vendored
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__9F097F0","name":"数智产销","version":{"name":"1.0.0","code":20241024},"description":"","developer":{"name":"","email":"","url":""},"permissions":{"Geolocation":{},"Fingerprint":{},"Camera":{},"Barcode":{},"Push":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"},"prerendered":"false"}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"com.tianranqi.app","aliasname":"__uni__9f097f0","password":"5n1+d1pb3AgK1DiULL3vgA==","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"dSYMs":false,"plistcmds":["Add :UIFileSharingEnabled bool true"],"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"geolocation":{"system":{"__platform__":["android"]}},"push":{"unipush":{"offline":false,"version":"2"},"description":"管理消息推送能力"}},"debug":true,"syncDebug":true,"orientation":"portrait-primary"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#000000"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.15","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}},"tabBar":{"position":"bottom","color":"#333333","selectedColor":"#01508B","borderStyle":"rgba(0,0,0,0.4)","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#FFFFFF","list":[{"text":"首页","pagePath":"pages/tab/index","iconPath":"/static/tab/index1.png","selectedIconPath":"/static/tab/index2.png"},{"text":"任务","pagePath":"pages/task/todotask","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"办公","pagePath":"pages/tab/office","iconPath":"/static/tab/product1.png","selectedIconPath":"/static/tab/product2.png"},{"text":"我的","pagePath":"pages/tab/my","iconPath":"/static/tab/user1.png","selectedIconPath":"/static/tab/user2.png"}],"selectedIndex":0,"shown":true},"adid":"125020250703"},"launch_path":"__uniappview.html"}
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.content[data-v-b79b801f]{padding:0 .9375rem}.title_box .title[data-v-b79b801f]{font-size:1rem;color:#333;padding:.9375rem 0 .625rem}.title_box .time[data-v-b79b801f]{font-size:.75rem;color:#888;padding-bottom:.9375rem}.document uni-text[data-v-b79b801f]{font-size:.875rem;color:#333;white-space:nowrap}.document uni-view[data-v-b79b801f]{font-size:.875rem;color:#5a79f8;text-decoration:underline}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
[data-v-6ad77018] .uni-select{border:none;padding-left:0;height:2.75rem}[data-v-6ad77018] .uni-select__input-placeholder{font-size:.875rem;color:#999}[data-v-6ad77018] .uni-icons{display:none}.logo[data-v-6ad77018]{padding-top:5.75rem}.logo uni-image[data-v-6ad77018]{width:14.84375rem;height:6.21875rem}.form[data-v-6ad77018]{margin-top:1.875rem}.form .box[data-v-6ad77018]{width:17.8125rem;height:2.75rem;background:#f8f8f8;border-radius:1.375rem;padding:0 .9375rem;margin-top:1.25rem;position:relative}.form .box .account_box[data-v-6ad77018]{position:absolute;top:3.125rem;left:2.8125rem;width:15.625rem;background-color:#fff;box-shadow:0 0 3px 1px #dfdfdf;z-index:99;border-radius:.3125rem}.form .box .account_box .account[data-v-6ad77018]{max-height:6.25rem;overflow-y:auto}.form .box .account_box .account uni-view[data-v-6ad77018]{padding:.3125rem}.form .box uni-image[data-v-6ad77018]{width:1.25rem;height:1.25rem;margin-right:.625rem}.form .box uni-input[data-v-6ad77018]{height:100%;flex:1}.pwd[data-v-6ad77018]{justify-content:flex-end;margin-top:.625rem;margin-right:1.875rem;font-size:.75rem;color:#01508b}.pwd uni-image[data-v-6ad77018]{width:1.0625rem;height:1.0625rem;margin-right:.125rem}.login[data-v-6ad77018]{margin-top:1.96875rem}.login uni-view[data-v-6ad77018]{width:19.6875rem;height:2.75rem;background:#4e74fb;border-radius:1.375rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
|
@ -1 +0,0 @@
|
||||
.content[data-v-7441efc4]{padding-bottom:3.75rem}.btn[data-v-7441efc4]{position:fixed;bottom:0;width:21.5625rem;height:3.75rem;background:#fff;padding:0 .9375rem;border-top:1px solid #EFEFEF}.btn uni-view[data-v-7441efc4]{width:10.3125rem;height:2.75rem;font-size:.875rem;border-radius:.5rem;text-align:center;line-height:2.75rem}.btn .refuse[data-v-7441efc4]{box-sizing:border-box;background:#fff;border:.0625rem solid #01508B;color:#01508b}.btn .agree[data-v-7441efc4]{background:#01508b;color:#fff}.list_box .list[data-v-7441efc4]{padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-7441efc4]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-7441efc4]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-7441efc4]{font-size:.875rem;color:#999}.list_box .list .info[data-v-7441efc4]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-7441efc4]{padding-top:.5rem;font-size:.875rem;color:#666}.list_box .list .info uni-text[data-v-7441efc4]{font-size:.875rem;color:#333}.list_box .list .info .person[data-v-7441efc4]{flex-wrap:wrap}.list_box .list .info .person .item[data-v-7441efc4]{width:16.66%}.list_box .list .info .person uni-image[data-v-7441efc4]{width:2.4375rem;height:2.4375rem;border-radius:1.1875rem;background-color:#01508b}.list_box .list .btn[data-v-7441efc4]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-7441efc4]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-7441efc4]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-7441efc4]{background:#01508b;color:#fff}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.list[data-v-bc41e6b3]{flex-wrap:wrap}.list .item[data-v-bc41e6b3]{width:10.625rem;background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;margin-top:.625rem;font-size:.875rem;color:#333;line-height:1.25rem}.list .item .text[data-v-bc41e6b3]{padding:.5rem}.list .item uni-image[data-v-bc41e6b3]{width:10.625rem;height:6.25rem;border-radius:.5rem .5rem 0 0;background-color:#efefef;display:block}body{background-color:#f8f8f8}.content .title[data-v-ab4e5d54]{background-color:#fff;font-size:1rem;color:#333;line-height:1.40625rem;padding:.9375rem}.content uni-video[data-v-ab4e5d54]{width:23.4375rem;height:15.625rem}.listcom[data-v-ab4e5d54]{padding:0 .9375rem .9375rem;margin-top:.625rem;background-color:#fff}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.btn[data-v-5e418ebb]{position:fixed;left:50%;transform:translate(-50%);text-align:center;font-size:1rem;color:#db4b31}.operate[data-v-5e418ebb]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-5e418ebb]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-5e418ebb]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-5e418ebb]{width:2.125rem;height:1.1875rem}.operate .left[data-v-5e418ebb]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-5e418ebb]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-5e418ebb]{width:21.5625rem;height:4.4375rem;background-image:url(../../static/my/bg1.png);background-size:21.5625rem 4.4375rem;margin-top:.9375rem}.msg .box[data-v-5e418ebb]{justify-content:center;width:33.33%}.msg .box .num[data-v-5e418ebb]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-5e418ebb]{font-size:.75rem;color:#888}.msg .box[data-v-5e418ebb]:not(:last-child){position:relative}.msg .box[data-v-5e418ebb]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-5e418ebb]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-5e418ebb]{padding:4rem .9375rem 0}.nav .user .right[data-v-5e418ebb]{flex:1}.nav .user .avatar[data-v-5e418ebb]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-5e418ebb]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-5e418ebb]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-5e418ebb]{padding:.125rem .375rem;background:#55b800;border-radius:.25rem;font-size:.625rem;color:#fff;display:inline-block;margin-left:.25rem}.nav .user .name_job .job[data-v-5e418ebb]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-5e418ebb]{width:1.3125rem;height:1.3125rem}
|
@ -1 +0,0 @@
|
||||
.drag[data-v-a37e03c5]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;margin:.75rem .9375rem 0}.drag .title[data-v-a37e03c5]{font-size:.875rem;color:#333;padding:.9375rem 0 0 .9375rem}.inner uni-image[data-v-a37e03c5]{width:3.0625rem;height:3.0625rem;background-color:#efefef}.inner .text[data-v-a37e03c5]{font-size:.875rem;color:#333;margin-top:.625rem}.placeholder[data-v-a37e03c5]{height:var(--00e5a4ad)}.nav[data-v-a37e03c5]{width:calc(100% - 1.875rem);padding:0 .9375rem;height:var(--00e5a4ad);font-size:.75rem;color:#fff;position:fixed;top:0;left:0;z-index:99;background-image:url(../../static/my/navbg.png);background-repeat:no-repeat;background-size:23.4375rem 14.3125rem}.content[data-v-a37e03c5]{padding:0 .9375rem .625rem}.list[data-v-a37e03c5]{margin-bottom:.75rem}.list .item[data-v-a37e03c5]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem 0;margin-top:.75rem}.list .item .title[data-v-a37e03c5]{font-size:.875rem;color:#333;padding-left:.9375rem}.list uni-image[data-v-a37e03c5]{width:3.0625rem;height:3.0625rem}.list .info_box[data-v-a37e03c5]{flex-wrap:wrap}.list .info_box .info[data-v-a37e03c5]{margin-top:1.25rem;width:25%}.list .info_box .info .text[data-v-a37e03c5]{font-size:.875rem;color:#333;margin-top:.625rem}
|
@ -1 +0,0 @@
|
||||
body{background-color:#f8f8f8}.content[data-v-00b966b0]{padding-bottom:3.75rem}.input_box[data-v-00b966b0]{position:fixed;width:23.4375rem;height:3.75rem;background:#fff;bottom:0;left:0}.input_box uni-input[data-v-00b966b0]{width:14.59375rem;height:2.5rem;background:#f8f8f8;border-radius:.25rem;padding:0 .9375rem}.input_box .send[data-v-00b966b0]{width:4.15625rem;height:2.5rem;background:#01508b;border-radius:.25rem;text-align:center;line-height:2.5rem;font-size:.875rem;color:#fff}.list[data-v-00b966b0]{padding:1.25rem .9375rem}.list .item[data-v-00b966b0]:not(:first-child){margin-top:1.875rem}.list .item uni-image[data-v-00b966b0]{width:2.6875rem;height:2.6875rem;border-radius:50%;background-color:maroon}.list .item .left .content[data-v-00b966b0]{padding:.75rem .9375rem;background:#fff;border-radius:0 .5rem .5rem;margin-left:.75rem;font-size:.875rem;color:#333}.list .item .right[data-v-00b966b0]{justify-content:flex-end}.list .item .right .content[data-v-00b966b0]{margin-right:.75rem;padding:.75rem .9375rem;background:#01508b;border-radius:.5rem 0 .5rem .5rem;font-size:.875rem;color:#fff}
|
@ -1 +0,0 @@
|
||||
.list[data-v-f59fee84]{padding:0 .9375rem}.item[data-v-f59fee84]:not(:last-child){border-bottom:1px solid #EFEFEF}.item[data-v-f59fee84]{height:4.6875rem}.item .name_info[data-v-f59fee84]{flex:1}.item .name[data-v-f59fee84]{font-size:1rem;color:#333}.item .info[data-v-f59fee84]{margin-top:.125rem;width:16.875rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.item .time[data-v-f59fee84],.item .info[data-v-f59fee84]{font-size:.875rem;color:#999}.item uni-image[data-v-f59fee84]{width:3.125rem;height:3.125rem;border-radius:50%;background-color:#f8f8f8;margin-right:.75rem}
|
@ -1 +0,0 @@
|
||||
body{background-color:#f8f8f8}.content[data-v-2f0571e9]{padding-bottom:3.75rem}.list[data-v-2f0571e9]{padding:1.25rem .9375rem}.list .item[data-v-2f0571e9]:not(:first-child){margin-top:1.875rem}.list .item uni-image[data-v-2f0571e9]{width:2.6875rem;height:2.6875rem;border-radius:50%}.list .item .left .content[data-v-2f0571e9]{padding:.75rem .9375rem;background:#fff;border-radius:0 .5rem .5rem;margin-left:.75rem;font-size:.875rem;color:#333}
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}body{background-color:#f8f8f8}.tasklist[data-v-965734c1]{padding-top:3.125rem}.nav[data-v-965734c1]{background-color:#fff;height:3.125rem;width:100vw;position:fixed;top:0;left:0;z-index:99}.nav .tab_box[data-v-965734c1]{padding:.75rem 0}.nav .tab_box uni-view[data-v-965734c1]{position:relative;font-size:.875rem;color:#666}.nav .tab_box .active[data-v-965734c1]{font-size:.875rem;color:#01508b}.nav .tab_box .active[data-v-965734c1]:after{position:absolute;width:7.1875rem;height:.0625rem;background:#01508b;content:" ";bottom:-.6875rem;left:50%;transform:translate(-50%)}.nav .time_box[data-v-965734c1]{padding:.625rem 0}.nav .time_box .time[data-v-965734c1]{padding:0 .9375rem;width:19.6875rem;height:2.25rem;background:#f8f8f8;border-radius:.25rem}.nav .time_box .time uni-image[data-v-965734c1]{width:1.0625rem;height:1.0625rem}
|
@ -1 +0,0 @@
|
||||
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}
|
@ -1 +0,0 @@
|
||||
body[data-v-d5e6674e]{background-color:#f8f8f8}.content[data-v-d5e6674e]{padding-top:.9375rem}.todo .title_box[data-v-d5e6674e]{width:19.6875rem;height:3.375rem;background:#fff;box-shadow:0 .0625rem .1875rem rgba(0,0,0,.16);border-radius:.5rem;padding:0 .9375rem}.todo .title_box .title[data-v-d5e6674e]{font-weight:500;font-size:1rem;color:#333}.todo .title_box .title uni-image[data-v-d5e6674e]{width:1.5rem;height:1.5rem}.todo .title_box .num[data-v-d5e6674e]{width:1.6875rem;height:1.6875rem;background:url(../../static/my/num.png) no-repeat;background-size:1.6875rem 1.6875rem;font-size:.75rem;color:#fff;text-align:center;line-height:1.6875rem}.todo .list[data-v-d5e6674e]{width:17.8125rem;padding:.625rem .9375rem .9375rem;background:#fff;box-shadow:0 .0625rem .1875rem rgba(0,0,0,.16);border-radius:0 0 .5rem .5rem}.todo .list .box[data-v-d5e6674e]{max-height:3.75rem;transition:all .3s;overflow:hidden}.todo .list .box .item_box[data-v-d5e6674e]{display:flex;flex-wrap:wrap}.todo .list .box .item[data-v-d5e6674e]{font-size:.875rem;height:1.875rem;width:50%}.todo .list .box .item uni-view[data-v-d5e6674e]{color:#666;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.todo .list .box .item uni-text[data-v-d5e6674e]{color:#ed361d;margin:0 .3125rem}.todo .list .close[data-v-d5e6674e]{max-height:var(--11d92706)}.todo .list .more[data-v-d5e6674e]{font-size:.875rem;color:#008dff;text-decoration:underline;margin-top:.625rem}.drag[data-v-df705bde]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;margin:.75rem .9375rem 0}.drag .title[data-v-df705bde]{font-size:.875rem;color:#333;padding:.9375rem 0 0 .9375rem}.inner uni-image[data-v-df705bde]{width:3.0625rem;height:3.0625rem;background-color:#efefef}.inner .text[data-v-df705bde]{font-size:.875rem;color:#333;margin-top:.625rem}.placeholder[data-v-df705bde]{height:var(--6ebd20b9)}.nav[data-v-df705bde]{width:calc(100% - 1.875rem);padding:0 .9375rem;height:var(--6ebd20b9);font-size:.75rem;color:#fff;position:fixed;top:0;left:0;z-index:99;background-image:url(../../static/my/navbg.png);background-repeat:no-repeat;background-size:23.4375rem 14.3125rem}.content[data-v-df705bde]{padding:0 .9375rem .625rem}.list[data-v-df705bde]{margin-bottom:.75rem}.list .item[data-v-df705bde]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem 0;margin-top:.75rem}.list .item .title[data-v-df705bde]{font-size:.875rem;color:#333;padding-left:.9375rem}.list uni-image[data-v-df705bde]{width:3.0625rem;height:3.0625rem}.list .info_box[data-v-df705bde]{flex-wrap:wrap}.list .info_box .info[data-v-df705bde]{margin-top:1.25rem;width:25%}.list .info_box .info .text[data-v-df705bde]{font-size:.875rem;color:#333;margin-top:.625rem}
|
@ -1 +0,0 @@
|
||||
body{background-color:#fff}.content[data-v-c71fcfcd]{padding:.9375rem .9375rem 3.75rem}.area[data-v-c71fcfcd]:not(:first-child){margin-top:1.25rem}.area uni-image[data-v-c71fcfcd]{width:1.1875rem;height:1.1875rem}.area .topic[data-v-c71fcfcd]{margin-top:.875rem}.area .title[data-v-c71fcfcd]{font-size:1rem;color:#333}.area uni-input[data-v-c71fcfcd]{width:14.75rem;height:3rem;background:#f6f6f6;border-radius:.5rem;padding:0 .9375rem}.area uni-textarea[data-v-c71fcfcd]{width:14.75rem;height:3.25rem;background:#f6f6f6;border-radius:.5rem;padding:.875rem .9375rem}.btn[data-v-c71fcfcd]{position:fixed;bottom:0;width:23.4375rem;height:3.75rem;background:#fff;justify-content:center;left:0}.btn uni-view[data-v-c71fcfcd]{width:21.5625rem;height:2.75rem;background:#01508b;border-radius:.25rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
|
@ -1 +0,0 @@
|
||||
body{background-color:#f8f8f8}.content[data-v-837db36d]{padding-bottom:3.75rem}.list[data-v-837db36d]{padding:.9375rem}.list .item[data-v-837db36d]:not(:first-child){margin-top:.9375rem}.list .item[data-v-837db36d]{padding:.9375rem;background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem}.list .item .province[data-v-837db36d]{font-size:.875rem;color:#333;margin-bottom:.3125rem}.list .item .province uni-image[data-v-837db36d]{width:1.75rem;height:1.125rem;margin-left:.5rem}.list .item .address[data-v-837db36d]{font-size:.75rem;color:#666;padding-bottom:.9375rem;border-bottom:1px solid #EFEFEF}.list .item .address uni-view[data-v-837db36d]{flex:1}.list .item .address uni-image[data-v-837db36d]{width:.875rem;height:.9375rem;margin-left:.625rem}.list .item .set[data-v-837db36d]{margin-top:.9375rem;font-size:.75rem;color:#666}.list .item .set uni-image[data-v-837db36d]{width:1.1875rem;height:1.1875rem;margin-right:.375rem}.btn[data-v-837db36d]{position:fixed;bottom:0;width:23.4375rem;height:3.75rem;background:#fff;justify-content:center}.btn uni-view[data-v-837db36d]{width:21.5625rem;height:2.75rem;background:#01508b;border-radius:.25rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
|
@ -1 +0,0 @@
|
||||
.list[data-v-e9ce91fd]{padding:0 .9375rem}.list .item[data-v-e9ce91fd]{padding:.9375rem 0;border-bottom:1px solid #EFEFEF}.list .item uni-image[data-v-e9ce91fd]{width:3.125rem;height:3.125rem;border-radius:1.5625rem;background-color:#efefef;margin-right:.9375rem}.list .item .name[data-v-e9ce91fd]{font-size:1rem;color:#333}.list .item .job[data-v-e9ce91fd]{font-size:.75rem;color:#999;margin-top:.25rem}.list .item .btn[data-v-e9ce91fd]{width:4.125rem;height:1.875rem;background:#01508b;border-radius:.25rem;text-align:center;line-height:1.875rem;font-size:.75rem;color:#fff}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.date[data-v-54de2922]{width:21.5625rem;padding:.625rem .9375rem 0;font-size:.875rem;color:#333}.info[data-v-54de2922]{background:#f8f8f8;border-radius:.25rem;text-align:center;width:21.5625rem;margin-top:.71875rem}.info .info_title[data-v-54de2922]{font-size:.75rem;color:#333;padding:.75rem 0;border-bottom:1px solid #EFEFEF}.info .info_title uni-view[data-v-54de2922]{flex:1}.info .data_box[data-v-54de2922]{font-size:.75rem;padding-bottom:.75rem;color:#888}.info .data_box .data[data-v-54de2922]{margin-top:.71875rem}.info .data_box .data uni-view[data-v-54de2922]{flex:1}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,11 +0,0 @@
|
||||
|
||||
;(function(){
|
||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
||||
const __uniConfig = {"pages":[],"globalStyle":{"navigationBar":{"type":"default","backgroundImage":"linear-gradient(to left , #256FBC, #044D87)"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"数智产销","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.24","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#333333","selectedColor":"#01508B","borderStyle":"black","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#FFFFFF","list":[{"text":"首页","pagePath":"pages/tab/index","iconPath":"/static/tab/index1.png","selectedIconPath":"/static/tab/index2.png"},{"text":"任务","pagePath":"pages/task/todotask","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"办公","pagePath":"pages/tab/office","iconPath":"/static/tab/product1.png","selectedIconPath":"/static/tab/product2.png"},{"text":"我的","pagePath":"pages/tab/my","iconPath":"/static/tab/user1.png","selectedIconPath":"/static/tab/user2.png"}],"selectedIndex":0,"shown":true},"locales":{},"darkmode":false,"themeConfig":{}};
|
||||
const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":0,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/todotask","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/my","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"type":"default","titleText":"我的任务","titleColor":"#fff"},"isNVue":false}},{"path":"pages/task/handle","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/talk/message_list","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"消息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/conversation","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"昵称","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/system","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"系统通知","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/document/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/document/detail","meta":{"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/meeting/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/meeting/detail","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/leave/application","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"请假申请","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/checkin/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/useredit/useredit","meta":{"navigationBar":{"titleText":"资料编辑","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/add_address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"添加地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/addressbook","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"通讯录","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/manage","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/product/index","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"生产数据","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/userlist/index","meta":{"navigationBar":{"titleText":"","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/detail","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/zhiban/index","meta":{"navigationBar":{"titleText":"值班信息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/task/self","meta":{"navigationBar":{"titleText":"本人发起","type":"default","titleColor":"#ffffff"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
|
||||
__uniConfig.styles=[];//styles
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:16})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:u,window:u,document:u,frames:u,self:u,location:u,navigator:u,localStorage:u,history:u,Caches:u,screen:u,alert:u,confirm:u,prompt:u,fetch:u,XMLHttpRequest:u,WebSocket:u,webkit:u,print:u}}}});
|
||||
})();
|
||||
|
9
unpackage/dist/build/app-plus/app-service.js
vendored
9
unpackage/dist/build/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
3
unpackage/dist/build/app-plus/app.css
vendored
3
unpackage/dist/build/app-plus/app.css
vendored
File diff suppressed because one or more lines are too long
196
unpackage/dist/build/app-plus/manifest.json
vendored
196
unpackage/dist/build/app-plus/manifest.json
vendored
@ -1,196 +0,0 @@
|
||||
{
|
||||
"@platforms": [
|
||||
"android",
|
||||
"iPhone",
|
||||
"iPad"
|
||||
],
|
||||
"id": "__UNI__9F097F0",
|
||||
"name": "数智产销",
|
||||
"version": {
|
||||
"name": "1.0.4",
|
||||
"code": 20241128
|
||||
},
|
||||
"description": "",
|
||||
"developer": {
|
||||
"name": "",
|
||||
"email": "",
|
||||
"url": ""
|
||||
},
|
||||
"permissions": {
|
||||
"Geolocation": {},
|
||||
"Fingerprint": {},
|
||||
"Camera": {},
|
||||
"Barcode": {},
|
||||
"Push": {},
|
||||
"UniNView": {
|
||||
"description": "UniNView原生渲染"
|
||||
}
|
||||
},
|
||||
"plus": {
|
||||
"useragent": {
|
||||
"value": "uni-app",
|
||||
"concatenate": true
|
||||
},
|
||||
"splashscreen": {
|
||||
"target": "id:1",
|
||||
"autoclose": true,
|
||||
"waiting": true,
|
||||
"delay": 0
|
||||
},
|
||||
"popGesture": "close",
|
||||
"launchwebview": {
|
||||
"id": "1",
|
||||
"kernel": "WKWebview"
|
||||
},
|
||||
"usingComponents": true,
|
||||
"nvueStyleCompiler": "uni-app",
|
||||
"compilerVersion": 3,
|
||||
"distribute": {
|
||||
"icons": {
|
||||
"android": {
|
||||
"hdpi": "unpackage/res/icons/72x72.png",
|
||||
"xhdpi": "unpackage/res/icons/96x96.png",
|
||||
"xxhdpi": "unpackage/res/icons/144x144.png",
|
||||
"xxxhdpi": "unpackage/res/icons/192x192.png"
|
||||
},
|
||||
"ios": {
|
||||
"appstore": "unpackage/res/icons/1024x1024.png",
|
||||
"ipad": {
|
||||
"app": "unpackage/res/icons/76x76.png",
|
||||
"app@2x": "unpackage/res/icons/152x152.png",
|
||||
"notification": "unpackage/res/icons/20x20.png",
|
||||
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||
"proapp@2x": "unpackage/res/icons/167x167.png",
|
||||
"settings": "unpackage/res/icons/29x29.png",
|
||||
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||
"spotlight": "unpackage/res/icons/40x40.png",
|
||||
"spotlight@2x": "unpackage/res/icons/80x80.png"
|
||||
},
|
||||
"iphone": {
|
||||
"app@2x": "unpackage/res/icons/120x120.png",
|
||||
"app@3x": "unpackage/res/icons/180x180.png",
|
||||
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||
"notification@3x": "unpackage/res/icons/60x60.png",
|
||||
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||
"settings@3x": "unpackage/res/icons/87x87.png",
|
||||
"spotlight@2x": "unpackage/res/icons/80x80.png",
|
||||
"spotlight@3x": "unpackage/res/icons/120x120.png"
|
||||
}
|
||||
}
|
||||
},
|
||||
"google": {
|
||||
"permissions": [
|
||||
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
|
||||
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
|
||||
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
|
||||
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
|
||||
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
|
||||
"<uses-feature android:name=\"android.hardware.camera\"/>",
|
||||
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
|
||||
]
|
||||
},
|
||||
"apple": {
|
||||
"dSYMs": false
|
||||
},
|
||||
"plugins": {
|
||||
"ad": {},
|
||||
"geolocation": {
|
||||
"system": {
|
||||
"__platform__": [
|
||||
"android"
|
||||
]
|
||||
}
|
||||
},
|
||||
"push": {
|
||||
"unipush": {
|
||||
"version": "2",
|
||||
"offline": false
|
||||
}
|
||||
},
|
||||
"audio": {
|
||||
"mp3": {
|
||||
"description": "Android平台录音支持MP3格式文件"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"statusbar": {
|
||||
"immersed": "supportedDevice",
|
||||
"style": "dark",
|
||||
"background": "#000000"
|
||||
},
|
||||
"uniStatistics": {
|
||||
"enable": false
|
||||
},
|
||||
"allowsInlineMediaPlayback": true,
|
||||
"safearea": {
|
||||
"background": "#FFFFFF",
|
||||
"bottom": {
|
||||
"offset": "auto"
|
||||
}
|
||||
},
|
||||
"uni-app": {
|
||||
"control": "uni-v3",
|
||||
"vueVersion": "3",
|
||||
"compilerVersion": "4.24",
|
||||
"nvueCompiler": "uni-app",
|
||||
"renderer": "auto",
|
||||
"nvue": {
|
||||
"flex-direction": "column"
|
||||
},
|
||||
"nvueLaunchMode": "normal",
|
||||
"webView": {
|
||||
"minUserAgentVersion": "49.0"
|
||||
}
|
||||
},
|
||||
"tabBar": {
|
||||
"position": "bottom",
|
||||
"color": "#333333",
|
||||
"selectedColor": "#01508B",
|
||||
"borderStyle": "rgba(0,0,0,0.4)",
|
||||
"blurEffect": "none",
|
||||
"fontSize": "10px",
|
||||
"iconWidth": "24px",
|
||||
"spacing": "3px",
|
||||
"height": "50px",
|
||||
"backgroundColor": "#FFFFFF",
|
||||
"list": [
|
||||
{
|
||||
"text": "首页",
|
||||
"pagePath": "pages/tab/index",
|
||||
"iconPath": "/static/tab/index1.png",
|
||||
"selectedIconPath": "/static/tab/index2.png"
|
||||
},
|
||||
{
|
||||
"text": "任务",
|
||||
"pagePath": "pages/task/todotask",
|
||||
"iconPath": "/static/tab/office1.png",
|
||||
"selectedIconPath": "/static/tab/office2.png"
|
||||
},
|
||||
{
|
||||
"text": "办公",
|
||||
"pagePath": "pages/tab/office",
|
||||
"iconPath": "/static/tab/product1.png",
|
||||
"selectedIconPath": "/static/tab/product2.png"
|
||||
},
|
||||
{
|
||||
"text": "我的",
|
||||
"pagePath": "pages/tab/my",
|
||||
"iconPath": "/static/tab/user1.png",
|
||||
"selectedIconPath": "/static/tab/user2.png"
|
||||
}
|
||||
],
|
||||
"selectedIndex": 0,
|
||||
"shown": true
|
||||
}
|
||||
},
|
||||
"launch_path": "__uniappview.html"
|
||||
}
|
@ -1 +0,0 @@
|
||||
.content[data-v-b79b801f]{padding:0 .9375rem}.title_box .title[data-v-b79b801f]{font-size:1rem;color:#333;padding:.9375rem 0 .625rem}.title_box .time[data-v-b79b801f]{font-size:.75rem;color:#888;padding-bottom:.9375rem}.document uni-text[data-v-b79b801f]{font-size:.875rem;color:#333;white-space:nowrap}.document uni-view[data-v-b79b801f]{font-size:.875rem;color:#5a79f8;text-decoration:underline}
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
[data-v-b53a3802] .uni-select{border:none;padding-left:0;height:2.75rem}[data-v-b53a3802] .uni-select__input-placeholder{font-size:.875rem;color:#999}[data-v-b53a3802] .uni-icons{display:none}.logo[data-v-b53a3802]{padding-top:5.75rem}.logo uni-image[data-v-b53a3802]{width:14.84375rem;height:6.21875rem}.form[data-v-b53a3802]{margin-top:1.875rem}.form .box[data-v-b53a3802]{width:17.8125rem;height:2.75rem;background:#f8f8f8;border-radius:1.375rem;padding:0 .9375rem;margin-top:1.25rem;position:relative}.form .box .account_box[data-v-b53a3802]{position:absolute;top:3.125rem;left:2.8125rem;width:15.625rem;background-color:#fff;box-shadow:0 0 3px 1px #dfdfdf;z-index:99;border-radius:.3125rem}.form .box .account_box .account[data-v-b53a3802]{max-height:6.25rem;overflow-y:auto}.form .box .account_box .account uni-view[data-v-b53a3802]{padding:.3125rem}.form .box uni-image[data-v-b53a3802]{width:1.25rem;height:1.25rem;margin-right:.625rem}.form .box uni-input[data-v-b53a3802]{height:100%;flex:1}.pwd[data-v-b53a3802]{justify-content:flex-end;margin-top:.625rem;margin-right:1.875rem;font-size:.75rem;color:#01508b}.pwd uni-image[data-v-b53a3802]{width:1.0625rem;height:1.0625rem;margin-right:.125rem}.login[data-v-b53a3802]{margin-top:1.96875rem}.login uni-view[data-v-b53a3802]{width:19.6875rem;height:2.75rem;background:#4e74fb;border-radius:1.375rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.btn[data-v-5e418ebb]{position:fixed;left:50%;transform:translate(-50%);text-align:center;font-size:1rem;color:#db4b31}.operate[data-v-5e418ebb]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-5e418ebb]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-5e418ebb]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-5e418ebb]{width:2.125rem;height:1.1875rem}.operate .left[data-v-5e418ebb]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-5e418ebb]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-5e418ebb]{width:21.5625rem;height:4.4375rem;background-image:url(../../static/my/bg1.png);background-size:21.5625rem 4.4375rem;margin-top:.9375rem}.msg .box[data-v-5e418ebb]{justify-content:center;width:33.33%}.msg .box .num[data-v-5e418ebb]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-5e418ebb]{font-size:.75rem;color:#888}.msg .box[data-v-5e418ebb]:not(:last-child){position:relative}.msg .box[data-v-5e418ebb]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-5e418ebb]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-5e418ebb]{padding:4rem .9375rem 0}.nav .user .right[data-v-5e418ebb]{flex:1}.nav .user .avatar[data-v-5e418ebb]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-5e418ebb]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-5e418ebb]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-5e418ebb]{padding:.125rem .375rem;background:#55b800;border-radius:.25rem;font-size:.625rem;color:#fff;display:inline-block;margin-left:.25rem}.nav .user .name_job .job[data-v-5e418ebb]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-5e418ebb]{width:1.3125rem;height:1.3125rem}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
16
unpackage/dist/dev/app-plus/__uniappautomator.js
vendored
16
unpackage/dist/dev/app-plus/__uniappautomator.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,11 +0,0 @@
|
||||
|
||||
;(function(){
|
||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
||||
const __uniConfig = {"pages":[],"globalStyle":{"navigationBar":{"type":"default","backgroundImage":"linear-gradient(to left , #256FBC, #044D87)"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"数智产销","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.24","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#333333","selectedColor":"#01508B","borderStyle":"black","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#FFFFFF","list":[{"text":"首页","pagePath":"pages/tab/index","iconPath":"/static/tab/index1.png","selectedIconPath":"/static/tab/index2.png"},{"text":"任务","pagePath":"pages/task/todotask","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"办公","pagePath":"pages/tab/office","iconPath":"/static/tab/product1.png","selectedIconPath":"/static/tab/product2.png"},{"text":"我的","pagePath":"pages/tab/my","iconPath":"/static/tab/user1.png","selectedIconPath":"/static/tab/user2.png"}],"selectedIndex":0,"shown":true},"locales":{},"darkmode":false,"themeConfig":{}};
|
||||
const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":0,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/todotask","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/my","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/task/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"type":"default","titleText":"我的任务","titleColor":"#fff"},"isNVue":false}},{"path":"pages/task/handle","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/talk/message_list","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"消息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/conversation","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"昵称","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/talk/system","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"系统通知","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/document/index","meta":{"enablePullDownRefresh":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/document/detail","meta":{"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/meeting/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/meeting/detail","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"详情","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/leave/application","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"请假申请","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/checkin/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/useredit/useredit","meta":{"navigationBar":{"titleText":"资料编辑","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/add_address","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"添加地址","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/useredit/addressbook","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"通讯录","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/manage","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/product/index","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"生产数据","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/userlist/index","meta":{"navigationBar":{"titleText":"","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/safe/detail","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/zhiban/index","meta":{"navigationBar":{"titleText":"值班信息","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/task/self","meta":{"navigationBar":{"titleText":"本人发起","type":"default","titleColor":"#ffffff"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
|
||||
__uniConfig.styles=[];//styles
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:16})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:u,window:u,document:u,frames:u,self:u,location:u,navigator:u,localStorage:u,history:u,Caches:u,screen:u,alert:u,confirm:u,prompt:u,fetch:u,XMLHttpRequest:u,WebSocket:u,webkit:u,print:u}}}});
|
||||
})();
|
||||
|
19477
unpackage/dist/dev/app-plus/app-service.js
vendored
19477
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
617
unpackage/dist/dev/app-plus/app.css
vendored
617
unpackage/dist/dev/app-plus/app.css
vendored
File diff suppressed because one or more lines are too long
196
unpackage/dist/dev/app-plus/manifest.json
vendored
196
unpackage/dist/dev/app-plus/manifest.json
vendored
@ -1,196 +0,0 @@
|
||||
{
|
||||
"@platforms": [
|
||||
"android",
|
||||
"iPhone",
|
||||
"iPad"
|
||||
],
|
||||
"id": "__UNI__9F097F0",
|
||||
"name": "数智产销",
|
||||
"version": {
|
||||
"name": "1.0.4",
|
||||
"code": 20241128
|
||||
},
|
||||
"description": "",
|
||||
"developer": {
|
||||
"name": "",
|
||||
"email": "",
|
||||
"url": ""
|
||||
},
|
||||
"permissions": {
|
||||
"Geolocation": {},
|
||||
"Fingerprint": {},
|
||||
"Camera": {},
|
||||
"Barcode": {},
|
||||
"Push": {},
|
||||
"UniNView": {
|
||||
"description": "UniNView原生渲染"
|
||||
}
|
||||
},
|
||||
"plus": {
|
||||
"useragent": {
|
||||
"value": "uni-app",
|
||||
"concatenate": true
|
||||
},
|
||||
"splashscreen": {
|
||||
"target": "id:1",
|
||||
"autoclose": true,
|
||||
"waiting": true,
|
||||
"delay": 0
|
||||
},
|
||||
"popGesture": "close",
|
||||
"launchwebview": {
|
||||
"id": "1",
|
||||
"kernel": "WKWebview"
|
||||
},
|
||||
"usingComponents": true,
|
||||
"nvueStyleCompiler": "uni-app",
|
||||
"compilerVersion": 3,
|
||||
"distribute": {
|
||||
"icons": {
|
||||
"android": {
|
||||
"hdpi": "unpackage/res/icons/72x72.png",
|
||||
"xhdpi": "unpackage/res/icons/96x96.png",
|
||||
"xxhdpi": "unpackage/res/icons/144x144.png",
|
||||
"xxxhdpi": "unpackage/res/icons/192x192.png"
|
||||
},
|
||||
"ios": {
|
||||
"appstore": "unpackage/res/icons/1024x1024.png",
|
||||
"ipad": {
|
||||
"app": "unpackage/res/icons/76x76.png",
|
||||
"app@2x": "unpackage/res/icons/152x152.png",
|
||||
"notification": "unpackage/res/icons/20x20.png",
|
||||
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||
"proapp@2x": "unpackage/res/icons/167x167.png",
|
||||
"settings": "unpackage/res/icons/29x29.png",
|
||||
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||
"spotlight": "unpackage/res/icons/40x40.png",
|
||||
"spotlight@2x": "unpackage/res/icons/80x80.png"
|
||||
},
|
||||
"iphone": {
|
||||
"app@2x": "unpackage/res/icons/120x120.png",
|
||||
"app@3x": "unpackage/res/icons/180x180.png",
|
||||
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||
"notification@3x": "unpackage/res/icons/60x60.png",
|
||||
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||
"settings@3x": "unpackage/res/icons/87x87.png",
|
||||
"spotlight@2x": "unpackage/res/icons/80x80.png",
|
||||
"spotlight@3x": "unpackage/res/icons/120x120.png"
|
||||
}
|
||||
}
|
||||
},
|
||||
"google": {
|
||||
"permissions": [
|
||||
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
|
||||
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
|
||||
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
|
||||
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
|
||||
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
|
||||
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
|
||||
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
|
||||
"<uses-feature android:name=\"android.hardware.camera\"/>",
|
||||
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
|
||||
]
|
||||
},
|
||||
"apple": {
|
||||
"dSYMs": false
|
||||
},
|
||||
"plugins": {
|
||||
"ad": {},
|
||||
"geolocation": {
|
||||
"system": {
|
||||
"__platform__": [
|
||||
"android"
|
||||
]
|
||||
}
|
||||
},
|
||||
"push": {
|
||||
"unipush": {
|
||||
"version": "2",
|
||||
"offline": false
|
||||
}
|
||||
},
|
||||
"audio": {
|
||||
"mp3": {
|
||||
"description": "Android平台录音支持MP3格式文件"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"statusbar": {
|
||||
"immersed": "supportedDevice",
|
||||
"style": "dark",
|
||||
"background": "#000000"
|
||||
},
|
||||
"uniStatistics": {
|
||||
"enable": false
|
||||
},
|
||||
"allowsInlineMediaPlayback": true,
|
||||
"safearea": {
|
||||
"background": "#FFFFFF",
|
||||
"bottom": {
|
||||
"offset": "auto"
|
||||
}
|
||||
},
|
||||
"uni-app": {
|
||||
"control": "uni-v3",
|
||||
"vueVersion": "3",
|
||||
"compilerVersion": "4.15",
|
||||
"nvueCompiler": "uni-app",
|
||||
"renderer": "auto",
|
||||
"nvue": {
|
||||
"flex-direction": "column"
|
||||
},
|
||||
"nvueLaunchMode": "normal",
|
||||
"webView": {
|
||||
"minUserAgentVersion": "49.0"
|
||||
}
|
||||
},
|
||||
"tabBar": {
|
||||
"position": "bottom",
|
||||
"color": "#333333",
|
||||
"selectedColor": "#01508B",
|
||||
"borderStyle": "rgba(0,0,0,0.4)",
|
||||
"blurEffect": "none",
|
||||
"fontSize": "10px",
|
||||
"iconWidth": "24px",
|
||||
"spacing": "3px",
|
||||
"height": "50px",
|
||||
"backgroundColor": "#FFFFFF",
|
||||
"list": [
|
||||
{
|
||||
"text": "首页",
|
||||
"pagePath": "pages/tab/index",
|
||||
"iconPath": "/static/tab/index1.png",
|
||||
"selectedIconPath": "/static/tab/index2.png"
|
||||
},
|
||||
{
|
||||
"text": "任务",
|
||||
"pagePath": "pages/task/todotask",
|
||||
"iconPath": "/static/tab/office1.png",
|
||||
"selectedIconPath": "/static/tab/office2.png"
|
||||
},
|
||||
{
|
||||
"text": "办公",
|
||||
"pagePath": "pages/tab/office",
|
||||
"iconPath": "/static/tab/product1.png",
|
||||
"selectedIconPath": "/static/tab/product2.png"
|
||||
},
|
||||
{
|
||||
"text": "我的",
|
||||
"pagePath": "pages/tab/my",
|
||||
"iconPath": "/static/tab/user1.png",
|
||||
"selectedIconPath": "/static/tab/user2.png"
|
||||
}
|
||||
],
|
||||
"selectedIndex": 0,
|
||||
"shown": true
|
||||
}
|
||||
},
|
||||
"launch_path": "__uniappview.html"
|
||||
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user