54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
<template>
|
|
<view class="" style="justify-content: center; align-items: center;">
|
|
<view class="popup-content" @click="close">
|
|
<view class="popup-content-a">
|
|
<view class="popup-item">
|
|
<text class="popup-item-txt">骑手完成取货</text>
|
|
</view>
|
|
|
|
<view class="popup-item">
|
|
<image src="@/static/images/zzw.png" mode="aspectFit" style="width: 150rpx; height: 150rpx;">
|
|
</image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.popup-content {
|
|
width: 308rpx;
|
|
height: 220rpx;
|
|
/* 根据需要调整弹窗内容的宽度 */
|
|
background-color: #fff;
|
|
/* 设置弹窗内容的背景色 */
|
|
padding-top: 30rpx;
|
|
/* 根据需要设置内边距 */
|
|
border-radius: 9rpx 9rpx;
|
|
|
|
}
|
|
|
|
.popup-content-a {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
/* 水平居中 */
|
|
}
|
|
|
|
.popup-item {
|
|
|
|
margin-bottom: 10rpx;
|
|
/* 可根据需要调整项之间的间距 */
|
|
}
|
|
.popup-item-txt{
|
|
font-size: 13rpx;
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #0022C7;
|
|
}
|
|
|
|
</style> |