全完事了,护嘱预览页

This commit is contained in:
Teng 2026-01-14 15:08:18 +08:00
parent 89bee2ba9f
commit 2461b02514
3 changed files with 47 additions and 0 deletions

View File

@ -525,6 +525,7 @@
width: 100%; width: 100%;
height: 450rpx; height: 450rpx;
margin-top: 5rpx; margin-top: 5rpx;
position: relative;
.history-spe { .history-spe {
min-width: 86%; min-width: 86%;
@ -692,6 +693,7 @@
width: 100%; width: 100%;
height: 640rpx; height: 640rpx;
margin-top: -12rpx; margin-top: -12rpx;
position: relative;
.future-items { .future-items {
width: 100%; width: 100%;

View File

@ -119,6 +119,7 @@
</scroll-view> </scroll-view>
</view> </view>
<view class="order-future"> <view class="order-future">
<nomessgae :cont="`暂无数据`" v-show="!upmenuarray.length" ></nomessgae>
<scroll-view class="future-items" scroll-with-animation scroll-y :scroll-top="firsttopmove"> <scroll-view class="future-items" scroll-with-animation scroll-y :scroll-top="firsttopmove">
<view style="position: relative;" v-for="(item,index) in upmenuarray" :key="index" <view style="position: relative;" v-for="(item,index) in upmenuarray" :key="index"
@click="searchtable(item);"> @click="searchtable(item);">
@ -228,6 +229,7 @@
长者标签 长者标签
</view> </view>
</view> </view>
<nomessgae :cont="`暂无数据`" v-show="!downmenuarray.length" ></nomessgae>
<scroll-view class="history-items" scroll-with-animation scroll-y <scroll-view class="history-items" scroll-with-animation scroll-y
:scroll-top="secondtopmove"> :scroll-top="secondtopmove">
<view v-for="(item,index) in downmenuarray" :key="index" @click="searchtable(item);"> <view v-for="(item,index) in downmenuarray" :key="index" @click="searchtable(item);">
@ -373,6 +375,7 @@
import { getNclist, addBatch, addDirective, addInstant, deleteDirective, deleteInstant, editDirective, getDirectiveOrders } from "./api.js"; import { getNclist, addBatch, addDirective, addInstant, deleteDirective, deleteInstant, editDirective, getDirectiveOrders } from "./api.js";
import { myArray } from './yaoshandiao.js'; import { myArray } from './yaoshandiao.js';
import calendarsimple from '@/component/public/calendarsimple.vue' import calendarsimple from '@/component/public/calendarsimple.vue'
import nomessgae from './component/default.vue'
const props = defineProps({ const props = defineProps({
isshow: { isshow: {

View File

@ -0,0 +1,42 @@
<template>
<view>
<view class="que">
<image src="/static/index/procurement/que.png" mode="aspectFill"></image>
<view>{{cont}}</view>
</view>
</view>
</template>
<script>
export default {
props:{
cont:'',
}
}
</script>
<style scoped lang="less">
.que{
width: 16vw;
height: 16vw;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
image{
width: 100%;
height: 100%;
}
view{
width: 100%;
text-align: center;
position: absolute;
bottom: 0.5vw;
left: 0;
font-weight: 300;
font-size: 1.4vw;
color: #555555;
}
}
</style>