打印样式

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

@@ -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>