医废配置交接小程序源码

This commit is contained in:
2025-06-12 11:01:47 +08:00
commit c8e7af13aa
151 changed files with 138910 additions and 0 deletions
@@ -0,0 +1,43 @@
<template>
<view>
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">配置结果</block></cu-custom>
<view class="padding-lr">
<view class="padding-xs flex align-center" style="padding-top: 20%;">
<view class="flex-sub text-center">
<view class="text-xsl padding">
<text class=" cuIcon-roundcheckfill text-green"></text>
</view>
</view>
</view>
<view class="padding-xs flex align-center">
<view class="flex-sub text-center">
<view class="text-xl padding text-center">
<text class="text-black text-bold" style="font-size: 20px;">配置成功</text>
</view>
</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>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
buttonClick() {
uni.navigateTo({
url: "/pages/index/index"
})
}
}
}
</script>
<style>
</style>