1
This commit is contained in:
parent
4bf243f42b
commit
6308621789
@ -1,3 +1,3 @@
|
|||||||
# 开发环境
|
# 开发环境
|
||||||
# 请求接口地址
|
# 请求接口地址
|
||||||
VITE_REQUEST_BASE_URL = http://10.75.166.174:8080
|
VITE_REQUEST_BASE_URL = https://36.112.48.190
|
||||||
|
@ -59,16 +59,13 @@
|
|||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// selfArrquery: {
|
|
||||||
// type: Array,
|
|
||||||
// default: function() {
|
|
||||||
// return []
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
|
|
||||||
total: {
|
total: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0
|
default: 0
|
||||||
|
},
|
||||||
|
type:{
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
const open = ref(false)
|
const open = ref(false)
|
||||||
@ -89,13 +86,13 @@
|
|||||||
let id = null
|
let id = null
|
||||||
beforeJump('/pages/task/index', () => {
|
beforeJump('/pages/task/index', () => {
|
||||||
|
|
||||||
if (props.title == '待办事项') {
|
if (props.type == '0') {
|
||||||
id = 0
|
id = 0
|
||||||
}
|
}
|
||||||
if (props.title == '已办事项') {
|
if (props.type == '1') {
|
||||||
id = 1
|
id = 1
|
||||||
}
|
}
|
||||||
if (props.title == '本人发起') {
|
if (props.type == '2') {
|
||||||
return uni.navigateTo({
|
return uni.navigateTo({
|
||||||
url: `/pages/task/self?title=${title}`
|
url: `/pages/task/self?title=${title}`
|
||||||
})
|
})
|
||||||
|
@ -88,17 +88,17 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
/*生产环境 begin */
|
/*生产环境 begin */
|
||||||
// loginApi({
|
loginApi({
|
||||||
// username: un,
|
username: un,
|
||||||
// password: pw,
|
password: pw,
|
||||||
// ip: getDeviceIp()
|
ip: getDeviceIp()
|
||||||
/*生产环境 end */
|
/*生产环境 end */
|
||||||
|
|
||||||
/*开发环境 begin */
|
/*开发环境 begin */
|
||||||
localLoginApi({
|
// localLoginApi({
|
||||||
username: username.value,
|
// username: username.value,
|
||||||
password: password.value,
|
// password: password.value,
|
||||||
captcha: 'app'
|
// captcha: 'app'
|
||||||
/*开发环境 end */
|
/*开发环境 end */
|
||||||
}).then((loginres) => {
|
}).then((loginres) => {
|
||||||
if (loginres.success) {
|
if (loginres.success) {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<view :class="['content',{'gray':store.isgray==1}]">
|
<view :class="['content',{'gray':store.isgray==1}]">
|
||||||
<extendCom title="我的任务" img="process" :list="todoArr" :total="todoTotal"></extendCom>
|
<extendCom title="我的任务" img="process" :list="todoArr" :total="todoTotal" type="0"></extendCom>
|
||||||
<extendCom title="历史任务" img="done" :list="doneArr" :total="doneTotal"></extendCom>
|
<extendCom title="历史任务" img="done" :list="doneArr" :total="doneTotal" type="1"></extendCom>
|
||||||
<extendCom title="我发起流程" img="self" :list="selfArr" :total="selfTotal"></extendCom>
|
<extendCom title="我发起流程" img="self" :list="selfArr" :total="selfTotal" type="2"></extendCom>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
;(function(){
|
;(function(){
|
||||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
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 __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 __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));
|
||||||
__uniConfig.styles=[];//styles
|
__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.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()})}});
|
__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
@ -1 +1 @@
|
|||||||
.operate[data-v-41cd4ade]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-41cd4ade]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-41cd4ade]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-41cd4ade]{width:2.125rem;height:1.1875rem}.operate .left[data-v-41cd4ade]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-41cd4ade]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-41cd4ade]{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-41cd4ade]{justify-content:center;width:33.33%}.msg .box .num[data-v-41cd4ade]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-41cd4ade]{font-size:.75rem;color:#888}.msg .box[data-v-41cd4ade]:not(:last-child){position:relative}.msg .box[data-v-41cd4ade]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-41cd4ade]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-41cd4ade]{padding:4rem .9375rem 0}.nav .user .right[data-v-41cd4ade]{flex:1}.nav .user .avatar[data-v-41cd4ade]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-41cd4ade]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-41cd4ade]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-41cd4ade]{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-41cd4ade]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-41cd4ade]{width:1.3125rem;height:1.3125rem}
|
.operate[data-v-53e3bc70]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-53e3bc70]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-53e3bc70]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-53e3bc70]{width:2.125rem;height:1.1875rem}.operate .left[data-v-53e3bc70]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-53e3bc70]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-53e3bc70]{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-53e3bc70]{justify-content:center;width:33.33%}.msg .box .num[data-v-53e3bc70]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-53e3bc70]{font-size:.75rem;color:#888}.msg .box[data-v-53e3bc70]:not(:last-child){position:relative}.msg .box[data-v-53e3bc70]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-53e3bc70]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-53e3bc70]{padding:4rem .9375rem 0}.nav .user .right[data-v-53e3bc70]{flex:1}.nav .user .avatar[data-v-53e3bc70]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-53e3bc70]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-53e3bc70]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-53e3bc70]{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-53e3bc70]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-53e3bc70]{width:1.3125rem;height:1.3125rem}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
.list_box[data-v-31891b43]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-31891b43]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-31891b43]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-31891b43]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-31891b43]{font-size:.875rem;color:#999}.list_box .list .info[data-v-31891b43]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-31891b43]{padding-top:.5rem}.list_box .list .btn[data-v-31891b43]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-31891b43]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-31891b43]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-31891b43]{background:#01508b;color:#fff}body{background-color:#f8f8f8}.tasklist[data-v-965734c1]{padding-top:3.125rem}.nav[data-v-965734c1]{background-color:#fff;height:3.125rem;width:100vw;position:fixed;top:0;left:0;z-index:99}.nav .tab_box[data-v-965734c1]{padding:.75rem 0}.nav .tab_box uni-view[data-v-965734c1]{position:relative;font-size:.875rem;color:#666}.nav .tab_box .active[data-v-965734c1]{font-size:.875rem;color:#01508b}.nav .tab_box .active[data-v-965734c1]:after{position:absolute;width:7.1875rem;height:.0625rem;background:#01508b;content:" ";bottom:-.6875rem;left:50%;transform:translate(-50%)}.nav .time_box[data-v-965734c1]{padding:.625rem 0}.nav .time_box .time[data-v-965734c1]{padding:0 .9375rem;width:19.6875rem;height:2.25rem;background:#f8f8f8;border-radius:.25rem}.nav .time_box .time uni-image[data-v-965734c1]{width:1.0625rem;height:1.0625rem}
|
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}body{background-color:#f8f8f8}.tasklist[data-v-965734c1]{padding-top:3.125rem}.nav[data-v-965734c1]{background-color:#fff;height:3.125rem;width:100vw;position:fixed;top:0;left:0;z-index:99}.nav .tab_box[data-v-965734c1]{padding:.75rem 0}.nav .tab_box uni-view[data-v-965734c1]{position:relative;font-size:.875rem;color:#666}.nav .tab_box .active[data-v-965734c1]{font-size:.875rem;color:#01508b}.nav .tab_box .active[data-v-965734c1]:after{position:absolute;width:7.1875rem;height:.0625rem;background:#01508b;content:" ";bottom:-.6875rem;left:50%;transform:translate(-50%)}.nav .time_box[data-v-965734c1]{padding:.625rem 0}.nav .time_box .time[data-v-965734c1]{padding:0 .9375rem;width:19.6875rem;height:2.25rem;background:#f8f8f8;border-radius:.25rem}.nav .time_box .time uni-image[data-v-965734c1]{width:1.0625rem;height:1.0625rem}
|
||||||
|
@ -1 +1 @@
|
|||||||
.list_box[data-v-31891b43]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-31891b43]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-31891b43]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-31891b43]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-31891b43]{font-size:.875rem;color:#999}.list_box .list .info[data-v-31891b43]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-31891b43]{padding-top:.5rem}.list_box .list .btn[data-v-31891b43]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-31891b43]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-31891b43]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-31891b43]{background:#01508b;color:#fff}
|
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}
|
||||||
|
@ -1 +1 @@
|
|||||||
body[data-v-10bcc98c]{background-color:#f8f8f8}.content[data-v-10bcc98c]{padding-top:.9375rem}.todo .title_box[data-v-10bcc98c]{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-10bcc98c]{font-weight:500;font-size:1rem;color:#333}.todo .title_box .title uni-image[data-v-10bcc98c]{width:1.5rem;height:1.5rem}.todo .title_box .num[data-v-10bcc98c]{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-10bcc98c]{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-10bcc98c]{max-height:3.75rem;transition:all .3s;overflow:hidden}.todo .list .box .item_box[data-v-10bcc98c]{display:flex;flex-wrap:wrap}.todo .list .box .item[data-v-10bcc98c]{font-size:.875rem;height:1.875rem;width:50%}.todo .list .box .item uni-view[data-v-10bcc98c]{color:#666;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.todo .list .box .item uni-text[data-v-10bcc98c]{color:#ed361d;margin:0 .3125rem}.todo .list .close[data-v-10bcc98c]{max-height:var(--02538693)}.todo .list .more[data-v-10bcc98c]{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}body{background-color:#f8f8f8}
|
||||||
|
BIN
unpackage/cache/wgt/__UNI__F0AFD30/static/my/process.png
vendored
Normal file
BIN
unpackage/cache/wgt/__UNI__F0AFD30/static/my/process.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
@ -2,7 +2,7 @@
|
|||||||
;(function(){
|
;(function(){
|
||||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
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 __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 __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));
|
||||||
__uniConfig.styles=[];//styles
|
__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.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()})}});
|
__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()})}});
|
||||||
|
2
unpackage/dist/build/app-plus/app-service.js
vendored
2
unpackage/dist/build/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
.operate[data-v-41cd4ade]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-41cd4ade]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-41cd4ade]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-41cd4ade]{width:2.125rem;height:1.1875rem}.operate .left[data-v-41cd4ade]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-41cd4ade]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-41cd4ade]{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-41cd4ade]{justify-content:center;width:33.33%}.msg .box .num[data-v-41cd4ade]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-41cd4ade]{font-size:.75rem;color:#888}.msg .box[data-v-41cd4ade]:not(:last-child){position:relative}.msg .box[data-v-41cd4ade]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-41cd4ade]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-41cd4ade]{padding:4rem .9375rem 0}.nav .user .right[data-v-41cd4ade]{flex:1}.nav .user .avatar[data-v-41cd4ade]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-41cd4ade]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-41cd4ade]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-41cd4ade]{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-41cd4ade]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-41cd4ade]{width:1.3125rem;height:1.3125rem}
|
.operate[data-v-53e3bc70]{padding:0 .9375rem;transform:translateY(-.3125rem)}.operate .item[data-v-53e3bc70]{height:3.25rem;border-bottom:1px solid #EFEFEF}.operate .item .version[data-v-53e3bc70]{font-size:.75rem;color:#888}.operate .switch uni-image[data-v-53e3bc70]{width:2.125rem;height:1.1875rem}.operate .left[data-v-53e3bc70]{font-size:.875rem;color:#333}.operate .left uni-image[data-v-53e3bc70]{width:1.375rem;height:1.375rem;margin-right:.9375rem}.msg[data-v-53e3bc70]{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-53e3bc70]{justify-content:center;width:33.33%}.msg .box .num[data-v-53e3bc70]{font-size:1rem;color:#333;margin-bottom:.125rem}.msg .box uni-text[data-v-53e3bc70]{font-size:.75rem;color:#888}.msg .box[data-v-53e3bc70]:not(:last-child){position:relative}.msg .box[data-v-53e3bc70]:not(:last-child):after{content:" ";width:.03125rem;height:1rem;background:#d8d8d8;position:absolute;right:0;top:50%;transform:translateY(-50%)}.nav[data-v-53e3bc70]{height:14.3125rem;background-image:url(../../static/my/navbg.png);background-size:23.4375rem 14.3125rem}.nav .user[data-v-53e3bc70]{padding:4rem .9375rem 0}.nav .user .right[data-v-53e3bc70]{flex:1}.nav .user .avatar[data-v-53e3bc70]{margin-right:.75rem}.nav .user .avatar uni-image[data-v-53e3bc70]{width:3.4375rem;height:3.4375rem;border-radius:50%;background-color:#fff}.nav .user .name_job .name[data-v-53e3bc70]{font-size:1.125rem;color:#333}.nav .user .name_job .status[data-v-53e3bc70]{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-53e3bc70]{font-size:.75rem;color:#666;margin-top:.1875rem}.nav .user .shezhi uni-image[data-v-53e3bc70]{width:1.3125rem;height:1.3125rem}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
.list_box[data-v-31891b43]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-31891b43]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-31891b43]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-31891b43]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-31891b43]{font-size:.875rem;color:#999}.list_box .list .info[data-v-31891b43]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-31891b43]{padding-top:.5rem}.list_box .list .btn[data-v-31891b43]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-31891b43]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-31891b43]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-31891b43]{background:#01508b;color:#fff}body{background-color:#f8f8f8}.tasklist[data-v-965734c1]{padding-top:3.125rem}.nav[data-v-965734c1]{background-color:#fff;height:3.125rem;width:100vw;position:fixed;top:0;left:0;z-index:99}.nav .tab_box[data-v-965734c1]{padding:.75rem 0}.nav .tab_box uni-view[data-v-965734c1]{position:relative;font-size:.875rem;color:#666}.nav .tab_box .active[data-v-965734c1]{font-size:.875rem;color:#01508b}.nav .tab_box .active[data-v-965734c1]:after{position:absolute;width:7.1875rem;height:.0625rem;background:#01508b;content:" ";bottom:-.6875rem;left:50%;transform:translate(-50%)}.nav .time_box[data-v-965734c1]{padding:.625rem 0}.nav .time_box .time[data-v-965734c1]{padding:0 .9375rem;width:19.6875rem;height:2.25rem;background:#f8f8f8;border-radius:.25rem}.nav .time_box .time uni-image[data-v-965734c1]{width:1.0625rem;height:1.0625rem}
|
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}body{background-color:#f8f8f8}.tasklist[data-v-965734c1]{padding-top:3.125rem}.nav[data-v-965734c1]{background-color:#fff;height:3.125rem;width:100vw;position:fixed;top:0;left:0;z-index:99}.nav .tab_box[data-v-965734c1]{padding:.75rem 0}.nav .tab_box uni-view[data-v-965734c1]{position:relative;font-size:.875rem;color:#666}.nav .tab_box .active[data-v-965734c1]{font-size:.875rem;color:#01508b}.nav .tab_box .active[data-v-965734c1]:after{position:absolute;width:7.1875rem;height:.0625rem;background:#01508b;content:" ";bottom:-.6875rem;left:50%;transform:translate(-50%)}.nav .time_box[data-v-965734c1]{padding:.625rem 0}.nav .time_box .time[data-v-965734c1]{padding:0 .9375rem;width:19.6875rem;height:2.25rem;background:#f8f8f8;border-radius:.25rem}.nav .time_box .time uni-image[data-v-965734c1]{width:1.0625rem;height:1.0625rem}
|
||||||
|
@ -1 +1 @@
|
|||||||
.list_box[data-v-31891b43]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-31891b43]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-31891b43]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-31891b43]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-31891b43]{font-size:.875rem;color:#999}.list_box .list .info[data-v-31891b43]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-31891b43]{padding-top:.5rem}.list_box .list .btn[data-v-31891b43]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-31891b43]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-31891b43]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-31891b43]{background:#01508b;color:#fff}
|
.list_box[data-v-3868ba91]{padding:0 .9375rem;margin-top:.75rem}.list_box .list[data-v-3868ba91]{background:#fff;box-shadow:0 .0625rem .125rem rgba(0,0,0,.5);border-radius:.5rem;padding:.9375rem;margin-bottom:.9375rem}.list_box .list .title[data-v-3868ba91]{border-bottom:1px solid #efefef;padding-bottom:.75rem;margin-bottom:.25rem}.list_box .list .title uni-view[data-v-3868ba91]{font-size:.875rem;color:#333}.list_box .list .title uni-text[data-v-3868ba91]{font-size:.875rem;color:#999}.list_box .list .info[data-v-3868ba91]{font-size:.875rem;color:#666}.list_box .list .info uni-view[data-v-3868ba91]{padding-top:.5rem}.list_box .list .btn[data-v-3868ba91]{margin-top:.9375rem}.list_box .list .btn uni-view[data-v-3868ba91]{width:9.375rem;height:2rem;border-radius:.25rem;font-size:.875rem;text-align:center;line-height:2rem}.list_box .list .btn .entrust[data-v-3868ba91]{background:#fff;border:.0625rem solid #01508B;box-sizing:border-box;color:#01508b}.list_box .list .btn .handle[data-v-3868ba91]{background:#01508b;color:#fff}
|
||||||
|
@ -1 +1 @@
|
|||||||
body[data-v-10bcc98c]{background-color:#f8f8f8}.content[data-v-10bcc98c]{padding-top:.9375rem}.todo .title_box[data-v-10bcc98c]{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-10bcc98c]{font-weight:500;font-size:1rem;color:#333}.todo .title_box .title uni-image[data-v-10bcc98c]{width:1.5rem;height:1.5rem}.todo .title_box .num[data-v-10bcc98c]{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-10bcc98c]{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-10bcc98c]{max-height:3.75rem;transition:all .3s;overflow:hidden}.todo .list .box .item_box[data-v-10bcc98c]{display:flex;flex-wrap:wrap}.todo .list .box .item[data-v-10bcc98c]{font-size:.875rem;height:1.875rem;width:50%}.todo .list .box .item uni-view[data-v-10bcc98c]{color:#666;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.todo .list .box .item uni-text[data-v-10bcc98c]{color:#ed361d;margin:0 .3125rem}.todo .list .close[data-v-10bcc98c]{max-height:var(--02538693)}.todo .list .more[data-v-10bcc98c]{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}body{background-color:#f8f8f8}
|
||||||
|
BIN
unpackage/dist/build/app-plus/static/my/process.png
vendored
Normal file
BIN
unpackage/dist/build/app-plus/static/my/process.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
84
unpackage/dist/dev/app-plus/app-service.js
vendored
84
unpackage/dist/dev/app-plus/app-service.js
vendored
@ -61,7 +61,7 @@ if (uni.restoreGlobal) {
|
|||||||
const _imports_4 = "/static/login/eye-off.png";
|
const _imports_4 = "/static/login/eye-off.png";
|
||||||
const _imports_5 = "/static/login/nocheck.png";
|
const _imports_5 = "/static/login/nocheck.png";
|
||||||
const _imports_6 = "/static/login/checked.png";
|
const _imports_6 = "/static/login/checked.png";
|
||||||
let baseUrl$1 = "http://10.75.166.174:8080/jeecg-boot";
|
let baseUrl$1 = "https://36.112.48.190/jeecg-boot";
|
||||||
let loading = false;
|
let loading = false;
|
||||||
function https(config) {
|
function https(config) {
|
||||||
if (loading)
|
if (loading)
|
||||||
@ -130,9 +130,9 @@ if (uni.restoreGlobal) {
|
|||||||
});
|
});
|
||||||
return promise;
|
return promise;
|
||||||
}
|
}
|
||||||
function localLoginApi(config) {
|
function loginApi(config) {
|
||||||
return https({
|
return https({
|
||||||
url: "/sys/login",
|
url: "/sys/sinopecLogin",
|
||||||
method: "post",
|
method: "post",
|
||||||
data: config
|
data: config
|
||||||
});
|
});
|
||||||
@ -1779,15 +1779,21 @@ This will fail in production.`);
|
|||||||
return proxy.$toast("请输入账号");
|
return proxy.$toast("请输入账号");
|
||||||
if (!password.value.trim())
|
if (!password.value.trim())
|
||||||
return proxy.$toast("请输入密码");
|
return proxy.$toast("请输入密码");
|
||||||
Base64.encode(encodeURIComponent(username.value));
|
let un = Base64.encode(encodeURIComponent(username.value));
|
||||||
Base64.encode(encodeURIComponent(password.value));
|
let pw = Base64.encode(encodeURIComponent(password.value));
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: "登录中..."
|
title: "登录中..."
|
||||||
});
|
});
|
||||||
localLoginApi({
|
loginApi({
|
||||||
username: username.value,
|
username: un,
|
||||||
password: password.value,
|
password: pw,
|
||||||
captcha: "app"
|
ip: getDeviceIp()
|
||||||
|
/*生产环境 end */
|
||||||
|
/*开发环境 begin */
|
||||||
|
// localLoginApi({
|
||||||
|
// username: username.value,
|
||||||
|
// password: password.value,
|
||||||
|
// captcha: 'app'
|
||||||
/*开发环境 end */
|
/*开发环境 end */
|
||||||
}).then((loginres) => {
|
}).then((loginres) => {
|
||||||
if (loginres.success) {
|
if (loginres.success) {
|
||||||
@ -1819,6 +1825,31 @@ This will fail in production.`);
|
|||||||
password.value = obj.pw ? obj.pw : "";
|
password.value = obj.pw ? obj.pw : "";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
function getDeviceIp() {
|
||||||
|
let deviceIp;
|
||||||
|
if (plus.os.name == "Android") {
|
||||||
|
let Context = plus.android.importClass("android.content.Context");
|
||||||
|
let main = plus.android.runtimeMainActivity();
|
||||||
|
let cm = main.getSystemService(Context.CONNECTIVITY_SERVICE);
|
||||||
|
plus.android.importClass(cm);
|
||||||
|
let linkProperties = cm.getLinkProperties(cm.getActiveNetwork());
|
||||||
|
let linkAddrs = plus.android.invoke(linkProperties, "getLinkAddresses");
|
||||||
|
plus.android.importClass(linkAddrs);
|
||||||
|
for (var i2 = 0; i2 < linkAddrs.size(); i2++) {
|
||||||
|
let inetAddr = plus.android.invoke(linkAddrs.get(i2), "getAddress");
|
||||||
|
deviceIp = plus.android.invoke(inetAddr, "getHostAddress");
|
||||||
|
}
|
||||||
|
if (deviceIp == "") {
|
||||||
|
var wifiManager = plus.android.runtimeMainActivity().getSystemService(Context.WIFI_SERVICE);
|
||||||
|
var wifiInfo = plus.android.invoke(wifiManager, "getConnectionInfo");
|
||||||
|
var ipAddress = plus.android.invoke(wifiInfo, "getIpAddress");
|
||||||
|
if (ipAddress != 0) {
|
||||||
|
deviceIp = (ipAddress & 255) + "." + (ipAddress >> 8 & 255) + "." + (ipAddress >> 16 & 255) + "." + (ipAddress >> 24 & 255);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return deviceIp;
|
||||||
|
}
|
||||||
return (_ctx, _cache) => {
|
return (_ctx, _cache) => {
|
||||||
return vue.openBlock(), vue.createElementBlock(
|
return vue.openBlock(), vue.createElementBlock(
|
||||||
"view",
|
"view",
|
||||||
@ -6427,7 +6458,7 @@ This will fail in production.`);
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
const customNav = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-420daeb5"], ["__file", "D:/projects/cxc-szcx-uniapp/bpm/customNav.vue"]]);
|
const customNav = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-420daeb5"], ["__file", "D:/projects/cxc-szcx-uniapp/bpm/customNav.vue"]]);
|
||||||
const baseurl = "http://10.75.166.174:8080/jeecg-boot/sys/common/static/";
|
const baseurl = "https://36.112.48.190/jeecg-boot/sys/common/static/";
|
||||||
const toast = (title, icon, duration) => {
|
const toast = (title, icon, duration) => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title,
|
title,
|
||||||
@ -6650,7 +6681,7 @@ This will fail in production.`);
|
|||||||
vue.useCssVars((_ctx) => ({
|
vue.useCssVars((_ctx) => ({
|
||||||
"ae0729d5-cusnavbarheight": cusnavbarheight
|
"ae0729d5-cusnavbarheight": cusnavbarheight
|
||||||
}));
|
}));
|
||||||
const baseurl2 = "http://10.75.166.174:8080/jeecg-boot";
|
const baseurl2 = "https://36.112.48.190/jeecg-boot";
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
cxcDaping();
|
cxcDaping();
|
||||||
@ -15722,7 +15753,7 @@ ${i3}
|
|||||||
const address = vue.ref("");
|
const address = vue.ref("");
|
||||||
const reason = vue.ref("");
|
const reason = vue.ref("");
|
||||||
const path = vue.ref([]);
|
const path = vue.ref([]);
|
||||||
const baseUrl2 = "http://10.75.166.174:8080/jeecg-boot/sys/common/upload/";
|
const baseUrl2 = "https://36.112.48.190/jeecg-boot/sys/common/upload/";
|
||||||
const imageStyles = {
|
const imageStyles = {
|
||||||
width: 64,
|
width: 64,
|
||||||
height: 64,
|
height: 64,
|
||||||
@ -16131,7 +16162,7 @@ ${i3}
|
|||||||
const _sfc_main$j = {
|
const _sfc_main$j = {
|
||||||
__name: "useredit",
|
__name: "useredit",
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
const baseUrl2 = "http://10.75.166.174:8080/jeecg-boot/sys/common/upload";
|
const baseUrl2 = "https://36.112.48.190/jeecg-boot/sys/common/upload";
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const chooseAvatar = () => {
|
const chooseAvatar = () => {
|
||||||
uni.chooseImage({
|
uni.chooseImage({
|
||||||
@ -16496,15 +16527,13 @@ ${i3}
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// selfArrquery: {
|
|
||||||
// type: Array,
|
|
||||||
// default: function() {
|
|
||||||
// return []
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
total: {
|
total: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0
|
default: 0
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: String,
|
||||||
|
default: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
@ -16527,13 +16556,13 @@ ${i3}
|
|||||||
const tolist = (title) => {
|
const tolist = (title) => {
|
||||||
let id = null;
|
let id = null;
|
||||||
beforeJump("/pages/task/index", () => {
|
beforeJump("/pages/task/index", () => {
|
||||||
if (props.title == "待办事项") {
|
if (props.type == "0") {
|
||||||
id = 0;
|
id = 0;
|
||||||
}
|
}
|
||||||
if (props.title == "已办事项") {
|
if (props.type == "1") {
|
||||||
id = 1;
|
id = 1;
|
||||||
}
|
}
|
||||||
if (props.title == "本人发起") {
|
if (props.type == "2") {
|
||||||
return uni.navigateTo({
|
return uni.navigateTo({
|
||||||
url: `/pages/task/self?title=${title}`
|
url: `/pages/task/self?title=${title}`
|
||||||
});
|
});
|
||||||
@ -16765,19 +16794,22 @@ ${i3}
|
|||||||
title: "我的任务",
|
title: "我的任务",
|
||||||
img: "process",
|
img: "process",
|
||||||
list: todoArr.value,
|
list: todoArr.value,
|
||||||
total: todoTotal.value
|
total: todoTotal.value,
|
||||||
|
type: "0"
|
||||||
}, null, 8, ["list", "total"]),
|
}, null, 8, ["list", "total"]),
|
||||||
vue.createVNode(extendCom, {
|
vue.createVNode(extendCom, {
|
||||||
title: "历史任务",
|
title: "历史任务",
|
||||||
img: "done",
|
img: "done",
|
||||||
list: doneArr.value,
|
list: doneArr.value,
|
||||||
total: doneTotal.value
|
total: doneTotal.value,
|
||||||
|
type: "1"
|
||||||
}, null, 8, ["list", "total"]),
|
}, null, 8, ["list", "total"]),
|
||||||
vue.createVNode(extendCom, {
|
vue.createVNode(extendCom, {
|
||||||
title: "我发起流程",
|
title: "我发起流程",
|
||||||
img: "self",
|
img: "self",
|
||||||
list: selfArr.value,
|
list: selfArr.value,
|
||||||
total: selfTotal.value
|
total: selfTotal.value,
|
||||||
|
type: "2"
|
||||||
}, null, 8, ["list", "total"])
|
}, null, 8, ["list", "total"])
|
||||||
],
|
],
|
||||||
2
|
2
|
||||||
@ -19021,7 +19053,7 @@ ${i3}
|
|||||||
__definePage("pages/safe/detail", PagesSafeDetail);
|
__definePage("pages/safe/detail", PagesSafeDetail);
|
||||||
__definePage("pages/zhiban/index", PagesZhibanIndex);
|
__definePage("pages/zhiban/index", PagesZhibanIndex);
|
||||||
__definePage("pages/task/self", PagesTaskSelf);
|
__definePage("pages/task/self", PagesTaskSelf);
|
||||||
const baseUrl = "http://10.75.166.174:8080/jeecg-boot/sys/common/static/";
|
const baseUrl = "https://36.112.48.190/jeecg-boot/sys/common/static/";
|
||||||
const useUpdateApp = defineStore("updateApp", () => {
|
const useUpdateApp = defineStore("updateApp", () => {
|
||||||
const updateOptions = vue.reactive({
|
const updateOptions = vue.reactive({
|
||||||
force: false,
|
force: false,
|
||||||
|
Loading…
Reference in New Issue
Block a user