This commit is contained in:
cansnow
2025-12-05 16:10:52 +08:00
parent 29be534f22
commit 69a61178e1
64 changed files with 2575 additions and 1141 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
<view class="mask" :class="!show?'':'mask-show'" :style="{backgroundColor:show?maskBg:'rgba(0,0,0,0)'}" @tap="tapMask">
<view class="popups" :class="[theme]"
:style="{top: popupsTop ,left: popupsLeft,flexDirection:direction}">
<text :class="dynPlace" :style="{width:'0px',height:'0px'}" v-if="triangle"></text>
<text :class="dynPlace" :style="{width:'0px',height:'0px'}" v-show="triangle"></text>
<template v-for="(item,index) in popData">
<view @tap.stop="tapItem(item)" v-if="item.disabled==false"
<view @tap.stop="tapItem(item)" v-show="item.disabled==false"
class="itemChild view" :class="[direction=='row'?'solid-right':'solid-bottom',item.disabled?'disabledColor':'']">
<u-icon :color="item.disabled?'#c8c9cc':'#ffffff'" :name="item.icon" size="20" v-if="item.icon"></u-icon>
<text>{{item.title}}</text>