7878787887878878787
|
|
@ -2,8 +2,8 @@
|
||||||
"name" : "护理单元",
|
"name" : "护理单元",
|
||||||
"appid" : "__UNI__FB2D473",
|
"appid" : "__UNI__FB2D473",
|
||||||
"description" : "护理单元",
|
"description" : "护理单元",
|
||||||
"versionName" : "1.6.4",
|
"versionName" : "1.6.6",
|
||||||
"versionCode" : 164,
|
"versionCode" : 166,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
|
|
||||||
|
|
@ -288,10 +288,13 @@
|
||||||
src="/static/index/newruler/jiao.png" />
|
src="/static/index/newruler/jiao.png" />
|
||||||
<image class="title-time-button" v-show="item.cycleType ==='即时护理'"
|
<image class="title-time-button" v-show="item.cycleType ==='即时护理'"
|
||||||
src="/static/index/newruler/jiao.png" />
|
src="/static/index/newruler/jiao.png" />
|
||||||
<image class="right-box-img" :src="thirdmenuIndex==index?item.immediateFileFocus:item.immediateFile" />
|
<image class="right-box-img"
|
||||||
<view class="right-box-font" style="font-size: 20rpx;margin-top: 2rpx;"
|
:src="thirdmenuIndex==index?item.netImmediateFileFocus :item.netImmediateFile " />
|
||||||
:style="thirdmenuIndex==index?{color:`rgb(54, 159, 239)`}:{}">
|
<view class="right-box-font" :style="[
|
||||||
{{item.title}}
|
{ marginTop: '2rpx', fontSize: (item.title?.trim().length > 6) ? '15rpx' : '20rpx' },
|
||||||
|
thirdmenuIndex === index ? { color: 'rgb(54,159,239)' } : {}
|
||||||
|
]">
|
||||||
|
{{ item.title }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -1658,14 +1661,23 @@
|
||||||
iszhouqi.value = true
|
iszhouqi.value = true
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let cycleType = ""
|
let cycleType = "";
|
||||||
|
let cycleValue = "";
|
||||||
if (allobject.cycleType === "日常护理") {
|
if (allobject.cycleType === "日常护理") {
|
||||||
cycleType = "日常"
|
cycleType = "日常"
|
||||||
} else {
|
} else {
|
||||||
if (weekIndex.value !== -1) {
|
if (weekIndex.value !== -1) {
|
||||||
cycleType = weekValue.value
|
cycleType = weekValue.value
|
||||||
|
let cycleTypeIndex = 0;
|
||||||
|
weekDays.forEach((element:any,index:any)=>{
|
||||||
|
if(element == weekValue.value){
|
||||||
|
cycleTypeIndex = index
|
||||||
|
}
|
||||||
|
})
|
||||||
|
cycleValue = cycleTypeIndex.toString()
|
||||||
} else {
|
} else {
|
||||||
cycleType = monthValue.value + "号"
|
cycleType = monthValue.value + "号";
|
||||||
|
cycleValue = monthValue.value
|
||||||
}
|
}
|
||||||
iszhouqi.value = false;
|
iszhouqi.value = false;
|
||||||
weekIndex.value = -1;
|
weekIndex.value = -1;
|
||||||
|
|
@ -1681,19 +1693,47 @@
|
||||||
const formattedEnd = `${String(endHour)}:${String(endMinute % 60).padStart(2, '0')}`
|
const formattedEnd = `${String(endHour)}:${String(endMinute % 60).padStart(2, '0')}`
|
||||||
timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].startTime = formattedStart
|
timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].startTime = formattedStart
|
||||||
timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].endTime = formattedEnd
|
timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].endTime = formattedEnd
|
||||||
|
// const moBan = ref({
|
||||||
|
// directiveId: "",
|
||||||
|
// directiveName: "",
|
||||||
|
// typeId:"",
|
||||||
|
// typeName:"",
|
||||||
|
// categoryId:"",
|
||||||
|
// categoryName:"",
|
||||||
|
// cycleTypeId:"",
|
||||||
|
// cycleType:"",
|
||||||
|
// cycleValue:"",
|
||||||
|
// startTime: "",
|
||||||
|
// endTime: "",
|
||||||
|
// positioning: "",
|
||||||
|
// positioningLong: "",
|
||||||
|
// izPackage:false,
|
||||||
|
// previewFile:"",
|
||||||
|
// previewFileSmall:"",
|
||||||
|
// immediateFile:"",
|
||||||
|
// immediateFileFocus:"",
|
||||||
|
// tagName: "",
|
||||||
|
// })
|
||||||
|
// console.log("))))",allobject)
|
||||||
let param = {
|
let param = {
|
||||||
directiveId: allobject.id,
|
directiveId: allobject.id,
|
||||||
directiveName: allobject.title,
|
directiveName: allobject.title,
|
||||||
|
typeId: allobject.typeId,
|
||||||
|
typeName: allobject.typeName,
|
||||||
|
categoryId: allobject.categoryId,
|
||||||
|
categoryName: allobject.categoryName,
|
||||||
|
cycleTypeId: allobject.cycleTypeId,
|
||||||
|
cycleType: cycleType,
|
||||||
|
cycleValue: cycleValue,
|
||||||
startTime: formattedStart,
|
startTime: formattedStart,
|
||||||
endTime: formattedEnd,
|
endTime: formattedEnd,
|
||||||
positioning: saveEditIndex.value.index0.toString(),
|
positioning: saveEditIndex.value.index0.toString(),
|
||||||
positioningLong: saveEditIndex.value.index1.toString(),
|
positioningLong: saveEditIndex.value.index1.toString(),
|
||||||
// tagName: allobject.tagName,
|
izPackage: false,
|
||||||
cycleType: cycleType,
|
previewFile: allobject.previewFile,
|
||||||
nuId: uni.getStorageSync('nuId'),
|
previewFileSmall: allobject.previewFileSmall,
|
||||||
customerId: uni.getStorageSync('customerId'),
|
immediateFile: allobject.immediateFile,
|
||||||
id: "",
|
immediateFileFocus: allobject.immediateFileFocus,
|
||||||
tagName: timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].tagName,
|
tagName: timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].tagName,
|
||||||
}
|
}
|
||||||
//给表格赋值
|
//给表格赋值
|
||||||
|
|
@ -1733,16 +1773,16 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
console.log("00000", postArray)
|
console.log("00000", postArray)
|
||||||
addBatch(postArray).then(() => {
|
// addBatch(postArray).then(() => {
|
||||||
|
|
||||||
getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
|
// getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
|
||||||
if (res.success) {
|
// if (res.success) {
|
||||||
console.log("new", res.result)
|
// console.log("new", res.result)
|
||||||
timearr.value = res.result
|
// timearr.value = res.result
|
||||||
}
|
// }
|
||||||
|
|
||||||
})
|
// })
|
||||||
})
|
// })
|
||||||
}
|
}
|
||||||
const routerPush = () => {
|
const routerPush = () => {
|
||||||
uni.setStorage({
|
uni.setStorage({
|
||||||
|
|
@ -1801,6 +1841,7 @@
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
|
|
||||||
getServiceTree().then((res : any) => {
|
getServiceTree().then((res : any) => {
|
||||||
|
// console.log("?????",res)
|
||||||
res.result.forEach((element : any) => {
|
res.result.forEach((element : any) => {
|
||||||
if (element.netFlag == '0') {
|
if (element.netFlag == '0') {
|
||||||
doctorsayList.value.forEach((res : any) => {
|
doctorsayList.value.forEach((res : any) => {
|
||||||
|
|
@ -1811,7 +1852,7 @@
|
||||||
} else {
|
} else {
|
||||||
element.url = element.animationPath
|
element.url = element.animationPath
|
||||||
}
|
}
|
||||||
element.children.forEach((res1:any) => {
|
element.children.forEach((res1 : any) => {
|
||||||
if (res1.netFlag == '0') {
|
if (res1.netFlag == '0') {
|
||||||
secondtemp.value.forEach((res2 : any) => {
|
secondtemp.value.forEach((res2 : any) => {
|
||||||
if (res2.name == res1.title) {
|
if (res2.name == res1.title) {
|
||||||
|
|
@ -1859,20 +1900,30 @@
|
||||||
index0: 999,
|
index0: 999,
|
||||||
index1: 999
|
index1: 999
|
||||||
})
|
})
|
||||||
|
// tagName: "",
|
||||||
|
// nuId: uni.getStorageSync('nuId'),
|
||||||
|
// customerId: uni.getStorageSync('customerId'),
|
||||||
|
// id: "",
|
||||||
const moBan = ref({
|
const moBan = ref({
|
||||||
directiveId: "",
|
directiveId: "",
|
||||||
directiveName: "",
|
directiveName: "",
|
||||||
|
typeId: "",
|
||||||
|
typeName: "",
|
||||||
|
categoryId: "",
|
||||||
|
categoryName: "",
|
||||||
|
cycleTypeId: "",
|
||||||
|
cycleType: "",
|
||||||
|
cycleValue: "",
|
||||||
startTime: "",
|
startTime: "",
|
||||||
endTime: "",
|
endTime: "",
|
||||||
positioning: "",
|
positioning: "",
|
||||||
positioningLong: "",
|
positioningLong: "",
|
||||||
// tagName: "",
|
izPackage: false,
|
||||||
cycleType: "",
|
previewFile: "",
|
||||||
nuId: uni.getStorageSync('nuId'),
|
previewFileSmall: "",
|
||||||
customerId: uni.getStorageSync('customerId'),
|
immediateFile: "",
|
||||||
id: "",
|
immediateFileFocus: "",
|
||||||
tagName: ""
|
tagName: "",
|
||||||
|
|
||||||
})
|
})
|
||||||
// 切割bigArray
|
// 切割bigArray
|
||||||
function splitString(str) {
|
function splitString(str) {
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
<view class="left-head" @click="testAsyncFunc">
|
<view class="left-head" @click="testAsyncFunc">
|
||||||
<image class="left-head-img" src="/static/index/oldman.png" />
|
<image class="left-head-img" src="/static/index/oldman.png" />
|
||||||
<text :class="darkFans?`left-head-font-dark`:`left-head-font`">
|
<text :class="darkFans?`left-head-font-dark`:`left-head-font`">
|
||||||
王金福
|
{{ uni.getStorageSync('NUall').elderInfo?uni.getStorageSync('NUall').elderInfo.name:"" }}
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="menus-father">
|
<view class="menus-father">
|
||||||
|
|
@ -630,6 +630,7 @@
|
||||||
.left-head-font {
|
.left-head-font {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
|
height: 32rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-head-font-dark {
|
.left-head-font-dark {
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,31 @@
|
||||||
<template>
|
<template>
|
||||||
<view :class="darkFans?`darkbackgroundContainer`:`backgroundContainer`" v-show="isShow">
|
<view :class="darkFans?`darkbackgroundContainer`:`backgroundContainer`" v-show="isShow">
|
||||||
<view class="wareaitem">
|
<view class="wareaitem">
|
||||||
<view class="wareaitem-item">
|
<view class="wareaitem-item">
|
||||||
<view class="tp" :class="'itemact'+(index+1)" v-for="(item,index) in animArray" :key='index' @click.stop="housactive(index)">
|
<view class="tp" :class="'itemact'+(index+1)" v-for="(item,index) in animArray" :key='index'
|
||||||
<image :src="'/static/index/warehouse/active/w'+index+'.png'" mode="aspectFill" v-if="housedex!=index"></image>
|
@click.stop="housactive(index)">
|
||||||
<donghua :width="item.width" :height="item.height" :links="item.url" :playing="index === housedex" v-show="index === housedex"/>
|
<image :src="'/static/index/warehouse/active/w'+index+'.png'" mode="aspectFill"
|
||||||
|
v-if="housedex!=index"></image>
|
||||||
|
<donghua :width="item.width" :height="item.height" :links="item.url" :playing="index === housedex"
|
||||||
|
v-show="index === housedex" />
|
||||||
<!-- <image :src="'/static/index/warehouse/active/i'+index+'.png'" mode="aspectFill" v-if="housedex==index"></image> -->
|
<!-- <image :src="'/static/index/warehouse/active/i'+index+'.png'" mode="aspectFill" v-if="housedex==index"></image> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="tp" :class="'wareitem'+index" v-for="(item,index) in 12" :key='index' >
|
<view class="tp" :class="'wareitem'+index" v-for="(item,index) in 12" :key='index'>
|
||||||
<image :src="'/static/index/warehouse/w'+index+'.png'" mode="aspectFill"></image>
|
<image :src="'/static/index/warehouse/w'+index+'.png'" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="tp ys" >
|
<view class="tp ys">
|
||||||
<image :src="'/static/index/warehouse/i7.png'" mode="aspectFill" ></image>
|
<image :src="'/static/index/warehouse/i7.png'" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="tp gifs" >
|
<view class="tp gifs">
|
||||||
<image src="/static/index/warehouse/ys.gif" mode="aspectFill"></image>
|
<image src="/static/index/warehouse/ys.gif" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="tp wclik" @click.stop="housactive(1)">
|
<view class="tp wclik" @click.stop="housactive(1)">
|
||||||
<!-- 采购增加层级高度方便点击 -->
|
<!-- 采购增加层级高度方便点击 -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="annotation" :class="'annotation'+(i+1)" v-for="(v,i) in ['付款','采购','结账','拣货','护理单元','中控室']" :key='i'>
|
<view class="annotation" :class="'annotation'+(i+1)" v-for="(v,i) in ['付款','采购','结账','拣货','护理单元','中控室']"
|
||||||
|
:key='i'>
|
||||||
<view>{{v}}</view>
|
<view>{{v}}</view>
|
||||||
<view class="tp">
|
<view class="tp">
|
||||||
<image src="/static/index/warehouse/y1.png" mode="aspectFill"></image>
|
<image src="/static/index/warehouse/y1.png" mode="aspectFill"></image>
|
||||||
|
|
@ -30,113 +34,112 @@
|
||||||
<image src="/static/index/warehouse/y0.png" mode="aspectFill"></image>
|
<image src="/static/index/warehouse/y0.png" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<arrowkeys @movecard="movecard" :getblue="getblue" :moveleft="45" />
|
<arrowkeys @movecard="movecard" :getblue="getblue" :moveleft="45" />
|
||||||
<view class="operationbtn">
|
<view class="operationbtn">
|
||||||
<view v-for="(v,i) in ['请领出库','退货入库','库存盘点','实时监控']"
|
<view v-for="(v,i) in ['请领出库','退货入库','库存盘点','实时监控']" @tap="onTap(i)"
|
||||||
@tap="onTap(i)"
|
:class="beblue === i ? 'click-box-target grad-text' : 'click-box'">{{v}}</view>
|
||||||
:class="beblue === i ? 'click-box-target grad-text' : 'click-box'">{{v}}</view>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted, onBeforeUnmount, computed, nextTick,defineProps } from 'vue';
|
import { ref, onMounted, onBeforeUnmount, computed, nextTick, defineProps } from 'vue';
|
||||||
const darkFans = ref(false);
|
const darkFans = ref(false);
|
||||||
const getblue = ref(false);
|
const getblue = ref(false);
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
isShow: {
|
isShow: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const housedex = ref(-1);
|
const housedex = ref(-1);
|
||||||
const housactive = (index : number) => {
|
const housactive = (index : number) => {
|
||||||
if(index>5){return}
|
if (index > 5) { return }
|
||||||
housedex.value = index;
|
housedex.value = index;
|
||||||
}
|
}
|
||||||
const navurl = ref('');
|
const navurl = ref('');
|
||||||
const movecard = (type : number) => {
|
const movecard = (type : number) => {
|
||||||
console.log(type)
|
console.log(type)
|
||||||
switch (type){
|
switch (type) {
|
||||||
case 0:
|
case 0:
|
||||||
// 上
|
// 上
|
||||||
housedex.value>0?housedex.value--:housedex.value = 3
|
housedex.value > 0 ? housedex.value-- : housedex.value = 3
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
housedex.value>2?housedex.value = 0:housedex.value++
|
housedex.value > 2 ? housedex.value = 0 : housedex.value++
|
||||||
// →
|
// →
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
housedex.value>2?housedex.value = 0:housedex.value++
|
housedex.value > 2 ? housedex.value = 0 : housedex.value++
|
||||||
// 下
|
// 下
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
housedex.value>0?housedex.value--:housedex.value = 3
|
housedex.value > 0 ? housedex.value-- : housedex.value = 3
|
||||||
// ←
|
// ←
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
// 确定
|
// 确定
|
||||||
console.log('选中'+housedex.value)
|
console.log('选中' + housedex.value)
|
||||||
if(housedex.value==1){
|
if (housedex.value == 1) {
|
||||||
navurl.value = 'pages/Warehouse/procurement'
|
navurl.value = 'pages/Warehouse/procurement'
|
||||||
|
}
|
||||||
|
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/' + navurl.value
|
||||||
|
})
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
// 返回
|
||||||
|
uni.navigateBack()
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
uni.navigateTo({
|
const beblue = ref<number>(-1);
|
||||||
url:'/'+navurl.value
|
let clickResetTimer : ReturnType<typeof setTimeout> | null = null;
|
||||||
})
|
// 单击(或短按)
|
||||||
break;
|
function onTap(dir : number) {
|
||||||
case 5:
|
clearClickResetTimer()
|
||||||
// 返回
|
|
||||||
uni.navigateBack()
|
beblue.value = dir
|
||||||
break;
|
clickResetTimer = setTimeout(() => {
|
||||||
|
beblue.value = -1
|
||||||
default:
|
clickResetTimer = null
|
||||||
break;
|
}, 500)
|
||||||
}
|
}
|
||||||
}
|
function clearClickResetTimer() {
|
||||||
const beblue = ref<number>(-1);
|
if (clickResetTimer) {
|
||||||
let clickResetTimer : ReturnType<typeof setTimeout> | null = null;
|
clearTimeout(clickResetTimer)
|
||||||
// 单击(或短按)
|
clickResetTimer = null
|
||||||
function onTap(dir : number) {
|
}
|
||||||
clearClickResetTimer()
|
}
|
||||||
|
|
||||||
beblue.value = dir
|
// 通用的生成函数
|
||||||
clickResetTimer = setTimeout(() => {
|
function genPaths(base, prefix, count, ext = 'png', startIndex = 0, pad = false) {
|
||||||
beblue.value = -1
|
return Array.from({ length: count }, (_, i) => {
|
||||||
clickResetTimer = null
|
const idx = pad
|
||||||
}, 500)
|
? String(i + startIndex).padStart(2, '0')
|
||||||
}
|
: i + startIndex
|
||||||
function clearClickResetTimer() {
|
return `${base}/${prefix}${idx}.${ext}`
|
||||||
if (clickResetTimer) {
|
})
|
||||||
clearTimeout(clickResetTimer)
|
}
|
||||||
clickResetTimer = null
|
const animArray = ref([
|
||||||
}
|
{
|
||||||
}
|
url: genPaths(
|
||||||
|
'/static/index/warehouse/animation',
|
||||||
// 通用的生成函数
|
'remit0',
|
||||||
function genPaths(base, prefix, count, ext = 'png', startIndex = 0, pad = false) {
|
5, // 张数
|
||||||
return Array.from({ length: count }, (_, i) => {
|
'png',
|
||||||
const idx = pad
|
1, // 起始索引为 1
|
||||||
? String(i + startIndex).padStart(2, '0')
|
false // 不补零
|
||||||
: i + startIndex
|
),
|
||||||
return `${base}/${prefix}${idx}.${ext}`
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const animArray = ref([
|
|
||||||
{
|
|
||||||
url: genPaths(
|
|
||||||
'/static/index/warehouse/animation',
|
|
||||||
'remit0',
|
|
||||||
5, // 张数
|
|
||||||
'png',
|
|
||||||
1, // 起始索引为 1
|
|
||||||
false // 不补零
|
|
||||||
),
|
|
||||||
width: '29vw',
|
width: '29vw',
|
||||||
height: '21vw'
|
height: '21vw'
|
||||||
} ,
|
},
|
||||||
{
|
{
|
||||||
url: genPaths(
|
url: genPaths(
|
||||||
'/static/index/warehouse/animation',
|
'/static/index/warehouse/animation',
|
||||||
|
|
@ -148,7 +151,7 @@
|
||||||
),
|
),
|
||||||
width: '26vw',
|
width: '26vw',
|
||||||
height: '16vw'
|
height: '16vw'
|
||||||
} ,
|
},
|
||||||
{
|
{
|
||||||
url: genPaths(
|
url: genPaths(
|
||||||
'/static/index/warehouse/animation',
|
'/static/index/warehouse/animation',
|
||||||
|
|
@ -160,7 +163,7 @@
|
||||||
),
|
),
|
||||||
width: '24vw',
|
width: '24vw',
|
||||||
height: '16vw'
|
height: '16vw'
|
||||||
} ,
|
},
|
||||||
{
|
{
|
||||||
url: genPaths(
|
url: genPaths(
|
||||||
'/static/index/warehouse/animation',
|
'/static/index/warehouse/animation',
|
||||||
|
|
@ -172,27 +175,28 @@
|
||||||
),
|
),
|
||||||
width: '17vw',
|
width: '17vw',
|
||||||
height: '13vw'
|
height: '13vw'
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less">
|
<style lang="less" scoped>
|
||||||
.wareaitem{
|
.wareaitem {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background: url('/static/index/warehouse/bg.png')no-repeat;
|
background: url('/static/index/warehouse/bg.png')no-repeat;
|
||||||
background-size:cover cover;
|
background-size: cover cover;
|
||||||
.tp{
|
|
||||||
image{
|
.tp {
|
||||||
|
image {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.operationbtn{
|
|
||||||
|
.operationbtn {
|
||||||
width: 20vw;
|
width: 20vw;
|
||||||
height: 10vw;
|
height: 10vw;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
@ -201,11 +205,12 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
>view{
|
|
||||||
|
>view {
|
||||||
width: 9vw;
|
width: 9vw;
|
||||||
height: 4vw;
|
height: 4vw;
|
||||||
border-radius: 1vw;
|
border-radius: 1vw;
|
||||||
border: 2rpx solid #D9DADC;
|
border: 2rpx solid #D9DADC;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -216,16 +221,18 @@
|
||||||
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
|
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.click-box {
|
.click-box {
|
||||||
color: #888d99;
|
color: #888d99;
|
||||||
background: rgba(255, 255, 255, 0.43);
|
background: rgba(255, 255, 255, 0.43);
|
||||||
}
|
}
|
||||||
|
|
||||||
.click-box-target {
|
.click-box-target {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
animation: scalePulse 360ms cubic-bezier(.2, .8, .2, 1);
|
animation: scalePulse 360ms cubic-bezier(.2, .8, .2, 1);
|
||||||
transform-origin: center center;
|
transform-origin: center center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grad-text {
|
.grad-text {
|
||||||
background: linear-gradient(90deg, #5b8bb3, #87a1bd);
|
background: linear-gradient(90deg, #5b8bb3, #87a1bd);
|
||||||
background-size: 200% 100%;
|
background-size: 200% 100%;
|
||||||
|
|
@ -235,193 +242,226 @@
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
transition: background-position 0.8s linear;
|
transition: background-position 0.8s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes scalePulse {
|
@keyframes scalePulse {
|
||||||
0% { transform: scale(1); }
|
0% {
|
||||||
25% { transform: scale(0.94); }
|
transform: scale(1);
|
||||||
65% { transform: scale(1.08); }
|
}
|
||||||
100% { transform: scale(1); }
|
|
||||||
|
25% {
|
||||||
|
transform: scale(0.94);
|
||||||
|
}
|
||||||
|
|
||||||
|
65% {
|
||||||
|
transform: scale(1.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.wareaitem-item{
|
|
||||||
|
.wareaitem-item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: -2vw;
|
left: -2vw;
|
||||||
|
|
||||||
.itemact1 {
|
.itemact1 {
|
||||||
width: 29vw;
|
width: 29vw;
|
||||||
height: 21vw;
|
height: 21vw;
|
||||||
top: 23vw;
|
top: 23vw;
|
||||||
left: 6vw;
|
left: 6vw;
|
||||||
z-index: 31;
|
z-index: 31;
|
||||||
}
|
}
|
||||||
.itemact2{
|
|
||||||
|
.itemact2 {
|
||||||
width: 26vw;
|
width: 26vw;
|
||||||
height: 16vw;
|
height: 16vw;
|
||||||
top: 15vw;
|
top: 15vw;
|
||||||
left: 41vw;
|
left: 41vw;
|
||||||
z-index: 27;
|
z-index: 27;
|
||||||
}
|
}
|
||||||
.itemact3{
|
|
||||||
|
.itemact3 {
|
||||||
width: 24vw;
|
width: 24vw;
|
||||||
height: 16vw;
|
height: 16vw;
|
||||||
top: 28vw;
|
top: 28vw;
|
||||||
left: 46vw;
|
left: 46vw;
|
||||||
z-index: 55;
|
z-index: 55;
|
||||||
}
|
}
|
||||||
.itemact4{
|
|
||||||
|
.itemact4 {
|
||||||
width: 17vw;
|
width: 17vw;
|
||||||
height: 13vw;
|
height: 13vw;
|
||||||
top: 22vw;
|
top: 22vw;
|
||||||
left: 67vw;
|
left: 67vw;
|
||||||
z-index: 36;
|
z-index: 36;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.wclik{
|
.wclik {
|
||||||
width: 22vw;
|
width: 22vw;
|
||||||
height: 14vw;
|
height: 14vw;
|
||||||
top: 16vw;
|
top: 16vw;
|
||||||
left: 44vw;
|
left: 44vw;
|
||||||
z-index: 47;
|
z-index: 47;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gifs{
|
.gifs {
|
||||||
width: 41vw;
|
width: 41vw;
|
||||||
height:20vw;
|
height: 20vw;
|
||||||
top: 21.6vw;
|
top: 21.6vw;
|
||||||
left: 27.5vw;
|
left: 27.5vw;
|
||||||
z-index: 29;
|
z-index: 29;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ys{
|
.ys {
|
||||||
width: 11vw;
|
width: 11vw;
|
||||||
height: 8vw;
|
height: 8vw;
|
||||||
top: 24.2vw;
|
top: 24.2vw;
|
||||||
left: 57.9vw;
|
left: 57.9vw;
|
||||||
z-index: 28;
|
z-index: 28;
|
||||||
}
|
}
|
||||||
.wareitem1{
|
|
||||||
width: 86vw;
|
.wareitem1 {
|
||||||
height: 44vw;
|
width: 86vw;
|
||||||
top: 1vw;
|
height: 44vw;
|
||||||
left: 10.5vw;
|
top: 1vw;
|
||||||
z-index: 15;
|
left: 10.5vw;
|
||||||
}
|
z-index: 15;
|
||||||
.wareitem4{
|
}
|
||||||
width: 11vw;
|
|
||||||
height: 7vw;
|
.wareitem4 {
|
||||||
top: 30.9vw;
|
width: 11vw;
|
||||||
left: 60vw;
|
height: 7vw;
|
||||||
}
|
top: 30.9vw;
|
||||||
.wareitem6{
|
left: 60vw;
|
||||||
width: 17vw;
|
}
|
||||||
height: 12vw;
|
|
||||||
top: 28vw;
|
.wareitem6 {
|
||||||
right: -2vw;
|
width: 17vw;
|
||||||
z-index: 35;
|
height: 12vw;
|
||||||
}
|
top: 28vw;
|
||||||
.wareitem5{
|
right: -2vw;
|
||||||
width: 18vw;
|
z-index: 35;
|
||||||
height: 15vw;
|
}
|
||||||
top: 37vw;
|
|
||||||
left: 73vw;
|
.wareitem5 {
|
||||||
z-index: 35;
|
width: 18vw;
|
||||||
}
|
height: 15vw;
|
||||||
.wareitem8{
|
top: 37vw;
|
||||||
width: 26vw;
|
left: 73vw;
|
||||||
height: 8vw;
|
z-index: 35;
|
||||||
top: 29.7vw;
|
}
|
||||||
left: 21.8vw;
|
|
||||||
}
|
.wareitem8 {
|
||||||
.wareitem11{
|
width: 26vw;
|
||||||
width: 3vw;
|
height: 8vw;
|
||||||
height:3vw;
|
top: 29.7vw;
|
||||||
top: 24.5vw;
|
left: 21.8vw;
|
||||||
left: 60vw;
|
}
|
||||||
z-index: 35;
|
|
||||||
}
|
.wareitem11 {
|
||||||
.wareitem10{
|
width: 3vw;
|
||||||
width: 55vw;
|
height: 3vw;
|
||||||
height: 27vw;
|
top: 24.5vw;
|
||||||
top: 38vw;
|
left: 60vw;
|
||||||
left: 20vw;
|
z-index: 35;
|
||||||
z-index: 36;
|
}
|
||||||
}
|
|
||||||
|
.wareitem10 {
|
||||||
>view{
|
width: 55vw;
|
||||||
|
height: 27vw;
|
||||||
|
top: 38vw;
|
||||||
|
left: 20vw;
|
||||||
|
z-index: 36;
|
||||||
|
}
|
||||||
|
|
||||||
|
>view {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.annotation1{
|
|
||||||
top: 20.5vw;
|
.annotation1 {
|
||||||
left: 19vw;
|
top: 20.5vw;
|
||||||
}
|
left: 19vw;
|
||||||
.annotation2{
|
}
|
||||||
top: 13vw;
|
|
||||||
left: 47vw;
|
.annotation2 {
|
||||||
}
|
top: 13vw;
|
||||||
.annotation3{
|
left: 47vw;
|
||||||
top: 23vw;
|
}
|
||||||
left: 50vw;
|
|
||||||
}
|
.annotation3 {
|
||||||
.annotation4{
|
top: 23vw;
|
||||||
top: 17vw;
|
left: 50vw;
|
||||||
left: 68vw;
|
}
|
||||||
}
|
|
||||||
.annotation5{
|
.annotation4 {
|
||||||
top: 32vw;
|
top: 17vw;
|
||||||
left: 74vw;
|
left: 68vw;
|
||||||
}
|
}
|
||||||
.annotation6{
|
|
||||||
top: 23vw;
|
.annotation5 {
|
||||||
right: 6vw;
|
top: 32vw;
|
||||||
}
|
left: 74vw;
|
||||||
// title
|
}
|
||||||
.annotation {
|
|
||||||
width: 7vw;
|
.annotation6 {
|
||||||
height: 8vw;
|
top: 23vw;
|
||||||
z-index: 20;
|
right: 6vw;
|
||||||
position: fixed;
|
}
|
||||||
|
|
||||||
|
// title
|
||||||
>view{
|
.annotation {
|
||||||
position: relative;
|
width: 7vw;
|
||||||
&:nth-child(1){
|
height: 8vw;
|
||||||
width: 7vw;
|
z-index: 20;
|
||||||
height: 2vw;
|
position: fixed;
|
||||||
background: #F2F3F7;
|
|
||||||
box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(182,186,196,0.35);
|
|
||||||
border: 2rpx solid #FFFFFF;
|
>view {
|
||||||
font-weight: 400;
|
position: relative;
|
||||||
font-size: 1.3vw;
|
|
||||||
color: #333333;
|
&:nth-child(1) {
|
||||||
display: flex;
|
width: 7vw;
|
||||||
align-items: center;
|
height: 2vw;
|
||||||
justify-content: center;
|
background: #F2F3F7;
|
||||||
z-index: 3;
|
box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(182, 186, 196, 0.35);
|
||||||
}
|
border: 2rpx solid #FFFFFF;
|
||||||
&:nth-child(2){
|
font-weight: 400;
|
||||||
width: 4vw;
|
font-size: 1.3vw;
|
||||||
height: 2vw;
|
color: #333333;
|
||||||
z-index: 2;
|
display: flex;
|
||||||
margin: -2rpx auto 0;
|
align-items: center;
|
||||||
z-index: 2;
|
justify-content: center;
|
||||||
}
|
z-index: 3;
|
||||||
&:nth-child(3){
|
}
|
||||||
width: 3vw;
|
|
||||||
height: 5vw;
|
&:nth-child(2) {
|
||||||
z-index: 1;
|
width: 4vw;
|
||||||
margin: -1vw auto 0;
|
height: 2vw;
|
||||||
}
|
z-index: 2;
|
||||||
|
margin: -2rpx auto 0;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(3) {
|
||||||
|
width: 3vw;
|
||||||
|
height: 5vw;
|
||||||
|
z-index: 1;
|
||||||
|
margin: -1vw auto 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.backgroundContainer {
|
|
||||||
|
.backgroundContainer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -445,4 +485,4 @@
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -9,6 +9,7 @@ export const isRel = (tel) => {
|
||||||
url: `/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(tel)}`,
|
url: `/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(tel)}`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//获得登录图片
|
//获得登录图片
|
||||||
|
|
|
||||||
|
|
@ -201,15 +201,13 @@
|
||||||
const getImg = () => {
|
const getImg = () => {
|
||||||
if (/^\d{11}$/.test(form.username)) {
|
if (/^\d{11}$/.test(form.username)) {
|
||||||
isRel(form.username).then((res : any) => {
|
isRel(form.username).then((res : any) => {
|
||||||
console.log("res",res)
|
if (res.result.code == `0`) {
|
||||||
if (res.result.code === '0') {
|
uni.setStorageSync('serverUrl', res.result.orgList[0].serverUrl);
|
||||||
|
|
||||||
uni.setStorageSync('serverUrl', res.result.data.serverUrl);
|
|
||||||
// console.log("9999",res.result.orgList)
|
|
||||||
allserve.value = res.result.orgList
|
allserve.value = res.result.orgList
|
||||||
time.value = Date.now();
|
time.value = Date.now();
|
||||||
|
|
||||||
getLoginCode(time.value).then((res : any) => {
|
getLoginCode(time.value).then((res : any) => {
|
||||||
|
console.log("guhb", res)
|
||||||
form.captcha = res.message
|
form.captcha = res.message
|
||||||
canclick.value = true
|
canclick.value = true
|
||||||
})
|
})
|
||||||
|
|
@ -286,7 +284,7 @@
|
||||||
form.checkKey = time.value
|
form.checkKey = time.value
|
||||||
huakuaiOpen.value = false
|
huakuaiOpen.value = false
|
||||||
loginApp(form).then(res => {
|
loginApp(form).then(res => {
|
||||||
console.log("info",res)
|
console.log("info", res)
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
|
|
|
||||||
|
|
@ -534,17 +534,6 @@
|
||||||
false // 不补零
|
false // 不补零
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: '仓库',
|
|
||||||
url: genPaths(
|
|
||||||
'/static/index/watch',
|
|
||||||
'warehouse_',
|
|
||||||
6, // 张数
|
|
||||||
'png',
|
|
||||||
1, // 起始索引为 1
|
|
||||||
false // 不补零
|
|
||||||
)
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: '配务室',
|
name: '配务室',
|
||||||
url: genPaths(
|
url: genPaths(
|
||||||
|
|
@ -557,7 +546,19 @@
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '服务大厅',
|
name: '库房',
|
||||||
|
url: genPaths(
|
||||||
|
'/static/index/watch',
|
||||||
|
'warehouse_',
|
||||||
|
6, // 张数
|
||||||
|
'png',
|
||||||
|
1, // 起始索引为 1
|
||||||
|
false // 不补零
|
||||||
|
)
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: '消洗区',
|
||||||
url: genPaths(
|
url: genPaths(
|
||||||
'/static/index/watch',
|
'/static/index/watch',
|
||||||
'service_',
|
'service_',
|
||||||
|
|
@ -720,12 +721,13 @@
|
||||||
uni.setStorageSync('nuId', filteredMenu.value[savetypeNow.value].nuId);
|
uni.setStorageSync('nuId', filteredMenu.value[savetypeNow.value].nuId);
|
||||||
uni.setStorageSync('nuName', filteredMenu.value[savetypeNow.value].nuName);
|
uni.setStorageSync('nuName', filteredMenu.value[savetypeNow.value].nuName);
|
||||||
uni.setStorageSync('customerId', filteredMenu.value[savetypeNow.value].elderInfo ? filteredMenu.value[savetypeNow.value].elderInfo?.id : null);
|
uni.setStorageSync('customerId', filteredMenu.value[savetypeNow.value].elderInfo ? filteredMenu.value[savetypeNow.value].elderInfo?.id : null);
|
||||||
console.log("??????1111",filteredMenu.value[savetypeNow.value])
|
uni.setStorageSync('NUall', filteredMenu.value[savetypeNow.value]);
|
||||||
|
// console.log("??????1111",filteredMenu.value[savetypeNow.value])
|
||||||
if (!typeNow.value) {
|
if (!typeNow.value) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/NursingNew/index'
|
url: '/pages/NursingNew/index'
|
||||||
})
|
})
|
||||||
} else if (typeNow.value === 1) {
|
} else if (typeNow.value === 2) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/Warehousing/index'
|
url: '/pages/Warehousing/index'
|
||||||
})
|
})
|
||||||
|
|
@ -1371,11 +1373,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.big-bgc {
|
.big-bgc {
|
||||||
margin-left: -20rpx;
|
margin-left: -10rpx;
|
||||||
margin-top: 20rpx;
|
margin-top: 40rpx;
|
||||||
width: 1320rpx;
|
width: 1290rpx;
|
||||||
height: 1045rpx;
|
height: 1020rpx;
|
||||||
border-radius: 50rpx;
|
border-radius: 55rpx;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
@ -1763,7 +1765,7 @@
|
||||||
.bgc-card {
|
.bgc-card {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 130rpx;
|
height: 130rpx;
|
||||||
background-color: #EAEAEC;
|
background-color: rgba(226, 227, 231, 0.5);
|
||||||
border-radius: 30rpx;
|
border-radius: 30rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,6 @@ const _sfc_main = {
|
||||||
formatAppLog("log", "at pages/camera.nvue:110", "Tel event detail:", event.detail);
|
formatAppLog("log", "at pages/camera.nvue:110", "Tel event detail:", event.detail);
|
||||||
},
|
},
|
||||||
killView() {
|
killView() {
|
||||||
formatAppLog("log", "at pages/camera.nvue:114", "销毁了11111111111111111111111111111");
|
|
||||||
this.$refs.monitor.killView && this.$refs.monitor.killView();
|
this.$refs.monitor.killView && this.$refs.monitor.killView();
|
||||||
},
|
},
|
||||||
switchDisplay(mode) {
|
switchDisplay(mode) {
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
"id": "__UNI__FB2D473",
|
"id": "__UNI__FB2D473",
|
||||||
"name": "护理单元",
|
"name": "护理单元",
|
||||||
"version": {
|
"version": {
|
||||||
"name": "1.6.4",
|
"name": "1.6.6",
|
||||||
"code": 164
|
"code": 166
|
||||||
},
|
},
|
||||||
"description": "护理单元",
|
"description": "护理单元",
|
||||||
"developer": {
|
"developer": {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.wareaitem[data-v-6f94d51e]{width:100%;height:100%;position:fixed;top:0;left:0;background:url(../../static/index/warehouse/bg.png) no-repeat;background-size:cover cover}.wareaitem .tp uni-image[data-v-6f94d51e]{width:100%;height:100%}.wareaitem .operationbtn[data-v-6f94d51e]{width:20vw;height:10vw;position:absolute;right:1.5vw;bottom:2vw;display:flex;justify-content:space-between;flex-wrap:wrap}.wareaitem .operationbtn>uni-view[data-v-6f94d51e]{width:9vw;height:4vw;border-radius:1vw;border:.0625rem solid #D9DADC;display:flex;justify-content:center;align-items:center;font-weight:400;font-size:1.3vw;color:#888d99;margin:0 .3vw;transition:transform .18s ease,box-shadow .18s ease,background .25s ease;-webkit-tap-highlight-color:transparent}.wareaitem .operationbtn .click-box[data-v-6f94d51e]{color:#888d99;background:rgba(255,255,255,.43)}.wareaitem .operationbtn .click-box-target[data-v-6f94d51e]{color:transparent;animation:scalePulse-6f94d51e .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}.wareaitem .operationbtn .grad-text[data-v-6f94d51e]{background:linear-gradient(90deg,#5b8bb3,#87a1bd);background-size:200% 100%;background-position:0% 50%;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;transition:background-position .8s linear}@keyframes scalePulse-6f94d51e{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.wareaitem .wareaitem-item[data-v-6f94d51e]{width:100%;height:100%;position:fixed;top:0;left:-2vw}.wareaitem .wareaitem-item .itemact1[data-v-6f94d51e]{width:29vw;height:21vw;top:23vw;left:6vw;z-index:31}.wareaitem .wareaitem-item .itemact2[data-v-6f94d51e]{width:26vw;height:16vw;top:15vw;left:41vw;z-index:27}.wareaitem .wareaitem-item .itemact3[data-v-6f94d51e]{width:24vw;height:16vw;top:28vw;left:46vw;z-index:55}.wareaitem .wareaitem-item .itemact4[data-v-6f94d51e]{width:17vw;height:13vw;top:22vw;left:67vw;z-index:36}.wareaitem .wareaitem-item .wclik[data-v-6f94d51e]{width:22vw;height:14vw;top:16vw;left:44vw;z-index:47}.wareaitem .wareaitem-item .gifs[data-v-6f94d51e]{width:41vw;height:20vw;top:21.6vw;left:27.5vw;z-index:29}.wareaitem .wareaitem-item .ys[data-v-6f94d51e]{width:11vw;height:8vw;top:24.2vw;left:57.9vw;z-index:28}.wareaitem .wareaitem-item .wareitem1[data-v-6f94d51e]{width:86vw;height:44vw;top:1vw;left:10.5vw;z-index:15}.wareaitem .wareaitem-item .wareitem4[data-v-6f94d51e]{width:11vw;height:7vw;top:30.9vw;left:60vw}.wareaitem .wareaitem-item .wareitem6[data-v-6f94d51e]{width:17vw;height:12vw;top:28vw;right:-2vw;z-index:35}.wareaitem .wareaitem-item .wareitem5[data-v-6f94d51e]{width:18vw;height:15vw;top:37vw;left:73vw;z-index:35}.wareaitem .wareaitem-item .wareitem8[data-v-6f94d51e]{width:26vw;height:8vw;top:29.7vw;left:21.8vw}.wareaitem .wareaitem-item .wareitem11[data-v-6f94d51e]{width:3vw;height:3vw;top:24.5vw;left:60vw;z-index:35}.wareaitem .wareaitem-item .wareitem10[data-v-6f94d51e]{width:55vw;height:27vw;top:38vw;left:20vw;z-index:36}.wareaitem .wareaitem-item>uni-view[data-v-6f94d51e]{position:absolute}.wareaitem .annotation1[data-v-6f94d51e]{top:20.5vw;left:19vw}.wareaitem .annotation2[data-v-6f94d51e]{top:13vw;left:47vw}.wareaitem .annotation3[data-v-6f94d51e]{top:23vw;left:50vw}.wareaitem .annotation4[data-v-6f94d51e]{top:17vw;left:68vw}.wareaitem .annotation5[data-v-6f94d51e]{top:32vw;left:74vw}.wareaitem .annotation6[data-v-6f94d51e]{top:23vw;right:6vw}.wareaitem .annotation[data-v-6f94d51e]{width:7vw;height:8vw;z-index:20;position:fixed}.wareaitem .annotation>uni-view[data-v-6f94d51e]{position:relative}.wareaitem .annotation>uni-view[data-v-6f94d51e]:nth-child(1){width:7vw;height:2vw;background:#f2f3f7;box-shadow:0 0 rgba(182,186,196,.35);border:.0625rem solid #FFFFFF;font-weight:400;font-size:1.3vw;color:#333;display:flex;align-items:center;justify-content:center;z-index:3}.wareaitem .annotation>uni-view[data-v-6f94d51e]:nth-child(2){width:4vw;height:2vw;margin:-.0625rem auto 0;z-index:2}.wareaitem .annotation>uni-view[data-v-6f94d51e]:nth-child(3){width:3vw;height:5vw;z-index:1;margin:-1vw auto 0}.backgroundContainer[data-v-6f94d51e]{display:flex;flex-direction:column;position:relative;width:100vw;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-6f94d51e]{width:100vw;height:100vh;display:flex;flex-direction:column;position:relative;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
.box{width:100vw;height:100vh;display:flex;justify-content:space-between;flex-wrap:wrap;padding:4vw 2vw 0;overflow:hidden}.box .lefts{width:70vw;height:100%;margin-left:1vw}.box .lefts .scroll-Y{width:100%;height:100%;display:flex;flex-wrap:wrap}.box .lefts .boxitem{width:22vw;height:18vw;background:rgba(255,255,255,.7);border-radius:1.6vw;margin:0 1.3vw 1.2vw 0;border:2px dashed #fff;display:inline-block}.box .lefts .active{border:2px dashed #017DE9!important}.box .rights{width:25vw;height:100%}.box .rights .shitem{width:24vw;height:10.3vw;background:#e8e9ed;border-radius:1.6vw;padding:1.8vw}body{background:#eff0f4}
|
||||||
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 28 KiB |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/animation/checkout01.png
vendored
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/animation/checkout02.png
vendored
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/animation/checkout03.png
vendored
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/animation/checkout04.png
vendored
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/animation/checkout05.png
vendored
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 612 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 161 KiB |
|
After Width: | Height: | Size: 153 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t@import \"./uni_modules/vk-uview-ui/index.scss\";\r\n\t/*每个页面公共css */\r\n\t\r\n</style>\n","import App from './App'\r\n// 引入 uView UI\r\nimport uView from './uni_modules/vk-uview-ui';\r\n\r\n\r\n// #ifndef VUE3\r\nimport Vue from 'vue'\r\nimport './uni.promisify.adaptor'\r\nVue.config.productionTip = false\r\nApp.mpType = 'app'\r\nconst app = new Vue({\r\n\t...App\r\n})\r\napp.$mount()\r\n// #endif\r\n\r\n// #ifdef VUE3\r\nimport {\r\n\tcreateSSRApp\r\n} from 'vue'\r\nimport donghua from '@/component/public/donghua.vue'\r\nimport arrowkeys from '@/component/public/newgame/arrowkeys.vue'\r\nexport function createApp() {\r\n\tconst app = createSSRApp(App)\r\n\r\n\t// 使用 uView UI\r\n\tapp.use(uView)\r\n\tapp.component('donghua', donghua)\r\n\tapp.component('arrowkeys', arrowkeys)\r\n\treturn {\r\n\t\tapp\r\n\t}\r\n}\r\n// #endif"],"names":["uni","createSSRApp","App","uView"],"mappings":";;;;;;;;;;;;;;;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACSD,MAAM,UAAU,MAAW;AAC3B,MAAM,YAAY,MAAW;AACtB,SAAS,YAAY;AAC3B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAG5B,MAAI,IAAIC,iCAAK;AACb,MAAI,UAAU,WAAW,OAAO;AAChC,MAAI,UAAU,aAAa,SAAS;AACpC,SAAO;AAAA,IACN;AAAA,EACA;AACF;;;"}
|
{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t@import \"./uni_modules/vk-uview-ui/index.scss\";\r\n\t/*每个页面公共css */\r\n\t\r\n</style>\n","import App from './App'\r\n// 引入 uView UI\r\nimport uView from './uni_modules/vk-uview-ui';\r\n\r\n\r\n// #ifndef VUE3\r\nimport Vue from 'vue'\r\nimport './uni.promisify.adaptor'\r\nVue.config.productionTip = false\r\nApp.mpType = 'app'\r\nconst app = new Vue({\r\n\t...App\r\n})\r\napp.$mount()\r\n// #endif\r\n\r\n// #ifdef VUE3\r\nimport {\r\n\tcreateSSRApp\r\n} from 'vue'\r\nimport donghua from '@/component/public/donghua.vue'\r\nimport arrowkeys from '@/component/public/newgame/arrowkeys.vue'\r\nexport function createApp() {\r\n\tconst app = createSSRApp(App)\r\n\r\n\t// 使用 uView UI\r\n\tapp.use(uView)\r\n\tapp.component('donghua', donghua)\r\n\tapp.component('arrowkeys', arrowkeys)\r\n\treturn {\r\n\t\tapp\r\n\t}\r\n}\r\n// #endif"],"names":["uni","createSSRApp","App","uView"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACSD,MAAM,UAAU,MAAW;AAC3B,MAAM,YAAY,MAAW;AACtB,SAAS,YAAY;AAC3B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAG5B,MAAI,IAAIC,iCAAK;AACb,MAAI,UAAU,WAAW,OAAO;AAChC,MAAI,UAAU,aAAa,SAAS;AACpC,SAAO;AAAA,IACN;AAAA,EACA;AACF;;;"}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"api.js","sources":["pages/NursingNew/component/nurse/api.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/index.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n// 查询服务类型\r\nexport const getServiceTree = () => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,\r\n\t\tmethod: 'get',\r\n\t})\r\n}\r\n// 查询表格\r\nexport const getNclist = () => {\r\n\treturn request({\r\n\t\turl: '/nuIpadApi/nuBizNuCustomerServer/getNclist?nuId=1&customerId=1',\r\n\t\tmethod: 'get',\r\n\t})\r\n}\r\n// 新增表格\r\nexport const addNuCustomerServer = (params) => {\r\n\treturn request({\r\n\t\turl: '/nuIpadApi/nuBizNuCustomerServer/addNuCustomerServer',\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}\r\n// 移动表格\r\nexport const editNuCustomerServer = (params) => {\r\n\treturn request({\r\n\t\turl: '/nuIpadApi/nuBizNuCustomerServer/editNuCustomerServer',\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}\r\nexport const deleteNuCustomerServer = (params) => {\n\treturn request({\n\t\turl: `/nuIpadApi/nuBizNuCustomerServer/deleteNuCustomerServer?id=${params.id}`,\n\t\tmethod: 'delete',\n\t})\n}\r\n// 移动表格\r\nexport const addBatch = (params) => {\r\n\treturn request({\r\n\t\turl: '/nuIpadApi/nuBizNuCustomerServer/addBatch',\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}"],"names":["request","uni"],"mappings":";;;AAMY,MAAC,iBAAiB,MAAM;AACnC,SAAOA,sBAAQ;AAAA,IACd,KAAK,GAAGC,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,EACV,CAAE;AACF;;"}
|
{"version":3,"file":"api.js","sources":["pages/NursingNew/component/nurse/api.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/index.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n// 查询服务类型\r\nexport const getServiceTree = () => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,\r\n\t\tmethod: 'get',\r\n\t})\r\n}\r\n// 查询表格\r\nexport const getNclist = (nuId,customerId) => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/nuIpadApi/nuBizNuCustomerServer/getNclist?nuId=${nuId}&customerId=${customerId}`,\r\n\t\tmethod: 'get',\r\n\t})\r\n}\r\n// 保存表格\r\nexport const addBatch = (params) => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/nuIpadApi/nuBizNuCustomerServer/addBatch`,\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}"],"names":["request","uni"],"mappings":";;;AAMY,MAAC,iBAAiB,MAAM;AACnC,SAAOA,sBAAQ;AAAA,IACd,KAAK,GAAGC,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,EACV,CAAE;AACF;AAEY,MAAC,YAAY,CAAC,MAAK,eAAe;AAC7C,SAAOD,sBAAQ;AAAA,IACd,KAAK,GAAGC,cAAG,MAAC,eAAe,WAAW,CAAC,mDAAmD,IAAI,eAAe,UAAU;AAAA,IACvH,QAAQ;AAAA,EACV,CAAE;AACF;;;"}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"Warehouse.js","sources":["../Hbuilder/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvV2FyZWhvdXNlL1dhcmVob3VzZS52dWU"],"sourcesContent":["import MiniProgramPage from 'D:/hldy_app/pages/Warehouse/Warehouse.vue'\nwx.createPage(MiniProgramPage)"],"names":["MiniProgramPage"],"mappings":";;AACA,GAAG,WAAWA,UAAe,eAAA;"}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"Warehouse2.js","sources":["../Hbuilder/HBuilderX/plugins/uniapp-cli-vite/uniPage:/RDovaGxkeV9hcHAvcGFnZXMvV2FyZWhvdXNlL1dhcmVob3VzZS52dWU"],"sourcesContent":["import MiniProgramPage from 'D:/hldy_app/pages/Warehouse/Warehouse.vue'\nwx.createPage(MiniProgramPage)"],"names":["MiniProgramPage"],"mappings":";;AACA,GAAG,WAAWA,UAAe,eAAA;"}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"procurement.js","sources":["../Hbuilder/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvV2FyZWhvdXNlL3Byb2N1cmVtZW50LnZ1ZQ"],"sourcesContent":["import MiniProgramPage from 'D:/hldy_app/pages/Warehouse/procurement.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,GAAG,WAAW,eAAe;"}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"api.js","sources":["pages/login/api.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/index.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n//检测是否存在用户\r\nexport const isRel = (tel) => {\n\treturn request({\n\t\turl: `/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(tel)}`,\n\t\tmethod: 'get',\n\t})\n}\r\n\r\n//获得登录图片\r\nexport const getLoginCode = (time) => {\n\treturn request({\n\t\turl: `${uni.getStorageSync('serverUrl')}/sys/randomCode/${time}`,\n\t\tmethod: 'get',\n\t})\n}\r\n\r\n//登录\r\nexport const loginApp = (params) => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/sys/login`,\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}\r\n// // 查询表格\r\n// export const getNclist = () => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/getNclist?nuId=1&customerId=1',\r\n// \t\tmethod: 'get',\r\n// \t})\r\n// }\r\n// // 新增表格\r\n// export const addNuCustomerServer = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/addNuCustomerServer',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }\r\n// // 移动表格\r\n// export const editNuCustomerServer = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/editNuCustomerServer',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }\r\n// export const deleteNuCustomerServer = (params) => {\n// \treturn request({\n// \t\turl: `/nuIpadApi/nuBizNuCustomerServer/deleteNuCustomerServer?id=${params.id}`,\n// \t\tmethod: 'delete',\n// \t})\n// }\r\n// // 移动表格\r\n// export const addBatch = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/addBatch',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }"],"names":["request","uni"],"mappings":";;;AAMY,MAAC,QAAQ,CAAC,QAAQ;AAC7B,SAAOA,sBAAQ;AAAA,IACd,KAAK,yCAAyC,mBAAmB,GAAG,CAAC;AAAA,IACrE,QAAQ;AAAA,EACV,CAAE;AACF;AAGY,MAAC,eAAe,CAAC,SAAS;AACrC,SAAOA,sBAAQ;AAAA,IACd,KAAK,GAAGC,oBAAI,eAAe,WAAW,CAAC,mBAAmB,IAAI;AAAA,IAC9D,QAAQ;AAAA,EACV,CAAE;AACF;AAGY,MAAC,WAAW,CAAC,WAAW;AACnC,SAAOD,sBAAQ;AAAA,IACd,KAAK,GAAGC,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,IACR,MAAM;AAAA,EACR,CAAE;AACF;;;;"}
|
{"version":3,"file":"api.js","sources":["pages/login/api.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/index.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n//检测是否存在用户\r\nexport const isRel = (tel) => {\n\treturn request({\n\t\turl: `/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(tel)}`,\n\t\tmethod: 'get',\n\t})\r\n\t\n}\r\n\r\n//获得登录图片\r\nexport const getLoginCode = (time) => {\n\treturn request({\n\t\turl: `${uni.getStorageSync('serverUrl')}/sys/randomCode/${time}`,\n\t\tmethod: 'get',\n\t})\n}\r\n\r\n//登录\r\nexport const loginApp = (params) => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/sys/login`,\r\n\t\tmethod: 'post',\r\n\t\tdata: params,\r\n\t})\r\n}\r\n// // 查询表格\r\n// export const getNclist = () => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/getNclist?nuId=1&customerId=1',\r\n// \t\tmethod: 'get',\r\n// \t})\r\n// }\r\n// // 新增表格\r\n// export const addNuCustomerServer = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/addNuCustomerServer',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }\r\n// // 移动表格\r\n// export const editNuCustomerServer = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/editNuCustomerServer',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }\r\n// export const deleteNuCustomerServer = (params) => {\n// \treturn request({\n// \t\turl: `/nuIpadApi/nuBizNuCustomerServer/deleteNuCustomerServer?id=${params.id}`,\n// \t\tmethod: 'delete',\n// \t})\n// }\r\n// // 移动表格\r\n// export const addBatch = (params) => {\r\n// \treturn request({\r\n// \t\turl: '/nuIpadApi/nuBizNuCustomerServer/addBatch',\r\n// \t\tmethod: 'post',\r\n// \t\tdata: params,\r\n// \t})\r\n// }"],"names":["request","uni"],"mappings":";;;AAMY,MAAC,QAAQ,CAAC,QAAQ;AAC7B,SAAOA,sBAAQ;AAAA,IACd,KAAK,yCAAyC,mBAAmB,GAAG,CAAC;AAAA,IACrE,QAAQ;AAAA,EACV,CAAE;AAEF;AAGY,MAAC,eAAe,CAAC,SAAS;AACrC,SAAOA,sBAAQ;AAAA,IACd,KAAK,GAAGC,oBAAI,eAAe,WAAW,CAAC,mBAAmB,IAAI;AAAA,IAC9D,QAAQ;AAAA,EACV,CAAE;AACF;AAGY,MAAC,WAAW,CAAC,WAAW;AACnC,SAAOD,sBAAQ;AAAA,IACd,KAAK,GAAGC,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,IACR,MAAM;AAAA,EACR,CAAE;AACF;;;;"}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"lunpan.js","sources":["pages/watch/api/lunpan.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/guanli.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n// 用你给的四个固定值\nexport const movedirection = (direction,startOrNot) => {\n const url = `/iot/tplink/cameraInfo/motionCtrl?deviceIndex=${uni.getStorageSync('saveinit') || 5}&direction=${direction}&startOrNot=${startOrNot}&speed=1`;\n return request({ url, method: 'get' });\n}\r\n\r\n\r\n// 获取护理单元\r\nexport const queryPadPageList = () => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/api/pad/baseInfo/queryPadPageList`,\r\n\t\tmethod: 'get'\r\n\t})\r\n}"],"names":["uni","request"],"mappings":";;;AAMY,MAAC,gBAAgB,CAAC,WAAU,eAAe;AACrD,QAAM,MAAM,iDAAiDA,cAAG,MAAC,eAAe,UAAU,KAAK,CAAC,cAAc,SAAS,eAAe,UAAU;AAChJ,SAAOC,eAAO,QAAC,EAAE,KAAK,QAAQ,MAAO,CAAA;AACvC;AAIY,MAAC,mBAAmB,MAAM;AACrC,SAAOA,uBAAQ;AAAA,IACd,KAAK,GAAGD,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,EACV,CAAE;AACF;;;"}
|
{"version":3,"file":"lunpan.js","sources":["pages/watch/api/lunpan.js"],"sourcesContent":["// 引入 request 文件\r\nimport request from '@/request/guanli.js'\r\n\r\n// 以下 api 为博主项目示例,实际与项目相匹配\r\n\r\n// 用你给的四个固定值\nexport const movedirection = (direction,startOrNot) => {\n const url = `/iot/tplink/cameraInfo/motionCtrl?deviceIndex=${uni.getStorageSync('saveinit') ? uni.getStorageSync('saveinit'): 5}&direction=${direction}&startOrNot=${startOrNot}&speed=1`;\n return request({ url, method: 'get' });\n}\r\n\r\n\r\n// 获取护理单元\r\nexport const queryPadPageList = () => {\r\n\treturn request({\r\n\t\turl: `${uni.getStorageSync('serverUrl')}/api/pad/baseInfo/queryPadPageList`,\r\n\t\tmethod: 'get'\r\n\t})\r\n}"],"names":["uni","request"],"mappings":";;;AAMY,MAAC,gBAAgB,CAAC,WAAU,eAAe;AACrD,QAAM,MAAM,iDAAiDA,cAAAA,MAAI,eAAe,UAAU,IAAIA,oBAAI,eAAe,UAAU,IAAG,CAAC,cAAc,SAAS,eAAe,UAAU;AAC/K,SAAOC,eAAO,QAAC,EAAE,KAAK,QAAQ,MAAO,CAAA;AACvC;AAIY,MAAC,mBAAmB,MAAM;AACrC,SAAOA,uBAAQ;AAAA,IACd,KAAK,GAAGD,cAAG,MAAC,eAAe,WAAW,CAAC;AAAA,IACvC,QAAQ;AAAA,EACV,CAAE;AACF;;;"}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"guanli.js","sources":["request/guanli.js"],"sourcesContent":["// 全局请求封装\r\nconst base_url = 'https://www.focusnu.com/devopsapi'\r\n// 请求超出时间\r\nconst timeout = 5000\r\n\r\n// 需要修改token,和根据实际修改请求头\r\nexport default (params) => {\r\n\tlet url = params.url;\r\n\tlet method = params.method || \"get\";\r\n\tlet data = params.data || {};\r\n\tlet header = {\r\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\r\n\t\t'Content-Type': 'application/json;charset=UTF-8',\r\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t// 'Tenant-Id': uni.getStorageSync('tenantId') || 'xxx', // avue配置相关\r\n\t\t...params.header\r\n\t}\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tuni.request({\r\n\t\t\t// https开头的不修改,不是的话则添加base,为啥呢,因为有两种base啊\r\n\t\t\turl: /^https?:\\/\\//.test(url) ? url : base_url + url,\r\n\t\t\tmethod: method,\r\n\t\t\theader: header,\r\n\t\t\tdata: data,\r\n\t\t\ttimeout,\r\n\t\t\tsuccess(response) {\r\n\t\t\t\tconst res = response\r\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\t//获取成功\r\n\t\t\t\t// console.log(res.statusCode);\r\n\t\t\t\tif (res.statusCode == 200) {\r\n\t\t\t\t\tresolve(res.data);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tconsole.log(\"http\", /^https?:\\/\\//.test(url) ? url : base_url + url)\r\n\t\t\t\t\tconsole.log(\"res\",response)\r\n\t\t\t\t\tconsole.log(\"data\",data)\r\n\t\t\t\t\tswitch (res.statusCode) {\r\n\t\t\t\t\t\tcase 401:\r\n\t\t\t\t\t\t\tuni.showModal({\r\n\t\t\t\t\t\t\t\ttitle: \"提示\",\r\n\t\t\t\t\t\t\t\tcontent: \"登录过期\",\r\n\t\t\t\t\t\t\t\tshowCancel: false,\r\n\t\t\t\t\t\t\t\tsuccess() {\r\n\t\t\t\t\t\t\t\t\tuni.clearStorageSync()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/login\",\r\n\t\t\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t\t\t}, 1000);\r\n\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 404:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请重试...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tfail(err) {\r\n\t\t\t\tconsole.log(err)\r\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '网络异常',\r\n\t\t\t\t\t\ticon: \"error\",\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '未知异常',\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t\treject(err);\r\n\r\n\t\t\t},\r\n\t\t\tcomplete() {\r\n\t\t\t\t// 不管成功还是失败都会执行\r\n\t\t\t\tuni.hideLoading();\r\n\t\t\t\tuni.hideToast();\r\n\t\t\t}\r\n\t\t});\r\n\t}).catch(() => {});\r\n};"],"names":["uni"],"mappings":";;AACA,MAAM,WAAW;AAEjB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA;AAAA,MAEX,KAAK,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW;AAAA,MACjD;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,QAAQ,UAAU;AACjB,cAAM,MAAM;AAIZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAY,MAAA,OAAA,2BAAA,QAAQ,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW,GAAG;AACnEA,wBAAAA,8CAAY,OAAM,QAAQ;AAC1BA,wBAAAA,MAAA,MAAA,OAAA,2BAAY,QAAO,IAAI;AACvB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACTA,gCAAAA,MAAI,iBAAkB;AACtB,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACTA,sBAAAA,MAAA,MAAA,OAAA,2BAAY,GAAG;AACf,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,MACD,WAAW;AAEVA,sBAAG,MAAC,YAAW;AACfA,sBAAG,MAAC,UAAS;AAAA,MACb;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;"}
|
{"version":3,"file":"guanli.js","sources":["request/guanli.js"],"sourcesContent":["// 全局请求封装\r\nconst base_url = 'https://www.focusnu.com/devopsapi'\r\n// const base_url = 'http://192.168.2.28:8081/devopsapi'\r\n// 请求超出时间\r\nconst timeout = 5000\r\n\r\n// 需要修改token,和根据实际修改请求头\r\nexport default (params) => {\r\n\tlet url = params.url;\r\n\tlet method = params.method || \"get\";\r\n\tlet data = params.data || {};\r\n\tlet header = {\r\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\r\n\t\t'Content-Type': 'application/json;charset=UTF-8',\r\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t// 'Tenant-Id': uni.getStorageSync('tenantId') || 'xxx', // avue配置相关\r\n\t\t...params.header\r\n\t}\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tuni.request({\r\n\t\t\t// https开头的不修改,不是的话则添加base,为啥呢,因为有两种base啊\r\n\t\t\turl: /^https?:\\/\\//.test(url) ? url : base_url + url,\r\n\t\t\tmethod: method,\r\n\t\t\theader: header,\r\n\t\t\tdata: data,\r\n\t\t\ttimeout,\r\n\t\t\tsuccess(response) {\r\n\t\t\t\tconst res = response\r\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\t//获取成功\r\n\t\t\t\t// console.log(res.statusCode);\r\n\t\t\t\tif (res.statusCode == 200) {\r\n\t\t\t\t\tresolve(res.data);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tconsole.log(\"http\", /^https?:\\/\\//.test(url) ? url : base_url + url)\r\n\t\t\t\t\tconsole.log(\"res\",response)\r\n\t\t\t\t\tconsole.log(\"data\",data)\r\n\t\t\t\t\tswitch (res.statusCode) {\r\n\t\t\t\t\t\tcase 401:\r\n\t\t\t\t\t\t\tuni.showModal({\r\n\t\t\t\t\t\t\t\ttitle: \"提示\",\r\n\t\t\t\t\t\t\t\tcontent: \"登录过期\",\r\n\t\t\t\t\t\t\t\tshowCancel: false,\r\n\t\t\t\t\t\t\t\tsuccess() {\r\n\t\t\t\t\t\t\t\t\tuni.clearStorageSync()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/login\",\r\n\t\t\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t\t\t}, 1000);\r\n\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 404:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请重试...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tfail(err) {\r\n\t\t\t\tconsole.log(err)\r\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '网络异常',\r\n\t\t\t\t\t\ticon: \"error\",\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '未知异常',\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t\treject(err);\r\n\r\n\t\t\t},\r\n\t\t\tcomplete() {\r\n\t\t\t\t// 不管成功还是失败都会执行\r\n\t\t\t\tuni.hideLoading();\r\n\t\t\t\tuni.hideToast();\r\n\t\t\t}\r\n\t\t});\r\n\t}).catch(() => {});\r\n};"],"names":["uni"],"mappings":";;AACA,MAAM,WAAW;AAGjB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA;AAAA,MAEX,KAAK,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW;AAAA,MACjD;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,QAAQ,UAAU;AACjB,cAAM,MAAM;AAIZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAY,MAAA,OAAA,2BAAA,QAAQ,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW,GAAG;AACnEA,wBAAAA,8CAAY,OAAM,QAAQ;AAC1BA,wBAAAA,MAAA,MAAA,OAAA,2BAAY,QAAO,IAAI;AACvB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACTA,gCAAAA,MAAI,iBAAkB;AACtB,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACTA,sBAAAA,MAAA,MAAA,OAAA,2BAAY,GAAG;AACf,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,MACD,WAAW;AAEVA,sBAAG,MAAC,YAAW;AACfA,sBAAG,MAAC,UAAS;AAAA,MACb;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;"}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"index.js","sources":["request/index.js"],"sourcesContent":["// 全局请求封装\r\nconst base_url = 'https://www.focusnu.com/opeapi'\r\n// 请求超出时间\r\nconst timeout = 5000\r\n\r\n// 需要修改token,和根据实际修改请求头\r\nexport default (params) => {\r\n\tlet url = params.url;\r\n\tlet method = params.method || \"get\";\r\n\tlet data = params.data || {};\r\n\tlet header = {\r\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\r\n\t\t'Content-Type': 'application/json;charset=UTF-8',\r\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t// 'Tenant-Id': uni.getStorageSync('tenantId') || 'xxx', // avue配置相关\r\n\t\t...params.header\r\n\t}\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tuni.request({\r\n\t\t\t// https开头的不修改,不是的话则添加base,为啥呢,因为有两种base啊\r\n\t\t\turl: /^https?:\\/\\//.test(url) ? url : base_url + url,\r\n\t\t\tmethod: method,\r\n\t\t\theader: header,\r\n\t\t\tdata: data,\r\n\t\t\ttimeout,\r\n\t\t\tsuccess(response) {\r\n\t\t\t\tconst res = response\r\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\t//获取成功\r\n\t\t\t\t// console.log(res.statusCode);\r\n\t\t\t\tif (res.statusCode == 200) {\r\n\t\t\t\t\tresolve(res.data);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tconsole.log(\"http\", /^https?:\\/\\//.test(url) ? url : base_url + url)\r\n\t\t\t\t\tconsole.log(\"res\",response)\r\n\t\t\t\t\tconsole.log(\"data\",data)\r\n\t\t\t\t\tswitch (res.statusCode) {\r\n\t\t\t\t\t\tcase 401:\r\n\t\t\t\t\t\t\tuni.showModal({\r\n\t\t\t\t\t\t\t\ttitle: \"提示\",\r\n\t\t\t\t\t\t\t\tcontent: \"登录过期\",\r\n\t\t\t\t\t\t\t\tshowCancel: false,\r\n\t\t\t\t\t\t\t\tsuccess() {\r\n\t\t\t\t\t\t\t\t\tuni.clearStorageSync()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/login\",\r\n\t\t\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t\t\t}, 1000);\r\n\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 404:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请重试...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tfail(err) {\r\n\t\t\t\tconsole.log(err)\r\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '网络异常',\r\n\t\t\t\t\t\ticon: \"error\",\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '未知异常',\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t\treject(err);\r\n\r\n\t\t\t},\r\n\t\t\tcomplete() {\r\n\t\t\t\t// 不管成功还是失败都会执行\r\n\t\t\t\tuni.hideLoading();\r\n\t\t\t\tuni.hideToast();\r\n\t\t\t}\r\n\t\t});\r\n\t}).catch(() => {});\r\n};"],"names":["uni"],"mappings":";;AACA,MAAM,WAAW;AAEjB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA;AAAA,MAEX,KAAK,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW;AAAA,MACjD;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,QAAQ,UAAU;AACjB,cAAM,MAAM;AAIZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAY,MAAA,OAAA,0BAAA,QAAQ,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW,GAAG;AACnEA,wBAAAA,6CAAY,OAAM,QAAQ;AAC1BA,wBAAAA,MAAA,MAAA,OAAA,0BAAY,QAAO,IAAI;AACvB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACTA,gCAAAA,MAAI,iBAAkB;AACtB,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACTA,sBAAAA,MAAA,MAAA,OAAA,0BAAY,GAAG;AACf,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,MACD,WAAW;AAEVA,sBAAG,MAAC,YAAW;AACfA,sBAAG,MAAC,UAAS;AAAA,MACb;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;"}
|
{"version":3,"file":"index.js","sources":["request/index.js"],"sourcesContent":["// 全局请求封装\r\nconst base_url = 'https://www.focusnu.com/opeapi'\r\n// const base_url = 'http://192.168.2.28:8081/opeapi'\r\n// 请求超出时间\r\nconst timeout = 5000\r\n\r\n// 需要修改token,和根据实际修改请求头\r\nexport default (params) => {\r\n\tlet url = params.url;\r\n\tlet method = params.method || \"get\";\r\n\tlet data = params.data || {};\r\n\tlet header = {\r\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\r\n\t\t'Content-Type': 'application/json;charset=UTF-8',\r\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t// 'Tenant-Id': uni.getStorageSync('tenantId') || 'xxx', // avue配置相关\r\n\t\t...params.header\r\n\t}\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tuni.request({\r\n\t\t\t// https开头的不修改,不是的话则添加base,为啥呢,因为有两种base啊\r\n\t\t\turl: /^https?:\\/\\//.test(url) ? url : base_url + url,\r\n\t\t\tmethod: method,\r\n\t\t\theader: header,\r\n\t\t\tdata: data,\r\n\t\t\ttimeout,\r\n\t\t\tsuccess(response) {\r\n\t\t\t\tconst res = response\r\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\t//获取成功\r\n\t\t\t\t// console.log(res.statusCode);\r\n\t\t\t\tif (res.statusCode == 200) {\r\n\t\t\t\t\tresolve(res.data);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tconsole.log(\"http\", /^https?:\\/\\//.test(url) ? url : base_url + url)\r\n\t\t\t\t\tconsole.log(\"res\",response)\r\n\t\t\t\t\tconsole.log(\"data\",data)\r\n\t\t\t\t\tswitch (res.statusCode) {\r\n\t\t\t\t\t\tcase 401:\r\n\t\t\t\t\t\t\tuni.showModal({\r\n\t\t\t\t\t\t\t\ttitle: \"提示\",\r\n\t\t\t\t\t\t\t\tcontent: \"登录过期\",\r\n\t\t\t\t\t\t\t\tshowCancel: false,\r\n\t\t\t\t\t\t\t\tsuccess() {\r\n\t\t\t\t\t\t\t\t\tuni.clearStorageSync()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/login\",\r\n\t\t\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t\t\t}, 1000);\r\n\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tcase 404:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\t\ttitle: '请重试...',\r\n\t\t\t\t\t\t\t\tduration: 2000,\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tfail(err) {\r\n\t\t\t\tconsole.log(err)\r\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '网络异常',\r\n\t\t\t\t\t\ticon: \"error\",\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: '未知异常',\r\n\t\t\t\t\t\tduration: 2000\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t\treject(err);\r\n\r\n\t\t\t},\r\n\t\t\tcomplete() {\r\n\t\t\t\t// 不管成功还是失败都会执行\r\n\t\t\t\tuni.hideLoading();\r\n\t\t\t\tuni.hideToast();\r\n\t\t\t}\r\n\t\t});\r\n\t}).catch(() => {});\r\n};"],"names":["uni"],"mappings":";;AACA,MAAM,WAAW;AAGjB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA;AAAA,MAEX,KAAK,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW;AAAA,MACjD;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,QAAQ,UAAU;AACjB,cAAM,MAAM;AAIZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAY,MAAA,OAAA,0BAAA,QAAQ,eAAe,KAAK,GAAG,IAAI,MAAM,WAAW,GAAG;AACnEA,wBAAAA,6CAAY,OAAM,QAAQ;AAC1BA,wBAAAA,MAAA,MAAA,OAAA,0BAAY,QAAO,IAAI;AACvB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACTA,gCAAAA,MAAI,iBAAkB;AACtB,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACTA,sBAAAA,MAAA,MAAA,OAAA,0BAAY,GAAG;AACf,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,MACD,WAAW;AAEVA,sBAAG,MAAC,YAAW;AACfA,sBAAG,MAAC,UAAS;AAAA,MACb;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;"}
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
"id": "__UNI__FB2D473",
|
"id": "__UNI__FB2D473",
|
||||||
"name": "护理单元",
|
"name": "护理单元",
|
||||||
"version": {
|
"version": {
|
||||||
"name": "1.6.4",
|
"name": "1.6.6",
|
||||||
"code": 164
|
"code": 166
|
||||||
},
|
},
|
||||||
"description": "护理单元",
|
"description": "护理单元",
|
||||||
"developer": {
|
"developer": {
|
||||||
|
|
|
||||||
|
|
@ -2386,6 +2386,7 @@
|
||||||
.left-container .left-head .left-head-font[data-v-0df9d5ac] {
|
.left-container .left-head .left-head-font[data-v-0df9d5ac] {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
height: 1rem;
|
||||||
}
|
}
|
||||||
.left-container .left-head .left-head-font-dark[data-v-0df9d5ac] {
|
.left-container .left-head .left-head-font-dark[data-v-0df9d5ac] {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
|
|
||||||
|
|
@ -1,150 +1,239 @@
|
||||||
.wareaitem {
|
.wareaitem[data-v-ce457564] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background: rgba(255, 255, 255, 0.7);
|
background: url('../../static/index/warehouse/bg.png') no-repeat;
|
||||||
|
background-size: cover cover;
|
||||||
}
|
}
|
||||||
.wareaitem .tp uni-image {
|
.wareaitem .tp uni-image[data-v-ce457564] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation {
|
.wareaitem .operationbtn[data-v-ce457564] {
|
||||||
|
width: 20vw;
|
||||||
|
height: 10vw;
|
||||||
|
position: absolute;
|
||||||
|
right: 1.5vw;
|
||||||
|
bottom: 2vw;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn > uni-view[data-v-ce457564] {
|
||||||
|
width: 9vw;
|
||||||
|
height: 4vw;
|
||||||
|
border-radius: 1vw;
|
||||||
|
border: 0.0625rem solid #D9DADC;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 1.3vw;
|
||||||
|
color: #888D99;
|
||||||
|
margin: 0 0.3vw;
|
||||||
|
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .click-box[data-v-ce457564] {
|
||||||
|
color: #888d99;
|
||||||
|
background: rgba(255, 255, 255, 0.43);
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .click-box-target[data-v-ce457564] {
|
||||||
|
color: transparent;
|
||||||
|
animation: scalePulse-ce457564 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
|
||||||
|
transform-origin: center center;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .grad-text[data-v-ce457564] {
|
||||||
|
background: linear-gradient(90deg, #5b8bb3, #87a1bd);
|
||||||
|
background-size: 200% 100%;
|
||||||
|
background-position: 0% 50%;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
transition: background-position 0.8s linear;
|
||||||
|
}
|
||||||
|
@keyframes scalePulse-ce457564 {
|
||||||
|
0% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
transform: scale(0.94);
|
||||||
|
}
|
||||||
|
65% {
|
||||||
|
transform: scale(1.08);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item[data-v-ce457564] {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: -2vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact1[data-v-ce457564] {
|
||||||
|
width: 29vw;
|
||||||
|
height: 21vw;
|
||||||
|
top: 23vw;
|
||||||
|
left: 6vw;
|
||||||
|
z-index: 31;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact2[data-v-ce457564] {
|
||||||
|
width: 26vw;
|
||||||
|
height: 16vw;
|
||||||
|
top: 15vw;
|
||||||
|
left: 41vw;
|
||||||
|
z-index: 27;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact3[data-v-ce457564] {
|
||||||
|
width: 24vw;
|
||||||
|
height: 16vw;
|
||||||
|
top: 28vw;
|
||||||
|
left: 46vw;
|
||||||
|
z-index: 55;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact4[data-v-ce457564] {
|
||||||
|
width: 17vw;
|
||||||
|
height: 13vw;
|
||||||
|
top: 22vw;
|
||||||
|
left: 67vw;
|
||||||
|
z-index: 36;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wclik[data-v-ce457564] {
|
||||||
|
width: 22vw;
|
||||||
|
height: 14vw;
|
||||||
|
top: 16vw;
|
||||||
|
left: 44vw;
|
||||||
|
z-index: 47;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .gifs[data-v-ce457564] {
|
||||||
|
width: 41vw;
|
||||||
|
height: 20vw;
|
||||||
|
top: 21.6vw;
|
||||||
|
left: 27.5vw;
|
||||||
|
z-index: 29;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .ys[data-v-ce457564] {
|
||||||
|
width: 11vw;
|
||||||
|
height: 8vw;
|
||||||
|
top: 24.2vw;
|
||||||
|
left: 57.9vw;
|
||||||
|
z-index: 28;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem1[data-v-ce457564] {
|
||||||
|
width: 86vw;
|
||||||
|
height: 44vw;
|
||||||
|
top: 1vw;
|
||||||
|
left: 10.5vw;
|
||||||
|
z-index: 15;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem4[data-v-ce457564] {
|
||||||
|
width: 11vw;
|
||||||
|
height: 7vw;
|
||||||
|
top: 30.9vw;
|
||||||
|
left: 60vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem6[data-v-ce457564] {
|
||||||
|
width: 17vw;
|
||||||
|
height: 12vw;
|
||||||
|
top: 28vw;
|
||||||
|
right: -2vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem5[data-v-ce457564] {
|
||||||
|
width: 18vw;
|
||||||
|
height: 15vw;
|
||||||
|
top: 37vw;
|
||||||
|
left: 73vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem8[data-v-ce457564] {
|
||||||
|
width: 26vw;
|
||||||
|
height: 8vw;
|
||||||
|
top: 29.7vw;
|
||||||
|
left: 21.8vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem11[data-v-ce457564] {
|
||||||
|
width: 3vw;
|
||||||
|
height: 3vw;
|
||||||
|
top: 24.5vw;
|
||||||
|
left: 60vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem10[data-v-ce457564] {
|
||||||
|
width: 55vw;
|
||||||
|
height: 27vw;
|
||||||
|
top: 38vw;
|
||||||
|
left: 20vw;
|
||||||
|
z-index: 36;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item > uni-view[data-v-ce457564] {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation1[data-v-ce457564] {
|
||||||
|
top: 20.5vw;
|
||||||
|
left: 19vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation2[data-v-ce457564] {
|
||||||
|
top: 13vw;
|
||||||
|
left: 47vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation3[data-v-ce457564] {
|
||||||
|
top: 23vw;
|
||||||
|
left: 50vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation4[data-v-ce457564] {
|
||||||
|
top: 17vw;
|
||||||
|
left: 68vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation5[data-v-ce457564] {
|
||||||
|
top: 32vw;
|
||||||
|
left: 74vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation6[data-v-ce457564] {
|
||||||
|
top: 23vw;
|
||||||
|
right: 6vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation[data-v-ce457564] {
|
||||||
width: 7vw;
|
width: 7vw;
|
||||||
height: 8vw;
|
height: 8vw;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
|
position: fixed;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view {
|
.wareaitem .annotation > uni-view[data-v-ce457564] {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(1) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(1) {
|
||||||
width: 7vw;
|
width: 7vw;
|
||||||
height: 2vw;
|
height: 2vw;
|
||||||
background: #F2F3F7;
|
background: #F2F3F7;
|
||||||
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
|
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
|
||||||
border: 0.0625rem solid #FFFFFF;
|
border: 0.0625rem solid #FFFFFF;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 1vw;
|
font-size: 1.3vw;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(2) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
|
||||||
width: 4vw;
|
width: 4vw;
|
||||||
height: 2vw;
|
height: 2vw;
|
||||||
margin: -0.0625rem auto 0;
|
margin: -0.0625rem auto 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(3) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(3) {
|
||||||
width: 3vw;
|
width: 3vw;
|
||||||
height: 5vw;
|
height: 5vw;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
margin: -1vw auto 0;
|
margin: -1vw auto 0;
|
||||||
}
|
}
|
||||||
.wareaitem > uni-view {
|
.backgroundContainer[data-v-ce457564] {
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(1) {
|
|
||||||
width: 26vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 17vw;
|
|
||||||
left: 8vw;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(2) {
|
|
||||||
width: 68vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 4vw;
|
|
||||||
left: 18vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(3) {
|
|
||||||
width: 20vw;
|
|
||||||
height: 13vw;
|
|
||||||
top: 15vw;
|
|
||||||
left: 43vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(4) {
|
|
||||||
width: 20vw;
|
|
||||||
height: 14vw;
|
|
||||||
top: 26vw;
|
|
||||||
left: 45vw;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(5) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 7vw;
|
|
||||||
top: 28vw;
|
|
||||||
left: 56vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(6) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 9vw;
|
|
||||||
top: 23vw;
|
|
||||||
left: 63vw;
|
|
||||||
z-index: 5;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(7) {
|
|
||||||
width: 13vw;
|
|
||||||
height: 11vw;
|
|
||||||
top: 25vw;
|
|
||||||
left: 80vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(8) {
|
|
||||||
width: 15vw;
|
|
||||||
height: 14vw;
|
|
||||||
top: 31vw;
|
|
||||||
left: 67vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(9) {
|
|
||||||
width: 48vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 34vw;
|
|
||||||
left: 21vw;
|
|
||||||
z-index: 11;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(10) {
|
|
||||||
width: 17vw;
|
|
||||||
height: 10vw;
|
|
||||||
top: 48vw;
|
|
||||||
left: 26vw;
|
|
||||||
z-index: 12;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(11) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 8vw;
|
|
||||||
top: 22vw;
|
|
||||||
left: 56vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(12) {
|
|
||||||
width: 3vw;
|
|
||||||
height: 3vw;
|
|
||||||
top: 21vw;
|
|
||||||
left: 57vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(13) {
|
|
||||||
top: 15.5vw;
|
|
||||||
left: 21.5vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(14) {
|
|
||||||
top: 12vw;
|
|
||||||
left: 48vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(15) {
|
|
||||||
top: 20vw;
|
|
||||||
left: 47vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(16) {
|
|
||||||
top: 27vw;
|
|
||||||
left: 71vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(17) {
|
|
||||||
top: 21vw;
|
|
||||||
left: 83vw;
|
|
||||||
}
|
|
||||||
.backgroundContainer {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -155,7 +244,7 @@
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.darkbackgroundContainer {
|
.darkbackgroundContainer[data-v-ce457564] {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
.box {
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: 4vw 2vw 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.box .lefts {
|
||||||
|
width: 70vw;
|
||||||
|
height: 100%;
|
||||||
|
margin-left: 1vw;
|
||||||
|
}
|
||||||
|
.box .lefts .scroll-Y {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.box .lefts .boxitem {
|
||||||
|
width: 22vw;
|
||||||
|
height: 18vw;
|
||||||
|
background: rgba(255, 255, 255, 0.7);
|
||||||
|
border-radius: 1.6vw;
|
||||||
|
margin: 0 1.3vw 1.2vw 0;
|
||||||
|
border: 2px dashed #fff;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.box .lefts .active {
|
||||||
|
border: 2px dashed #017DE9 !important;
|
||||||
|
}
|
||||||
|
.box .rights {
|
||||||
|
width: 25vw;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.box .rights .shitem {
|
||||||
|
width: 24vw;
|
||||||
|
height: 10.3vw;
|
||||||
|
background: #E8E9ED;
|
||||||
|
border-radius: 1.6vw;
|
||||||
|
padding: 1.8vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body{
|
||||||
|
background: RGBA(239, 240, 244, 1);
|
||||||
|
}
|
||||||
|
|
@ -7267,153 +7267,242 @@ to {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wareaitem {
|
.wareaitem[data-v-ce457564] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background: rgba(255, 255, 255, 0.7);
|
background: url('../../static/index/warehouse/bg.png') no-repeat;
|
||||||
|
background-size: cover cover;
|
||||||
}
|
}
|
||||||
.wareaitem .tp uni-image {
|
.wareaitem .tp uni-image[data-v-ce457564] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation {
|
.wareaitem .operationbtn[data-v-ce457564] {
|
||||||
|
width: 20vw;
|
||||||
|
height: 10vw;
|
||||||
|
position: absolute;
|
||||||
|
right: 1.5vw;
|
||||||
|
bottom: 2vw;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn > uni-view[data-v-ce457564] {
|
||||||
|
width: 9vw;
|
||||||
|
height: 4vw;
|
||||||
|
border-radius: 1vw;
|
||||||
|
border: 0.0625rem solid #D9DADC;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 1.3vw;
|
||||||
|
color: #888D99;
|
||||||
|
margin: 0 0.3vw;
|
||||||
|
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .click-box[data-v-ce457564] {
|
||||||
|
color: #888d99;
|
||||||
|
background: rgba(255, 255, 255, 0.43);
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .click-box-target[data-v-ce457564] {
|
||||||
|
color: transparent;
|
||||||
|
animation: scalePulse-ce457564 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
|
||||||
|
transform-origin: center center;
|
||||||
|
}
|
||||||
|
.wareaitem .operationbtn .grad-text[data-v-ce457564] {
|
||||||
|
background: linear-gradient(90deg, #5b8bb3, #87a1bd);
|
||||||
|
background-size: 200% 100%;
|
||||||
|
background-position: 0% 50%;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
transition: background-position 0.8s linear;
|
||||||
|
}
|
||||||
|
@keyframes scalePulse-ce457564 {
|
||||||
|
0% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
25% {
|
||||||
|
transform: scale(0.94);
|
||||||
|
}
|
||||||
|
65% {
|
||||||
|
transform: scale(1.08);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item[data-v-ce457564] {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: -2vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact1[data-v-ce457564] {
|
||||||
|
width: 29vw;
|
||||||
|
height: 21vw;
|
||||||
|
top: 23vw;
|
||||||
|
left: 6vw;
|
||||||
|
z-index: 31;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact2[data-v-ce457564] {
|
||||||
|
width: 26vw;
|
||||||
|
height: 16vw;
|
||||||
|
top: 15vw;
|
||||||
|
left: 41vw;
|
||||||
|
z-index: 27;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact3[data-v-ce457564] {
|
||||||
|
width: 24vw;
|
||||||
|
height: 16vw;
|
||||||
|
top: 28vw;
|
||||||
|
left: 46vw;
|
||||||
|
z-index: 55;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .itemact4[data-v-ce457564] {
|
||||||
|
width: 17vw;
|
||||||
|
height: 13vw;
|
||||||
|
top: 22vw;
|
||||||
|
left: 67vw;
|
||||||
|
z-index: 36;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wclik[data-v-ce457564] {
|
||||||
|
width: 22vw;
|
||||||
|
height: 14vw;
|
||||||
|
top: 16vw;
|
||||||
|
left: 44vw;
|
||||||
|
z-index: 47;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .gifs[data-v-ce457564] {
|
||||||
|
width: 41vw;
|
||||||
|
height: 20vw;
|
||||||
|
top: 21.6vw;
|
||||||
|
left: 27.5vw;
|
||||||
|
z-index: 29;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .ys[data-v-ce457564] {
|
||||||
|
width: 11vw;
|
||||||
|
height: 8vw;
|
||||||
|
top: 24.2vw;
|
||||||
|
left: 57.9vw;
|
||||||
|
z-index: 28;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem1[data-v-ce457564] {
|
||||||
|
width: 86vw;
|
||||||
|
height: 44vw;
|
||||||
|
top: 1vw;
|
||||||
|
left: 10.5vw;
|
||||||
|
z-index: 15;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem4[data-v-ce457564] {
|
||||||
|
width: 11vw;
|
||||||
|
height: 7vw;
|
||||||
|
top: 30.9vw;
|
||||||
|
left: 60vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem6[data-v-ce457564] {
|
||||||
|
width: 17vw;
|
||||||
|
height: 12vw;
|
||||||
|
top: 28vw;
|
||||||
|
right: -2vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem5[data-v-ce457564] {
|
||||||
|
width: 18vw;
|
||||||
|
height: 15vw;
|
||||||
|
top: 37vw;
|
||||||
|
left: 73vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem8[data-v-ce457564] {
|
||||||
|
width: 26vw;
|
||||||
|
height: 8vw;
|
||||||
|
top: 29.7vw;
|
||||||
|
left: 21.8vw;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem11[data-v-ce457564] {
|
||||||
|
width: 3vw;
|
||||||
|
height: 3vw;
|
||||||
|
top: 24.5vw;
|
||||||
|
left: 60vw;
|
||||||
|
z-index: 35;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item .wareitem10[data-v-ce457564] {
|
||||||
|
width: 55vw;
|
||||||
|
height: 27vw;
|
||||||
|
top: 38vw;
|
||||||
|
left: 20vw;
|
||||||
|
z-index: 36;
|
||||||
|
}
|
||||||
|
.wareaitem .wareaitem-item > uni-view[data-v-ce457564] {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation1[data-v-ce457564] {
|
||||||
|
top: 20.5vw;
|
||||||
|
left: 19vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation2[data-v-ce457564] {
|
||||||
|
top: 13vw;
|
||||||
|
left: 47vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation3[data-v-ce457564] {
|
||||||
|
top: 23vw;
|
||||||
|
left: 50vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation4[data-v-ce457564] {
|
||||||
|
top: 17vw;
|
||||||
|
left: 68vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation5[data-v-ce457564] {
|
||||||
|
top: 32vw;
|
||||||
|
left: 74vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation6[data-v-ce457564] {
|
||||||
|
top: 23vw;
|
||||||
|
right: 6vw;
|
||||||
|
}
|
||||||
|
.wareaitem .annotation[data-v-ce457564] {
|
||||||
width: 7vw;
|
width: 7vw;
|
||||||
height: 8vw;
|
height: 8vw;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
|
position: fixed;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view {
|
.wareaitem .annotation > uni-view[data-v-ce457564] {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(1) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(1) {
|
||||||
width: 7vw;
|
width: 7vw;
|
||||||
height: 2vw;
|
height: 2vw;
|
||||||
background: #F2F3F7;
|
background: #F2F3F7;
|
||||||
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
|
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
|
||||||
border: 0.0625rem solid #FFFFFF;
|
border: 0.0625rem solid #FFFFFF;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 1vw;
|
font-size: 1.3vw;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(2) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
|
||||||
width: 4vw;
|
width: 4vw;
|
||||||
height: 2vw;
|
height: 2vw;
|
||||||
margin: -0.0625rem auto 0;
|
margin: -0.0625rem auto 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.wareaitem .annotation > uni-view:nth-child(3) {
|
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(3) {
|
||||||
width: 3vw;
|
width: 3vw;
|
||||||
height: 5vw;
|
height: 5vw;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
margin: -1vw auto 0;
|
margin: -1vw auto 0;
|
||||||
}
|
}
|
||||||
.wareaitem > uni-view {
|
.backgroundContainer[data-v-ce457564] {
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(1) {
|
|
||||||
width: 26vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 17vw;
|
|
||||||
left: 8vw;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(2) {
|
|
||||||
width: 68vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 4vw;
|
|
||||||
left: 18vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(3) {
|
|
||||||
width: 20vw;
|
|
||||||
height: 13vw;
|
|
||||||
top: 15vw;
|
|
||||||
left: 43vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(4) {
|
|
||||||
width: 20vw;
|
|
||||||
height: 14vw;
|
|
||||||
top: 26vw;
|
|
||||||
left: 45vw;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(5) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 7vw;
|
|
||||||
top: 28vw;
|
|
||||||
left: 56vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(6) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 9vw;
|
|
||||||
top: 23vw;
|
|
||||||
left: 63vw;
|
|
||||||
z-index: 5;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(7) {
|
|
||||||
width: 13vw;
|
|
||||||
height: 11vw;
|
|
||||||
top: 25vw;
|
|
||||||
left: 80vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(8) {
|
|
||||||
width: 15vw;
|
|
||||||
height: 14vw;
|
|
||||||
top: 31vw;
|
|
||||||
left: 67vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(9) {
|
|
||||||
width: 48vw;
|
|
||||||
height: 22vw;
|
|
||||||
top: 34vw;
|
|
||||||
left: 21vw;
|
|
||||||
z-index: 11;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(10) {
|
|
||||||
width: 17vw;
|
|
||||||
height: 10vw;
|
|
||||||
top: 48vw;
|
|
||||||
left: 26vw;
|
|
||||||
z-index: 12;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(11) {
|
|
||||||
width: 11vw;
|
|
||||||
height: 8vw;
|
|
||||||
top: 22vw;
|
|
||||||
left: 56vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(12) {
|
|
||||||
width: 3vw;
|
|
||||||
height: 3vw;
|
|
||||||
top: 21vw;
|
|
||||||
left: 57vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(13) {
|
|
||||||
top: 15.5vw;
|
|
||||||
left: 21.5vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(14) {
|
|
||||||
top: 12vw;
|
|
||||||
left: 48vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(15) {
|
|
||||||
top: 20vw;
|
|
||||||
left: 47vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(16) {
|
|
||||||
top: 27vw;
|
|
||||||
left: 71vw;
|
|
||||||
}
|
|
||||||
.wareaitem > uni-view:nth-child(17) {
|
|
||||||
top: 21vw;
|
|
||||||
left: 83vw;
|
|
||||||
}
|
|
||||||
.backgroundContainer {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -7424,7 +7513,7 @@ to {
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.darkbackgroundContainer {
|
.darkbackgroundContainer[data-v-ce457564] {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -209,11 +209,11 @@
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
.big-bgc[data-v-4b26e9e6] {
|
.big-bgc[data-v-4b26e9e6] {
|
||||||
margin-left: -0.625rem;
|
margin-left: -0.3125rem;
|
||||||
margin-top: 0.625rem;
|
margin-top: 1.25rem;
|
||||||
width: 41.25rem;
|
width: 40.3125rem;
|
||||||
height: 32.65625rem;
|
height: 31.875rem;
|
||||||
border-radius: 1.5625rem;
|
border-radius: 1.71875rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
@ -529,7 +529,7 @@
|
||||||
.picture .picture-card .bgc-card[data-v-4b26e9e6] {
|
.picture .picture-card .bgc-card[data-v-4b26e9e6] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 4.0625rem;
|
height: 4.0625rem;
|
||||||
background-color: #EAEAEC;
|
background-color: rgba(226, 227, 231, 0.5);
|
||||||
border-radius: 0.9375rem;
|
border-radius: 0.9375rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 31 KiB |