|
|
@ -2,8 +2,8 @@
|
|||
"name" : "护理单元",
|
||||
"appid" : "__UNI__FB2D473",
|
||||
"description" : "护理单元",
|
||||
"versionName" : "1.0.004",
|
||||
"versionCode" : 10004,
|
||||
"versionName" : "1.0.005",
|
||||
"versionCode" : 10005,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
|
|
|
|||
|
|
@ -169,6 +169,14 @@
|
|||
}
|
||||
|
||||
},
|
||||
{
|
||||
"path": "pages/Warehouse/picking",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/Warehouse/procurecart",
|
||||
"style": {
|
||||
|
|
|
|||
|
|
@ -33,9 +33,6 @@ export const getNcPackagelist = (nuId,customerId) => {
|
|||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// 新增服务指令
|
||||
export const addDirective = (params) => {
|
||||
return request({
|
||||
|
|
|
|||
|
|
@ -964,7 +964,7 @@
|
|||
return
|
||||
}
|
||||
if (timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].id) {
|
||||
deleteDirective({ id: timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].id }).then((res : any) => {
|
||||
deleteDirective(timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1]).then((res : any) => {
|
||||
doChangeNew()
|
||||
})
|
||||
} else {
|
||||
|
|
@ -985,15 +985,63 @@
|
|||
timearr.value[indexsave.value[0]].children[indexsave.value[1]].tagName = newtagName
|
||||
let startTime = timearr.value[indexsave.value[0]].children[indexsave.value[1]].startTime;
|
||||
let endTime = timearr.value[indexsave.value[0]].children[indexsave.value[1]].endTime;
|
||||
let positioning = timearr.value[indexsave.value[0]].positioning
|
||||
const rest = startTime.split(":")[1]; // ":20"
|
||||
const rest0 = endTime.split(":")[1];; // ":20"
|
||||
let many = Number(rest0) - Number(rest);
|
||||
let start = newtagName
|
||||
let end = Number(start) + many
|
||||
// 用 positioning 替换原来的小时部分
|
||||
timearr.value[indexsave.value[0]].children[indexsave.value[1]].startTime = positioning + ":" + start.padStart(2, '0'); // "9:20"
|
||||
timearr.value[indexsave.value[0]].children[indexsave.value[1]].endTime = positioning + ":" + String(end % 60).padStart(2, '0'); // "9:20"
|
||||
let positioning = timearr.value[indexsave.value[0]].positioning;
|
||||
|
||||
|
||||
// 解析原始时间(健壮地 trim)
|
||||
const parseTime = (t) => {
|
||||
const parts = String(t || '').split(':').map(s => s.trim());
|
||||
const h = Number(parts[0] ?? 0);
|
||||
const m = Number(parts[1] ?? 0);
|
||||
return {
|
||||
hour: Number.isFinite(h) ? h : 0,
|
||||
minute: Number.isFinite(m) ? m : 0
|
||||
};
|
||||
};
|
||||
|
||||
const sOrig = parseTime(startTime);
|
||||
const eOrig = parseTime(endTime);
|
||||
|
||||
// 计算时长(分钟)。若发生负值,认为跨天(加 24*60)
|
||||
let duration = (eOrig.hour * 60 + eOrig.minute) - (sOrig.hour * 60 + sOrig.minute);
|
||||
if (duration < 0) duration += 24 * 60; // 假设结束是在次日或跨日
|
||||
|
||||
// 解析新的起始分钟和小时(positioning 可能是字符串)
|
||||
const newStartMin = Number(String(newtagName).trim());
|
||||
const newHour = Number(String(positioning).trim());
|
||||
|
||||
// 校验
|
||||
if (!Number.isFinite(newStartMin) || newStartMin < 0 || newStartMin >= 60) {
|
||||
throw new Error('newtagName 必须是 0-59 的数字字符串或数字');
|
||||
}
|
||||
if (!Number.isFinite(newHour) || newHour < 0) {
|
||||
throw new Error('positioning 必须是有效小时(数字或数字字符串)');
|
||||
}
|
||||
|
||||
// 计算新的起止总分钟
|
||||
const newStartTotal = newHour * 60 + newStartMin;
|
||||
const newEndTotal = newStartTotal + duration;
|
||||
|
||||
// 处理跨小时/跨天
|
||||
const newEndHour = Math.floor(newEndTotal / 60) % 24; // 保持在 0-23
|
||||
const newEndMin = newEndTotal % 60;
|
||||
|
||||
// 格式化字符串
|
||||
const pad2 = (n) => String(n).padStart(2, '0');
|
||||
|
||||
timearr.value[indexsave.value[0]].children[indexsave.value[1]].startTime =
|
||||
`${String(newHour)}:${pad2(newStartMin)}`;
|
||||
|
||||
timearr.value[indexsave.value[0]].children[indexsave.value[1]].endTime =
|
||||
`${String(newEndHour)}:${pad2(newEndMin)}`;
|
||||
// const rest = startTime.split(":")[1]; // ":20"
|
||||
// const rest0 = endTime.split(":")[1];; // ":20"
|
||||
// let many = Number(rest0) - Number(rest);
|
||||
// let start = newtagName
|
||||
// let end = Number(start) + many
|
||||
// // 用 positioning 替换原来的小时部分
|
||||
// timearr.value[indexsave.value[0]].children[indexsave.value[1]].startTime = positioning + ":" + start.padStart(2, '0'); // "9:20"
|
||||
// timearr.value[indexsave.value[0]].children[indexsave.value[1]].endTime = positioning + ":" + String(end % 60).padStart(2, '0'); // "9:20"
|
||||
flyNumber.value.index0 = -1;
|
||||
flyNumber.value.index1 = -1;
|
||||
isMove.value = false;
|
||||
|
|
@ -1527,12 +1575,8 @@
|
|||
const shakyTable = ref(false);
|
||||
const reldata = ref([]);
|
||||
const deleteRuler = (index0 : number, index1 : number) => {
|
||||
// let tagName = timearr.value[index0].children[index1].tagName;
|
||||
|
||||
// timearr.value[index0].children[index1] = { directiveName: "", tagName: tagName };
|
||||
// saveAll()
|
||||
console.log("?????", timearr.value[index0].children[index1].id)
|
||||
deleteDirective({ id: timearr.value[index0].children[index1].id }).then((res : any) => {
|
||||
deleteDirective(timearr.value[index0].children[index1]).then((res : any) => {
|
||||
console.log("?????",res)
|
||||
if (res.success) {
|
||||
geteverything()
|
||||
}
|
||||
|
|
@ -2049,7 +2093,7 @@
|
|||
res.result.serviceList.forEach((res : any) => {
|
||||
timearr.value[res.positioning].children[res.positioningLong] = res;
|
||||
})
|
||||
console.log("返回了", res.result)
|
||||
// console.log("返回了", res.result)
|
||||
bottomItems.value = res.result.instantList
|
||||
// console.log("看看获得了什么",bottomItems.value)
|
||||
cansumit.value = true;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<!-- 采购增加层级高度方便点击 -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="annotation" :class="'annotation'+(i+1)" v-for="(v,i) in ['付款','采购','拣货','结账','护理单元','监控室']"
|
||||
<view class="annotation" :class="'annotation'+(i+1)" v-for="(v,i) in ['付款','采购','拣货','完结','护理单元','监控室']"
|
||||
:key='i' @click="onlyjump(i)">
|
||||
<view> </view>
|
||||
<view class="tp">
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
})
|
||||
}
|
||||
if (housedex.value == 2) {
|
||||
navurl.value = 'pages/Warehouse/purchaseorder'
|
||||
navurl.value = 'pages/Warehouse/picking'
|
||||
uni.navigateTo({
|
||||
url: '/' + navurl.value
|
||||
})
|
||||
|
|
@ -119,7 +119,7 @@
|
|||
})
|
||||
}
|
||||
if (housedex.value == 2) {
|
||||
navurl.value = 'pages/Warehouse/purchaseorder'
|
||||
navurl.value = 'pages/Warehouse/picking'
|
||||
uni.navigateTo({
|
||||
url: '/' + navurl.value
|
||||
})
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<view class="more-one" @click="share">
|
||||
分享
|
||||
</view>
|
||||
<view class="more-one" @click="bebad">
|
||||
<view class="more-one" @click="bebad(v)">
|
||||
作废
|
||||
</view>
|
||||
</view>
|
||||
|
|
@ -284,8 +284,6 @@
|
|||
{{ showvalue?.suppliersName }}
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
@ -432,6 +430,8 @@
|
|||
leftscrolltop.value = (num - 2) * 186;
|
||||
lefttarget.value = index;
|
||||
form.cgdId = plsbuy.value[index].id
|
||||
form.pageNo = 1
|
||||
form.canpull = true;
|
||||
queryCgdInfoList(form).then(res => {
|
||||
InvoicingList.value = []
|
||||
InvoicingList.value.push(...res.result.records);
|
||||
|
|
@ -550,7 +550,17 @@
|
|||
}
|
||||
const badshow = ref(false);
|
||||
const donghuacs = ref(false)
|
||||
const bebad = () => {
|
||||
const bebad = (v) => {
|
||||
if(Number(v.status)==1){
|
||||
setTimeout(() => {
|
||||
uni.showToast({
|
||||
title: '只有采购阶段的单据才能作废',
|
||||
icon: 'none', // 不显示小图标
|
||||
duration: 2000
|
||||
})
|
||||
}, 300)
|
||||
return
|
||||
}
|
||||
badshow.value = true;
|
||||
moreindex.value = -1;
|
||||
donghuacs.value = false;
|
||||
|
|
|
|||
|
|
@ -138,8 +138,6 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
|
@ -204,16 +202,14 @@
|
|||
const getImg = () => {
|
||||
if (/^\d{11}$/.test(form.username)) {
|
||||
isRel(form.username).then((res : any) => {
|
||||
console.log("6666",res.result)
|
||||
|
||||
if (res.result.code == `0`) {
|
||||
uni.setStorageSync('serverUrl', res.result.orgList[0].serverUrl);
|
||||
uni.setStorageSync('orgList', res.result.orgList);
|
||||
allserve.value = res.result.orgList
|
||||
// console.log("11111",allserve.value)
|
||||
time.value = Date.now();
|
||||
|
||||
getLoginCode(time.value).then((res : any) => {
|
||||
console.log("guhb", res)
|
||||
form.captcha = res.message
|
||||
canclick.value = true
|
||||
})
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 7.5 KiB |
|
After Width: | Height: | Size: 996 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 985 B |
|
After Width: | Height: | Size: 1005 B |
|
After Width: | Height: | Size: 947 B |
|
After Width: | Height: | Size: 983 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 713 B |
|
After Width: | Height: | Size: 912 B |
|
After Width: | Height: | Size: 540 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
|
@ -7,8 +7,8 @@
|
|||
"id": "__UNI__FB2D473",
|
||||
"name": "护理单元",
|
||||
"version": {
|
||||
"name": "1.0.004",
|
||||
"code": 10004
|
||||
"name": "1.0.005",
|
||||
"code": 10005
|
||||
},
|
||||
"description": "护理单元",
|
||||
"developer": {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
.wareaitem[data-v-dbe78a37]{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-dbe78a37]{width:100%;height:100%}.wareaitem .operationbtn[data-v-dbe78a37]{width:22vw;height:10vw;position:absolute;right:1.5vw;bottom:2vw;display:flex;justify-content:space-between;flex-wrap:wrap}.wareaitem .operationbtn>uni-view[data-v-dbe78a37]{width:10vw;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>uni-view uni-image[data-v-dbe78a37]{width:1.6vw;height:1.6vw;margin-right:.2vw}.wareaitem .operationbtn .click-box[data-v-dbe78a37]{color:#888d99;background:rgba(255,255,255,.43)}.wareaitem .operationbtn .click-box-target[data-v-dbe78a37]{background:#fff;box-shadow:0 0 3vw rgba(12,102,209,.33) inset;color:#6c84a0!important;animation:scalePulse-dbe78a37 .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}.wareaitem .operationbtn .grad-text[data-v-dbe78a37]{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-dbe78a37{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.wareaitem .wareaitem-item[data-v-dbe78a37]{width:100%;height:100%;position:fixed;top:0;left:-2vw}.wareaitem .wareaitem-item .itemact1[data-v-dbe78a37]{width:29vw;height:21vw;top:23vw;left:6vw;z-index:31}.wareaitem .wareaitem-item .itemact2[data-v-dbe78a37]{width:26vw;height:16vw;top:15vw;left:41vw;z-index:27}.wareaitem .wareaitem-item .itemact4[data-v-dbe78a37]{width:24vw;height:16vw;top:28vw;left:46vw;z-index:55}.wareaitem .wareaitem-item .itemact3[data-v-dbe78a37]{width:17vw;height:13vw;top:22vw;left:67vw;z-index:36}.wareaitem .wareaitem-item .wclik[data-v-dbe78a37]{width:22vw;height:14vw;top:16vw;left:44vw;z-index:47}.wareaitem .wareaitem-item .gifs[data-v-dbe78a37]{width:41vw;height:20vw;top:21.6vw;left:27.5vw;z-index:29}.wareaitem .wareaitem-item .ys[data-v-dbe78a37]{width:11vw;height:8vw;top:24.2vw;left:57.9vw;z-index:28}.wareaitem .wareaitem-item .wareitem1[data-v-dbe78a37]{width:86vw;height:44vw;top:1vw;left:10.5vw;z-index:15}.wareaitem .wareaitem-item .wareitem4[data-v-dbe78a37]{width:11vw;height:7vw;top:30.9vw;left:60vw}.wareaitem .wareaitem-item .wareitem6[data-v-dbe78a37]{width:17vw;height:12vw;top:28vw;right:-2vw;z-index:35}.wareaitem .wareaitem-item .wareitem5[data-v-dbe78a37]{width:18vw;height:15vw;top:37vw;left:73vw;z-index:35}.wareaitem .wareaitem-item .wareitem8[data-v-dbe78a37]{width:26vw;height:8vw;top:29.7vw;left:21.8vw}.wareaitem .wareaitem-item .wareitem11[data-v-dbe78a37]{width:3vw;height:3vw;top:24.5vw;left:60vw;z-index:35}.wareaitem .wareaitem-item .wareitem10[data-v-dbe78a37]{width:55vw;height:27vw;top:38vw;left:20vw;z-index:36}.wareaitem .wareaitem-item>uni-view[data-v-dbe78a37]{position:absolute}.wareaitem .annotation1[data-v-dbe78a37]{top:21.5vw;left:19.5vw}.wareaitem .annotation2[data-v-dbe78a37]{top:13vw;left:47vw}.wareaitem .annotation3[data-v-dbe78a37]{top:18vw;left:70vw}.wareaitem .annotation4[data-v-dbe78a37]{top:24vw;left:49.3vw}.wareaitem .annotation5[data-v-dbe78a37]{top:34vw;left:74vw}.wareaitem .annotation6[data-v-dbe78a37]{top:24vw;right:6vw}.wareaitem .annotation[data-v-dbe78a37]{width:7vw;height:8vw;z-index:20;position:fixed}.wareaitem .annotation>uni-view[data-v-dbe78a37]{position:relative}.wareaitem .annotation>uni-view[data-v-dbe78a37]:nth-child(2){width:6.5vw;height:3.2vw;margin:-.0625rem auto 0;z-index:2;display:flex;align-items:center;justify-content:center;border-radius:.8vw .8vw 1.5vw 1.5vw;overflow:hidden}.wareaitem .annotation>uni-view:nth-child(2) uni-image[data-v-dbe78a37]{position:absolute;top:0;left:0}.wareaitem .annotation>uni-view:nth-child(2) uni-text[data-v-dbe78a37]{position:relative;font-weight:400;font-size:1.1vw;color:#fff;z-index:3;margin-top:-.5vw}.wareaitem .annotation>uni-view[data-v-dbe78a37]:nth-child(3){width:3vw;height:5vw;z-index:1;margin:-1vw auto 0}.backgroundContainer[data-v-dbe78a37]{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-dbe78a37]{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}.zhanwei[data-v-dbe78a37]{position:absolute;top:40vh;right:3vw;width:13vw;height:13vw}
|
||||
.wareaitem[data-v-509e5618]{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-509e5618]{width:100%;height:100%}.wareaitem .operationbtn[data-v-509e5618]{width:22vw;height:10vw;position:absolute;right:1.5vw;bottom:2vw;display:flex;justify-content:space-between;flex-wrap:wrap}.wareaitem .operationbtn>uni-view[data-v-509e5618]{width:10vw;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>uni-view uni-image[data-v-509e5618]{width:1.6vw;height:1.6vw;margin-right:.2vw}.wareaitem .operationbtn .click-box[data-v-509e5618]{color:#888d99;background:rgba(255,255,255,.43)}.wareaitem .operationbtn .click-box-target[data-v-509e5618]{background:#fff;box-shadow:0 0 3vw rgba(12,102,209,.33) inset;color:#6c84a0!important;animation:scalePulse-509e5618 .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}.wareaitem .operationbtn .grad-text[data-v-509e5618]{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-509e5618{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.wareaitem .wareaitem-item[data-v-509e5618]{width:100%;height:100%;position:fixed;top:0;left:-2vw}.wareaitem .wareaitem-item .itemact1[data-v-509e5618]{width:29vw;height:21vw;top:23vw;left:6vw;z-index:31}.wareaitem .wareaitem-item .itemact2[data-v-509e5618]{width:26vw;height:16vw;top:15vw;left:41vw;z-index:27}.wareaitem .wareaitem-item .itemact4[data-v-509e5618]{width:24vw;height:16vw;top:28vw;left:46vw;z-index:55}.wareaitem .wareaitem-item .itemact3[data-v-509e5618]{width:17vw;height:13vw;top:22vw;left:67vw;z-index:36}.wareaitem .wareaitem-item .wclik[data-v-509e5618]{width:22vw;height:14vw;top:16vw;left:44vw;z-index:47}.wareaitem .wareaitem-item .gifs[data-v-509e5618]{width:41vw;height:20vw;top:21.6vw;left:27.5vw;z-index:29}.wareaitem .wareaitem-item .ys[data-v-509e5618]{width:11vw;height:8vw;top:24.2vw;left:57.9vw;z-index:28}.wareaitem .wareaitem-item .wareitem1[data-v-509e5618]{width:86vw;height:44vw;top:1vw;left:10.5vw;z-index:15}.wareaitem .wareaitem-item .wareitem4[data-v-509e5618]{width:11vw;height:7vw;top:30.9vw;left:60vw}.wareaitem .wareaitem-item .wareitem6[data-v-509e5618]{width:17vw;height:12vw;top:28vw;right:-2vw;z-index:35}.wareaitem .wareaitem-item .wareitem5[data-v-509e5618]{width:18vw;height:15vw;top:37vw;left:73vw;z-index:35}.wareaitem .wareaitem-item .wareitem8[data-v-509e5618]{width:26vw;height:8vw;top:29.7vw;left:21.8vw}.wareaitem .wareaitem-item .wareitem11[data-v-509e5618]{width:3vw;height:3vw;top:24.5vw;left:60vw;z-index:35}.wareaitem .wareaitem-item .wareitem10[data-v-509e5618]{width:55vw;height:27vw;top:38vw;left:20vw;z-index:36}.wareaitem .wareaitem-item>uni-view[data-v-509e5618]{position:absolute}.wareaitem .annotation1[data-v-509e5618]{top:21.5vw;left:19.5vw}.wareaitem .annotation2[data-v-509e5618]{top:13vw;left:47vw}.wareaitem .annotation3[data-v-509e5618]{top:18vw;left:70vw}.wareaitem .annotation4[data-v-509e5618]{top:24vw;left:49.3vw}.wareaitem .annotation5[data-v-509e5618]{top:34vw;left:74vw}.wareaitem .annotation6[data-v-509e5618]{top:24vw;right:6vw}.wareaitem .annotation[data-v-509e5618]{width:7vw;height:8vw;z-index:20;position:fixed}.wareaitem .annotation>uni-view[data-v-509e5618]{position:relative}.wareaitem .annotation>uni-view[data-v-509e5618]:nth-child(2){width:6.5vw;height:3.2vw;margin:-.0625rem auto 0;z-index:2;display:flex;align-items:center;justify-content:center;border-radius:.8vw .8vw 1.5vw 1.5vw;overflow:hidden}.wareaitem .annotation>uni-view:nth-child(2) uni-image[data-v-509e5618]{position:absolute;top:0;left:0}.wareaitem .annotation>uni-view:nth-child(2) uni-text[data-v-509e5618]{position:relative;font-weight:400;font-size:1.1vw;color:#fff;z-index:3;margin-top:-.5vw}.wareaitem .annotation>uni-view[data-v-509e5618]:nth-child(3){width:3vw;height:5vw;z-index:1;margin:-1vw auto 0}.backgroundContainer[data-v-509e5618]{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-509e5618]{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}.zhanwei[data-v-509e5618]{position:absolute;top:40vh;right:3vw;width:13vw;height:13vw}
|
||||
|
|
|
|||
BIN
unpackage/dist/build/app-plus/static/index/warehouse/procurement/picking/camera.png
vendored
Normal file
|
After Width: | Height: | Size: 947 B |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/procurement/picking/getback.png
vendored
Normal file
|
After Width: | Height: | Size: 912 B |
BIN
unpackage/dist/build/app-plus/static/index/warehouse/procurement/picking/work.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -1 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.0.004","code":10004},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"nativePlugins":{"MonitorModule":{"__plugin_info__":{"name":"MonitorModule","description":"bugly升级","platforms":"Android","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.76","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}}},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.0.005","code":10005},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"nativePlugins":{"MonitorModule":{"__plugin_info__":{"name":"MonitorModule","description":"bugly升级","platforms":"Android","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.76","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}}},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
|
||||
|
|
@ -1 +1 @@
|
|||
.wareaitem[data-v-9cb7e158]{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-9cb7e158]{width:100%;height:100%}.wareaitem .operationbtn[data-v-9cb7e158]{width:22vw;height:10vw;position:absolute;right:1.5vw;bottom:2vw;display:flex;justify-content:space-between;flex-wrap:wrap}.wareaitem .operationbtn>uni-view[data-v-9cb7e158]{width:10vw;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>uni-view uni-image[data-v-9cb7e158]{width:1.6vw;height:1.6vw;margin-right:.2vw}.wareaitem .operationbtn .click-box[data-v-9cb7e158]{color:#888d99;background:rgba(255,255,255,.43)}.wareaitem .operationbtn .click-box-target[data-v-9cb7e158]{background:#fff;box-shadow:0 0 3vw rgba(12,102,209,.33) inset;color:#6c84a0!important;animation:scalePulse-9cb7e158 .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}.wareaitem .operationbtn .grad-text[data-v-9cb7e158]{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-9cb7e158{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.wareaitem .wareaitem-item[data-v-9cb7e158]{width:100%;height:100%;position:fixed;top:0;left:-2vw}.wareaitem .wareaitem-item .itemact1[data-v-9cb7e158]{width:29vw;height:21vw;top:23vw;left:6vw;z-index:31}.wareaitem .wareaitem-item .itemact2[data-v-9cb7e158]{width:26vw;height:16vw;top:15vw;left:41vw;z-index:27}.wareaitem .wareaitem-item .itemact4[data-v-9cb7e158]{width:24vw;height:16vw;top:28vw;left:46vw;z-index:55}.wareaitem .wareaitem-item .itemact3[data-v-9cb7e158]{width:17vw;height:13vw;top:22vw;left:67vw;z-index:36}.wareaitem .wareaitem-item .wclik[data-v-9cb7e158]{width:22vw;height:14vw;top:16vw;left:44vw;z-index:47}.wareaitem .wareaitem-item .gifs[data-v-9cb7e158]{width:41vw;height:20vw;top:21.6vw;left:27.5vw;z-index:29}.wareaitem .wareaitem-item .ys[data-v-9cb7e158]{width:11vw;height:8vw;top:24.2vw;left:57.9vw;z-index:28}.wareaitem .wareaitem-item .wareitem1[data-v-9cb7e158]{width:86vw;height:44vw;top:1vw;left:10.5vw;z-index:15}.wareaitem .wareaitem-item .wareitem4[data-v-9cb7e158]{width:11vw;height:7vw;top:30.9vw;left:60vw}.wareaitem .wareaitem-item .wareitem6[data-v-9cb7e158]{width:17vw;height:12vw;top:28vw;right:-2vw;z-index:35}.wareaitem .wareaitem-item .wareitem5[data-v-9cb7e158]{width:18vw;height:15vw;top:37vw;left:73vw;z-index:35}.wareaitem .wareaitem-item .wareitem8[data-v-9cb7e158]{width:26vw;height:8vw;top:29.7vw;left:21.8vw}.wareaitem .wareaitem-item .wareitem11[data-v-9cb7e158]{width:3vw;height:3vw;top:24.5vw;left:60vw;z-index:35}.wareaitem .wareaitem-item .wareitem10[data-v-9cb7e158]{width:55vw;height:27vw;top:38vw;left:20vw;z-index:36}.wareaitem .wareaitem-item>uni-view[data-v-9cb7e158]{position:absolute}.wareaitem .annotation1[data-v-9cb7e158]{top:21.5vw;left:19.5vw}.wareaitem .annotation2[data-v-9cb7e158]{top:13vw;left:47vw}.wareaitem .annotation3[data-v-9cb7e158]{top:18vw;left:70vw}.wareaitem .annotation4[data-v-9cb7e158]{top:24vw;left:49.3vw}.wareaitem .annotation5[data-v-9cb7e158]{top:34vw;left:74vw}.wareaitem .annotation6[data-v-9cb7e158]{top:24vw;right:6vw}.wareaitem .annotation[data-v-9cb7e158]{width:7vw;height:8vw;z-index:20;position:fixed}.wareaitem .annotation>uni-view[data-v-9cb7e158]{position:relative}.wareaitem .annotation>uni-view[data-v-9cb7e158]:nth-child(2){width:6.5vw;height:3.2vw;margin:-.0625rem auto 0;z-index:2;display:flex;align-items:center;justify-content:center;border-radius:.8vw .8vw 1.5vw 1.5vw;overflow:hidden}.wareaitem .annotation>uni-view:nth-child(2) uni-image[data-v-9cb7e158]{position:absolute;top:0;left:0}.wareaitem .annotation>uni-view:nth-child(2) uni-text[data-v-9cb7e158]{position:relative;font-weight:400;font-size:1.1vw;color:#fff;z-index:3;margin-top:-.5vw}.wareaitem .annotation>uni-view[data-v-9cb7e158]:nth-child(3){width:3vw;height:5vw;z-index:1;margin:-1vw auto 0}.backgroundContainer[data-v-9cb7e158]{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-9cb7e158]{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}.zhanwei[data-v-9cb7e158]{position:absolute;top:40vh;right:3vw;width:13vw;height:13vw}
|
||||
.wareaitem[data-v-509e5618]{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-509e5618]{width:100%;height:100%}.wareaitem .operationbtn[data-v-509e5618]{width:22vw;height:10vw;position:absolute;right:1.5vw;bottom:2vw;display:flex;justify-content:space-between;flex-wrap:wrap}.wareaitem .operationbtn>uni-view[data-v-509e5618]{width:10vw;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>uni-view uni-image[data-v-509e5618]{width:1.6vw;height:1.6vw;margin-right:.2vw}.wareaitem .operationbtn .click-box[data-v-509e5618]{color:#888d99;background:rgba(255,255,255,.43)}.wareaitem .operationbtn .click-box-target[data-v-509e5618]{background:#fff;box-shadow:0 0 3vw rgba(12,102,209,.33) inset;color:#6c84a0!important;animation:scalePulse-509e5618 .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}.wareaitem .operationbtn .grad-text[data-v-509e5618]{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-509e5618{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.wareaitem .wareaitem-item[data-v-509e5618]{width:100%;height:100%;position:fixed;top:0;left:-2vw}.wareaitem .wareaitem-item .itemact1[data-v-509e5618]{width:29vw;height:21vw;top:23vw;left:6vw;z-index:31}.wareaitem .wareaitem-item .itemact2[data-v-509e5618]{width:26vw;height:16vw;top:15vw;left:41vw;z-index:27}.wareaitem .wareaitem-item .itemact4[data-v-509e5618]{width:24vw;height:16vw;top:28vw;left:46vw;z-index:55}.wareaitem .wareaitem-item .itemact3[data-v-509e5618]{width:17vw;height:13vw;top:22vw;left:67vw;z-index:36}.wareaitem .wareaitem-item .wclik[data-v-509e5618]{width:22vw;height:14vw;top:16vw;left:44vw;z-index:47}.wareaitem .wareaitem-item .gifs[data-v-509e5618]{width:41vw;height:20vw;top:21.6vw;left:27.5vw;z-index:29}.wareaitem .wareaitem-item .ys[data-v-509e5618]{width:11vw;height:8vw;top:24.2vw;left:57.9vw;z-index:28}.wareaitem .wareaitem-item .wareitem1[data-v-509e5618]{width:86vw;height:44vw;top:1vw;left:10.5vw;z-index:15}.wareaitem .wareaitem-item .wareitem4[data-v-509e5618]{width:11vw;height:7vw;top:30.9vw;left:60vw}.wareaitem .wareaitem-item .wareitem6[data-v-509e5618]{width:17vw;height:12vw;top:28vw;right:-2vw;z-index:35}.wareaitem .wareaitem-item .wareitem5[data-v-509e5618]{width:18vw;height:15vw;top:37vw;left:73vw;z-index:35}.wareaitem .wareaitem-item .wareitem8[data-v-509e5618]{width:26vw;height:8vw;top:29.7vw;left:21.8vw}.wareaitem .wareaitem-item .wareitem11[data-v-509e5618]{width:3vw;height:3vw;top:24.5vw;left:60vw;z-index:35}.wareaitem .wareaitem-item .wareitem10[data-v-509e5618]{width:55vw;height:27vw;top:38vw;left:20vw;z-index:36}.wareaitem .wareaitem-item>uni-view[data-v-509e5618]{position:absolute}.wareaitem .annotation1[data-v-509e5618]{top:21.5vw;left:19.5vw}.wareaitem .annotation2[data-v-509e5618]{top:13vw;left:47vw}.wareaitem .annotation3[data-v-509e5618]{top:18vw;left:70vw}.wareaitem .annotation4[data-v-509e5618]{top:24vw;left:49.3vw}.wareaitem .annotation5[data-v-509e5618]{top:34vw;left:74vw}.wareaitem .annotation6[data-v-509e5618]{top:24vw;right:6vw}.wareaitem .annotation[data-v-509e5618]{width:7vw;height:8vw;z-index:20;position:fixed}.wareaitem .annotation>uni-view[data-v-509e5618]{position:relative}.wareaitem .annotation>uni-view[data-v-509e5618]:nth-child(2){width:6.5vw;height:3.2vw;margin:-.0625rem auto 0;z-index:2;display:flex;align-items:center;justify-content:center;border-radius:.8vw .8vw 1.5vw 1.5vw;overflow:hidden}.wareaitem .annotation>uni-view:nth-child(2) uni-image[data-v-509e5618]{position:absolute;top:0;left:0}.wareaitem .annotation>uni-view:nth-child(2) uni-text[data-v-509e5618]{position:relative;font-weight:400;font-size:1.1vw;color:#fff;z-index:3;margin-top:-.5vw}.wareaitem .annotation>uni-view[data-v-509e5618]:nth-child(3){width:3vw;height:5vw;z-index:1;margin:-1vw auto 0}.backgroundContainer[data-v-509e5618]{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-509e5618]{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}.zhanwei[data-v-509e5618]{position:absolute;top:40vh;right:3vw;width:13vw;height:13vw}
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 576 B |
|
After Width: | Height: | Size: 746 B |
|
After Width: | Height: | Size: 794 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 947 B |
|
After Width: | Height: | Size: 912 B |
|
After Width: | Height: | Size: 1.1 KiB |