页面修改

This commit is contained in:
yangzhq68909 2024-10-31 16:38:07 +08:00
parent f27c6e4ef0
commit ccfa6e4f11
34 changed files with 1091 additions and 1934 deletions

36
App.vue
View File

@ -3,8 +3,7 @@
useUpdateApp
} from '@/store/update.js';
import {
cxcJurisdictionApi,
taskListApi
cxcJurisdictionApi
} from '@/api/api.js';
import {
onLaunch,
@ -13,7 +12,6 @@
import {
getLocation,
getWeather,
// beforeJump
} from './utils/index.js';
import {
useStore
@ -21,30 +19,18 @@
import {
ref
} from 'vue';
onLaunch(() => {
console.log('---', todoNum.value)
//
uni.setTabBarBadge({
index: '1',
text: todoNum.value //
});
uni.onTabBarMidButtonTap(() => {
uni.navigateTo({
url: '/pages/task/todotask'
})
})
//
useUpdateApp().checkAppUpdate()
//
getLocation()
})
onShow(() => {
taskList()
//
ifGray()
})
const ifGray = () => {
cxcJurisdictionApi({
id: "1827997127165677570"
}).then((res) => {
@ -55,18 +41,6 @@
store.setIsgray(res.result.value)
}
})
})
const todoNum = ref(0)
const taskList = () => {
taskListApi({
pageNo: 1,
pageSize: 4,
_t: new Date().getTime()
}).then((res) => {
if (res.success) {
todoNum.value = res.result.total
}
})
}
</script>

View File

@ -14,13 +14,14 @@
}
},
{
"path": "pages/tab/office",
"path": "pages/task/todotask",
"style": {
"navigationStyle": "custom"
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{
"path": "pages/tab/product",
"path": "pages/tab/office",
"style": {
"navigationStyle": "custom"
}
@ -147,14 +148,14 @@
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/task/todotask",
"style": {
"navigationBarTitleText": "个人办公",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "white"
}
},
// {
// "path": "pages/task/todotask",
// "style": {
// "navigationBarTitleText": "个人办公",
// "enablePullDownRefresh": false,
// "navigationBarTextStyle": "white"
// }
// },
{
"path": "pages/safe/manage",
"style": {
@ -210,14 +211,14 @@
"selectedIconPath": "static/tab/index2.png"
},
{
"text": "办公",
"pagePath": "pages/tab/office",
"text": "任务",
"pagePath": "pages/task/todotask",
"iconPath": "static/tab/office1.png",
"selectedIconPath": "static/tab/office2.png"
},
{
"text": "生产",
"pagePath": "pages/tab/product",
"text": "办公",
"pagePath": "pages/tab/office",
"iconPath": "static/tab/product1.png",
"selectedIconPath": "static/tab/product2.png"
},
@ -227,15 +228,15 @@
"iconPath": "static/tab/user1.png",
"selectedIconPath": "static/tab/user2.png"
}
],
]
"midButton": {
"width": "65px",
"height": "75px",
"text": "",
"iconPath": "static/tab/todo.png",
"iconWidth": "50px"
}
// "midButton": {
// "width": "65px",
// "height": "75px",
// "text": "",
// "iconPath": "static/tab/todo.png",
// "iconWidth": "50px",
// }
},
"globalStyle": {
"app-plus": {

View File

@ -45,6 +45,9 @@
localLoginApi,
queryRoleApi
} from '@/api/login.js';
import {
taskListApi
} from '@/api/api.js';
import Base64 from 'base-64';
import {
onLoad
@ -92,14 +95,14 @@
username: un,
password: pw,
ip: getDeviceIp()
/*生产环境 end */
/*生产环境 end */
/*开发环境 begin */
// localLoginApi({
// username: username.value,
// password: password.value,
// captcha: 'app'
/*开发环境 end */
/*开发环境 begin */
// localLoginApi({
// username: username.value,
// password: password.value,
// captcha: 'app'
/*开发环境 end */
}).then((loginres) => {
if (loginres.success) {
uni.setStorageSync('token', loginres.result.token)
@ -119,6 +122,9 @@
.userInfo))
store.setUserInfo(loginres.result.userInfo)
//
loadBadge()
//
uni.switchTab({
url: '/pages/tab/index'
@ -143,6 +149,25 @@
// accountArr.value = localAccountArr
})
const loadBadge = () => {
taskListApi().then((res) => {
if (res.success) {
if (res.result.total > 0) {
uni.setTabBarBadge({
index: '1',
text: res.result.total //
});
} else {
uni.removeTabBarBadge({ //
index: '1',
});
}
}
})
}
function getDeviceIp() {
// #ifdef APP-PLUS

View File

@ -2,7 +2,7 @@
<view :class="{'gray':store.isgray==1}">
<view class="nav"></view>
<view class="placeholder"></view>
<!-- <view class="drag" v-if="listorder?.length"> //20240929 yzq 注释 这部分是拖拽组件
<!-- <view class="drag" v-if="listorder?.length"> //20240929 yzq 注释 这部分是拖拽组件
<view class="title">
{{ listtitle}}
</view>
@ -92,8 +92,8 @@
}).then((res) => {
if (res.success) {
let data = res.result.menu
data.map(item =>item.children= item?.children.filter(e => e?.meta?.icon))
data=data.filter(item=>item?.children?.length)
data.map(item => item.children = item?.children.filter(e => e?.meta?.icon))
data = data.filter(item => item?.children?.length)
listtitle.value = data[0]?.meta?.title
// arr.value = data.slice(1, data?.length)
arr.value = data;

View File

@ -97,12 +97,13 @@
proxy
} = getCurrentInstance()
const popup = ref(null)
const reason = ref('同意')
const reason = ref('')
/**拒绝(1)||同意(2)*/
const status = ref(null)
const openpop = (val) => {
status.value = val
popup.value.open()
reason.value = val == 2 ? '同意' : ''
}
const closepop = () => {
popup.value.close()
@ -127,7 +128,7 @@
let nextnode = null
/**流程办理判断*/
const handleProcess = () => {
if (!reason.value.trim()) return proxy.$toast('请输入审批意见')
// if (!reason.value.trim()) return proxy.$toast('')
let params = {}
if (status.value == 1) { //
if (currentnode.value == null) return proxy.$toast('请选择驳回节点')

View File

@ -1,12 +1,19 @@
<template>
<view :class="['content',{'gray':store.isgray==1}]">
<extendCom title="我的任务" img="process" :list="todoArr" :total="todoTotal" type="0"></extendCom>
<extendCom title="历史任务" img="done" :list="doneArr" :total="doneTotal" type="1"></extendCom>
<extendCom title="我发起流程" img="self" :list="selfArr" :total="selfTotal" type="2"></extendCom>
<view :class="[{'gray':store.isgray==1}]">
<view class="nav"></view>
<view class="placeholder"></view>
<view class="content">
<extendCom title="我的任务" img="process" :list="todoArr" :total="todoTotal" type="0"></extendCom>
<extendCom title="历史任务" img="done" :list="doneArr" :total="doneTotal" type="1"></extendCom>
<extendCom title="本人发起" img="self" :list="selfArr" :total="selfTotal" type="2"></extendCom>
</view>
</view>
</template>
<script setup>
const res = wx.getSystemInfoSync();
const statusHeight = res.statusBarHeight; //
const cusnavbarheight = (statusHeight + 44) + "px";
import extendCom from '../../bpm/extendCom.vue';
import {
ref
@ -17,17 +24,22 @@
taskHistoryListApi
} from '@/api/api.js';
import {
onLoad,
onReachBottom
onShow,
onReachBottom,
onPullDownRefresh
} from '@dcloudio/uni-app';
import {
useStore
} from '@/store'
const store = useStore()
onLoad(() => {
onShow(() => {
initArr()
taskList()
taskHistoryList()
myApplyProcessList()
uni.removeTabBarBadge({ //
index: '1',
});
})
const todoArr = ref([])
const todoTotal = ref(0)
@ -45,6 +57,7 @@
pageSize: res?.result?.total,
_t: new Date().getTime()
}).then((res1) => {
console.log('---', res1)
if (res1?.success) {
todoArr.value = [...todoArr.value, ...handleData(res1?.result?.records)]
todoTotal.value = res1?.result?.total
@ -67,11 +80,7 @@
const doneTotal = ref(0)
/**已办事项*/
const taskHistoryList = () => {
taskHistoryListApi({
pageNo: 1,
pageSize: 4,
_t: new Date().getTime()
}).then((res) => {
taskHistoryListApi().then((res) => {
if (res.success) {
if (res.result.total > 4) {
taskHistoryListApi({
@ -98,14 +107,9 @@
}
const selfArr = ref([])
const selfTotal = ref(0)
const selfArrquery = ref([])
/**本人发起*/
const myApplyProcessList = () => {
myApplyProcessListApi({
pageNo: 1,
pageSize: 4,
_t: new Date().getTime()
}).then((res) => {
myApplyProcessListApi().then((res) => {
if (res.success) {
if (res.result.total > 4) {
myApplyProcessListApi({
@ -114,7 +118,6 @@
_t: new Date().getTime()
}).then((res1) => {
if (res1.success) {
// selfArrquery.value=res1.result.records
selfArr.value = [...selfArr.value, ...handleData(res1.result.records)]
selfTotal.value = res1.result.total
}
@ -148,13 +151,114 @@
num: v
}))
}
const initArr = () => {
todoArr.value = []
selfArr.value = []
doneArr.value = []
todoTotal.value = 0
doneTotal.value = 0
selfTotal.value = 0
}
let loading = false
onPullDownRefresh(() => {
loading = false
initArr()
taskList()
taskHistoryList()
myApplyProcessList()
uni.stopPullDownRefresh()
})
</script>
<style>
page {
background-color: #F8F8F8;
}
</style>
<style lang="scss" scoped>
.drag {
background: #FFFFFF;
box-shadow: 0rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.5);
border-radius: 16rpx;
margin: 24rpx 30rpx 0 30rpx;
.title {
font-size: 28rpx;
color: #333333;
padding: 30rpx 0 0 30rpx;
}
}
.inner {
image {
width: 98rpx;
height: 98rpx;
background-color: #efefef;
}
.text {
font-size: 28rpx;
color: #333333;
margin-top: 20rpx;
}
}
.placeholder {
height: v-bind(cusnavbarheight);
}
.nav {
width: calc(100% - 60rpx);
padding: 0 30rpx;
height: v-bind(cusnavbarheight);
font-size: 24rpx;
color: #FFFFFF;
position: fixed;
top: 0;
left: 0;
z-index: 99;
background-image: url('../../static/my/navbg.png');
background-repeat: no-repeat;
background-size: 750rpx 458rpx;
}
.content {
padding: 0 30rpx 20rpx 30rpx;
}
.list {
margin-bottom: 24rpx;
.item {
background: #FFFFFF;
box-shadow: 0rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.5);
border-radius: 16rpx;
padding: 30rpx 0;
margin-top: 24rpx;
.title {
font-size: 28rpx;
color: #333333;
padding-left: 30rpx;
}
}
image {
width: 98rpx;
height: 98rpx;
}
.info_box {
flex-wrap: wrap;
.info {
margin-top: 40rpx;
width: 25%;
.text {
font-size: 28rpx;
color: #333333;
margin-top: 20rpx;
}
}
}
}
</style>

View File

@ -37,7 +37,6 @@ export const useUpdateApp = defineStore('updateApp', () => {
} = res
result.apkUrl = baseUrl + result.apkUrl;
result.wgtUrl = baseUrl + result.wgtUrl
console.log('更新', result);
// res = {
// "update": "wgt",
// "wgtUrl": "D:\\opt\\AppUpdate\\wgt\\2.2.34.wgt",

View File

@ -1,8 +1,8 @@
;(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/tab/office","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"生产","pagePath":"pages/tab/product","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"}],"midButton":{"width":"65px","height":"75px","text":"","iconPath":"static/tab/todo.png","iconWidth":"50px"},"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/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/product","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/task/todotask","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));
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()})}});

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__F0AFD30","name":"数智产销","version":{"name":"1.0.0","code":20241024},"description":"","developer":{"name":"","email":"","url":""},"permissions":{"Geolocation":{},"Fingerprint":{},"Camera":{},"Barcode":{},"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":"uni.UNIF0AFD30","aliasname":"__uni__f0afd30","password":"4Z2SSz2hk5AO56cxUDfY3A==","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"geolocation":{"system":{"__platform__":["android"]}}},"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/tab/office","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"生产","pagePath":"pages/tab/product","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"}],"midButton":{"width":"65px","height":"75px","text":"","iconPath":"static/tab/todo.png","iconWidth":"50px"},"selectedIndex":0,"shown":true},"adid":"120390270110"},"launch_path":"__uniappview.html"}
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__F0AFD30","name":"数智产销","version":{"name":"1.0.0","code":20241024},"description":"","developer":{"name":"","email":"","url":""},"permissions":{"Geolocation":{},"Fingerprint":{},"Camera":{},"Barcode":{},"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":"uni.UNIF0AFD30","aliasname":"__uni__f0afd30","password":"4Z2SSz2hk5AO56cxUDfY3A==","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"geolocation":{"system":{"__platform__":["android"]}}},"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":"120390270110"},"launch_path":"__uniappview.html"}

View File

@ -1 +1 @@
[data-v-c41e1a8c] .uni-select{border:none;padding-left:0;height:2.75rem}[data-v-c41e1a8c] .uni-select__input-placeholder{font-size:.875rem;color:#999}[data-v-c41e1a8c] .uni-icons{display:none}.logo[data-v-c41e1a8c]{padding-top:5.75rem}.logo uni-image[data-v-c41e1a8c]{width:14.84375rem;height:6.21875rem}.form[data-v-c41e1a8c]{margin-top:1.875rem}.form .box[data-v-c41e1a8c]{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-c41e1a8c]{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-c41e1a8c]{max-height:6.25rem;overflow-y:auto}.form .box .account_box .account uni-view[data-v-c41e1a8c]{padding:.3125rem}.form .box uni-image[data-v-c41e1a8c]{width:1.25rem;height:1.25rem;margin-right:.625rem}.form .box uni-input[data-v-c41e1a8c]{height:100%;flex:1}.pwd[data-v-c41e1a8c]{justify-content:flex-end;margin-top:.625rem;margin-right:1.875rem;font-size:.75rem;color:#01508b}.pwd uni-image[data-v-c41e1a8c]{width:1.0625rem;height:1.0625rem;margin-right:.125rem}.login[data-v-c41e1a8c]{margin-top:1.96875rem}.login uni-view[data-v-c41e1a8c]{width:19.6875rem;height:2.75rem;background:#4e74fb;border-radius:1.375rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
[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}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.operate[data-v-6a04ee91]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-6a04ee91]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-6a04ee91]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-6a04ee91]{width:2.125rem;height:1.1875rem}.operate .left[data-v-6a04ee91]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-6a04ee91]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-6a04ee91]{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-6a04ee91]{justify-content:center;width:33.33%}.msg .box .num[data-v-6a04ee91]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-6a04ee91]{font-size:.75rem;color:#888}.msg .box[data-v-6a04ee91]:not(:last-child){position:relative}.msg .box[data-v-6a04ee91]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-6a04ee91]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-6a04ee91]{padding:4rem .9375rem 0}.nav .user .right[data-v-6a04ee91]{flex:1}.nav .user .avatar[data-v-6a04ee91]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-6a04ee91]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-6a04ee91]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-6a04ee91]{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-6a04ee91]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-6a04ee91]{width:1.3125rem;height:1.3125rem}
.operate[data-v-300a7325]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-300a7325]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-300a7325]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-300a7325]{width:2.125rem;height:1.1875rem}.operate .left[data-v-300a7325]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-300a7325]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-300a7325]{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-300a7325]{justify-content:center;width:33.33%}.msg .box .num[data-v-300a7325]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-300a7325]{font-size:.75rem;color:#888}.msg .box[data-v-300a7325]:not(:last-child){position:relative}.msg .box[data-v-300a7325]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-300a7325]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-300a7325]{padding:4rem .9375rem 0}.nav .user .right[data-v-300a7325]{flex:1}.nav .user .avatar[data-v-300a7325]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-300a7325]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-300a7325]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-300a7325]{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-300a7325]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-300a7325]{width:1.3125rem;height:1.3125rem}

View File

@ -1 +1 @@
.drag[data-v-dc6eb4fe]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;margin:.75rem .9375rem 0}.drag .title[data-v-dc6eb4fe]{font-size:.875rem;color:#333;padding:.9375rem 0 0 .9375rem}.inner uni-image[data-v-dc6eb4fe]{width:3.0625rem;height:3.0625rem;background-color:#efefef}.inner .text[data-v-dc6eb4fe]{font-size:.875rem;color:#333;margin-top:.625rem}.placeholder[data-v-dc6eb4fe]{height:var(--3924a663)}.nav[data-v-dc6eb4fe]{width:calc(100% - 1.875rem);padding:0 .9375rem;height:var(--3924a663);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-dc6eb4fe]{padding:0 .9375rem .625rem}.list[data-v-dc6eb4fe]{margin-bottom:.75rem}.list .item[data-v-dc6eb4fe]{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-dc6eb4fe]{font-size:.875rem;color:#333;padding-left:.9375rem}.list uni-image[data-v-dc6eb4fe]{width:3.0625rem;height:3.0625rem}.list .info_box[data-v-dc6eb4fe]{flex-wrap:wrap}.list .info_box .info[data-v-dc6eb4fe]{margin-top:1.25rem;width:25%}.list .info_box .info .text[data-v-dc6eb4fe]{font-size:.875rem;color:#333;margin-top:.625rem}
.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}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
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}body{background-color:#f8f8f8}
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}

View File

@ -1,73 +0,0 @@
@file:Suppress("UNCHECKED_CAST", "USELESS_CAST", "INAPPLICABLE_JVM_NAME")
package uts.sdk.modules.wuwxStepCounter;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import io.dcloud.uniapp.*;
import io.dcloud.uniapp.extapi.*;
import io.dcloud.uts.*;
import io.dcloud.uts.Map;
import io.dcloud.uts.Set;
import io.dcloud.uts.UTSAndroid;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.Deferred;
import kotlinx.coroutines.Dispatchers;
import kotlinx.coroutines.async;
open class StartStepCountingUpdatesOptions (
open var stepCounts: Int? = null,
open var handler: (numberOfSteps: Float, timestamp: Date, error: Any) -> Unit,
) : UTSObject()
open class QueryStepCountStartingOptions (
open var start: Date? = null,
open var end: Date? = null,
open var handler: (numberOfSteps: Int, error: Any) -> Unit,
) : UTSObject()
var successHandler = fun(numberOfSteps: Float, timestamp: Date, error: Any){};
open class StepCounterSensorEventListener : SensorEventListener {
override fun onSensorChanged(event: SensorEvent): Unit {
successHandler(event.values[0], Date(), "");
}
override fun onAccuracyChanged(sensor: Sensor, param1: Int): Unit {}
}
fun startStepCountingUpdates(options: StartStepCountingUpdatesOptions) {
var stepCounterSensorEventListener = StepCounterSensorEventListener();
successHandler = options.handler;
val context = UTSAndroid.getAppContext();
if (context != null) {
val sensorManager = context.getSystemService(Context.SENSOR_SERVICE) as SensorManager;
sensorManager.unregisterListener(stepCounterSensorEventListener, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER));
sensorManager.registerListener(stepCounterSensorEventListener, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER), SensorManager.SENSOR_DELAY_NORMAL);
}
}
fun stopStepCountingUpdates() {}
fun queryStepCountStarting(options: QueryStepCountStartingOptions) {}
fun isStepCountingAvailable() {}
open class StartStepCountingUpdatesOptionsJSONObject : UTSJSONObject() {
open var stepCounts: Int? = null;
open lateinit var handler: UTSCallback;
}
open class QueryStepCountStartingOptionsJSONObject : UTSJSONObject() {
open var start: Date? = null;
open var end: Date? = null;
open lateinit var handler: UTSCallback;
}
fun startStepCountingUpdatesByJs(options: StartStepCountingUpdatesOptionsJSONObject) {
return startStepCountingUpdates(StartStepCountingUpdatesOptions(stepCounts = options.stepCounts, handler = fun(numberOfSteps: Float, timestamp: Date, error: Any): Unit {
options.handler(numberOfSteps, timestamp, error);
}
));
}
fun stopStepCountingUpdatesByJs() {
return stopStepCountingUpdates();
}
fun queryStepCountStartingByJs(options: QueryStepCountStartingOptionsJSONObject) {
return queryStepCountStarting(QueryStepCountStartingOptions(start = options.start, end = options.end, handler = fun(numberOfSteps: Int, error: Any): Unit {
options.handler(numberOfSteps, error);
}
));
}
fun isStepCountingAvailableByJs() {
return isStepCountingAvailable();
}

View File

@ -1,8 +1,8 @@
;(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/tab/office","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"生产","pagePath":"pages/tab/product","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"}],"midButton":{"width":"65px","height":"75px","text":"","iconPath":"static/tab/todo.png","iconWidth":"50px"},"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/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/product","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/task/todotask","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));
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()})}});

File diff suppressed because one or more lines are too long

View File

@ -163,14 +163,14 @@
"selectedIconPath": "/static/tab/index2.png"
},
{
"text": "办公",
"pagePath": "pages/tab/office",
"text": "任务",
"pagePath": "pages/task/todotask",
"iconPath": "/static/tab/office1.png",
"selectedIconPath": "/static/tab/office2.png"
},
{
"text": "生产",
"pagePath": "pages/tab/product",
"text": "办公",
"pagePath": "pages/tab/office",
"iconPath": "/static/tab/product1.png",
"selectedIconPath": "/static/tab/product2.png"
},
@ -181,13 +181,6 @@
"selectedIconPath": "/static/tab/user2.png"
}
],
"midButton": {
"width": "65px",
"height": "75px",
"text": "",
"iconPath": "static/tab/todo.png",
"iconWidth": "50px"
},
"selectedIndex": 0,
"shown": true
}

View File

@ -1 +1 @@
[data-v-c41e1a8c] .uni-select{border:none;padding-left:0;height:2.75rem}[data-v-c41e1a8c] .uni-select__input-placeholder{font-size:.875rem;color:#999}[data-v-c41e1a8c] .uni-icons{display:none}.logo[data-v-c41e1a8c]{padding-top:5.75rem}.logo uni-image[data-v-c41e1a8c]{width:14.84375rem;height:6.21875rem}.form[data-v-c41e1a8c]{margin-top:1.875rem}.form .box[data-v-c41e1a8c]{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-c41e1a8c]{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-c41e1a8c]{max-height:6.25rem;overflow-y:auto}.form .box .account_box .account uni-view[data-v-c41e1a8c]{padding:.3125rem}.form .box uni-image[data-v-c41e1a8c]{width:1.25rem;height:1.25rem;margin-right:.625rem}.form .box uni-input[data-v-c41e1a8c]{height:100%;flex:1}.pwd[data-v-c41e1a8c]{justify-content:flex-end;margin-top:.625rem;margin-right:1.875rem;font-size:.75rem;color:#01508b}.pwd uni-image[data-v-c41e1a8c]{width:1.0625rem;height:1.0625rem;margin-right:.125rem}.login[data-v-c41e1a8c]{margin-top:1.96875rem}.login uni-view[data-v-c41e1a8c]{width:19.6875rem;height:2.75rem;background:#4e74fb;border-radius:1.375rem;font-size:1rem;color:#fff;text-align:center;line-height:2.75rem}
[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}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.operate[data-v-6a04ee91]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-6a04ee91]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-6a04ee91]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-6a04ee91]{width:2.125rem;height:1.1875rem}.operate .left[data-v-6a04ee91]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-6a04ee91]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-6a04ee91]{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-6a04ee91]{justify-content:center;width:33.33%}.msg .box .num[data-v-6a04ee91]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-6a04ee91]{font-size:.75rem;color:#888}.msg .box[data-v-6a04ee91]:not(:last-child){position:relative}.msg .box[data-v-6a04ee91]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-6a04ee91]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-6a04ee91]{padding:4rem .9375rem 0}.nav .user .right[data-v-6a04ee91]{flex:1}.nav .user .avatar[data-v-6a04ee91]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-6a04ee91]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-6a04ee91]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-6a04ee91]{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-6a04ee91]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-6a04ee91]{width:1.3125rem;height:1.3125rem}
.operate[data-v-300a7325]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-300a7325]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-300a7325]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-300a7325]{width:2.125rem;height:1.1875rem}.operate .left[data-v-300a7325]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-300a7325]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-300a7325]{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-300a7325]{justify-content:center;width:33.33%}.msg .box .num[data-v-300a7325]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-300a7325]{font-size:.75rem;color:#888}.msg .box[data-v-300a7325]:not(:last-child){position:relative}.msg .box[data-v-300a7325]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-300a7325]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-300a7325]{padding:4rem .9375rem 0}.nav .user .right[data-v-300a7325]{flex:1}.nav .user .avatar[data-v-300a7325]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-300a7325]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-300a7325]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-300a7325]{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-300a7325]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-300a7325]{width:1.3125rem;height:1.3125rem}

View File

@ -1 +1 @@
.drag[data-v-dc6eb4fe]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;margin:.75rem .9375rem 0}.drag .title[data-v-dc6eb4fe]{font-size:.875rem;color:#333;padding:.9375rem 0 0 .9375rem}.inner uni-image[data-v-dc6eb4fe]{width:3.0625rem;height:3.0625rem;background-color:#efefef}.inner .text[data-v-dc6eb4fe]{font-size:.875rem;color:#333;margin-top:.625rem}.placeholder[data-v-dc6eb4fe]{height:var(--3924a663)}.nav[data-v-dc6eb4fe]{width:calc(100% - 1.875rem);padding:0 .9375rem;height:var(--3924a663);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-dc6eb4fe]{padding:0 .9375rem .625rem}.list[data-v-dc6eb4fe]{margin-bottom:.75rem}.list .item[data-v-dc6eb4fe]{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-dc6eb4fe]{font-size:.875rem;color:#333;padding-left:.9375rem}.list uni-image[data-v-dc6eb4fe]{width:3.0625rem;height:3.0625rem}.list .info_box[data-v-dc6eb4fe]{flex-wrap:wrap}.list .info_box .info[data-v-dc6eb4fe]{margin-top:1.25rem;width:25%}.list .info_box .info .text[data-v-dc6eb4fe]{font-size:.875rem;color:#333;margin-top:.625rem}
.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}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
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}body{background-color:#f8f8f8}
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}

View File

@ -1,73 +0,0 @@
@file:Suppress("UNCHECKED_CAST", "USELESS_CAST", "INAPPLICABLE_JVM_NAME")
package uts.sdk.modules.wuwxStepCounter;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import io.dcloud.uniapp.*;
import io.dcloud.uniapp.extapi.*;
import io.dcloud.uts.*;
import io.dcloud.uts.Map;
import io.dcloud.uts.Set;
import io.dcloud.uts.UTSAndroid;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.Deferred;
import kotlinx.coroutines.Dispatchers;
import kotlinx.coroutines.async;
open class StartStepCountingUpdatesOptions (
open var stepCounts: Int? = null,
open var handler: (numberOfSteps: Float, timestamp: Date, error: Any) -> Unit,
) : UTSObject()
open class QueryStepCountStartingOptions (
open var start: Date? = null,
open var end: Date? = null,
open var handler: (numberOfSteps: Int, error: Any) -> Unit,
) : UTSObject()
var successHandler = fun(numberOfSteps: Float, timestamp: Date, error: Any){};
open class StepCounterSensorEventListener : SensorEventListener {
override fun onSensorChanged(event: SensorEvent): Unit {
successHandler(event.values[0], Date(), "");
}
override fun onAccuracyChanged(sensor: Sensor, param1: Int): Unit {}
}
fun startStepCountingUpdates(options: StartStepCountingUpdatesOptions) {
var stepCounterSensorEventListener = StepCounterSensorEventListener();
successHandler = options.handler;
val context = UTSAndroid.getAppContext();
if (context != null) {
val sensorManager = context.getSystemService(Context.SENSOR_SERVICE) as SensorManager;
sensorManager.unregisterListener(stepCounterSensorEventListener, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER));
sensorManager.registerListener(stepCounterSensorEventListener, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER), SensorManager.SENSOR_DELAY_NORMAL);
}
}
fun stopStepCountingUpdates() {}
fun queryStepCountStarting(options: QueryStepCountStartingOptions) {}
fun isStepCountingAvailable() {}
open class StartStepCountingUpdatesOptionsJSONObject : UTSJSONObject() {
open var stepCounts: Int? = null;
open lateinit var handler: UTSCallback;
}
open class QueryStepCountStartingOptionsJSONObject : UTSJSONObject() {
open var start: Date? = null;
open var end: Date? = null;
open lateinit var handler: UTSCallback;
}
fun startStepCountingUpdatesByJs(options: StartStepCountingUpdatesOptionsJSONObject) {
return startStepCountingUpdates(StartStepCountingUpdatesOptions(stepCounts = options.stepCounts, handler = fun(numberOfSteps: Float, timestamp: Date, error: Any): Unit {
options.handler(numberOfSteps, timestamp, error);
}
));
}
fun stopStepCountingUpdatesByJs() {
return stopStepCountingUpdates();
}
fun queryStepCountStartingByJs(options: QueryStepCountStartingOptionsJSONObject) {
return queryStepCountStarting(QueryStepCountStartingOptions(start = options.start, end = options.end, handler = fun(numberOfSteps: Int, error: Any): Unit {
options.handler(numberOfSteps, error);
}
));
}
fun isStepCountingAvailableByJs() {
return isStepCountingAvailable();
}

View File

@ -1,8 +1,8 @@
;(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/tab/office","iconPath":"/static/tab/office1.png","selectedIconPath":"/static/tab/office2.png"},{"text":"生产","pagePath":"pages/tab/product","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"}],"midButton":{"width":"65px","height":"75px","text":"","iconPath":"static/tab/todo.png","iconWidth":"50px"},"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/tab/office","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/tab/product","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/task/todotask","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));
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()})}});

File diff suppressed because it is too large Load Diff

View File

@ -163,14 +163,14 @@
"selectedIconPath": "/static/tab/index2.png"
},
{
"text": "办公",
"pagePath": "pages/tab/office",
"text": "任务",
"pagePath": "pages/task/todotask",
"iconPath": "/static/tab/office1.png",
"selectedIconPath": "/static/tab/office2.png"
},
{
"text": "生产",
"pagePath": "pages/tab/product",
"text": "办公",
"pagePath": "pages/tab/office",
"iconPath": "/static/tab/product1.png",
"selectedIconPath": "/static/tab/product2.png"
},

View File

@ -1,721 +0,0 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.uniui-cart-filled[data-v-d31e1c47]:before {
content: "\e6d0";
}
.uniui-gift-filled[data-v-d31e1c47]:before {
content: "\e6c4";
}
.uniui-color[data-v-d31e1c47]:before {
content: "\e6cf";
}
.uniui-wallet[data-v-d31e1c47]:before {
content: "\e6b1";
}
.uniui-settings-filled[data-v-d31e1c47]:before {
content: "\e6ce";
}
.uniui-auth-filled[data-v-d31e1c47]:before {
content: "\e6cc";
}
.uniui-shop-filled[data-v-d31e1c47]:before {
content: "\e6cd";
}
.uniui-staff-filled[data-v-d31e1c47]:before {
content: "\e6cb";
}
.uniui-vip-filled[data-v-d31e1c47]:before {
content: "\e6c6";
}
.uniui-plus-filled[data-v-d31e1c47]:before {
content: "\e6c7";
}
.uniui-folder-add-filled[data-v-d31e1c47]:before {
content: "\e6c8";
}
.uniui-color-filled[data-v-d31e1c47]:before {
content: "\e6c9";
}
.uniui-tune-filled[data-v-d31e1c47]:before {
content: "\e6ca";
}
.uniui-calendar-filled[data-v-d31e1c47]:before {
content: "\e6c0";
}
.uniui-notification-filled[data-v-d31e1c47]:before {
content: "\e6c1";
}
.uniui-wallet-filled[data-v-d31e1c47]:before {
content: "\e6c2";
}
.uniui-medal-filled[data-v-d31e1c47]:before {
content: "\e6c3";
}
.uniui-fire-filled[data-v-d31e1c47]:before {
content: "\e6c5";
}
.uniui-refreshempty[data-v-d31e1c47]:before {
content: "\e6bf";
}
.uniui-location-filled[data-v-d31e1c47]:before {
content: "\e6af";
}
.uniui-person-filled[data-v-d31e1c47]:before {
content: "\e69d";
}
.uniui-personadd-filled[data-v-d31e1c47]:before {
content: "\e698";
}
.uniui-arrowthinleft[data-v-d31e1c47]:before {
content: "\e6d2";
}
.uniui-arrowthinup[data-v-d31e1c47]:before {
content: "\e6d3";
}
.uniui-arrowthindown[data-v-d31e1c47]:before {
content: "\e6d4";
}
.uniui-back[data-v-d31e1c47]:before {
content: "\e6b9";
}
.uniui-forward[data-v-d31e1c47]:before {
content: "\e6ba";
}
.uniui-arrow-right[data-v-d31e1c47]:before {
content: "\e6bb";
}
.uniui-arrow-left[data-v-d31e1c47]:before {
content: "\e6bc";
}
.uniui-arrow-up[data-v-d31e1c47]:before {
content: "\e6bd";
}
.uniui-arrow-down[data-v-d31e1c47]:before {
content: "\e6be";
}
.uniui-arrowthinright[data-v-d31e1c47]:before {
content: "\e6d1";
}
.uniui-down[data-v-d31e1c47]:before {
content: "\e6b8";
}
.uniui-bottom[data-v-d31e1c47]:before {
content: "\e6b8";
}
.uniui-arrowright[data-v-d31e1c47]:before {
content: "\e6d5";
}
.uniui-right[data-v-d31e1c47]:before {
content: "\e6b5";
}
.uniui-up[data-v-d31e1c47]:before {
content: "\e6b6";
}
.uniui-top[data-v-d31e1c47]:before {
content: "\e6b6";
}
.uniui-left[data-v-d31e1c47]:before {
content: "\e6b7";
}
.uniui-arrowup[data-v-d31e1c47]:before {
content: "\e6d6";
}
.uniui-eye[data-v-d31e1c47]:before {
content: "\e651";
}
.uniui-eye-filled[data-v-d31e1c47]:before {
content: "\e66a";
}
.uniui-eye-slash[data-v-d31e1c47]:before {
content: "\e6b3";
}
.uniui-eye-slash-filled[data-v-d31e1c47]:before {
content: "\e6b4";
}
.uniui-info-filled[data-v-d31e1c47]:before {
content: "\e649";
}
.uniui-reload[data-v-d31e1c47]:before {
content: "\e6b2";
}
.uniui-micoff-filled[data-v-d31e1c47]:before {
content: "\e6b0";
}
.uniui-map-pin-ellipse[data-v-d31e1c47]:before {
content: "\e6ac";
}
.uniui-map-pin[data-v-d31e1c47]:before {
content: "\e6ad";
}
.uniui-location[data-v-d31e1c47]:before {
content: "\e6ae";
}
.uniui-starhalf[data-v-d31e1c47]:before {
content: "\e683";
}
.uniui-star[data-v-d31e1c47]:before {
content: "\e688";
}
.uniui-star-filled[data-v-d31e1c47]:before {
content: "\e68f";
}
.uniui-calendar[data-v-d31e1c47]:before {
content: "\e6a0";
}
.uniui-fire[data-v-d31e1c47]:before {
content: "\e6a1";
}
.uniui-medal[data-v-d31e1c47]:before {
content: "\e6a2";
}
.uniui-font[data-v-d31e1c47]:before {
content: "\e6a3";
}
.uniui-gift[data-v-d31e1c47]:before {
content: "\e6a4";
}
.uniui-link[data-v-d31e1c47]:before {
content: "\e6a5";
}
.uniui-notification[data-v-d31e1c47]:before {
content: "\e6a6";
}
.uniui-staff[data-v-d31e1c47]:before {
content: "\e6a7";
}
.uniui-vip[data-v-d31e1c47]:before {
content: "\e6a8";
}
.uniui-folder-add[data-v-d31e1c47]:before {
content: "\e6a9";
}
.uniui-tune[data-v-d31e1c47]:before {
content: "\e6aa";
}
.uniui-auth[data-v-d31e1c47]:before {
content: "\e6ab";
}
.uniui-person[data-v-d31e1c47]:before {
content: "\e699";
}
.uniui-email-filled[data-v-d31e1c47]:before {
content: "\e69a";
}
.uniui-phone-filled[data-v-d31e1c47]:before {
content: "\e69b";
}
.uniui-phone[data-v-d31e1c47]:before {
content: "\e69c";
}
.uniui-email[data-v-d31e1c47]:before {
content: "\e69e";
}
.uniui-personadd[data-v-d31e1c47]:before {
content: "\e69f";
}
.uniui-chatboxes-filled[data-v-d31e1c47]:before {
content: "\e692";
}
.uniui-contact[data-v-d31e1c47]:before {
content: "\e693";
}
.uniui-chatbubble-filled[data-v-d31e1c47]:before {
content: "\e694";
}
.uniui-contact-filled[data-v-d31e1c47]:before {
content: "\e695";
}
.uniui-chatboxes[data-v-d31e1c47]:before {
content: "\e696";
}
.uniui-chatbubble[data-v-d31e1c47]:before {
content: "\e697";
}
.uniui-upload-filled[data-v-d31e1c47]:before {
content: "\e68e";
}
.uniui-upload[data-v-d31e1c47]:before {
content: "\e690";
}
.uniui-weixin[data-v-d31e1c47]:before {
content: "\e691";
}
.uniui-compose[data-v-d31e1c47]:before {
content: "\e67f";
}
.uniui-qq[data-v-d31e1c47]:before {
content: "\e680";
}
.uniui-download-filled[data-v-d31e1c47]:before {
content: "\e681";
}
.uniui-pyq[data-v-d31e1c47]:before {
content: "\e682";
}
.uniui-sound[data-v-d31e1c47]:before {
content: "\e684";
}
.uniui-trash-filled[data-v-d31e1c47]:before {
content: "\e685";
}
.uniui-sound-filled[data-v-d31e1c47]:before {
content: "\e686";
}
.uniui-trash[data-v-d31e1c47]:before {
content: "\e687";
}
.uniui-videocam-filled[data-v-d31e1c47]:before {
content: "\e689";
}
.uniui-spinner-cycle[data-v-d31e1c47]:before {
content: "\e68a";
}
.uniui-weibo[data-v-d31e1c47]:before {
content: "\e68b";
}
.uniui-videocam[data-v-d31e1c47]:before {
content: "\e68c";
}
.uniui-download[data-v-d31e1c47]:before {
content: "\e68d";
}
.uniui-help[data-v-d31e1c47]:before {
content: "\e679";
}
.uniui-navigate-filled[data-v-d31e1c47]:before {
content: "\e67a";
}
.uniui-plusempty[data-v-d31e1c47]:before {
content: "\e67b";
}
.uniui-smallcircle[data-v-d31e1c47]:before {
content: "\e67c";
}
.uniui-minus-filled[data-v-d31e1c47]:before {
content: "\e67d";
}
.uniui-micoff[data-v-d31e1c47]:before {
content: "\e67e";
}
.uniui-closeempty[data-v-d31e1c47]:before {
content: "\e66c";
}
.uniui-clear[data-v-d31e1c47]:before {
content: "\e66d";
}
.uniui-navigate[data-v-d31e1c47]:before {
content: "\e66e";
}
.uniui-minus[data-v-d31e1c47]:before {
content: "\e66f";
}
.uniui-image[data-v-d31e1c47]:before {
content: "\e670";
}
.uniui-mic[data-v-d31e1c47]:before {
content: "\e671";
}
.uniui-paperplane[data-v-d31e1c47]:before {
content: "\e672";
}
.uniui-close[data-v-d31e1c47]:before {
content: "\e673";
}
.uniui-help-filled[data-v-d31e1c47]:before {
content: "\e674";
}
.uniui-paperplane-filled[data-v-d31e1c47]:before {
content: "\e675";
}
.uniui-plus[data-v-d31e1c47]:before {
content: "\e676";
}
.uniui-mic-filled[data-v-d31e1c47]:before {
content: "\e677";
}
.uniui-image-filled[data-v-d31e1c47]:before {
content: "\e678";
}
.uniui-locked-filled[data-v-d31e1c47]:before {
content: "\e668";
}
.uniui-info[data-v-d31e1c47]:before {
content: "\e669";
}
.uniui-locked[data-v-d31e1c47]:before {
content: "\e66b";
}
.uniui-camera-filled[data-v-d31e1c47]:before {
content: "\e658";
}
.uniui-chat-filled[data-v-d31e1c47]:before {
content: "\e659";
}
.uniui-camera[data-v-d31e1c47]:before {
content: "\e65a";
}
.uniui-circle[data-v-d31e1c47]:before {
content: "\e65b";
}
.uniui-checkmarkempty[data-v-d31e1c47]:before {
content: "\e65c";
}
.uniui-chat[data-v-d31e1c47]:before {
content: "\e65d";
}
.uniui-circle-filled[data-v-d31e1c47]:before {
content: "\e65e";
}
.uniui-flag[data-v-d31e1c47]:before {
content: "\e65f";
}
.uniui-flag-filled[data-v-d31e1c47]:before {
content: "\e660";
}
.uniui-gear-filled[data-v-d31e1c47]:before {
content: "\e661";
}
.uniui-home[data-v-d31e1c47]:before {
content: "\e662";
}
.uniui-home-filled[data-v-d31e1c47]:before {
content: "\e663";
}
.uniui-gear[data-v-d31e1c47]:before {
content: "\e664";
}
.uniui-smallcircle-filled[data-v-d31e1c47]:before {
content: "\e665";
}
.uniui-map-filled[data-v-d31e1c47]:before {
content: "\e666";
}
.uniui-map[data-v-d31e1c47]:before {
content: "\e667";
}
.uniui-refresh-filled[data-v-d31e1c47]:before {
content: "\e656";
}
.uniui-refresh[data-v-d31e1c47]:before {
content: "\e657";
}
.uniui-cloud-upload[data-v-d31e1c47]:before {
content: "\e645";
}
.uniui-cloud-download-filled[data-v-d31e1c47]:before {
content: "\e646";
}
.uniui-cloud-download[data-v-d31e1c47]:before {
content: "\e647";
}
.uniui-cloud-upload-filled[data-v-d31e1c47]:before {
content: "\e648";
}
.uniui-redo[data-v-d31e1c47]:before {
content: "\e64a";
}
.uniui-images-filled[data-v-d31e1c47]:before {
content: "\e64b";
}
.uniui-undo-filled[data-v-d31e1c47]:before {
content: "\e64c";
}
.uniui-more[data-v-d31e1c47]:before {
content: "\e64d";
}
.uniui-more-filled[data-v-d31e1c47]:before {
content: "\e64e";
}
.uniui-undo[data-v-d31e1c47]:before {
content: "\e64f";
}
.uniui-images[data-v-d31e1c47]:before {
content: "\e650";
}
.uniui-paperclip[data-v-d31e1c47]:before {
content: "\e652";
}
.uniui-settings[data-v-d31e1c47]:before {
content: "\e653";
}
.uniui-search[data-v-d31e1c47]:before {
content: "\e654";
}
.uniui-redo-filled[data-v-d31e1c47]:before {
content: "\e655";
}
.uniui-list[data-v-d31e1c47]:before {
content: "\e644";
}
.uniui-mail-open-filled[data-v-d31e1c47]:before {
content: "\e63a";
}
.uniui-hand-down-filled[data-v-d31e1c47]:before {
content: "\e63c";
}
.uniui-hand-down[data-v-d31e1c47]:before {
content: "\e63d";
}
.uniui-hand-up-filled[data-v-d31e1c47]:before {
content: "\e63e";
}
.uniui-hand-up[data-v-d31e1c47]:before {
content: "\e63f";
}
.uniui-heart-filled[data-v-d31e1c47]:before {
content: "\e641";
}
.uniui-mail-open[data-v-d31e1c47]:before {
content: "\e643";
}
.uniui-heart[data-v-d31e1c47]:before {
content: "\e639";
}
.uniui-loop[data-v-d31e1c47]:before {
content: "\e633";
}
.uniui-pulldown[data-v-d31e1c47]:before {
content: "\e632";
}
.uniui-scan[data-v-d31e1c47]:before {
content: "\e62a";
}
.uniui-bars[data-v-d31e1c47]:before {
content: "\e627";
}
.uniui-checkbox[data-v-d31e1c47]:before {
content: "\e62b";
}
.uniui-checkbox-filled[data-v-d31e1c47]:before {
content: "\e62c";
}
.uniui-shop[data-v-d31e1c47]:before {
content: "\e62f";
}
.uniui-headphones[data-v-d31e1c47]:before {
content: "\e630";
}
.uniui-cart[data-v-d31e1c47]:before {
content: "\e631";
}
@font-face {
font-family: uniicons;
src: url("../../assets/uniicons.32e978a5.ttf");
}
.uni-icons[data-v-d31e1c47] {
font-family: uniicons;
text-decoration: none;
text-align: center;
}
body[data-v-92a54120] {
background-color: #F8F8F8;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.data_wrapper[data-v-92a54120] {
height: 9rem;
transition: all 0.3s;
overflow: hidden;
}
.close[data-v-92a54120] {
height: var(--92a54120-moreHeight);
}
.info .item_box .item[data-v-92a54120] {
width: 21.5625rem;
background: #FFFFFF;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
padding: 0.9375rem 0;
margin-top: 0.75rem;
}
.info .item_box .item .title_box[data-v-92a54120] {
padding: 0 0.9375rem;
margin-bottom: -0.625rem;
}
.info .item_box .item .title[data-v-92a54120] {
font-size: 0.875rem;
color: #333333;
background-image: url("../../static/index/line.png");
background-size: 1.375rem 0.40625rem;
background-repeat: no-repeat;
background-position: left bottom;
}
.info .item_box .item .more[data-v-92a54120] {
font-size: 0.75rem;
color: #999999;
}
.info .item_box .item .more uni-text[data-v-92a54120] {
margin-right: 0.1875rem;
}
.info .item_box .item .data_box[data-v-92a54120] {
flex-wrap: wrap;
}
.info .item_box .item .data_box .data[data-v-92a54120] {
width: 33.33%;
margin-top: 1.875rem;
height: 2.5rem;
}
.info .item_box .item .data_box .data uni-view[data-v-92a54120] {
font-size: 1rem;
color: #333333;
margin-bottom: 0.25rem;
}
.info .item_box .item .data_box .data uni-text[data-v-92a54120] {
font-size: 0.75rem;
color: #333333;
}
body {
background-color: #F8F8F8;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.nav[data-v-6ccf0546] {
width: calc(100% - 1.875rem);
padding: 0 0.9375rem;
height: var(--6ccf0546-cusnavbarheight);
font-size: 0.75rem;
color: #FFFFFF;
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-6ccf0546] {
padding: var(--6ccf0546-cusnavbarheight) 0 1.3125rem 0;
}
.info .item_box .item[data-v-6ccf0546] {
width: 21.5625rem;
background: #FFFFFF;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
padding: 0.9375rem 0;
margin-top: 0.75rem;
}
.info .item_box .item .title_box[data-v-6ccf0546] {
padding: 0 0.9375rem;
margin-bottom: -0.625rem;
}
.info .item_box .item .title[data-v-6ccf0546] {
font-size: 0.875rem;
color: #333333;
background-image: url("../../static/index/line.png");
background-size: 1.375rem 0.40625rem;
background-repeat: no-repeat;
background-position: left bottom;
}
.info .item_box .item .more[data-v-6ccf0546] {
font-size: 0.75rem;
color: #999999;
}
.info .item_box .item .more uni-text[data-v-6ccf0546] {
margin-right: 0.1875rem;
}
.info .item_box .item .data_box[data-v-6ccf0546] {
flex-wrap: wrap;
}
.info .item_box .item .data_box .data[data-v-6ccf0546] {
width: 33.33%;
margin-top: 1.875rem;
}
.info .item_box .item .data_box uni-view[data-v-6ccf0546] {
font-size: 1rem;
color: #333333;
margin-bottom: 0.25rem;
}
.info .item_box .item .data_box uni-text[data-v-6ccf0546] {
font-size: 0.75rem;
color: #333333;
}
.info .item_box .item .other[data-v-6ccf0546] {
margin-bottom: -0.3125rem;
}
.info .item_box .item .other_box[data-v-6ccf0546] {
flex-wrap: wrap;
}
.info .item_box .item .other_box .data[data-v-6ccf0546] {
width: 25%;
margin-top: 1.25rem;
font-size: 0.875rem;
color: #333333;
}
.info .item_box .item .other_box .data uni-image[data-v-6ccf0546] {
width: 3.0625rem;
height: 3.0625rem;
margin-bottom: 0.625rem;
}

View File

@ -99,7 +99,100 @@ body[data-v-e40cd242] {
text-decoration: underline;
margin-top: 0.625rem;
}
body {
background-color: #F8F8F8;
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.drag[data-v-fc853b6f] {
background: #FFFFFF;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
margin: 0.75rem 0.9375rem 0 0.9375rem;
}
.drag .title[data-v-fc853b6f] {
font-size: 0.875rem;
color: #333333;
padding: 0.9375rem 0 0 0.9375rem;
}
.inner uni-image[data-v-fc853b6f] {
width: 3.0625rem;
height: 3.0625rem;
background-color: #efefef;
}
.inner .text[data-v-fc853b6f] {
font-size: 0.875rem;
color: #333333;
margin-top: 0.625rem;
}
.placeholder[data-v-fc853b6f] {
height: var(--fc853b6f-cusnavbarheight);
}
.nav[data-v-fc853b6f] {
width: calc(100% - 1.875rem);
padding: 0 0.9375rem;
height: var(--fc853b6f-cusnavbarheight);
font-size: 0.75rem;
color: #FFFFFF;
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-fc853b6f] {
padding: 0 0.9375rem 0.625rem 0.9375rem;
}
.list[data-v-fc853b6f] {
margin-bottom: 0.75rem;
}
.list .item[data-v-fc853b6f] {
background: #FFFFFF;
box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
padding: 0.9375rem 0;
margin-top: 0.75rem;
}
.list .item .title[data-v-fc853b6f] {
font-size: 0.875rem;
color: #333333;
padding-left: 0.9375rem;
}
.list uni-image[data-v-fc853b6f] {
width: 3.0625rem;
height: 3.0625rem;
}
.list .info_box[data-v-fc853b6f] {
flex-wrap: wrap;
}
.list .info_box .info[data-v-fc853b6f] {
margin-top: 1.25rem;
width: 25%;
}
.list .info_box .info .text[data-v-fc853b6f] {
font-size: 0.875rem;
color: #333333;
margin-top: 0.625rem;
}