小程序完成(账号密码登录、风格修改、签字功能)

This commit is contained in:
2026-03-06 18:47:52 +08:00
parent 6f7604897f
commit 96be55b0be
13 changed files with 1173 additions and 186 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
<template>
<view>
<scroll-view scroll-y class="page">
<cu-custom bgColor="bg-cyan"><block slot="content">追溯</block></cu-custom>
<cu-custom bgColor="bg-blue"><block slot="content">追溯</block></cu-custom>
<view class="photoView">
<view class="photoImage">
<open-data type="userAvatarUrl"></open-data>
@@ -11,7 +11,7 @@
<view class='text-center margin-bottom text-lg text-grey'>请扫描医废袋条码或者科室汇总条码实时追溯</view>
</view>
<view class="padding flex flex-direction" style="padding-top: 40%;">
<button class="cu-btn bg-cyan margin-tb-sm lg" @click="buttonClick">扫码追溯</button>
<button class="cu-btn bg-blue margin-tb-sm lg" @click="buttonClick">扫码追溯</button>
</view>
<view class="cu-tabbar-height"></view>
</scroll-view>
+3 -3
View File
@@ -1,11 +1,11 @@
<template>
<view>
<scroll-view scroll-y class="page bg-white">
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按周转箱</block></cu-custom>
<cu-custom bgColor="bg-blue" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按周转箱</block></cu-custom>
<view class="cu-timeline margin-top" v-for="(value,index) in traceBoxDetailsInfo" :key="index">
<view class="cu-time">{{value.date}}</view>
<view class="cu-item text-cyan" v-for="(val,ind) in value.content" :key="ind">
<view class="content bg-cyan shadow-blur">
<view class="cu-item text-blue" v-for="(val,ind) in value.content" :key="ind">
<view class="content bg-blue shadow-blur">
{{val.data}}
</view>
</view>
+1 -1
View File
@@ -1,7 +1,7 @@
<template>
<view>
<scroll-view scroll-y class="page">
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按科室汇总</block></cu-custom>
<cu-custom bgColor="bg-blue" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按科室汇总</block></cu-custom>
<view class="cu-card dynamic" :class="isCard?'no-card':''">
<view class="cu-item shadow" v-for="(value,index) in deptSummaryList" :key="index">
<view class="cu-list menu-avatar comment solids-bottom">
+3 -3
View File
@@ -1,11 +1,11 @@
<template>
<view>
<scroll-view scroll-y class="page bg-white">
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按医废袋</block></cu-custom>
<cu-custom bgColor="bg-blue" :isBack="true"><block slot="backText">返回</block><block slot="content">追溯详情按医废袋</block></cu-custom>
<view class="cu-timeline margin-top" v-for="(value,index) in traceMedicalDetailsInfo" :key="index">
<view class="cu-time">{{value.date}}</view>
<view class="cu-item text-cyan" v-for="(val,ind) in value.content" :key="ind">
<view class="content bg-cyan shadow-blur">
<view class="cu-item text-blue" v-for="(val,ind) in value.content" :key="ind">
<view class="content bg-blue shadow-blur">
{{val.data}}
</view>
</view>