Compare commits

...

3 Commits

127 changed files with 1942 additions and 827 deletions

View File

@ -24,12 +24,13 @@
</view>
</view>
<view style="display: flex;flex-wrap: wrap;">
<view v-for="(item,index) in nameArray.slice(0,5)" :key="index" @click="addbody(index)">
<view v-for="(item,index) in bodyTagList" :key="index" @click="addbody(index)">
<view class="tags-father" :class="bodystatustarget===index?'secondtarget':''">
<image class="tags-img"
:src="bodytarget.includes(index)?`/static/index/tagNames/${index}1.png`: `/static/index/tagNames/${index}0.png`" />
:src="item.izSelected==`1`?item.netPicFocus: item.netPic" />
<view class="tags-font"
:style="bodytarget.includes(index)?{color:`rgb(54, 159, 239)`}:{}">{{item}}
:style="item.izSelected==`1`?{color:`rgb(54, 159, 239)`}:{}">
{{item.tagName}}
</view>
</view>
</view>
@ -37,12 +38,12 @@
</view>
</view>
<view class="marknone" @click="openbody=!openbody;openface=false">
<view v-if="!bodytarget.length" style="margin-top: -3rpx;">
<view v-if="!bodyTagListLook.length" style="margin-top: -3rpx;">
未选择
</view>
<view v-for="(item,index) in bodytarget" :key="index">
<view v-for="(item,index) in bodyTagListLook" :key="index">
<image class="tags-img" style="width: 40rpx;height: 40rpx;margin: 0 10rpx;"
:src="`/static/index/tagNames/${item}0.png`" />
:src="item" />
</view>
</view>
<view class="tri-down" @click="openbody=!openbody;openface=false"></view>
@ -58,13 +59,13 @@
</view>
</view>
<view style="display: flex;flex-wrap: wrap;">
<view v-for="(item,index) in nameArray.slice(5,12)" :key="index"
@click="addface(index)">
<view v-for="(item,index) in emotionTagList" :key="index" @click="addface(index)">
<view class="tags-father" :class="facestatustarget===index?'secondtarget':''">
<image class="tags-img"
:src="facetarget.includes(index)?`/static/index/tagNames/${index+5}1.png`: `/static/index/tagNames/${index+5}0.png`" />
:src="item.izSelected==`1`?item.netPicFocus: item.netPic" />
<view class="tags-font"
:style="facetarget.includes(index)?{color:`rgb(54, 159, 239)`}:{}">{{item}}
:style="item.izSelected==`1`?{color:`rgb(54, 159, 239)`}:{}">
{{item.tagName}}
</view>
</view>
</view>
@ -72,12 +73,12 @@
</view>
</view>
<view class="marknone" @click="openface=!openface;openbody=false">
<view v-if="!facetarget.length" style="margin-top: -3rpx;">
<view v-if="!emotionTagListLook.length" style="margin-top: -3rpx;">
未选择
</view>
<view v-for="(item,index) in facetarget" :key="index">
<view v-for="(item,index) in emotionTagListLook" :key="index">
<image class="tags-img" style="width: 40rpx;height: 40rpx;margin: 0 10rpx;"
:src="`/static/index/tagNames/${item+5}0.png`" />
:src="item" />
</view>
</view>
@ -176,7 +177,7 @@
style="flex-direction: column;">
<image v-show="item1.startTime"
style="width: 60rpx;height: 60rpx;margin: 0 auto;margin-top: 30rpx"
src="/static/index/tu.png" />
:src="item1.netImmediateFile" />
<view class="title-time-time" style="font-size: 30rpx;">
{{item1.startTime + `-` + item1.endTime}}
</view>
@ -226,11 +227,11 @@
:style="item.target?{background: item.target,transition:`all 1.5s ease-in-out`}:{transition:`all 1.5s ease-in-out`}">
<view :style="{ animationDelay:`-${index * 0.1}s` }"
:class="bottomisShaking?`super-end-items-img-father-active`:`super-end-items-img-father`">
<image class="right-box-img" :src="item.url" />
<view class="right-box-font">{{item.name}}</view>
<image class="right-box-img" :src="item.netImmediateFile" />
<view class="right-box-font">{{item.directiveName}}</view>
</view>
<view class="super-end-items-father-close-father" v-show="bottomisShaking"
@click.stop="bottomItems.splice(index, 1)">
@click.stop="bottomItems.splice(index, 1);saveAll()">
-
</view>
</view>
@ -711,88 +712,118 @@
const bodytarget = ref([]);
const facetarget = ref([]);
const addbody = (index : number) => {
if (bodytarget.value.includes(index)) {
bodytarget.value = bodytarget.value.filter(item => item !== index)
if (bodyTagList.value[index].izSelected == '1') {
bodyTagList.value[index].izSelected = '0'
} else {
if (bodytarget.value.length > 1) {
let targetNumber = 0;
bodyTagList.value.forEach((element : any) => {
if (element.izSelected == '1') {
targetNumber++
}
})
if (targetNumber > 1) {
uni.showToast({
title: "标签最多只能添加两个",
icon: 'none',
duration: 2000
})
return
} else {
bodytarget.value.push(index)
bodyTagList.value[index].izSelected = '1';
console.log("????", bodyTagList.value)
}
}
saveAll()
}
const addface = (index : number) => {
if (facetarget.value.includes(index)) {
facetarget.value = facetarget.value.filter(item => item !== index)
if (emotionTagList.value[index].izSelected == '1') {
emotionTagList.value[index].izSelected = '0'
} else {
if (facetarget.value.length > 1) {
let targetNumber = 0;
emotionTagList.value.forEach((element : any) => {
if (element.izSelected == '1') {
targetNumber++
}
})
if (targetNumber > 1) {
uni.showToast({
title: "标签最多只能添加两个",
icon: 'none',
duration: 2000
})
} else {
facetarget.value.push(index)
emotionTagList.value[index].izSelected = '1';
}
}
saveAll()
}
const open = ref(false);
const getblue = ref(false);
const bottomItems = ref([
{
name: '纸尿裤',
url: "/static/index/niao.png",
target: "#fff",
id: -1
},
{
name: '呕吐',
url: "/static/index/tu.png",
target: "#fff",
id: -1
},
{
name: '吸痰',
url: "/static/index/ou.png",
target: "#fff",
id: -1
},
{
name: '大便',
url: "/static/index/baba.png",
target: "#fff",
id: -1
},
{
name: '纸尿裤',
url: "/static/index/niao.png",
target: "#fff",
id: -1
},
{
name: '呕吐',
url: "/static/index/tu.png",
target: "#fff",
id: -1
},
{
name: '吸痰',
url: "/static/index/ou.png",
target: "#fff",
id: -1
},
{
name: '大便',
url: "/static/index/baba.png",
target: "#fff",
id: -1
},
// {
// // name: '尿',
// // url: "/static/index/niao.png",
// // target: "#fff",
// // id: -1
// directiveId: "", // ID
// directiveName: "", //
// typeId: "", // ID
// typeName: "", //
// categoryId: "", // ID
// categoryName: "", //
// izPackage: "", //
// previewFile: "", //
// previewFileSmall: "", //
// immediateFile: "", //
// immediateFileFocus: "" //
// },
// {
// name: '',
// url: "/static/index/tu.png",
// target: "#fff",
// id: -1
// },
// {
// name: '',
// url: "/static/index/ou.png",
// target: "#fff",
// id: -1
// },
// {
// name: '便',
// url: "/static/index/baba.png",
// target: "#fff",
// id: -1
// },
// {
// name: '尿',
// url: "/static/index/niao.png",
// target: "#fff",
// id: -1
// },
// {
// name: '',
// url: "/static/index/tu.png",
// target: "#fff",
// id: -1
// },
// {
// name: '',
// url: "/static/index/ou.png",
// target: "#fff",
// id: -1
// },
// {
// name: '便',
// url: "/static/index/baba.png",
// target: "#fff",
// id: -1
// },
])
const nameArray = [
`标准`,
@ -1616,8 +1647,9 @@
isMove.value = false;
let stopIt = false;
let allobject = bigArray.value[upmenuIndex.value].children[downmenuIndex.value].children[thirdmenuIndex.value]
// console.log("AAAAAA",allobject)
// console.log("AAAAAA", allobject.cycleType)
if (allobject.cycleType === "即时护理") {
// console.log("zzzzz")
scrollLeft.value = 1;
bottomItems.value.forEach((element : any, index : number) => {
if (element.id === allobject.id) {
@ -1631,13 +1663,12 @@
bottomItems.value[0].target = "#fff"
clearTimeout(cleansettimeout.value);
}
bottomItems.value.unshift({
name: allobject.title,
url: "/static/index/ou.png",
target: `#03a4ff`,
id: allobject.id
})
let pushValue = allobject;
pushValue.directiveId = allobject.id;
pushValue.directiveName = allobject.title;
pushValue.target = `#03a4ff`
bottomItems.value.unshift(pushValue)
// console.log("??????",bottomItems.value)
//
cleansettimeout.value = setTimeout(() => {
bottomItems.value[0].target = `#fff`;
@ -1649,7 +1680,7 @@
isop.value = false;
}, 1500)
}
saveAll()
})
return
}
@ -1669,8 +1700,8 @@
if (weekIndex.value !== -1) {
cycleType = weekValue.value
let cycleTypeIndex = 0;
weekDays.forEach((element:any,index:any)=>{
if(element == weekValue.value){
weekDays.forEach((element : any, index : any) => {
if (element == weekValue.value) {
cycleTypeIndex = index
}
})
@ -1714,7 +1745,7 @@
// immediateFileFocus:"",
// tagName: "",
// })
// console.log("))))",allobject)
console.log("))))",allobject.cycleTypeId)
let param = {
directiveId: allobject.id,
directiveName: allobject.title,
@ -1729,11 +1760,12 @@
endTime: formattedEnd,
positioning: saveEditIndex.value.index0.toString(),
positioningLong: saveEditIndex.value.index1.toString(),
izPackage: false,
izPackage: '0',
previewFile: allobject.previewFile,
previewFileSmall: allobject.previewFileSmall,
immediateFile: allobject.immediateFile,
immediateFileFocus: allobject.immediateFileFocus,
netImmediateFile: allobject.netImmediateFile,
tagName: timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].tagName,
}
//
@ -1749,21 +1781,24 @@
const cleansettimeout = ref(null);
const cleansettimeoutrel = ref(null);
const saveAll = () => {
if(!cansumit.value){
return
}
//
let postArray = [];
timearr.value.forEach((element0, index0) => {
element0.children.forEach((element1, index1) => {
let savetagName = ""
if (!element1.directiveName && !element1.id) {
let array = {};
if (element1.tagName) {
savetagName = element1.tagName
}
array = JSON.parse(JSON.stringify(moBan.value))
savetagName ? array.tagName = savetagName : ""
array.positioning = index0
array.positioningLong = index1
postArray.push(array)
// let array = {};
// if (element1.tagName) {
// savetagName = element1.tagName
// }
// array = JSON.parse(JSON.stringify(moBan.value))
// savetagName ? array.tagName = savetagName : ""
// array.positioning = index0
// array.positioningLong = index1
// postArray.push(array)
} else {
element1.positioning = index0;
element1.positioningLong = index1;
@ -1772,17 +1807,44 @@
})
})
console.log("00000", postArray)
// addBatch(postArray).then(() => {
// console.log("00000", postArray);
// console.log("111111",bottomItems.value)
let info = []
// getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
// if (res.success) {
// console.log("new", res.result)
// timearr.value = res.result
// }
bodyTagList.value.forEach((element : any) => {
if (element.izSelected == '1') {
info.push(element)
}
})
emotionTagList.value.forEach((element : any) => {
if (element.izSelected == '1') {
info.push(element)
}
})
// console.log("22222",info)
// console.log("cccc",uni.getStorageSync('NUall').elderInfo.name)
let allvalue = {
nuId: uni.getStorageSync('nuId'),
nuName: uni.getStorageSync('nuName'),
customerId: uni.getStorageSync('customerId'),
customerName: uni.getStorageSync('NUall').elderInfo.name,
serverList: postArray,
instantList: bottomItems.value,
tagList: info
}
// console.log("", allvalue)
addBatch(allvalue).then(() => {
geteverything()
// getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
// if (res.success) {
// console.log("new", res.result)
// timearr.value = res.result
// }
// })
// })
// })
})
}
const routerPush = () => {
uni.setStorage({
@ -1838,6 +1900,8 @@
}))
}))
)
const emotionTagList = ref([]);
const bodyTagList = ref([]);
onShow(() => {
getServiceTree().then((res : any) => {
@ -1866,6 +1930,7 @@
})
})
bigArray.value = res.result;
console.log("((((()))))", bigArray.value)
downList.value = bigArray.value[0].children
upmenuIndex.value = -1;
downdonghua.value = -1;
@ -1873,18 +1938,64 @@
upmenuIndex.value = 0;
downdonghua.value = 0;
}, 50)
geteverything()
})
if (uni.getStorageSync('nuId') && uni.getStorageSync('customerId')) {
getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
if (res.success && res.result[0].children.length) {
timearr.value = res.result
}
})
}
uni.$on('where', findback);
})
const bodyTagListLook = ref([]);
const emotionTagListLook = ref([]);
const cansumit = ref(false);
const geteverything = () => {
if (uni.getStorageSync('nuId') && uni.getStorageSync('customerId')) {
getNclist(uni.getStorageSync('nuId'), uni.getStorageSync('customerId')).then((res : any) => {
// console.log("",res.result)
res.result.serviceList.forEach((res:any)=>{
timearr.value[res.positioning].children[res.positioningLong] = res;
})
//
// if(cansumit.value){
// setTimeout(()=>{
// bottomItems.value = res.result.instantList
// },1500)
// }else{
// bottomItems.value = res.result.instantList
// }
bottomItems.value = res.result.instantList
cansumit.value = true;
emotionTagList.value = res.result.emotionTagList;
emotionTagListLook.value = []
bodyTagListLook.value = []
// console.log("@@@@@",res.result.emotionTagList)
res.result.emotionTagList.forEach((res:any)=>{
if(res.izSelected=='1'){
emotionTagListLook.value.push(res.netPic)
}
})
bodyTagList.value = res.result.bodyTagList
res.result.bodyTagList.forEach((res:any)=>{
if(res.izSelected=='1'){
bodyTagListLook.value.push(res.netPic)
}
})
// res.result.emotionTagList.forEach((element:any)=>{
// if(element.izSelected=='1'){
// bodyTagListLook.value.push(element.netPic)
// }
// })
// bodyTagList.value = res.result.bodyTagList
// res.result.emotionTagList.forEach((element:any)=>{
// if(element.izSelected=='1'){
// emotionTagListLook.value.push(element.netPic)
// }
// })
})
}
}
onHide(() => {
uni.$off('where', findback);
});
@ -1918,11 +2029,12 @@
endTime: "",
positioning: "",
positioningLong: "",
izPackage: false,
izPackage: '0',
previewFile: "",
previewFileSmall: "",
immediateFile: "",
immediateFileFocus: "",
netImmediateFile: "",
tagName: "",
})
// bigArray

View File

@ -591,7 +591,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
)
]);
}
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/项目/hldy_app/pages/camera.nvue"]]);
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app/pages/camera.nvue"]]);
export {
camera as default
};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"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;;;"}
{"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;AAEY,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;;;;"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@
height: 100%;
}
.wareaitem .operationbtn[data-v-ce457564] {
width: 20vw;
width: 22vw;
height: 10vw;
position: absolute;
right: 1.5vw;
@ -22,7 +22,7 @@
flex-wrap: wrap;
}
.wareaitem .operationbtn > uni-view[data-v-ce457564] {
width: 9vw;
width: 10vw;
height: 4vw;
border-radius: 1vw;
border: 0.0625rem solid #D9DADC;
@ -36,12 +36,19 @@
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
-webkit-tap-highlight-color: transparent;
}
.wareaitem .operationbtn > uni-view uni-image[data-v-ce457564] {
width: 1.6vw;
height: 1.6vw;
margin-right: 0.2vw;
}
.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;
background: #FFFFFF;
box-shadow: 0px 0px 3vw 0px rgba(12, 102, 209, 0.33) inset;
color: #6c84a0 !important;
animation: scalePulse-ce457564 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
transform-origin: center center;
}
@ -175,27 +182,27 @@
position: absolute;
}
.wareaitem .annotation1[data-v-ce457564] {
top: 20.5vw;
left: 19vw;
top: 21.5vw;
left: 19.5vw;
}
.wareaitem .annotation2[data-v-ce457564] {
top: 13vw;
left: 47vw;
}
.wareaitem .annotation3[data-v-ce457564] {
top: 23vw;
left: 50vw;
top: 24vw;
left: 49.3vw;
}
.wareaitem .annotation4[data-v-ce457564] {
top: 17vw;
left: 68vw;
top: 18vw;
left: 70vw;
}
.wareaitem .annotation5[data-v-ce457564] {
top: 32vw;
top: 34vw;
left: 74vw;
}
.wareaitem .annotation6[data-v-ce457564] {
top: 23vw;
top: 24vw;
right: 6vw;
}
.wareaitem .annotation[data-v-ce457564] {
@ -207,25 +214,27 @@
.wareaitem .annotation > uni-view[data-v-ce457564] {
position: relative;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(1) {
width: 7vw;
height: 2vw;
background: #F2F3F7;
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
border: 0.0625rem solid #FFFFFF;
font-weight: 400;
font-size: 1.3vw;
color: #333333;
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
width: 6.5vw;
height: 3.2vw;
margin: -0.0625rem auto 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
width: 4vw;
height: 2vw;
margin: -0.0625rem auto 0;
z-index: 2;
.wareaitem .annotation > uni-view:nth-child(2) uni-image[data-v-ce457564] {
position: absolute;
top: 0;
left: 0;
}
.wareaitem .annotation > uni-view:nth-child(2) uni-text[data-v-ce457564] {
position: relative;
font-weight: 400;
font-size: 1.1vw;
color: #fff;
z-index: 3;
margin-top: -0.5vw;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(3) {
width: 3vw;

View File

@ -15,6 +15,70 @@
height: calc(100% - 4vw);
margin-top: 4vw;
}
.box .rights .serchs {
width: 23.2vw;
height: 3.2vw;
background: rgba(255, 255, 255, 0.5);
border-radius: 1.6vw;
display: flex;
justify-content: space-between;
padding: 0.5vw;
align-items: center;
}
.box .rights .serchs uni-input {
width: 18vw;
height: 2.4vw;
font-size: 0.9vw;
padding-left: 1.6vw;
}
.box .rights .serchs uni-view {
width: 4.2vw;
height: 2.4vw;
background: url('../../static/index/warehouse/procurement/sh.png') no-repeat;
background-size: 100% 100%;
border-radius: 1.2vw;
border: 1px solid #009bfc;
font-weight: 400;
font-size: 1vw;
color: #1083F8;
display: flex;
justify-content: center;
align-items: center;
}
.box .rights .anmikc {
width: 100%;
height: 9vw;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.box .rights .anmikc > uni-view {
width: 8vw;
height: 3.2vw;
display: flex;
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 0.9vw;
color: #212327;
background: #FFFFFF;
margin: 0.7vw 0;
border-radius: 1.6vw;
}
.box .rights .anmikc > uni-view uni-view {
margin-right: 0.4vw;
}
.box .rights .anmikc > uni-view uni-view uni-image {
width: 1.5vw;
height: 1.5vw;
}
.box .rights .anmikc > uni-view uni-view .donghua {
margin: 0;
}
.box .rights .anmikc > uni-view uni-text {
margin-top: 0.1vw;
white-space: nowrap;
}
.box .rights .typeitem {
width: 100%;
height: 54vh;
@ -40,10 +104,17 @@
display: flex;
justify-content: center;
align-items: center;
padding: 0 1.4vw;
padding: 0 0.4vw;
margin-bottom: 0.8vw;
text-align: center;
}
.box .rights .typeitem .scroltype .scroll-Y uni-view uni-text {
white-space: nowrap;
}
.box .rights .typeitem .scroltype .scroll-Y uni-view > uni-image {
width: 1.8vw;
height: 1.8vw;
}
.box .rights .typeitem .scroltype .scroll-Y .act {
background: #ffffff !important;
color: #0385FA !important;
@ -170,10 +241,10 @@
border-radius: 1.6vw;
}
.box .lefts .mblbg {
width: 23vw;
width: 24.5vw;
height: 21vw;
position: absolute;
left: -0.2vw;
left: -1vw;
bottom: 0.5vw;
border-radius: 1.6vw;
filter: blur(0.46875rem);

View File

@ -7281,7 +7281,7 @@ to {
height: 100%;
}
.wareaitem .operationbtn[data-v-ce457564] {
width: 20vw;
width: 22vw;
height: 10vw;
position: absolute;
right: 1.5vw;
@ -7291,7 +7291,7 @@ to {
flex-wrap: wrap;
}
.wareaitem .operationbtn > uni-view[data-v-ce457564] {
width: 9vw;
width: 10vw;
height: 4vw;
border-radius: 1vw;
border: 0.0625rem solid #D9DADC;
@ -7305,12 +7305,19 @@ to {
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
-webkit-tap-highlight-color: transparent;
}
.wareaitem .operationbtn > uni-view uni-image[data-v-ce457564] {
width: 1.6vw;
height: 1.6vw;
margin-right: 0.2vw;
}
.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;
background: #FFFFFF;
box-shadow: 0px 0px 3vw 0px rgba(12, 102, 209, 0.33) inset;
color: #6c84a0 !important;
animation: scalePulse-ce457564 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
transform-origin: center center;
}
@ -7444,27 +7451,27 @@ to {
position: absolute;
}
.wareaitem .annotation1[data-v-ce457564] {
top: 20.5vw;
left: 19vw;
top: 21.5vw;
left: 19.5vw;
}
.wareaitem .annotation2[data-v-ce457564] {
top: 13vw;
left: 47vw;
}
.wareaitem .annotation3[data-v-ce457564] {
top: 23vw;
left: 50vw;
top: 24vw;
left: 49.3vw;
}
.wareaitem .annotation4[data-v-ce457564] {
top: 17vw;
left: 68vw;
top: 18vw;
left: 70vw;
}
.wareaitem .annotation5[data-v-ce457564] {
top: 32vw;
top: 34vw;
left: 74vw;
}
.wareaitem .annotation6[data-v-ce457564] {
top: 23vw;
top: 24vw;
right: 6vw;
}
.wareaitem .annotation[data-v-ce457564] {
@ -7476,25 +7483,27 @@ to {
.wareaitem .annotation > uni-view[data-v-ce457564] {
position: relative;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(1) {
width: 7vw;
height: 2vw;
background: #F2F3F7;
box-shadow: 0 0 0 0 rgba(182, 186, 196, 0.35);
border: 0.0625rem solid #FFFFFF;
font-weight: 400;
font-size: 1.3vw;
color: #333333;
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
width: 6.5vw;
height: 3.2vw;
margin: -0.0625rem auto 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(2) {
width: 4vw;
height: 2vw;
margin: -0.0625rem auto 0;
z-index: 2;
.wareaitem .annotation > uni-view:nth-child(2) uni-image[data-v-ce457564] {
position: absolute;
top: 0;
left: 0;
}
.wareaitem .annotation > uni-view:nth-child(2) uni-text[data-v-ce457564] {
position: relative;
font-weight: 400;
font-size: 1.1vw;
color: #fff;
z-index: 3;
margin-top: -0.5vw;
}
.wareaitem .annotation > uni-view[data-v-ce457564]:nth-child(3) {
width: 3vw;

View File

@ -63,7 +63,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
});
// ../../../../项目/hldy_app/unpackage/dist/dev/.nvue/pages/camera.js
// ../../../../hldy_app/unpackage/dist/dev/.nvue/pages/camera.js
var import_vue = __toESM(require_vue());
function requireNativePlugin(name) {
return weex.requireModule(name);
@ -657,7 +657,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
)
]);
}
var camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/\u9879\u76EE/hldy_app/pages/camera.nvue"]]);
var camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app/pages/camera.nvue"]]);
// <stdin>
var webview = plus.webview.currentWebview();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 612 KiB

After

Width:  |  Height:  |  Size: 564 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 1020 B

File diff suppressed because one or more lines are too long

View File

@ -26,7 +26,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
};
const navurl = common_vendor.ref("");
const movecard = (type) => {
common_vendor.index.__f__("log", "at pages/Warehouse/Warehouse.vue:64", type);
common_vendor.index.__f__("log", "at pages/Warehouse/Warehouse.vue:68", type);
switch (type) {
case 0:
housedex.value > 0 ? housedex.value-- : housedex.value = 3;
@ -41,7 +41,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
housedex.value > 0 ? housedex.value-- : housedex.value = 3;
break;
case 4:
common_vendor.index.__f__("log", "at pages/Warehouse/Warehouse.vue:84", "选中" + housedex.value);
common_vendor.index.__f__("log", "at pages/Warehouse/Warehouse.vue:88", "选中" + housedex.value);
if (housedex.value == 1) {
navurl.value = "pages/Warehouse/procurement";
}
@ -166,7 +166,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
c: index
};
}),
c: common_assets._imports_0$14,
c: common_assets._imports_0$15,
d: common_vendor.o(($event) => housactive(1)),
e: common_vendor.f(["付款", "采购", "结账", "拣货", "护理单元", "中控室"], (v, i, i0) => {
return {
@ -175,8 +175,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
c: i
};
}),
f: common_assets._imports_1$11,
g: common_assets._imports_2$8,
f: common_assets._imports_1$12,
g: common_assets._imports_2$9,
h: common_vendor.o(movecard),
i: common_vendor.p({
getblue: getblue.value,
@ -184,9 +184,10 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
j: common_vendor.f(["请领出库", "退货入库", "库存盘点", "实时监控"], (v, i, i0) => {
return {
a: common_vendor.t(v),
b: common_vendor.o(($event) => onTap(i)),
c: common_vendor.n(beblue.value === i ? "click-box-target grad-text" : "click-box")
a: beblue.value === i ? "/static/index/warehouse/ku/rq" + i + ".png" : "/static/index/warehouse/ku/rs" + i + ".png",
b: common_vendor.t(v),
c: common_vendor.o(($event) => onTap(i)),
d: common_vendor.n(beblue.value === i ? "click-box-target" : "click-box")
};
}),
k: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`),

View File

@ -1,49 +1,56 @@
"use strict";
const _imports_0$p = "/static/index/superNu.png";
const _imports_0$o = "/static/left.png";
const _imports_0$n = "/static/index/oldman.png";
const _imports_0$m = "/static/index/watch/uni.png";
const _imports_1$k = "/static/index/watch/more.png";
const _imports_2$f = "/static/index/newindex/curve/shezhi.png";
const _imports_0$q = "/static/index/superNu.png";
const _imports_0$p = "/static/left.png";
const _imports_0$o = "/static/index/oldman.png";
const _imports_0$n = "/static/index/watch/uni.png";
const _imports_1$l = "/static/index/watch/more.png";
const _imports_2$g = "/static/index/newindex/curve/shezhi.png";
const _imports_3$a = "/static/nocamera.png";
const _imports_4$7 = "/static/index/watch/laotai.png";
const _imports_5$6 = "/static/index/watch/laotou.png";
const _imports_6$2 = "/static/index/watch/phonebgc.png";
const _imports_4$8 = "/static/index/watch/laotai.png";
const _imports_5$7 = "/static/index/watch/laotou.png";
const _imports_6$4 = "/static/index/watch/phonebgc.png";
const _imports_7$3 = "/static/index/watch/phone.png";
const _imports_8$3 = "/static/index/watch/phoneball.png";
const _imports_9$3 = "/static/index/watch/pao.png";
const _imports_10$2 = "/static/index/camera/back.png";
const _imports_0$l = "/static/click.png";
const _imports_1$j = "/static/x.png";
const _imports_2$e = "/static/bgc.png";
const _imports_0$m = "/static/click.png";
const _imports_1$k = "/static/x.png";
const _imports_2$f = "/static/bgc.png";
const _imports_3$9 = "/static/qiu.png";
const _imports_0$k = "/static/kuai.png";
const _imports_1$i = "/static/sao.png";
const _imports_2$d = "/static/qr.png";
const _imports_0$j = "/static/index/leida/leftbgc.png";
const _imports_1$h = "/static/index/leida/bigball.png";
const _imports_2$c = "/static/index/leida/biao.png";
const _imports_0$l = "/static/kuai.png";
const _imports_1$j = "/static/sao.png";
const _imports_2$e = "/static/qr.png";
const _imports_0$k = "/static/index/leida/leftbgc.png";
const _imports_1$i = "/static/index/leida/bigball.png";
const _imports_2$d = "/static/index/leida/biao.png";
const _imports_3$8 = "/static/index/leida/ball.png";
const _imports_4$6 = "/static/index/leida/shallow.png";
const _imports_5$5 = "/static/index/leida/play.png";
const _imports_5$4 = "/static/index/quxiao.png";
const _imports_0$i = "/static/index/customer.png";
const _imports_0$h = "/static/index/tu.png";
const _imports_1$g = "/static/index/newruler/jiao.png";
const _imports_0$g = "/static/index/warehouse/ys.gif";
const _imports_1$f = "/static/index/warehouse/y1.png";
const _imports_2$b = "/static/index/warehouse/y0.png";
const _imports_4$7 = "/static/index/leida/shallow.png";
const _imports_5$6 = "/static/index/leida/play.png";
const _imports_5$5 = "/static/index/quxiao.png";
const _imports_0$j = "/static/index/customer.png";
const _imports_6$3 = "/static/index/tu.png";
const _imports_0$i = "/static/index/newruler/jiao.png";
const _imports_0$h = "/static/index/warehouse/ys.gif";
const _imports_1$h = "/static/index/warehouse/y1.png";
const _imports_2$c = "/static/index/warehouse/y0.png";
const _imports_0$g = "/static/index/warehouse/procurement/hl.png";
const _imports_1$g = "/static/index/warehouse/procurement/yl.png";
const _imports_2$b = "/static/index/warehouse/procurement/bj.png";
const _imports_3$7 = "/static/index/warehouse/procurement/znk.png";
const _imports_4$6 = "/static/index/warehouse/procurement/jqr.png";
const _imports_5$4 = "/static/index/warehouse/procurement/Purchase/Purchase09.png";
const _imports_6$2 = "/static/index/warehouse/procurement/Purchase/Purchase01.png";
const _imports_0$f = "/static/index/update/fly.png";
const _imports_1$e = "/static/index/update/bgc.png";
const _imports_1$d = "/static/index/undericons/upguang.png";
const _imports_1$f = "/static/index/update/bgc.png";
const _imports_1$e = "/static/index/undericons/upguang.png";
const _imports_0$e = "/static/index/shexiang.png";
const _imports_1$c = "/static/index/cheng.png";
const _imports_1$d = "/static/index/cheng.png";
const _imports_2$a = "/static/index/deleteicon.png";
const _imports_11$1 = "/static/index/NU.png";
const _imports_0$d = "/static/index/ku.png";
const _imports_1$b = "/static/index/ren.png";
const _imports_1$c = "/static/index/ren.png";
const _imports_2$9 = "/static/index/redbian.png";
const _imports_3$7 = "/static/index/ri.png";
const _imports_3$6 = "/static/index/ri.png";
const _imports_4$5 = "/static/index/zhou.png";
const _imports_5$3 = "/static/index/ji.png";
const _imports_7$2 = "/static/index/keyimg/movebutton.png";
@ -51,14 +58,14 @@ const _imports_8$2 = "/static/index/keyimg/deletebutton.png";
const _imports_9$2 = "/static/index/keyimg/notebutton.png";
const _imports_10$1 = "/static/index/keyimg/okbutton.png";
const _imports_0$c = "/static/index/camera/arrow1.png";
const _imports_1$a = "/static/index/camera/arrow3.png";
const _imports_1$b = "/static/index/camera/arrow3.png";
const _imports_2$8 = "/static/index/camera/arrow5.png";
const _imports_3$6 = "/static/index/camera/arrow4.png";
const _imports_3$5 = "/static/index/camera/arrow4.png";
const _imports_4$4 = "/static/index/camera/arrow2.png";
const _imports_0$b = "/static/index/newindex/wendu/0.png";
const _imports_1$9 = "/static/index/newindex/wendu/1.png";
const _imports_2$7 = "/static/index/newruler/monitor_1.png";
const _imports_3$5 = "/static/index/sharelogo.png";
const _imports_1$a = "/static/index/newindex/wendu/1.png";
const _imports_1$9 = "/static/index/newruler/monitor_1.png";
const _imports_2$7 = "/static/index/sharelogo.png";
const _imports_0$a = "/static/index/Warehousing/firstbutton.png";
const _imports_1$8 = "/static/index/Warehousing/secondbutton.png";
const _imports_2$6 = "/static/index/Warehousing/thirdbutton.png";
@ -109,75 +116,78 @@ const _imports_1$1 = "/static/index/Warehousing/you.png";
const _imports_0 = "/static/index/Warehousing/shangchuanpeople.png";
const _imports_1 = "/static/index/Warehousing/shangchuantime.png";
const _imports_4 = "/static/index/Warehousing/pen.png";
exports._imports_0 = _imports_0$o;
exports._imports_0$1 = _imports_0$p;
exports._imports_0$10 = _imports_0$e;
exports._imports_0$11 = _imports_0$d;
exports._imports_0$12 = _imports_0$c;
exports._imports_0$13 = _imports_0$b;
exports._imports_0$14 = _imports_0$g;
exports._imports_0$15 = _imports_0$a;
exports._imports_0$16 = _imports_0$9;
exports._imports_0$17 = _imports_0$8;
exports._imports_0$18 = _imports_0$7;
exports._imports_0$19 = _imports_0$6;
exports._imports_0$2 = _imports_0$n;
exports._imports_0$20 = _imports_0$5;
exports._imports_0$21 = _imports_0$4;
exports._imports_0$22 = _imports_0$3;
exports._imports_0$23 = _imports_0$2;
exports._imports_0$24 = _imports_0$1;
exports._imports_0$25 = _imports_0;
exports._imports_0$3 = _imports_0$m;
exports._imports_0$4 = _imports_0$l;
exports._imports_0$5 = _imports_0$k;
exports._imports_0$6 = _imports_0$j;
exports._imports_0$7 = _imports_0$i;
exports._imports_0$8 = _imports_0$h;
exports._imports_0$9 = _imports_0$f;
exports._imports_1 = _imports_1$k;
exports._imports_1$1 = _imports_1$j;
exports._imports_1$10 = _imports_1$9;
exports._imports_1$11 = _imports_1$f;
exports._imports_1$12 = _imports_1$8;
exports._imports_1$13 = _imports_1$7;
exports._imports_1$14 = _imports_1$6;
exports._imports_1$15 = _imports_1$5;
exports._imports_1$16 = _imports_1$4;
exports._imports_1$17 = _imports_1$3;
exports._imports_1$18 = _imports_1$2;
exports._imports_1$19 = _imports_1$1;
exports._imports_1$2 = _imports_1$i;
exports._imports_1$20 = _imports_1;
exports._imports_1$3 = _imports_1$h;
exports._imports_0 = _imports_0$p;
exports._imports_0$1 = _imports_0$q;
exports._imports_0$10 = _imports_0$f;
exports._imports_0$11 = _imports_0$e;
exports._imports_0$12 = _imports_0$d;
exports._imports_0$13 = _imports_0$c;
exports._imports_0$14 = _imports_0$b;
exports._imports_0$15 = _imports_0$h;
exports._imports_0$16 = _imports_0$a;
exports._imports_0$17 = _imports_0$9;
exports._imports_0$18 = _imports_0$8;
exports._imports_0$19 = _imports_0$7;
exports._imports_0$2 = _imports_0$o;
exports._imports_0$20 = _imports_0$6;
exports._imports_0$21 = _imports_0$5;
exports._imports_0$22 = _imports_0$4;
exports._imports_0$23 = _imports_0$3;
exports._imports_0$24 = _imports_0$2;
exports._imports_0$25 = _imports_0$1;
exports._imports_0$26 = _imports_0;
exports._imports_0$3 = _imports_0$n;
exports._imports_0$4 = _imports_0$m;
exports._imports_0$5 = _imports_0$l;
exports._imports_0$6 = _imports_0$k;
exports._imports_0$7 = _imports_0$j;
exports._imports_0$8 = _imports_0$i;
exports._imports_0$9 = _imports_0$g;
exports._imports_1 = _imports_1$l;
exports._imports_1$1 = _imports_1$k;
exports._imports_1$10 = _imports_1$a;
exports._imports_1$11 = _imports_1$9;
exports._imports_1$12 = _imports_1$h;
exports._imports_1$13 = _imports_1$8;
exports._imports_1$14 = _imports_1$7;
exports._imports_1$15 = _imports_1$6;
exports._imports_1$16 = _imports_1$5;
exports._imports_1$17 = _imports_1$4;
exports._imports_1$18 = _imports_1$3;
exports._imports_1$19 = _imports_1$2;
exports._imports_1$2 = _imports_1$j;
exports._imports_1$20 = _imports_1$1;
exports._imports_1$21 = _imports_1;
exports._imports_1$3 = _imports_1$i;
exports._imports_1$4 = _imports_1$g;
exports._imports_1$5 = _imports_1$e;
exports._imports_1$6 = _imports_1$d;
exports._imports_1$7 = _imports_1$c;
exports._imports_1$8 = _imports_1$b;
exports._imports_1$9 = _imports_1$a;
exports._imports_1$5 = _imports_1$f;
exports._imports_1$6 = _imports_1$e;
exports._imports_1$7 = _imports_1$d;
exports._imports_1$8 = _imports_1$c;
exports._imports_1$9 = _imports_1$b;
exports._imports_10 = _imports_10$2;
exports._imports_10$1 = _imports_10$1;
exports._imports_10$2 = _imports_10;
exports._imports_11 = _imports_11$1;
exports._imports_11$1 = _imports_11;
exports._imports_12 = _imports_12;
exports._imports_2 = _imports_2$f;
exports._imports_2$1 = _imports_2$e;
exports._imports_2$10 = _imports_2$5;
exports._imports_2$11 = _imports_2$4;
exports._imports_2$12 = _imports_2$3;
exports._imports_2$13 = _imports_2$2;
exports._imports_2$14 = _imports_2$1;
exports._imports_2$15 = _imports_2;
exports._imports_2$2 = _imports_2$d;
exports._imports_2$3 = _imports_2$c;
exports._imports_2$4 = _imports_2$a;
exports._imports_2$5 = _imports_2$9;
exports._imports_2$6 = _imports_2$8;
exports._imports_2$7 = _imports_2$7;
exports._imports_2$8 = _imports_2$b;
exports._imports_2$9 = _imports_2$6;
exports._imports_2 = _imports_2$g;
exports._imports_2$1 = _imports_2$f;
exports._imports_2$10 = _imports_2$6;
exports._imports_2$11 = _imports_2$5;
exports._imports_2$12 = _imports_2$4;
exports._imports_2$13 = _imports_2$3;
exports._imports_2$14 = _imports_2$2;
exports._imports_2$15 = _imports_2$1;
exports._imports_2$16 = _imports_2;
exports._imports_2$2 = _imports_2$e;
exports._imports_2$3 = _imports_2$d;
exports._imports_2$4 = _imports_2$b;
exports._imports_2$5 = _imports_2$a;
exports._imports_2$6 = _imports_2$9;
exports._imports_2$7 = _imports_2$8;
exports._imports_2$8 = _imports_2$7;
exports._imports_2$9 = _imports_2$c;
exports._imports_3 = _imports_3$a;
exports._imports_3$1 = _imports_3$9;
exports._imports_3$10 = _imports_3;
@ -189,24 +199,28 @@ exports._imports_3$6 = _imports_3$4;
exports._imports_3$7 = _imports_3$3;
exports._imports_3$8 = _imports_3$2;
exports._imports_3$9 = _imports_3$1;
exports._imports_4 = _imports_4$7;
exports._imports_4$1 = _imports_4$6;
exports._imports_4$2 = _imports_4$5;
exports._imports_4$3 = _imports_4$4;
exports._imports_4$4 = _imports_4$3;
exports._imports_4$5 = _imports_4$2;
exports._imports_4$6 = _imports_4$1;
exports._imports_4$7 = _imports_4;
exports._imports_5 = _imports_5$6;
exports._imports_5$1 = _imports_5$4;
exports._imports_5$2 = _imports_5$5;
exports._imports_5$3 = _imports_5$3;
exports._imports_5$4 = _imports_5$2;
exports._imports_5$5 = _imports_5$1;
exports._imports_5$6 = _imports_5;
exports._imports_6 = _imports_6$2;
exports._imports_6$1 = _imports_6$1;
exports._imports_6$2 = _imports_6;
exports._imports_4 = _imports_4$8;
exports._imports_4$1 = _imports_4$7;
exports._imports_4$2 = _imports_4$6;
exports._imports_4$3 = _imports_4$5;
exports._imports_4$4 = _imports_4$4;
exports._imports_4$5 = _imports_4$3;
exports._imports_4$6 = _imports_4$2;
exports._imports_4$7 = _imports_4$1;
exports._imports_4$8 = _imports_4;
exports._imports_5 = _imports_5$7;
exports._imports_5$1 = _imports_5$5;
exports._imports_5$2 = _imports_5$6;
exports._imports_5$3 = _imports_5$4;
exports._imports_5$4 = _imports_5$3;
exports._imports_5$5 = _imports_5$2;
exports._imports_5$6 = _imports_5$1;
exports._imports_5$7 = _imports_5;
exports._imports_6 = _imports_6$4;
exports._imports_6$1 = _imports_6$3;
exports._imports_6$2 = _imports_6$2;
exports._imports_6$3 = _imports_6$1;
exports._imports_6$4 = _imports_6;
exports._imports_7 = _imports_7$3;
exports._imports_7$1 = _imports_7$2;
exports._imports_7$2 = _imports_7$1;

View File

@ -253,18 +253,18 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
d: common_vendor.o(($event) => cardarray.value[index0].buttontarget[index1] = !cardarray.value[index0].buttontarget[index1], index1)
};
}),
f: common_assets._imports_1$13,
g: common_assets._imports_2$10,
f: common_assets._imports_1$14,
g: common_assets._imports_2$11,
h: rightballarray.value[item0.states].url,
i: common_vendor.t(rightballarray.value[item0.states].name),
j: common_vendor.s(`background: ${rightballarray.value[item0.states].bgc};`),
k: item0.states == 1 || !item0.states
}, item0.states == 1 || !item0.states ? {
l: common_assets._imports_0$16,
l: common_assets._imports_0$17,
m: common_vendor.o(jumptodanyuan, index0),
n: common_assets._imports_4$4,
o: common_assets._imports_5$4,
p: common_assets._imports_6$1,
n: common_assets._imports_4$5,
o: common_assets._imports_5$5,
p: common_assets._imports_6$3,
q: common_assets._imports_7$2,
r: common_assets._imports_8$2
} : {}, {
@ -313,18 +313,18 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
e: common_vendor.o(($event) => cardarray.value[index0].buttontarget[index1] = !cardarray.value[index0].buttontarget[index1], index1)
};
}),
G: common_assets._imports_1$13,
H: common_assets._imports_2$10,
G: common_assets._imports_1$14,
H: common_assets._imports_2$11,
I: rightballarrayspec.value[item0.states].url,
J: common_vendor.t(rightballarrayspec.value[item0.states].name),
K: common_vendor.s(`background: ${rightballarrayspec.value[item0.states].bgc};`),
L: !item0.states
}, !item0.states ? {
M: common_assets._imports_0$16,
M: common_assets._imports_0$17,
N: common_vendor.o(jumptokufang, index0),
O: common_assets._imports_4$4,
P: common_assets._imports_5$4,
Q: common_assets._imports_6$1,
O: common_assets._imports_4$5,
P: common_assets._imports_5$5,
Q: common_assets._imports_6$3,
R: common_assets._imports_7$2,
S: common_assets._imports_8$2
} : {}, {

View File

@ -87,9 +87,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
});
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$17,
a: common_assets._imports_0$18,
b: common_vendor.n(progress.value < 1 ? "spin-anim" : "no-anim"),
c: common_assets._imports_1$14,
c: common_assets._imports_1$15,
d: common_vendor.n(progress.value < 1 ? "spin-anim-spec" : "no-anim-spec"),
e: `scaleX(${progress.value})`,
f: common_vendor.t(progress.value >= 1 ? "扫描完成。" : "正在使用雷达区域扫描护理机构,"),
@ -116,7 +116,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}, allindex),
f: renamenummber.value == allindex
}, renamenummber.value == allindex ? {
g: common_assets._imports_4$5,
g: common_assets._imports_4$6,
h: savevalue.value,
i: common_vendor.o(($event) => savevalue.value = $event.detail.value, allindex),
j: savevalue.value,
@ -129,7 +129,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
p: common_vendor.o(($event) => onAnimEnd(allitem), allindex)
});
}),
j: common_assets._imports_2$11,
j: common_assets._imports_2$12,
k: common_assets._imports_3$7,
l: scrollTop.value,
m: __props.isShow,

View File

@ -41,7 +41,7 @@ const _sfc_main = {
"overlay-show": isVisible.value
}),
c: common_vendor.o(whiteDrawer),
d: common_assets._imports_0$18,
d: common_assets._imports_0$19,
e: isVisible.value && __props.canclose,
f: common_vendor.o(whiteDrawer),
g: common_vendor.n({

View File

@ -135,15 +135,15 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}
return (_ctx, _cache) => {
return common_vendor.e({
a: common_assets._imports_0$12,
a: common_assets._imports_0$13,
b: type.value == -1 || type.value == 4,
c: common_assets._imports_1$9,
d: type.value == 3,
e: common_assets._imports_2$6,
e: common_assets._imports_2$7,
f: type.value == 2,
g: common_assets._imports_3$4,
g: common_assets._imports_3$5,
h: type.value == 0,
i: common_assets._imports_4$3,
i: common_assets._imports_4$4,
j: type.value == 1,
k: getblue.value
}, getblue.value ? {

View File

@ -33,13 +33,13 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
const circlesNumber = common_vendor.ref(0);
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$16,
b: common_assets._imports_1$15,
c: common_assets._imports_2$12,
a: common_assets._imports_0$17,
b: common_assets._imports_1$16,
c: common_assets._imports_2$13,
d: common_assets._imports_3$8,
e: common_assets._imports_4$6,
f: common_assets._imports_5$5,
g: common_assets._imports_6$2,
e: common_assets._imports_4$7,
f: common_assets._imports_5$6,
g: common_assets._imports_6$4,
h: common_vendor.o(($event) => showVideo.value = true),
i: common_assets._imports_7$3,
j: common_assets._imports_8$3,

View File

@ -1084,7 +1084,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
f: common_vendor.o(($event) => changLeft(index2), index2)
};
}),
D: common_assets._imports_0$10,
D: common_assets._imports_0$11,
E: common_vendor.f(downList.value, (item, index2, i0) => {
return {
a: common_vendor.t(item.title),
@ -1202,7 +1202,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
as: common_vendor.o(($event) => songisopen.value = false)
} : {}, {
at: common_assets._imports_2$4,
at: common_assets._imports_2$5,
av: common_vendor.t(deletename.value),
aw: common_vendor.o(($event) => deleteisopen.value = false),
ax: common_vendor.o(($event) => deleteRuler(deleteindex.value[0], deleteindex.value[1])),
@ -1211,7 +1211,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
aA: deleteisopen.value,
aB: common_vendor.o(($event) => deleteisopen.value = false),
aC: common_assets._imports_2$4,
aC: common_assets._imports_2$5,
aD: common_vendor.t(deletename.value),
aE: common_vendor.o(($event) => deletedownisopen.value = false),
aF: common_vendor.o(($event) => {

View File

@ -878,7 +878,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
} : {}, {
m: item1.startTime
}, item1.startTime ? {
n: common_assets._imports_0$11,
n: common_assets._imports_0$12,
o: common_assets._imports_1$8
} : {}, {
p: common_vendor.n(getClass(item1, index0, index1)),
@ -926,9 +926,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
i: index2
};
}),
x: common_assets._imports_2$5,
x: common_assets._imports_2$6,
y: common_vendor.n(bottomisShaking.value ? `super-end-items-img-father-active` : `super-end-items-img-father`),
z: common_assets._imports_0$11,
z: common_assets._imports_0$12,
A: common_assets._imports_1$8,
B: bottomisShaking.value,
C: scrollLeft.value,
@ -987,11 +987,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
h: common_vendor.o(($event) => onTap(index2), index2)
};
}),
O: common_assets._imports_3$3,
P: common_assets._imports_4$2,
Q: common_assets._imports_5$3,
R: common_assets._imports_0$8,
S: common_assets._imports_0$11,
O: common_assets._imports_3$4,
P: common_assets._imports_4$3,
Q: common_assets._imports_5$4,
R: common_assets._imports_6$1,
S: common_assets._imports_0$12,
T: common_assets._imports_1$8,
U: firsttop.value,
V: !iszhouqi.value,
@ -1003,7 +1003,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
d: common_vendor.o(($event) => secondContant(index2), index2)
};
}),
X: common_assets._imports_0$8,
X: common_assets._imports_6$1,
Y: secondtop.value,
Z: common_vendor.f(doctorsayList.value, (item, index2, i0) => {
return {

View File

@ -73,7 +73,7 @@ const _sfc_main = {
}
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$20,
a: common_assets._imports_0$21,
b: __props.isShow,
c: ballLeft.value + "px",
d: ballTop.value + "px",

View File

@ -12,9 +12,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
return (_ctx, _cache) => {
return {
a: `/static/index/project3.png`,
b: common_assets._imports_0$21,
c: common_assets._imports_1$17,
d: common_assets._imports_2$14,
b: common_assets._imports_0$22,
c: common_assets._imports_1$18,
d: common_assets._imports_2$15,
e: common_vendor.o(($event) => buttonclick(`qinggou`)),
f: common_vendor.o(($event) => buttonclick(`churuku`))
};

View File

@ -113,7 +113,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
k: item.sliding ? 1 : ""
};
}),
c: common_assets._imports_0$22,
c: common_assets._imports_0$23,
d: moveTop.value,
e: common_vendor.o(addNewShop),
f: common_vendor.o(closeIt),

View File

@ -85,11 +85,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
d: index
};
}),
e: common_assets._imports_0$23,
f: common_assets._imports_1$18,
g: common_assets._imports_2$15,
e: common_assets._imports_0$24,
f: common_assets._imports_1$19,
g: common_assets._imports_2$16,
h: common_assets._imports_3$10,
i: common_assets._imports_4$7
i: common_assets._imports_4$8
};
};
}

View File

@ -71,7 +71,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
return (_ctx, _cache) => {
return {
a: `/static/index/project3.png`,
b: common_assets._imports_0$19,
b: common_assets._imports_0$20,
c: common_vendor.t(blueValue.value),
d: common_vendor.f(bluelist.value, (item, i, i0) => {
return {
@ -89,7 +89,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
g: common_vendor.o(() => {
}),
h: common_vendor.o(($event) => blueshow.value = !blueshow.value),
i: common_assets._imports_1$16,
i: common_assets._imports_1$17,
j: common_vendor.t(whiteValue.value),
k: common_vendor.f(whitelist.value, (item, i, i0) => {
return {
@ -107,7 +107,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
n: common_vendor.o(() => {
}),
o: common_vendor.o(($event) => whiteshow.value = !whiteshow.value),
p: common_assets._imports_2$13,
p: common_assets._imports_2$14,
q: common_assets._imports_3$9,
r: common_vendor.f(manyCard.value, (item, index, i0) => {
return {

View File

@ -106,7 +106,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
i: index
};
}),
b: common_assets._imports_0$24,
b: common_assets._imports_0$25,
c: common_vendor.f(photoArray.value, (item, index, i0) => {
return {
a: item,
@ -114,7 +114,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
c: index
};
}),
d: common_assets._imports_1$19,
d: common_assets._imports_1$20,
e: common_vendor.o(closeIt),
f: common_vendor.o(closeIt)
};

View File

@ -176,9 +176,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
j: common_vendor.o(($event) => clickIndex(index), index)
});
}),
t: common_assets._imports_0$23,
v: common_assets._imports_1$18,
w: common_assets._imports_2$15,
t: common_assets._imports_0$24,
v: common_assets._imports_1$19,
w: common_assets._imports_2$16,
x: `/static/index/project3.png`
});
};

View File

@ -58,18 +58,18 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
};
}),
s: common_assets._imports_3$10,
t: common_assets._imports_0$23,
v: common_assets._imports_1$18,
w: common_assets._imports_2$15,
x: common_assets._imports_0$24,
t: common_assets._imports_0$24,
v: common_assets._imports_1$19,
w: common_assets._imports_2$16,
x: common_assets._imports_0$25,
y: common_vendor.f([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], (item, index, i0) => {
return {
a: index,
b: common_vendor.o(openPhoto, index)
};
}),
z: common_assets._imports_5$6,
A: common_assets._imports_1$19
z: common_assets._imports_5$7,
A: common_assets._imports_1$20
};
};
}

View File

@ -47,8 +47,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
a: item,
b: index !== photoArray.value.length - 1
}, index !== photoArray.value.length - 1 ? {
c: common_assets._imports_0$25,
d: common_assets._imports_1$20
c: common_assets._imports_0$26,
d: common_assets._imports_1$21
} : {}, {
e: common_vendor.o(($event) => openPhoto(index), index),
f: index

View File

@ -35,9 +35,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
};
}),
k: common_assets._imports_3$10,
l: common_assets._imports_0$23,
m: common_assets._imports_1$18,
n: common_assets._imports_2$15
l: common_assets._imports_0$24,
m: common_assets._imports_1$19,
n: common_assets._imports_2$16
};
};
}

View File

@ -154,11 +154,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
};
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$15,
b: common_assets._imports_1$12,
a: common_assets._imports_0$16,
b: common_assets._imports_1$13,
c: common_vendor.t(`99+`),
d: !isWarning.value,
e: common_assets._imports_2$9,
e: common_assets._imports_2$10,
f: common_vendor.n(!isWarning.value ? `third-bgc` : `bgc-white`),
g: common_vendor.o(($event) => isWarning.value = !isWarning.value),
h: common_assets._imports_3$6,

View File

@ -207,7 +207,7 @@ const _sfc_main = {
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return common_vendor.e({
a: common_assets._imports_0$9,
a: common_assets._imports_0$10,
b: common_assets._imports_1$5,
c: common_vendor.t($options.version),
d: common_vendor.n("zy-upgrade-topbg-" + $props.theme),

View File

@ -384,7 +384,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
return {
a: common_vendor.t(common_vendor.index.getStorageSync("nuId")),
b: common_vendor.t(common_vendor.index.getStorageSync("nuName")),
c: common_assets._imports_0$13,
c: common_assets._imports_0$14,
d: common_assets._imports_1$10,
e: `/static/index/undericons/man.png`,
f: common_vendor.t(name.value),

View File

@ -13,6 +13,14 @@ const getNclist = (nuId, customerId) => {
method: "get"
});
};
const addBatch = (params) => {
return request_index.request({
url: `${common_vendor.index.getStorageSync("serverUrl")}/nuIpadApi/nuBizNuCustomerServer/addBatch`,
method: "post",
data: params
});
};
exports.addBatch = addBatch;
exports.getNclist = getNclist;
exports.getServiceTree = getServiceTree;
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/NursingNew/component/nurse/api.js.map

View File

@ -244,89 +244,116 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}, 50);
}
);
const bodytarget = common_vendor.ref([]);
const facetarget = common_vendor.ref([]);
common_vendor.ref([]);
common_vendor.ref([]);
const addbody = (index) => {
if (bodytarget.value.includes(index)) {
bodytarget.value = bodytarget.value.filter((item) => item !== index);
if (bodyTagList.value[index].izSelected == "1") {
bodyTagList.value[index].izSelected = "0";
} else {
if (bodytarget.value.length > 1) {
let targetNumber = 0;
bodyTagList.value.forEach((element) => {
if (element.izSelected == "1") {
targetNumber++;
}
});
if (targetNumber > 1) {
common_vendor.index.showToast({
title: "标签最多只能添加两个",
icon: "none",
duration: 2e3
});
return;
} else {
bodytarget.value.push(index);
bodyTagList.value[index].izSelected = "1";
common_vendor.index.__f__("log", "at pages/NursingNew/component/nurse/index.vue:735", "????", bodyTagList.value);
}
}
saveAll();
};
const addface = (index) => {
if (facetarget.value.includes(index)) {
facetarget.value = facetarget.value.filter((item) => item !== index);
if (emotionTagList.value[index].izSelected == "1") {
emotionTagList.value[index].izSelected = "0";
} else {
if (facetarget.value.length > 1) {
let targetNumber = 0;
emotionTagList.value.forEach((element) => {
if (element.izSelected == "1") {
targetNumber++;
}
});
if (targetNumber > 1) {
common_vendor.index.showToast({
title: "标签最多只能添加两个",
icon: "none",
duration: 2e3
});
} else {
facetarget.value.push(index);
emotionTagList.value[index].izSelected = "1";
}
}
saveAll();
};
const open = common_vendor.ref(false);
const getblue = common_vendor.ref(false);
const bottomItems = common_vendor.ref([
{
name: "纸尿裤",
url: "/static/index/niao.png",
target: "#fff",
id: -1
},
{
name: "呕吐",
url: "/static/index/tu.png",
target: "#fff",
id: -1
},
{
name: "吸痰",
url: "/static/index/ou.png",
target: "#fff",
id: -1
},
{
name: "大便",
url: "/static/index/baba.png",
target: "#fff",
id: -1
},
{
name: "纸尿裤",
url: "/static/index/niao.png",
target: "#fff",
id: -1
},
{
name: "呕吐",
url: "/static/index/tu.png",
target: "#fff",
id: -1
},
{
name: "吸痰",
url: "/static/index/ou.png",
target: "#fff",
id: -1
},
{
name: "大便",
url: "/static/index/baba.png",
target: "#fff",
id: -1
}
// {
// // name: '纸尿裤',
// // url: "/static/index/niao.png",
// // target: "#fff",
// // id: -1
// directiveId: "", // 服务指令ID
// directiveName: "", // 服务指令名称
// typeId: "", // 类型ID
// typeName: "", // 类型名称
// categoryId: "", // 类别ID
// categoryName: "", // 类别名称
// izPackage: "", // 是否是服务指令包
// previewFile: "", // 大图相对路径
// previewFileSmall: "", // 小图相对路径
// immediateFile: "", // 图片相对路径
// immediateFileFocus: "" // 图片焦点相对路径
// },
// {
// name: '呕吐',
// url: "/static/index/tu.png",
// target: "#fff",
// id: -1
// },
// {
// name: '吸痰',
// url: "/static/index/ou.png",
// target: "#fff",
// id: -1
// },
// {
// name: '大便',
// url: "/static/index/baba.png",
// target: "#fff",
// id: -1
// },
// {
// name: '纸尿裤',
// url: "/static/index/niao.png",
// target: "#fff",
// id: -1
// },
// {
// name: '呕吐',
// url: "/static/index/tu.png",
// target: "#fff",
// id: -1
// },
// {
// name: '吸痰',
// url: "/static/index/ou.png",
// target: "#fff",
// id: -1
// },
// {
// name: '大便',
// url: "/static/index/baba.png",
// target: "#fff",
// id: -1
// },
]);
const nameArray = [
`标准`,
@ -992,12 +1019,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
bottomItems.value[0].target = "#fff";
clearTimeout(cleansettimeout.value);
}
bottomItems.value.unshift({
name: allobject.title,
url: "/static/index/ou.png",
target: `#03a4ff`,
id: allobject.id
});
let pushValue = allobject;
pushValue.directiveId = allobject.id;
pushValue.directiveName = allobject.title;
pushValue.target = `#03a4ff`;
bottomItems.value.unshift(pushValue);
cleansettimeout.value = setTimeout(() => {
bottomItems.value[0].target = `#fff`;
}, 1500);
@ -1008,6 +1034,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
isop.value = false;
}, 1500);
}
saveAll();
});
return;
}
@ -1049,6 +1076,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
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].endTime = formattedEnd;
common_vendor.index.__f__("log", "at pages/NursingNew/component/nurse/index.vue:1748", "))))", allobject.cycleTypeId);
let param = {
directiveId: allobject.id,
directiveName: allobject.title,
@ -1063,11 +1091,12 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
endTime: formattedEnd,
positioning: saveEditIndex.value.index0.toString(),
positioningLong: saveEditIndex.value.index1.toString(),
izPackage: false,
izPackage: "0",
previewFile: allobject.previewFile,
previewFileSmall: allobject.previewFileSmall,
immediateFile: allobject.immediateFile,
immediateFileFocus: allobject.immediateFileFocus,
netImmediateFile: allobject.netImmediateFile,
tagName: timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1].tagName
};
timearr.value[saveEditIndex.value.index0].children[saveEditIndex.value.index1] = param;
@ -1081,28 +1110,44 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
const cleansettimeout = common_vendor.ref(null);
const cleansettimeoutrel = common_vendor.ref(null);
const saveAll = () => {
if (!cansumit.value) {
return;
}
let postArray = [];
timearr.value.forEach((element0, index0) => {
element0.children.forEach((element1, index1) => {
let savetagName = "";
if (!element1.directiveName && !element1.id) {
let array = {};
if (element1.tagName) {
savetagName = element1.tagName;
}
array = JSON.parse(JSON.stringify(moBan.value));
savetagName ? array.tagName = savetagName : "";
array.positioning = index0;
array.positioningLong = index1;
postArray.push(array);
} else {
if (!element1.directiveName && !element1.id)
;
else {
element1.positioning = index0;
element1.positioningLong = index1;
postArray.push(element1);
}
});
});
common_vendor.index.__f__("log", "at pages/NursingNew/component/nurse/index.vue:1775", "00000", postArray);
let info = [];
bodyTagList.value.forEach((element) => {
if (element.izSelected == "1") {
info.push(element);
}
});
emotionTagList.value.forEach((element) => {
if (element.izSelected == "1") {
info.push(element);
}
});
let allvalue = {
nuId: common_vendor.index.getStorageSync("nuId"),
nuName: common_vendor.index.getStorageSync("nuName"),
customerId: common_vendor.index.getStorageSync("customerId"),
customerName: common_vendor.index.getStorageSync("NUall").elderInfo.name,
serverList: postArray,
instantList: bottomItems.value,
tagList: info
};
pages_NursingNew_component_nurse_api.addBatch(allvalue).then(() => {
geteverything();
});
};
const routerPush = () => {
common_vendor.index.setStorage({
@ -1158,6 +1203,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}))
}))
);
const emotionTagList = common_vendor.ref([]);
const bodyTagList = common_vendor.ref([]);
common_vendor.onShow(() => {
pages_NursingNew_component_nurse_api.getServiceTree().then((res) => {
res.result.forEach((element) => {
@ -1183,6 +1230,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
});
});
bigArray.value = res.result;
common_vendor.index.__f__("log", "at pages/NursingNew/component/nurse/index.vue:1933", "((((()))))", bigArray.value);
downList.value = bigArray.value[0].children;
upmenuIndex.value = -1;
downdonghua.value = -1;
@ -1190,16 +1238,38 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
upmenuIndex.value = 0;
downdonghua.value = 0;
}, 50);
geteverything();
});
if (common_vendor.index.getStorageSync("nuId") && common_vendor.index.getStorageSync("customerId")) {
pages_NursingNew_component_nurse_api.getNclist(common_vendor.index.getStorageSync("nuId"), common_vendor.index.getStorageSync("customerId")).then((res) => {
if (res.success && res.result[0].children.length) {
timearr.value = res.result;
}
});
}
common_vendor.index.$on("where", findback);
});
const bodyTagListLook = common_vendor.ref([]);
const emotionTagListLook = common_vendor.ref([]);
const cansumit = common_vendor.ref(false);
const geteverything = () => {
if (common_vendor.index.getStorageSync("nuId") && common_vendor.index.getStorageSync("customerId")) {
pages_NursingNew_component_nurse_api.getNclist(common_vendor.index.getStorageSync("nuId"), common_vendor.index.getStorageSync("customerId")).then((res) => {
res.result.serviceList.forEach((res2) => {
timearr.value[res2.positioning].children[res2.positioningLong] = res2;
});
bottomItems.value = res.result.instantList;
cansumit.value = true;
emotionTagList.value = res.result.emotionTagList;
emotionTagListLook.value = [];
bodyTagListLook.value = [];
res.result.emotionTagList.forEach((res2) => {
if (res2.izSelected == "1") {
emotionTagListLook.value.push(res2.netPic);
}
});
bodyTagList.value = res.result.bodyTagList;
res.result.bodyTagList.forEach((res2) => {
if (res2.izSelected == "1") {
bodyTagListLook.value.push(res2.netPic);
}
});
});
}
};
common_vendor.onHide(() => {
common_vendor.index.$off("where", findback);
});
@ -1214,7 +1284,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
index0: 999,
index1: 999
});
const moBan = common_vendor.ref({
common_vendor.ref({
directiveId: "",
directiveName: "",
typeId: "",
@ -1228,11 +1298,12 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
endTime: "",
positioning: "",
positioningLong: "",
izPackage: false,
izPackage: "0",
previewFile: "",
previewFileSmall: "",
immediateFile: "",
immediateFileFocus: "",
netImmediateFile: "",
tagName: ""
});
function splitString(str) {
@ -1273,11 +1344,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
return common_vendor.e({
a: common_vendor.t(common_vendor.index.getStorageSync("nuId")),
b: common_vendor.t(common_vendor.index.getStorageSync("nuName")),
c: common_vendor.f(nameArray.slice(0, 5), (item, index, i0) => {
c: common_vendor.f(bodyTagList.value, (item, index, i0) => {
return {
a: bodytarget.value.includes(index) ? `/static/index/tagNames/${index}1.png` : `/static/index/tagNames/${index}0.png`,
b: common_vendor.t(item),
c: common_vendor.s(bodytarget.value.includes(index) ? {
a: item.izSelected == `1` ? item.netPicFocus : item.netPic,
b: common_vendor.t(item.tagName),
c: common_vendor.s(item.izSelected == `1` ? {
color: `rgb(54, 159, 239)`
} : {}),
d: common_vendor.n(bodystatustarget.value === index ? "secondtarget" : ""),
@ -1287,11 +1358,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
d: openbody.value,
e: bodydonghua.value ? 1 : 0,
f: !bodytarget.value.length
}, !bodytarget.value.length ? {} : {}, {
g: common_vendor.f(bodytarget.value, (item, index, i0) => {
f: !bodyTagListLook.value.length
}, !bodyTagListLook.value.length ? {} : {}, {
g: common_vendor.f(bodyTagListLook.value, (item, index, i0) => {
return {
a: `/static/index/tagNames/${item}0.png`,
a: item,
b: index
};
}),
@ -1304,11 +1375,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
openface.value = false;
}),
j: common_vendor.n(!topindex.value && !bodystatus.value && !facestatus.value ? "firsttarget" : ""),
k: common_vendor.f(nameArray.slice(5, 12), (item, index, i0) => {
k: common_vendor.f(emotionTagList.value, (item, index, i0) => {
return {
a: facetarget.value.includes(index) ? `/static/index/tagNames/${index + 5}1.png` : `/static/index/tagNames/${index + 5}0.png`,
b: common_vendor.t(item),
c: common_vendor.s(facetarget.value.includes(index) ? {
a: item.izSelected == `1` ? item.netPicFocus : item.netPic,
b: common_vendor.t(item.tagName),
c: common_vendor.s(item.izSelected == `1` ? {
color: `rgb(54, 159, 239)`
} : {}),
d: common_vendor.n(facestatustarget.value === index ? "secondtarget" : ""),
@ -1318,11 +1389,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
l: openface.value,
m: facedonghua.value ? 1 : 0,
n: !facetarget.value.length
}, !facetarget.value.length ? {} : {}, {
o: common_vendor.f(facetarget.value, (item, index, i0) => {
n: !emotionTagListLook.value.length
}, !emotionTagListLook.value.length ? {} : {}, {
o: common_vendor.f(emotionTagListLook.value, (item, index, i0) => {
return {
a: `/static/index/tagNames/${item + 5}0.png`,
a: item,
b: index
};
}),
@ -1379,11 +1450,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
j: item1.startTime
}, item1.startTime ? common_vendor.e({
k: item1.startTime,
l: common_assets._imports_0$8,
l: item1.netImmediateFile,
m: common_vendor.t(item1.startTime + `-` + item1.endTime),
n: item1.cycleType != "日常"
}, item1.cycleType != "日常" ? {
o: common_assets._imports_1$4
o: common_assets._imports_0$8
} : {}, {
p: item1.cycleType != "日常"
}, item1.cycleType != "日常" ? {
@ -1426,10 +1497,13 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
G: common_vendor.o(handleTop),
H: common_vendor.f(bottomItems.value, (item, index, i0) => {
return {
a: item.url,
b: common_vendor.t(item.name),
a: item.netImmediateFile,
b: common_vendor.t(item.directiveName),
c: `-${index * 0.1}s`,
d: common_vendor.o(($event) => bottomItems.value.splice(index, 1), index),
d: common_vendor.o(($event) => {
bottomItems.value.splice(index, 1);
saveAll();
}, index),
e: common_vendor.o(bottomTouchStart, index),
f: common_vendor.o(bottomTouchMove, index),
g: common_vendor.o(bottomTouchEnd, index),
@ -1507,8 +1581,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
k: common_vendor.o(($event) => onTap(index), index)
};
}),
W: common_assets._imports_1$4,
X: common_assets._imports_1$4,
W: common_assets._imports_0$8,
X: common_assets._imports_0$8,
Y: firsttop.value,
Z: !iszhouqi.value,
aa: common_vendor.f(downList.value, (item, index, i0) => {
@ -1557,7 +1631,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
am: buttonBlue.value ? `#fff` : ``,
an: buttonBlue.value ? 1 : "",
ao: common_vendor.o(addnewbutton),
ap: common_assets._imports_2$7,
ap: common_assets._imports_1$11,
aq: common_vendor.o(($event) => changLeft(5)),
ar: `/static/index/teeth.png`,
as: common_vendor.t((_d = (_c = timearr.value[showDetail.value[0]]) == null ? void 0 : _c.children[showDetail.value[1]]) == null ? void 0 : _d.startTime),
@ -1594,7 +1668,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}),
aH: sayisopen.value,
aI: common_vendor.o(($event) => sayisopen.value = false),
aJ: common_assets._imports_3$5,
aJ: common_assets._imports_2$8,
aK: deletedownisopacity.value ? 1 : 0,
aL: common_vendor.o(() => {
}),

View File

@ -1 +1 @@
<view class="{{['data-v-ce457564', k]}}" hidden="{{!l}}"><view class="wareaitem data-v-ce457564"><view class="wareaitem-item data-v-ce457564"><view wx:for="{{a}}" wx:for-item="item" wx:key="g" class="{{['tp', 'data-v-ce457564', item.f]}}" catchtap="{{item.h}}"><image wx:if="{{item.a}}" class="data-v-ce457564" src="{{item.b}}" mode="aspectFill"></image><donghua wx:if="{{item.e}}" class="data-v-ce457564" data-c-h="{{!item.c}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{item.e}}"/></view><view wx:for="{{b}}" wx:for-item="item" wx:key="c" class="{{['tp', 'data-v-ce457564', item.b]}}"><image class="data-v-ce457564" src="{{item.a}}" mode="aspectFill"></image></view><view class="tp ys data-v-ce457564"><image class="data-v-ce457564" src="{{'/static/index/warehouse/i7.png'}}" mode="aspectFill"></image></view><view class="tp gifs data-v-ce457564"><image class="data-v-ce457564" src="{{c}}" mode="aspectFill"></image></view><view class="tp wclik data-v-ce457564" catchtap="{{d}}"></view></view><view wx:for="{{e}}" wx:for-item="v" wx:key="c" class="{{['annotation', 'data-v-ce457564', v.b]}}"><view class="data-v-ce457564">{{v.a}}</view><view class="tp data-v-ce457564"><image class="data-v-ce457564" src="{{f}}" mode="aspectFill"></image></view><view class="tp data-v-ce457564"><image class="data-v-ce457564" src="{{g}}" mode="aspectFill"></image></view></view><arrowkeys wx:if="{{i}}" class="data-v-ce457564" bindmovecard="{{h}}" u-i="ce457564-1" bind:__l="__l" u-p="{{i}}"/><view class="operationbtn data-v-ce457564"><view wx:for="{{j}}" wx:for-item="v" bindtap="{{v.b}}" class="{{['data-v-ce457564', v.c]}}">{{v.a}}</view></view></view></view>
<view class="{{['data-v-ce457564', k]}}" hidden="{{!l}}"><view class="wareaitem data-v-ce457564"><view class="wareaitem-item data-v-ce457564"><view wx:for="{{a}}" wx:for-item="item" wx:key="g" class="{{['tp', 'data-v-ce457564', item.f]}}" catchtap="{{item.h}}"><image wx:if="{{item.a}}" class="data-v-ce457564" src="{{item.b}}" mode="aspectFill"></image><donghua wx:if="{{item.e}}" class="data-v-ce457564" data-c-h="{{!item.c}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{item.e}}"/></view><view wx:for="{{b}}" wx:for-item="item" wx:key="c" class="{{['tp', 'data-v-ce457564', item.b]}}"><image class="data-v-ce457564" src="{{item.a}}" mode="aspectFill"></image></view><view class="tp ys data-v-ce457564"><image class="data-v-ce457564" src="{{'/static/index/warehouse/i7.png'}}" mode="aspectFill"></image></view><view class="tp gifs data-v-ce457564"><image class="data-v-ce457564" src="{{c}}" mode="aspectFill"></image></view><view class="tp wclik data-v-ce457564" catchtap="{{d}}"></view></view><view wx:for="{{e}}" wx:for-item="v" wx:key="c" class="{{['annotation', 'data-v-ce457564', v.b]}}"><view class="data-v-ce457564"></view><view class="tp data-v-ce457564"><text class="data-v-ce457564">{{v.a}}</text><image class="data-v-ce457564" src="{{f}}" mode="aspectFill"></image></view><view class="tp data-v-ce457564"><image class="data-v-ce457564" src="{{g}}" mode="aspectFill"></image></view></view><arrowkeys wx:if="{{i}}" class="data-v-ce457564" bindmovecard="{{h}}" u-i="ce457564-1" bind:__l="__l" u-p="{{i}}"/><view class="operationbtn data-v-ce457564"><view wx:for="{{j}}" wx:for-item="v" bindtap="{{v.c}}" class="{{['data-v-ce457564', v.d]}}"><image class="data-v-ce457564" src="{{v.a}}" mode="aspectFill"></image> {{v.b}}</view></view></view></view>

View File

@ -12,7 +12,7 @@
height: 100%;
}
.wareaitem .operationbtn.data-v-ce457564 {
width: 20vw;
width: 22vw;
height: 10vw;
position: absolute;
right: 1.5vw;
@ -22,7 +22,7 @@
flex-wrap: wrap;
}
.wareaitem .operationbtn > view.data-v-ce457564 {
width: 9vw;
width: 10vw;
height: 4vw;
border-radius: 1vw;
border: 2rpx solid #D9DADC;
@ -36,12 +36,19 @@
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
-webkit-tap-highlight-color: transparent;
}
.wareaitem .operationbtn > view image.data-v-ce457564 {
width: 1.6vw;
height: 1.6vw;
margin-right: 0.2vw;
}
.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;
background: #FFFFFF;
box-shadow: 0px 0px 3vw 0px rgba(12, 102, 209, 0.33) inset;
color: #6c84a0 !important;
animation: scalePulse-ce457564 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
transform-origin: center center;
}
@ -175,27 +182,27 @@
position: absolute;
}
.wareaitem .annotation1.data-v-ce457564 {
top: 20.5vw;
left: 19vw;
top: 21.5vw;
left: 19.5vw;
}
.wareaitem .annotation2.data-v-ce457564 {
top: 13vw;
left: 47vw;
}
.wareaitem .annotation3.data-v-ce457564 {
top: 23vw;
left: 50vw;
top: 24vw;
left: 49.3vw;
}
.wareaitem .annotation4.data-v-ce457564 {
top: 17vw;
left: 68vw;
top: 18vw;
left: 70vw;
}
.wareaitem .annotation5.data-v-ce457564 {
top: 32vw;
top: 34vw;
left: 74vw;
}
.wareaitem .annotation6.data-v-ce457564 {
top: 23vw;
top: 24vw;
right: 6vw;
}
.wareaitem .annotation.data-v-ce457564 {
@ -207,25 +214,27 @@
.wareaitem .annotation > view.data-v-ce457564 {
position: relative;
}
.wareaitem .annotation > view.data-v-ce457564:nth-child(1) {
width: 7vw;
height: 2vw;
background: #F2F3F7;
box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(182, 186, 196, 0.35);
border: 2rpx solid #FFFFFF;
font-weight: 400;
font-size: 1.3vw;
color: #333333;
.wareaitem .annotation > view.data-v-ce457564:nth-child(2) {
width: 6.5vw;
height: 3.2vw;
margin: -2rpx auto 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
}
.wareaitem .annotation > view.data-v-ce457564:nth-child(2) {
width: 4vw;
height: 2vw;
margin: -2rpx auto 0;
z-index: 2;
.wareaitem .annotation > view:nth-child(2) image.data-v-ce457564 {
position: absolute;
top: 0;
left: 0;
}
.wareaitem .annotation > view:nth-child(2) text.data-v-ce457564 {
position: relative;
font-weight: 400;
font-size: 1.1vw;
color: #fff;
z-index: 3;
margin-top: -0.5vw;
}
.wareaitem .annotation > view.data-v-ce457564:nth-child(3) {
width: 3vw;

View File

@ -1,18 +1,250 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {
a: common_vendor.f(66, (v, i, i0) => {
return {
a: i
};
}),
b: common_vendor.o((...args) => _ctx.upper && _ctx.upper(...args)),
c: common_vendor.o((...args) => _ctx.lower && _ctx.lower(...args)),
d: common_vendor.o((...args) => _ctx.scroll && _ctx.scroll(...args))
};
const common_assets = require("../../common/assets.js");
if (!Array) {
const _component_arrowkeys = common_vendor.resolveComponent("arrowkeys");
const _component_donghua = common_vendor.resolveComponent("donghua");
(_component_arrowkeys + _component_donghua)();
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
wx.createPage(MiniProgramPage);
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
__name: "procurement",
setup(__props) {
common_vendor.ref("");
const scrolltop = common_vendor.ref(0);
const getblue = common_vendor.ref(false);
const shyp = common_vendor.ref(false);
const scroll = common_vendor.reactive({ scrolltop1: 0, scrolltop2: 0, scrolltop3: 0, act1: 0, act2: 0, act3: 0 });
const switchshyp = () => {
shyp.value = shyp.value ? false : true;
};
const typescroll = (e, i) => {
scroll["act" + e] = i;
scroll["scrolltop" + e] = (i - 2) * 50;
common_vendor.index.__f__("log", "at pages/Warehouse/procurement.vue:138", scroll["scrolltop" + e]);
common_vendor.index.__f__("log", "at pages/Warehouse/procurement.vue:139", scroll["act" + e]);
};
const movecard = (type) => {
common_vendor.index.__f__("log", "at pages/Warehouse/procurement.vue:142", type);
switch (type) {
case 0:
break;
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
common_vendor.index.navigateBack();
break;
}
};
function genPaths(base, prefix, count, ext = "png", startIndex = 0, pad = false) {
return Array.from({ length: count }, (_, i) => {
const idx = pad ? String(i + startIndex).padStart(2, "0") : i + startIndex;
return `${base}/${prefix}${idx}.${ext}`;
});
}
const anmidex = common_vendor.ref(-1);
const admiclick = (i) => {
anmidex.value = i;
};
const animArray = common_vendor.ref([
{
url: genPaths(
"/static/index/warehouse/procurement/store",
"store0",
8,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "库存预警",
imgurl: "/static/index/warehouse/procurement/store/store01.png"
},
{
url: genPaths(
"/static/index/warehouse/procurement/procure",
"procure0",
7,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "采 购",
imgurl: "/static/index/warehouse/procurement/procure/procure01.png"
},
{
url: genPaths(
"/static/index/warehouse/procurement/Purchase",
"Purchase0",
9,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "采购单",
imgurl: "/static/index/warehouse/procurement/Purchase/Purchase01.png"
},
{
url: genPaths(
"/static/index/warehouse/procurement/details",
"details0",
7,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "物料详情",
imgurl: "/static/index/warehouse/procurement/details/details01.png"
},
{
url: genPaths(
"/static/index/warehouse/procurement/bound",
"bound0",
11,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "出入库",
imgurl: "/static/index/warehouse/procurement/bound/bound01.png"
},
{
url: genPaths(
"/static/index/warehouse/procurement/Cart",
"Cart0",
10,
// 张数
"png",
1,
// 起始索引为 1
false
// 不补零
),
name: "购物车",
imgurl: "/static/index/warehouse/procurement/Cart/Cart01.png"
}
]);
return (_ctx, _cache) => {
return {
a: common_vendor.f(66, (v, i, i0) => {
return common_vendor.e({
a: i == 0
}, i == 0 ? {
b: common_assets._imports_0$9
} : {}, {
c: i == 1
}, i == 1 ? {
d: common_assets._imports_1$4
} : {}, {
e: i >= 2
}, i >= 2 ? {
f: common_assets._imports_2$4
} : {}, {
g: i == 0 ? 1 : "",
h: i == 1 ? 1 : "",
i: i >= 2 ? 1 : "",
j: i,
k: i == 1 ? 1 : "",
l: i == 0 ? 1 : ""
});
}),
b: common_assets._imports_3$3,
c: scrolltop.value,
d: common_vendor.o(
//@ts-ignore
(...args) => _ctx.upper && _ctx.upper(...args)
),
e: common_vendor.o(
//@ts-ignore
(...args) => _ctx.lower && _ctx.lower(...args)
),
f: common_vendor.o(scroll),
g: common_vendor.o(movecard),
h: common_vendor.p({
getblue: getblue.value,
moveleft: 45,
rightbuttonname: "扫描"
}),
i: common_vendor.n(shyp.value ? "act" : ""),
j: common_vendor.o(switchshyp),
k: common_vendor.t(shyp.value ? "启用" : "停用"),
l: common_assets._imports_4$2,
m: common_vendor.f(["三", "二", "一"], (v, k0, i0) => {
return {
a: common_vendor.t(v + "级分类")
};
}),
n: common_vendor.f(["活血化瘀止痛类", "通络止痛类"], (v, i, i0) => {
return {
a: common_vendor.t(v),
b: common_vendor.n(scroll.act3 == i ? "act" : ""),
c: common_vendor.o(($event) => typescroll(3, i))
};
}),
o: scroll.scrolltop3,
p: common_vendor.f(["液体制剂", "中药制剂", "中医辩证"], (v, i, i0) => {
return {
a: common_vendor.t(v),
b: common_vendor.n(scroll.act2 == i ? "act" : ""),
c: common_vendor.o(($event) => typescroll(2, i))
};
}),
q: scroll.scrolltop2,
r: common_vendor.f(["中医中药", "生活用品", "医疗用品", "医疗器械", "耗材用品", "食材用品", "生活用品", "中医中药", "生活用品", "医疗用品", "医疗器械", "耗材用品", "食材用品", "生活用品"], (v, i, i0) => {
return common_vendor.e({
a: scroll.act1 == i
}, scroll.act1 == i ? {
b: common_assets._imports_5$3
} : {
c: common_assets._imports_6$2
}, {
d: common_vendor.t(v),
e: common_vendor.n(scroll.act1 == i ? "act" : ""),
f: common_vendor.o(($event) => typescroll(1, i))
});
}),
s: scroll.scrolltop1,
t: common_vendor.f(animArray.value, (v, i, i0) => {
return common_vendor.e({
a: anmidex.value != i
}, anmidex.value != i ? {
b: v.imgurl
} : {}, {
c: i === anmidex.value,
d: "658c6280-1-" + i0,
e: common_vendor.p({
width: "1.5vw",
height: "1.5vw",
links: v.url,
playing: i === anmidex.value
}),
f: common_vendor.t(v.name),
g: i,
h: common_vendor.o(($event) => admiclick(i), i)
});
})
};
};
}
});
wx.createPage(_sfc_main);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/Warehouse/procurement.js.map

View File

@ -1 +1 @@
<view><view class="box"><view class="lefts"><scroll-view scroll-y="true" class="scroll-Y" bindscrolltoupper="{{b}}" bindscrolltolower="{{c}}" bindscroll="{{d}}"><view wx:for="{{a}}" wx:for-item="v" wx:key="a" class="boxitem"></view></scroll-view></view><view class="rights"><view class="shitem"></view></view></view></view>
<view><view class="box"><view class="lefts"><scroll-view scroll-y="true" scroll-with-animation scroll-top="{{c}}" class="scroll-Y" bindscrolltoupper="{{d}}" bindscrolltolower="{{e}}" bindscroll="{{f}}"><view wx:for="{{a}}" wx:for-item="v" wx:key="j" class="{{['boxitem', v.k && 'yujing', v.l && 'active']}}"><view>纸尿裤-拉拉裤纸尿裤-拉拉裤</view><view>规格型号: 800mm*680mm</view><view>采购单位: 片</view><view><view class="{{['carditem', v.g && 'hl', v.h && 'yl', v.i && 'bj']}}"><image wx:if="{{v.a}}" src="{{v.b}}" mode="aspectFill"></image><image wx:if="{{v.c}}" src="{{v.d}}" mode="aspectFill"></image><image wx:if="{{v.e}}" src="{{v.f}}" mode="aspectFill"></image> 保洁 </view><view class="znk"><image src="{{b}}" mode="aspectFill"></image></view><view class="num"><view>500</view><view>库存数量</view></view></view></view><view style="height:23vw"></view></scroll-view><view class="mblbg"></view><view class="fxj"><arrowkeys wx:if="{{h}}" bindmovecard="{{g}}" u-i="658c6280-0" bind:__l="__l" u-p="{{h}}"/></view></view><view class="rights"><view class="shitem"><view class="shypk"><view>生活用品库</view><view><view class="{{['swsh', 'guodu', i]}}" bindtap="{{j}}"><view class="guodu"></view></view><text>{{k}}</text></view></view><view class="jqry"><view class="left tp"><image src="{{l}}" mode="aspectFill"></image></view><view class="rigname"><view>李树奎</view><view><text>男</text><text>50岁</text><text>13358863266</text></view></view></view></view><view class="typeitem"><view class="toptype"><view wx:for="{{m}}" wx:for-item="v">{{v.a}}</view></view><view class="scroltype"><scroll-view scroll-y="true" scroll-with-animation scroll-top="{{o}}" class="scroll-Y"><view wx:for="{{n}}" wx:for-item="v" class="{{v.b}}" bindtap="{{v.c}}">{{v.a}}</view></scroll-view><scroll-view scroll-y="true" scroll-with-animation scroll-top="{{q}}" class="scroll-Y"><view wx:for="{{p}}" wx:for-item="v" class="{{v.b}}" bindtap="{{v.c}}">{{v.a}}</view></scroll-view><scroll-view scroll-y="true" scroll-with-animation scroll-top="{{s}}" class="scroll-Y"><view wx:for="{{r}}" wx:for-item="v" class="{{v.e}}" bindtap="{{v.f}}"><image wx:if="{{v.a}}" src="{{v.b}}" mode="aspectFill"></image><image wx:else src="{{v.c}}" mode="aspectFill"></image><text>{{v.d}}</text></view></scroll-view></view><view class="anmikc"><view wx:for="{{t}}" wx:for-item="v" wx:key="g" bindtap="{{v.h}}"><view><image wx:if="{{v.a}}" src="{{v.b}}" mode="aspectFill"></image><donghua wx:if="{{v.e}}" data-c-h="{{!v.c}}" class="donghua" u-i="{{v.d}}" bind:__l="__l" u-p="{{v.e}}"/></view><text>{{v.f}}</text></view></view><view class="serchs"><input type="text" placeholder="物料名称/物料编码/物料简拼"/><view> 检索 </view></view></view></view></view></view>

File diff suppressed because one or more lines are too long

View File

@ -376,12 +376,12 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
b: item1.startTime
}, item1.startTime ? common_vendor.e({
c: item1.startTime,
d: common_assets._imports_0$8,
d: common_assets._imports_6$1,
e: common_vendor.t(item1.startTime + `-` + item1.endTime),
f: scalcType.value < 10,
g: item1.cycleType != "日常"
}, item1.cycleType != "日常" ? {
h: common_assets._imports_1$4,
h: common_assets._imports_0$8,
i: scalcType.value < 11
} : {}, {
j: item1.cycleType != "日常"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 612 KiB

After

Width:  |  Height:  |  Size: 564 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Some files were not shown because too many files have changed in this diff Show More