111111
|
@ -2,8 +2,8 @@
|
|||
"name" : "护理单元",
|
||||
"appid" : "__UNI__FB2D473",
|
||||
"description" : "护理单元",
|
||||
"versionName" : "1.5.3",
|
||||
"versionCode" : 153,
|
||||
"versionName" : "1.5.4",
|
||||
"versionCode" : 154,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
|
@ -95,7 +95,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"nativePlugins" : {}
|
||||
},
|
||||
/* 快应用特有相关 */
|
||||
"quickapp" : {},
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</view>
|
||||
|
||||
<view class="left-container">
|
||||
<view class="left-head">
|
||||
<view class="left-head" @click="testAsyncFunc">
|
||||
<image class="left-head-img" src="/static/index/oldman.png" />
|
||||
<text :class="darkFans?`left-head-font-dark`:`left-head-font`">
|
||||
王金福
|
||||
|
@ -39,7 +39,9 @@
|
|||
</view>
|
||||
<view class="menus-father">
|
||||
<view v-for="(item,index) in leftMenuArray" :key="index" class="menu"
|
||||
:class="targetIndex===index?'target':''" :style="targetIndex === index ? { backgroundColor: '#ddf0ff' }: (index === menuIndex ? { backgroundColor: '#fff' } : {})" @click="changeMenu(index)">
|
||||
:class="targetIndex===index?'target':''"
|
||||
:style="targetIndex === index ? { backgroundColor: '#ddf0ff' }: (index === menuIndex ? { backgroundColor: '#fff' } : {})"
|
||||
@click="changeMenu(index)">
|
||||
<!-- <image class="menu-img" :src="item.url" /> -->
|
||||
<donghua :width="`65rpx`" :height="`65rpx`" :links="item.url" :playing="index === menuIndex" />
|
||||
|
||||
|
@ -205,6 +207,16 @@
|
|||
const secondcurrentIndexup = ref<number>(0);
|
||||
const secondcurrentIndex = ref<number>(0);
|
||||
const thirdcurrentIndex = ref<number>(0);
|
||||
|
||||
function testAsyncFunc(){
|
||||
// 获取 module
|
||||
var testModule = uni.requireNativePlugin("TestModule")
|
||||
// String deviceId =options.getString("deviceId");
|
||||
// String deviceName =options.getString("deviceName");
|
||||
var json = { deviceId: '4', deviceName: 'sdfsfsdf' }
|
||||
// 调用异步方法
|
||||
testModule.gotoNativePage(json)
|
||||
}
|
||||
// 暗黑模式改变
|
||||
const darkchange = (res : boolean) => {
|
||||
darkFans.value = res
|
||||
|
@ -448,29 +460,29 @@
|
|||
// const isright = ref(false);
|
||||
const targetIndex = ref(0);
|
||||
const propsmove = ref(-1);
|
||||
|
||||
|
||||
const canback = ref(false);
|
||||
|
||||
const canmoveit = (boolean:boolean) => {
|
||||
|
||||
const canmoveit = (boolean : boolean) => {
|
||||
canback.value = boolean
|
||||
}
|
||||
const movecard = (where : number) => {
|
||||
if (where === 5) {
|
||||
if(canback.value){
|
||||
if (canback.value) {
|
||||
propsmove.value = -1
|
||||
nextTick(() => propsmove.value = where)
|
||||
return
|
||||
}else{
|
||||
if(!isMain.value){
|
||||
} else {
|
||||
if (!isMain.value) {
|
||||
isMain.value = true;
|
||||
targetIndex.value = menuIndex.value
|
||||
}else{
|
||||
} else {
|
||||
uni.navigateBack()
|
||||
}
|
||||
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
if (isMain.value) {
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
<view class="drawer-content" @touchstart.passive="onTouchStart" @touchmove.passive="onTouchMove"
|
||||
@touchend="onTouchEnd" @touchcancel="onTouchEnd">
|
||||
<!-- 抽屉中间的半圆 -->
|
||||
<view class="drawer-content-circle" :style="isVisible?{background:`linear-gradient(to bottom,#62E8FF,#0097FF)`}:{background:`linear-gradient(to bottom,#62E8FF,#0097FF)`}" @click="whiteDrawer">
|
||||
<!-- <view class="drawer-content-circle" :style="isVisible?{background:`linear-gradient(to bottom,#62E8FF,#0097FF)`}:{background:`linear-gradient(to bottom,#62E8FF,#0097FF)`}" @click="whiteDrawer">
|
||||
<image class="drawer-img" :style="{transform:isVisible?`rotate(180deg)`:``}" :src="isVisible?'/static/index/watch/arrow.png':'/static/index/watch/arrow.png' " />
|
||||
</view>
|
||||
</view> -->
|
||||
<slot />
|
||||
</view>
|
||||
</view>
|
||||
|
@ -41,7 +41,7 @@
|
|||
|
||||
// 拖拽状态
|
||||
const startX = ref(0)
|
||||
const dragging = ref(false)
|
||||
const dragging = ref(true)
|
||||
const currentOffset = ref(0)
|
||||
|
||||
// 计算样式:宽度 + 拖拽或开关 transform
|
||||
|
@ -69,7 +69,7 @@
|
|||
}
|
||||
|
||||
function closeDrawer() {
|
||||
isVisible.value = false
|
||||
isVisible.value = true
|
||||
}
|
||||
|
||||
function whiteDrawer() {
|
||||
|
@ -85,27 +85,27 @@
|
|||
|
||||
// 拖拽事件
|
||||
function onTouchStart(e) {
|
||||
if (!isVisible.value) return
|
||||
dragging.value = true
|
||||
currentOffset.value = 0
|
||||
startX.value = e.touches[0].pageX
|
||||
// if (!isVisible.value) return
|
||||
// dragging.value = true
|
||||
// currentOffset.value = 0
|
||||
// startX.value = e.touches[0].pageX
|
||||
}
|
||||
|
||||
function onTouchMove(e) {
|
||||
if (!dragging.value) return
|
||||
const delta = e.touches[0].pageX - startX.value
|
||||
currentOffset.value = delta > 0 ? delta : 0
|
||||
// if (!dragging.value) return
|
||||
// const delta = e.touches[0].pageX - startX.value
|
||||
// currentOffset.value = delta > 0 ? delta : 0
|
||||
}
|
||||
|
||||
function onTouchEnd() {
|
||||
if (!dragging.value) return
|
||||
dragging.value = false
|
||||
const halfPx = screenWidth.value * (props.widNumber / 100) / 2
|
||||
if (currentOffset.value > halfPx) {
|
||||
closeDrawer()
|
||||
rotate180()
|
||||
}
|
||||
currentOffset.value = 0
|
||||
// if (!dragging.value) return
|
||||
// dragging.value = true
|
||||
// const halfPx = screenWidth.value * (props.widNumber / 100) / 2
|
||||
// if (currentOffset.value > halfPx) {
|
||||
// closeDrawer()
|
||||
// rotate180()
|
||||
// }
|
||||
// currentOffset.value = 0
|
||||
}
|
||||
|
||||
// 半圆旋转
|
||||
|
@ -125,7 +125,7 @@
|
|||
position: fixed;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 85vh;
|
||||
height: 40vh;
|
||||
// background: #eff0f4;
|
||||
z-index: 1000;
|
||||
border-top-left-radius: 80rpx;
|
||||
|
@ -143,6 +143,7 @@
|
|||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.drawer-content-circle {
|
||||
|
|
|
@ -56,11 +56,9 @@
|
|||
<view v-for="(item1,index1) in item0.children" style="width: 100%;"
|
||||
:key="index1">
|
||||
<view :style="{height:heightType + `rpx`}" class="super-card-time-card"
|
||||
@touchend="handleTap(item1,index0,index1,$event)" :data-index0="index0"
|
||||
@touchend="handleTap(item1,index0,index1)" :data-index0="index0"
|
||||
:data-index1="index1">
|
||||
|
||||
|
||||
<view :class="getClass(item1,index0,index1)"
|
||||
<view :class="getClass(item1,index0,index1)" :style="scalcType >= 11 && item1.cycleType !== '日常' && item1.startTime ? { backgroundColor: '#c5e5ff' } : {}"
|
||||
style="font-size: 30rpx;position: relative;">
|
||||
<view class="title-time-blue"
|
||||
v-show="clickX == index0 && clickY == index1">
|
||||
|
@ -78,15 +76,15 @@
|
|||
style="width: 80rpx;height: 48rpx;"
|
||||
v-if="item1.cycleType!='日常'"
|
||||
src="/static/index/newruler/jiao.png"
|
||||
v-show="scalcType<14" />
|
||||
v-show="scalcType<11" />
|
||||
<view class="title-time-font"
|
||||
style="right: 10rpx;top: 5rpx;font-size: 20rpx;"
|
||||
v-show="scalcType<14" v-if="item1.cycleType!='日常'">
|
||||
v-show="scalcType<11" v-if="item1.cycleType!='日常'">
|
||||
{{item1.cycleType}}
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item1.startTime" class="title-time-font-rel"
|
||||
v-show="scalcType<15">
|
||||
v-show="scalcType<11">
|
||||
{{splitString(item1.directiveName)[0]}}
|
||||
</view>
|
||||
<!-- <view class="title-time" v-if="item1.startTime"
|
||||
|
@ -359,101 +357,98 @@
|
|||
(newVal, oldVal) => {
|
||||
if (oldVal !== newVal) {
|
||||
// 基准与视口设置
|
||||
const BASE_WIDTH = 92.5;
|
||||
const BASE_HEIGHT = 102.5;
|
||||
const VIEW_ROWS = 11;
|
||||
const VIEWPORT_HEIGHT = BASE_HEIGHT * VIEW_ROWS; // 11 * 102.5
|
||||
// const BASE_WIDTH = 92.5;
|
||||
// const BASE_HEIGHT = 102.5;
|
||||
// const VIEW_ROWS = 11;
|
||||
// const VIEWPORT_HEIGHT = BASE_HEIGHT * VIEW_ROWS; // 11 * 102.5
|
||||
|
||||
// 只设置宽度和字体,height 由后面按比例并保证整数行计算
|
||||
switch (newVal) {
|
||||
case 24:
|
||||
widthType.value = 92.5;
|
||||
cardFont.value = 18;
|
||||
heightType.value = 107;
|
||||
break;
|
||||
case 23:
|
||||
widthType.value = 96.5;
|
||||
cardFont.value = 18;
|
||||
heightType.value = 107;
|
||||
break;
|
||||
case 22:
|
||||
widthType.value = 101;
|
||||
cardFont.value = 18;
|
||||
heightType.value = 107;
|
||||
break;
|
||||
case 21:
|
||||
widthType.value = 106;
|
||||
cardFont.value = 19;
|
||||
heightType.value = 116;
|
||||
break;
|
||||
case 20:
|
||||
widthType.value = 112;
|
||||
cardFont.value = 20;
|
||||
heightType.value = 116;
|
||||
break;
|
||||
case 19:
|
||||
widthType.value = 117;
|
||||
cardFont.value = 21;
|
||||
heightType.value = 116;
|
||||
break;
|
||||
case 18:
|
||||
widthType.value = 124;
|
||||
cardFont.value = 22;
|
||||
heightType.value = 121;
|
||||
break;
|
||||
case 17:
|
||||
widthType.value = 131;
|
||||
cardFont.value = 23;
|
||||
heightType.value = 128;
|
||||
break;
|
||||
case 16:
|
||||
widthType.value = 139;
|
||||
cardFont.value = 24;
|
||||
heightType.value = 133;
|
||||
break;
|
||||
case 15:
|
||||
widthType.value = 148;
|
||||
cardFont.value = 25;
|
||||
heightType.value = 142;
|
||||
break;
|
||||
case 14:
|
||||
widthType.value = 159;
|
||||
cardFont.value = 26;
|
||||
heightType.value = 150;
|
||||
break;
|
||||
case 13:
|
||||
widthType.value = 171;
|
||||
cardFont.value = 27;
|
||||
heightType.value = 160;
|
||||
break;
|
||||
case 12:
|
||||
widthType.value = 185;
|
||||
cardFont.value = 28;
|
||||
heightType.value = 170;
|
||||
break;
|
||||
case 11:
|
||||
widthType.value = 202;
|
||||
cardFont.value = 29;
|
||||
heightType.value = 183;
|
||||
break;
|
||||
case 10:
|
||||
widthType.value = 222;
|
||||
cardFont.value = 30;
|
||||
heightType.value = 195;
|
||||
break;
|
||||
case 9:
|
||||
widthType.value = 247;
|
||||
cardFont.value = 30;
|
||||
heightType.value = 213;
|
||||
break;
|
||||
case 8:
|
||||
widthType.value = 280;
|
||||
cardFont.value = 30;
|
||||
heightType.value = 235;
|
||||
break;
|
||||
case 7:
|
||||
widthType.value = 320;
|
||||
cardFont.value = 30;
|
||||
break;
|
||||
default:
|
||||
widthType.value = BASE_WIDTH;
|
||||
cardFont.value = 18;
|
||||
heightType.value = 256;
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
// 按宽度比例计算期望高度
|
||||
const tentativeHeight = BASE_HEIGHT * (widthType.value / BASE_WIDTH);
|
||||
// const tentativeHeight = BASE_HEIGHT * (widthType.value / BASE_WIDTH);
|
||||
|
||||
// 计算在视口内能完整显示的行数(取整),并限制在 1..VIEW_ROWS 之间
|
||||
let rows = Math.floor(VIEWPORT_HEIGHT / tentativeHeight);
|
||||
if (rows < 1) rows = 1;
|
||||
if (rows > VIEW_ROWS) rows = VIEW_ROWS;
|
||||
// // 计算在视口内能完整显示的行数(取整),并限制在 1..VIEW_ROWS 之间
|
||||
// let rows = Math.floor(VIEWPORT_HEIGHT / tentativeHeight);
|
||||
// if (rows < 1) rows = 1;
|
||||
// if (rows > VIEW_ROWS) rows = VIEW_ROWS;
|
||||
|
||||
// 最终高度使得视口内恰好显示整数行,避免半个格子
|
||||
heightType.value = VIEWPORT_HEIGHT / rows;
|
||||
// // 最终高度使得视口内恰好显示整数行,避免半个格子
|
||||
// heightType.value = VIEWPORT_HEIGHT / rows;
|
||||
|
||||
centerCell();
|
||||
return;
|
||||
|
@ -678,7 +673,7 @@
|
|||
}
|
||||
function changeRuler(type : boolean) {
|
||||
if (type) {
|
||||
scalcType.value = 11
|
||||
scalcType.value = 7
|
||||
} else {
|
||||
scalcType.value = 24
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
;(function(){
|
||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
||||
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app x","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"护理单元","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.75","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
|
||||
const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"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/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"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()})}});
|
||||
|
|
Before Width: | Height: | Size: 24 KiB |
|
@ -1 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.2.6","code":126},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"render":"always","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":{"abiFilters":["armeabi-v7a","arm64-v8a","x86"],"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.UNIFB2D473","aliasname":"__uni__fb2d473","password":"Z4Urhm9jqwqMGoeQNpGzJA==","storepwd":"Z4Urhm9jqwqMGoeQNpGzJA==","keypwd":"Z4Urhm9jqwqMGoeQNpGzJA==","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"share":{"weixin":{"UniversalLinks":"","appid":"wxda748470da82886e"}}},"orientation":"portrait-primary"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.75","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}},"adid":"122926210510"},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.5.3","code":153},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"render":"always","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":{"abiFilters":["armeabi-v7a","arm64-v8a","x86"],"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.UNIFB2D473","aliasname":"__uni__fb2d473","password":"Z4Urhm9jqwqMGoeQNpGzJA==","storepwd":"Z4Urhm9jqwqMGoeQNpGzJA==","keypwd":"Z4Urhm9jqwqMGoeQNpGzJA==","keystore":"google-keystore.keystore","custompermissions":true},"apple":{"dSYMs":false,"plistcmds":["Add :UIFileSharingEnabled bool true"],"devices":"universal"},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"share":{"weixin":{"UniversalLinks":"","appid":"wxda748470da82886e"}}},"debug":true,"syncDebug":true,"orientation":"portrait-primary"},"nativePlugins":{"TestModule":{}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.75","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}},"adid":"122926210510"},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
|
BIN
unpackage/cache/wgt/__UNI__FB2D473/nativeplugins/TestModule/android/libs/mylibrary-release.aar
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"name":"TestModule",
|
||||
"id":"TestModule",
|
||||
"version":"2.0.1",
|
||||
"description":"bugly升级",
|
||||
"_dp_type":"nativeplugin",
|
||||
"_dp_nativeplugin":{
|
||||
"android":{
|
||||
"plugins":[{
|
||||
"type":"module",
|
||||
"name":"TestModule",
|
||||
"class": "com.juai.plugin_module.TestModule"
|
||||
},
|
||||
{
|
||||
"type":"component",
|
||||
"name":"TestModule-tp",
|
||||
"class": "com.juai.plugin_module.TpLinkClouldView"
|
||||
},
|
||||
{
|
||||
"type":"component",
|
||||
"name":"myText",
|
||||
"class": "com.juai.plugin_module.TestText"
|
||||
}],
|
||||
"integrateType": "aar",
|
||||
"dependencies": [
|
||||
"androidx.constraintlayout:constraintlayout:2.1.4",
|
||||
"androidx.core:core-ktx:1.3.2",
|
||||
"androidx.appcompat:appcompat:1.1.0",
|
||||
"com.google.android.material:material:1.6.1",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3",
|
||||
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3",
|
||||
"androidx.lifecycle:lifecycle-runtime-ktx:2.5.1",
|
||||
"com.google.code.gson:gson:2.10.1",
|
||||
"com.alibaba:fastjson:1.2.83"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
.index-content-other[data-v-87f7dd57]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-down[data-v-87f7dd57]{position:absolute;bottom:1.25rem;left:50%;transform:translate(-50%)}.index-content-right[data-v-87f7dd57]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem;position:relative}.index-content-right .index-content-title[data-v-87f7dd57]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-87f7dd57]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-87f7dd57]{color:#415273;font-size:1.09375rem}.saomiao[data-v-87f7dd57]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;z-index:1}.saomiao .saoma-input[data-v-87f7dd57]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:2}.saomiao .left-img[data-v-87f7dd57]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:3}.saomiao .right-img[data-v-87f7dd57]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-87f7dd57]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.big-ball[data-v-87f7dd57]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-87f7dd57]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.back-img[data-v-87f7dd57]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.big-bgc[data-v-87f7dd57]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:34.375rem;height:34.375rem}.big-img[data-v-87f7dd57]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:28.125rem;height:28.125rem}
|
|
@ -0,0 +1 @@
|
|||
.index-content-other[data-v-33cdb877]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-down[data-v-33cdb877]{position:absolute;bottom:1.25rem;left:50%;transform:translate(-50%)}.index-content-right[data-v-33cdb877]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem;position:relative}.index-content-right .index-content-title[data-v-33cdb877]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-33cdb877]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-33cdb877]{color:#415273;font-size:1.09375rem}.saomiao[data-v-33cdb877]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;z-index:1}.blue-button[data-v-33cdb877]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.big-ball[data-v-33cdb877]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-33cdb877]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.back-img[data-v-33cdb877]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.big-bgc[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:56.25rem;height:28.125rem}.big-img[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10.9375rem;height:10.9375rem}.big-img[data-v-33cdb877]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-33cdb877 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.big-QR[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:9.375rem;height:9.375rem}.big-font[data-v-33cdb877]{position:absolute;color:#888a8b;left:0;bottom:-2.5rem;font-size:1rem;width:100%;display:flex;justify-content:center}@keyframes scanMove-33cdb877{0%{top:5%}to{top:95%}}
|
After Width: | Height: | Size: 262 KiB |
Before Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.4 KiB |