This commit is contained in:
wangweidong 2025-10-17 14:33:59 +08:00
commit b4fd9f634d
109 changed files with 1513 additions and 665 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

View File

@ -72,7 +72,7 @@ if (uni.restoreGlobal) {
/* HookFlags.PAGE */
);
const _imports_0$p = "/static/index/update/fly.png";
const _imports_1$l = "/static/index/update/bgc.png";
const _imports_1$m = "/static/index/update/bgc.png";
const _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
@ -312,7 +312,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { style: { "height": "400rpx", "width": "100%", "position": "relative" } }, [
vue.createElementVNode("image", {
style: { "width": "1800rpx", "height": "1600rpx", "position": "absolute", "top": "-370rpx", "left": "-220rpx" },
src: _imports_1$l
src: _imports_1$m
})
]),
vue.createElementVNode(
@ -2238,10 +2238,10 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
const _imports_3$c = "/static/index/teeth.png";
const _imports_1$k = "/static/index/helpdo/zero.png";
const _imports_3$b = "/static/index/teeth.png";
const _imports_1$l = "/static/index/helpdo/zero.png";
const _imports_2$g = "/static/index/helpdo/one.png";
const _imports_3$b = "/static/index/helpdo/two.png";
const _imports_3$a = "/static/index/helpdo/two.png";
const _imports_4$7 = "/static/index/helpdo/laba.png";
const _imports_5$6 = "/static/index/helpdo/three.png";
const _imports_6$2 = "/static/index/helpdo/video.png";
@ -2260,12 +2260,12 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "downitems-left-mar" }, [
vue.createElementVNode("image", {
class: "downitems-left-img",
src: _imports_3$c
src: _imports_3$b
}),
vue.createElementVNode("view", { class: "downitems-left-father" }, [
vue.createElementVNode("image", {
class: "downitems-father-img",
src: _imports_1$k
src: _imports_1$l
}),
vue.createElementVNode("view", { class: "downitems-father-font" }, "清洁照料")
]),
@ -2279,7 +2279,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "downitems-left-father" }, [
vue.createElementVNode("image", {
class: "downitems-father-img",
src: _imports_3$b
src: _imports_3$a
}),
vue.createElementVNode("view", { class: "downitems-father-font-laba" }, "协助清洁(四肢)"),
vue.createElementVNode("image", {
@ -2653,7 +2653,7 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$l = "/static/index/customer.png";
const _imports_1$j = "/static/index/undericons/upguang.png";
const _imports_1$k = "/static/index/undericons/upguang.png";
function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"view",
@ -3750,7 +3750,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "under-father-light",
src: _imports_1$j
src: _imports_1$k
},
null,
512
@ -6355,7 +6355,7 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$k = "/static/index/shexiang.png";
const _imports_1$i = "/static/index/cheng.png";
const _imports_1$j = "/static/index/cheng.png";
const _imports_2$f = "/static/index/deleteicon.png";
const _imports_11$1 = "/static/index/NU.png";
function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
@ -6966,7 +6966,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "popup-song-father" }, [
vue.createElementVNode("image", {
class: "shu-up-img",
src: _imports_1$i
src: _imports_1$j
}),
vue.createElementVNode("view", { class: "shu-up-font" }, [
vue.createElementVNode(
@ -9186,9 +9186,9 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$j = "/static/index/camera/arrow1.png";
const _imports_1$h = "/static/index/camera/arrow3.png";
const _imports_1$i = "/static/index/camera/arrow3.png";
const _imports_2$e = "/static/index/camera/arrow5.png";
const _imports_3$a = "/static/index/camera/arrow4.png";
const _imports_3$9 = "/static/index/camera/arrow4.png";
const _imports_4$6 = "/static/index/camera/arrow2.png";
function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
@ -9229,7 +9229,7 @@ if (uni.restoreGlobal) {
vue.withDirectives(vue.createElementVNode(
"image",
{
src: _imports_1$h,
src: _imports_1$i,
class: "move-circle-all"
},
null,
@ -9253,7 +9253,7 @@ if (uni.restoreGlobal) {
vue.withDirectives(vue.createElementVNode(
"image",
{
src: _imports_3$a,
src: _imports_3$9,
class: "move-circle-all"
},
null,
@ -10252,9 +10252,9 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$i = "/static/index/ku.png";
const _imports_1$g = "/static/index/ren.png";
const _imports_1$h = "/static/index/ren.png";
const _imports_2$d = "/static/index/redbian.png";
const _imports_3$9 = "/static/index/ri.png";
const _imports_3$8 = "/static/index/ri.png";
const _imports_4$5 = "/static/index/zhou.png";
const _imports_5$5 = "/static/index/ji.png";
const _imports_0$h = "/static/index/tu.png";
@ -10568,7 +10568,7 @@ if (uni.restoreGlobal) {
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
src: _imports_1$g
src: _imports_1$h
})
])) : vue.createCommentVNode("v-if", true)
],
@ -10649,7 +10649,7 @@ if (uni.restoreGlobal) {
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
src: _imports_1$g
src: _imports_1$h
})
]),
vue.withDirectives(vue.createElementVNode("view", {
@ -10798,7 +10798,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "title-time-button",
src: _imports_3$9
src: _imports_3$8
},
null,
512
@ -10851,7 +10851,7 @@ if (uni.restoreGlobal) {
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
src: _imports_1$g
src: _imports_1$h
})
])
],
@ -12718,9 +12718,9 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$f = "/static/index/watch/uni.png";
const _imports_1$f = "/static/index/watch/more.png";
const _imports_1$g = "/static/index/watch/more.png";
const _imports_2$c = "/static/index/newindex/curve/shezhi.png";
const _imports_3$8 = "/static/nocamera.png";
const _imports_3$7 = "/static/nocamera.png";
const _imports_4$4 = "/static/index/watch/laotai.png";
const _imports_5$4 = "/static/index/watch/laotou.png";
const _imports_6$1 = "/static/index/watch/phonebgc.png";
@ -12835,7 +12835,7 @@ if (uni.restoreGlobal) {
!item.url ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [
vue.createElementVNode("image", {
style: { "width": "50rpx", "height": "50rpx" },
src: _imports_1$f
src: _imports_1$g
})
])) : vue.createCommentVNode("v-if", true)
], 14, ["onClick"]);
@ -12899,7 +12899,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { style: { "position": "relative" } }, [
vue.createElementVNode("image", {
style: { "width": "600rpx", "height": "600rpx" },
src: _imports_3$8
src: _imports_3$7
}),
vue.createElementVNode("view", { style: { "color": "#4D5561", "font-size": "32rpx", "position": "absolute", "left": "50%", "bottom": "100rpx", "transform": "translateX(-50%)" } }, " 暂无视频内容显示 ")
])
@ -13803,9 +13803,9 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$e = "/static/click.png";
const _imports_1$e = "/static/x.png";
const _imports_1$f = "/static/x.png";
const _imports_2$b = "/static/bgc.png";
const _imports_3$7 = "/static/qiu.png";
const _imports_3$6 = "/static/qiu.png";
function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "index-content-other" }, [
vue.createElementVNode("view", {
@ -13844,7 +13844,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "right-img",
src: _imports_1$e,
src: _imports_1$f,
onClick: _cache[1] || (_cache[1] = ($event) => $setup.uuid = "")
},
null,
@ -13861,7 +13861,7 @@ if (uni.restoreGlobal) {
}),
vue.createElementVNode("image", {
class: "big-img",
src: _imports_3$7
src: _imports_3$6
}),
vue.createElementVNode("view", { class: "index-content-down" }, " 长春市朝阳区久泰开运养老服务有限公司 ")
]);
@ -13892,7 +13892,7 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$d = "/static/kuai.png";
const _imports_1$d = "/static/sao.png";
const _imports_1$e = "/static/sao.png";
const _imports_2$a = "/static/qr.png";
function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "index-content-other" }, [
@ -13927,7 +13927,7 @@ if (uni.restoreGlobal) {
}, [
vue.createElementVNode("image", {
style: { "width": "100%", "height": "100%" },
src: _imports_1$d
src: _imports_1$e
}),
vue.createElementVNode("view", { class: "big-font" }, " 点击扫描区域二维码 ")
]),
@ -14295,9 +14295,9 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$c = "/static/index/leida/leftbgc.png";
const _imports_1$c = "/static/index/leida/bigball.png";
const _imports_1$d = "/static/index/leida/bigball.png";
const _imports_2$9 = "/static/index/leida/biao.png";
const _imports_3$6 = "/static/index/leida/ball.png";
const _imports_3$5 = "/static/index/leida/ball.png";
const _imports_4$3 = "/static/index/leida/shallow.png";
const _imports_5$3 = "/static/index/leida/play.png";
const _imports_5$2 = "/static/index/quxiao.png";
@ -14323,7 +14323,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("image", {
class: "all-img",
style: { "width": "90%", "height": "90%", "margin-top": "5%", "margin-left": "5%" },
src: _imports_1$c
src: _imports_1$d
}),
vue.createCommentVNode(" 旋转雷达部分 "),
vue.createElementVNode(
@ -14341,7 +14341,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("image", {
class: "all-img",
style: { "z-index": "1" },
src: _imports_3$6
src: _imports_3$5
}),
vue.createElementVNode("image", {
class: "all-img",
@ -14937,7 +14937,7 @@ if (uni.restoreGlobal) {
}
});
const _imports_0$b = "/static/index/newindex/wendu/0.png";
const _imports_1$b = "/static/index/newindex/wendu/1.png";
const _imports_1$c = "/static/index/newindex/wendu/1.png";
function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
const _component_donghua = vue.resolveComponent("donghua");
return vue.openBlock(), vue.createElementBlock(
@ -14971,7 +14971,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("text", { class: "right-container-tem-text" }, "23°C"),
vue.createElementVNode("image", {
class: "right-container-tem-img",
src: _imports_1$b
src: _imports_1$c
}),
vue.createElementVNode("text", { class: "right-container-tem-text" }, "39%")
]),
@ -15264,6 +15264,13 @@ if (uni.restoreGlobal) {
method: "get"
});
};
const addBatch = (params) => {
return request$1({
url: `${uni.getStorageSync("serverUrl")}/nuIpadApi/nuBizNuCustomerServer/addBatch`,
method: "post",
data: params
});
};
function genPaths(base, prefix, count, ext = "png", startIndex = 0, pad = false) {
return Array.from({
length: count
@ -17533,86 +17540,113 @@ if (uni.restoreGlobal) {
const bodytarget = vue.ref([]);
const facetarget = vue.ref([]);
const addbody = (index2) => {
if (bodytarget.value.includes(index2)) {
bodytarget.value = bodytarget.value.filter((item) => item !== index2);
if (bodyTagList.value[index2].izSelected == "1") {
bodyTagList.value[index2].izSelected = "0";
} else {
if (bodytarget.value.length > 1) {
let targetNumber = 0;
bodyTagList.value.forEach((element) => {
if (element.izSelected == "1") {
targetNumber++;
}
});
if (targetNumber > 1) {
uni.showToast({
title: "标签最多只能添加两个",
icon: "none",
duration: 2e3
});
return;
} else {
bodytarget.value.push(index2);
bodyTagList.value[index2].izSelected = "1";
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:735", "????", bodyTagList.value);
}
}
saveAll();
};
const addface = (index2) => {
if (facetarget.value.includes(index2)) {
facetarget.value = facetarget.value.filter((item) => item !== index2);
if (emotionTagList.value[index2].izSelected == "1") {
emotionTagList.value[index2].izSelected = "0";
} else {
if (facetarget.value.length > 1) {
let targetNumber = 0;
emotionTagList.value.forEach((element) => {
if (element.izSelected == "1") {
targetNumber++;
}
});
if (targetNumber > 1) {
uni.showToast({
title: "标签最多只能添加两个",
icon: "none",
duration: 2e3
});
} else {
facetarget.value.push(index2);
emotionTagList.value[index2].izSelected = "1";
}
}
saveAll();
};
const open = vue.ref(false);
const getblue = vue.ref(false);
const bottomItems = vue.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 = [
`标准`,
@ -18131,10 +18165,10 @@ if (uni.restoreGlobal) {
summary: "九泰护理日程测试",
imageUrl: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",
success: function(res) {
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1357", "success:");
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1388", "success:");
},
fail: function(err) {
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1360", "fail:");
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1391", "fail:");
}
});
};
@ -18363,12 +18397,11 @@ if (uni.restoreGlobal) {
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);
@ -18379,6 +18412,7 @@ if (uni.restoreGlobal) {
isop.value = false;
}, 1500);
}
saveAll();
});
return;
}
@ -18420,6 +18454,7 @@ if (uni.restoreGlobal) {
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;
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1748", "))))", allobject.cycleTypeId);
let param = {
directiveId: allobject.id,
directiveName: allobject.title,
@ -18434,11 +18469,12 @@ if (uni.restoreGlobal) {
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;
@ -18452,28 +18488,44 @@ if (uni.restoreGlobal) {
const cleansettimeout = vue.ref(null);
const cleansettimeoutrel = vue.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 array2 = {};
if (element1.tagName) {
savetagName = element1.tagName;
}
array2 = JSON.parse(JSON.stringify(moBan.value));
savetagName ? array2.tagName = savetagName : "";
array2.positioning = index0;
array2.positioningLong = index1;
postArray.push(array2);
} else {
if (!element1.directiveName && !element1.id)
;
else {
element1.positioning = index0;
element1.positioningLong = index1;
postArray.push(element1);
}
});
});
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1775", "00000", postArray);
let info2 = [];
bodyTagList.value.forEach((element) => {
if (element.izSelected == "1") {
info2.push(element);
}
});
emotionTagList.value.forEach((element) => {
if (element.izSelected == "1") {
info2.push(element);
}
});
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: info2
};
addBatch(allvalue).then(() => {
geteverything();
});
};
const routerPush = () => {
uni.setStorage({
@ -18529,6 +18581,8 @@ if (uni.restoreGlobal) {
}))
}))
);
const emotionTagList = vue.ref([]);
const bodyTagList = vue.ref([]);
onShow(() => {
getServiceTree().then((res) => {
res.result.forEach((element) => {
@ -18554,6 +18608,7 @@ if (uni.restoreGlobal) {
});
});
bigArray.value = res.result;
formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1933", "((((()))))", bigArray.value);
downList.value = bigArray.value[0].children;
upmenuIndex.value = -1;
downdonghua.value = -1;
@ -18561,16 +18616,38 @@ if (uni.restoreGlobal) {
upmenuIndex.value = 0;
downdonghua.value = 0;
}, 50);
geteverything();
});
if (uni.getStorageSync("nuId") && uni.getStorageSync("customerId")) {
getNclist(uni.getStorageSync("nuId"), uni.getStorageSync("customerId")).then((res) => {
if (res.success && res.result[0].children.length) {
timearr.value = res.result;
}
});
}
uni.$on("where", findback);
});
const bodyTagListLook = vue.ref([]);
const emotionTagListLook = vue.ref([]);
const cansumit = vue.ref(false);
const geteverything = () => {
if (uni.getStorageSync("nuId") && uni.getStorageSync("customerId")) {
getNclist(uni.getStorageSync("nuId"), uni.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);
}
});
});
}
};
onHide(() => {
uni.$off("where", findback);
});
@ -18599,11 +18676,12 @@ if (uni.restoreGlobal) {
endTime: "",
positioning: "",
positioningLong: "",
izPackage: false,
izPackage: "0",
previewFile: "",
previewFileSmall: "",
immediateFile: "",
immediateFileFocus: "",
netImmediateFile: "",
tagName: ""
});
function splitString(str) {
@ -18651,14 +18729,14 @@ if (uni.restoreGlobal) {
return animTimer;
}, set animTimer(v) {
animTimer = v;
}, addnewbutton, addnew, cleansettimeout, cleansettimeoutrel, saveAll, routerPush, saveRulerTime, targetRuler, solveWatch, whereEvent, minuteArr, timearr, findback, moveNumber, moBan, splitString, totalColumns: totalColumns$1, totalRows: totalRows$1, visibleWidth: visibleWidth$1, visibleHeight: visibleHeight$1, centerCell };
}, addnewbutton, addnew, cleansettimeout, cleansettimeoutrel, saveAll, routerPush, saveRulerTime, targetRuler, solveWatch, whereEvent, minuteArr, timearr, emotionTagList, bodyTagList, bodyTagListLook, emotionTagListLook, cansumit, geteverything, findback, moveNumber, moBan, splitString, totalColumns: totalColumns$1, totalRows: totalRows$1, visibleWidth: visibleWidth$1, visibleHeight: visibleHeight$1, centerCell };
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
return __returned__;
}
});
const _imports_1$a = "/static/index/newruler/jiao.png";
const _imports_2$8 = "/static/index/newruler/monitor_1.png";
const _imports_3$5 = "/static/index/sharelogo.png";
const _imports_1$b = "/static/index/newruler/jiao.png";
const _imports_1$a = "/static/index/newruler/monitor_1.png";
const _imports_2$8 = "/static/index/sharelogo.png";
function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
var _a, _b, _c, _d, _e, _f, _g, _h;
const _component_donghua = vue.resolveComponent("donghua");
@ -18712,7 +18790,7 @@ if (uni.restoreGlobal) {
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
null,
vue.renderList($setup.nameArray.slice(0, 5), (item, index2) => {
vue.renderList($setup.bodyTagList, (item, index2) => {
return vue.openBlock(), vue.createElementBlock("view", {
key: index2,
onClick: ($event) => $setup.addbody(index2)
@ -18725,15 +18803,15 @@ if (uni.restoreGlobal) {
[
vue.createElementVNode("image", {
class: "tags-img",
src: $setup.bodytarget.includes(index2) ? `/static/index/tagNames/${index2}1.png` : `/static/index/tagNames/${index2}0.png`
src: item.izSelected == `1` ? item.netPicFocus : item.netPic
}, null, 8, ["src"]),
vue.createElementVNode(
"view",
{
class: "tags-font",
style: vue.normalizeStyle($setup.bodytarget.includes(index2) ? { color: `rgb(54, 159, 239)` } : {})
style: vue.normalizeStyle(item.izSelected == `1` ? { color: `rgb(54, 159, 239)` } : {})
},
vue.toDisplayString(item),
vue.toDisplayString(item.tagName),
5
/* TEXT, STYLE */
)
@ -18761,19 +18839,19 @@ if (uni.restoreGlobal) {
$setup.openface = false;
})
}, [
!$setup.bodytarget.length ? (vue.openBlock(), vue.createElementBlock("view", {
!$setup.bodyTagListLook.length ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
style: { "margin-top": "-3rpx" }
}, " 未选择 ")) : vue.createCommentVNode("v-if", true),
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
null,
vue.renderList($setup.bodytarget, (item, index2) => {
vue.renderList($setup.bodyTagListLook, (item, index2) => {
return vue.openBlock(), vue.createElementBlock("view", { key: index2 }, [
vue.createElementVNode("image", {
class: "tags-img",
style: { "width": "40rpx", "height": "40rpx", "margin": "0 10rpx" },
src: `/static/index/tagNames/${item}0.png`
src: item
}, null, 8, ["src"])
]);
}),
@ -18815,7 +18893,7 @@ if (uni.restoreGlobal) {
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
null,
vue.renderList($setup.nameArray.slice(5, 12), (item, index2) => {
vue.renderList($setup.emotionTagList, (item, index2) => {
return vue.openBlock(), vue.createElementBlock("view", {
key: index2,
onClick: ($event) => $setup.addface(index2)
@ -18828,15 +18906,15 @@ if (uni.restoreGlobal) {
[
vue.createElementVNode("image", {
class: "tags-img",
src: $setup.facetarget.includes(index2) ? `/static/index/tagNames/${index2 + 5}1.png` : `/static/index/tagNames/${index2 + 5}0.png`
src: item.izSelected == `1` ? item.netPicFocus : item.netPic
}, null, 8, ["src"]),
vue.createElementVNode(
"view",
{
class: "tags-font",
style: vue.normalizeStyle($setup.facetarget.includes(index2) ? { color: `rgb(54, 159, 239)` } : {})
style: vue.normalizeStyle(item.izSelected == `1` ? { color: `rgb(54, 159, 239)` } : {})
},
vue.toDisplayString(item),
vue.toDisplayString(item.tagName),
5
/* TEXT, STYLE */
)
@ -18864,19 +18942,19 @@ if (uni.restoreGlobal) {
$setup.openbody = false;
})
}, [
!$setup.facetarget.length ? (vue.openBlock(), vue.createElementBlock("view", {
!$setup.emotionTagListLook.length ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
style: { "margin-top": "-3rpx" }
}, " 未选择 ")) : vue.createCommentVNode("v-if", true),
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
null,
vue.renderList($setup.facetarget, (item, index2) => {
vue.renderList($setup.emotionTagListLook, (item, index2) => {
return vue.openBlock(), vue.createElementBlock("view", { key: index2 }, [
vue.createElementVNode("image", {
class: "tags-img",
style: { "width": "40rpx", "height": "40rpx", "margin": "0 10rpx" },
src: `/static/index/tagNames/${item + 5}0.png`
src: item
}, null, 8, ["src"])
]);
}),
@ -19103,16 +19181,10 @@ if (uni.restoreGlobal) {
style: { "flex-direction": "column" }
},
[
vue.withDirectives(vue.createElementVNode(
"image",
{
style: { "width": "60rpx", "height": "60rpx", "margin": "0 auto", "margin-top": "30rpx" },
src: _imports_0$h
},
null,
512
/* NEED_PATCH */
), [
vue.withDirectives(vue.createElementVNode("image", {
style: { "width": "60rpx", "height": "60rpx", "margin": "0 auto", "margin-top": "30rpx" },
src: item1.netImmediateFile
}, null, 8, ["src"]), [
[vue.vShow, item1.startTime]
]),
vue.createElementVNode(
@ -19129,7 +19201,7 @@ if (uni.restoreGlobal) {
key: 0,
class: "title-time-button",
style: { "width": "80rpx", "height": "48rpx" },
src: _imports_1$a
src: _imports_1$b
})) : vue.createCommentVNode("v-if", true),
item1.cycleType != "日常" ? (vue.openBlock(), vue.createElementBlock(
"view",
@ -19224,12 +19296,12 @@ if (uni.restoreGlobal) {
[
vue.createElementVNode("image", {
class: "right-box-img",
src: item.url
src: item.netImmediateFile
}, null, 8, ["src"]),
vue.createElementVNode(
"view",
{ class: "right-box-font" },
vue.toDisplayString(item.name),
vue.toDisplayString(item.directiveName),
1
/* TEXT */
)
@ -19239,7 +19311,10 @@ if (uni.restoreGlobal) {
),
vue.withDirectives(vue.createElementVNode("view", {
class: "super-end-items-father-close-father",
onClick: vue.withModifiers(($event) => $setup.bottomItems.splice(index2, 1), ["stop"])
onClick: vue.withModifiers(($event) => {
$setup.bottomItems.splice(index2, 1);
$setup.saveAll();
}, ["stop"])
}, " - ", 8, ["onClick"]), [
[vue.vShow, $setup.bottomisShaking]
])
@ -19401,7 +19476,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "title-time-button",
src: _imports_1$a
src: _imports_1$b
},
null,
512
@ -19413,7 +19488,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "title-time-button",
src: _imports_1$a
src: _imports_1$b
},
null,
512
@ -19589,7 +19664,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "other-father" }, [
vue.createElementVNode("image", {
style: { "width": "55rpx", "height": "55rpx" },
src: _imports_2$8
src: _imports_1$a
}),
vue.createElementVNode("view", { style: { "z-index": "999", "font-size": "25rpx" } }, " 监控 ")
])
@ -19759,7 +19834,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "share-title" }, [
vue.createElementVNode("image", {
style: { "width": "50rpx", "height": "50rpx" },
src: _imports_3$5
src: _imports_2$8
}),
vue.createElementVNode("view", { style: { "font-weight": "600", "margin-left": "15rpx" } }, " 护理单元 ")
]),
@ -28679,7 +28754,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "time-right" }, " 待执行 "),
vue.createElementVNode("image", {
class: "time-img",
src: _imports_3$c,
src: _imports_3$b,
onClick: $setup.jumptodanyuan
}),
vue.createElementVNode("view", { class: "small-button" }, [
@ -28912,7 +28987,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "time-right" }, " 待执行 "),
vue.createElementVNode("image", {
class: "time-img",
src: _imports_3$c,
src: _imports_3$b,
onClick: $setup.jumptokufang
}),
vue.createElementVNode("view", { class: "small-button" }, [
@ -29698,7 +29773,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "right-img",
src: _imports_1$e,
src: _imports_1$f,
onClick: _cache[1] || (_cache[1] = ($event) => $setup.uuid = "")
},
null,
@ -31506,7 +31581,7 @@ if (uni.restoreGlobal) {
key: 0,
class: "title-time-button",
style: { "width": "80rpx", "height": "48rpx" },
src: _imports_1$a
src: _imports_1$b
},
null,
512

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();

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

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: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 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.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

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