|
|
@ -15,16 +15,16 @@ |
|
|
|
class="mask" |
|
|
|
v-if="maskShow" |
|
|
|
@click="closeMask" |
|
|
|
style="width: 100%; height: 100vh; z-index: 21; position: fixed; background: rgba(0, 0, 0, 0.1)" |
|
|
|
style="width: 100%; height: 100vh; z-index: 21; position: fixed; background: rgba(0, 0, 0, 0.3)" |
|
|
|
></view> |
|
|
|
<!-- 右上角 ... 弹窗 --> |
|
|
|
<view class="popup" v-if="show"> |
|
|
|
<view class="flex" style="margin-bottom: 10px"> |
|
|
|
<u-icon name="plus-circle" color="#007aff" size="36" style="margin: 0 15px 3px 0"></u-icon> |
|
|
|
<view class="popup border" v-if="show"> |
|
|
|
<view class="flex pb-3 border-b-1"> |
|
|
|
<u-icon name="plus-circle" size="36" style="margin: 0 15px 3px 0"></u-icon> |
|
|
|
<view @click="newprojects">新建项目</view> |
|
|
|
</view> |
|
|
|
<view class="flex"> |
|
|
|
<u-icon name="share" color="#007aff" size="32" style="margin: 0 15px 3px 0"></u-icon> |
|
|
|
<view class="flex pt-3"> |
|
|
|
<u-icon name="share" size="32" style="margin: 0 15px 3px 0"></u-icon> |
|
|
|
<view @click="share">分享项目</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -297,13 +297,16 @@ export default { |
|
|
|
left: 6%; |
|
|
|
top: 25%; |
|
|
|
z-index: 33; |
|
|
|
border-radius: 5px; |
|
|
|
} |
|
|
|
.thirdPopup { |
|
|
|
background: #ffffff; |
|
|
|
position: fixed; |
|
|
|
left: 5.5%; |
|
|
|
top: 10%; |
|
|
|
left: 50%; |
|
|
|
top: 50%; |
|
|
|
z-index: 33; |
|
|
|
border-radius: 5px; |
|
|
|
transform: translate(-50%, -50%); |
|
|
|
} |
|
|
|
.content { |
|
|
|
width: 330px; |
|
|
@ -322,11 +325,15 @@ export default { |
|
|
|
.popup { |
|
|
|
width: 40%; |
|
|
|
height: 100px; |
|
|
|
background: #f2f2f2; |
|
|
|
background: #fff; |
|
|
|
position: absolute; |
|
|
|
right: 0; |
|
|
|
z-index: 22; |
|
|
|
padding: 15px; |
|
|
|
color: black; |
|
|
|
border-radius: 5px; |
|
|
|
transition: all 2s; |
|
|
|
// border: 1px solid black; |
|
|
|
} |
|
|
|
|
|
|
|
.link { |
|
|
|