打印样式

This commit is contained in:
2025-12-04 13:59:33 +08:00
parent 4a6fdfbd93
commit 9cb4cf5ed7
16 changed files with 75 additions and 50 deletions

View File

@@ -66,7 +66,7 @@
@import '../common/style/mixin.styl';
.search_wraper
position relative
_wh(100%, 80rpx)
_wh(100%, 70rpx)
.pdr120
padding-right: 50%;
.buttons_wraper

View File

@@ -1,7 +1,7 @@
<template>
<view class="zd-row jcflexstart header">
<view class="zd-col-4">
<uni-icons @tap="goBack" type="back" size="26" color="#fff"></uni-icons>
<uni-icons class="icon_back" @tap="goBack" type="back" color="#fff"></uni-icons>
</view>
<view class="zd-col-16 page_name">{{title}}</view>
<view v-if="searchActive" class="zd-col-4" style="text-align: right">
@@ -61,4 +61,6 @@
padding var(--status-bar-height) 20rpx 0
.page_name
_font(32rpx, 32rpx, #fff,700,center)
.icon_back
font-size 40rpx !important
</style>

View File

@@ -11,9 +11,9 @@
@blur="handleBlur"
@confirm="handleSend">
<view class="zd-row buttons_wraper">
<uni-icons v-show="value !== '' && value !== null && value !== undefined" class="pdr10" type="clear" size="24" color="#666" @tap="toDel"></uni-icons>
<uni-icons type="scan" size="22" :color="focusState ? '#ff6a00' : '#4e6ef2'" @tap="focusState=true"></uni-icons>
<uni-icons type="camera" size="28" style="marginLeft: 30rpx;" @tap="toPhone"></uni-icons>
<uni-icons v-show="value !== '' && value !== null && value !== undefined" class="pdr10 icon_del" type="clear" color="#666" @tap="toDel"></uni-icons>
<!-- <uni-icons class="icon_scan" type="scan" :color="focusState ? '#ff6a00' : '#4e6ef2'" @tap="focusState=true"></uni-icons> -->
<uni-icons class="icon_camera" type="camera" :color="focusState ? '#ff6a00' : '#4e6ef2'" @tap="toPhone"></uni-icons>
</view>
</view>
</template>
@@ -105,7 +105,7 @@
@import '../common/style/mixin.styl';
.search_wraper
position relative
_wh(100%, 80rpx)
_wh(100%, 70rpx)
.pdr120
padding-right: 120rpx;
.buttons_wraper
@@ -115,4 +115,8 @@
_wh(auto, 80rpx)
.pdr10
padding-right 10rpx
.icon_del
font-size 40rpx !important
.icon_scan, .icon_camera
font-size 46rpx !important
</style>