上傳的時候一般頁面顯示的是加號。不用圖片可以用樣式實現;
wxss:
/* 加號 */
.plus-box {width: 91rpx;height: 91rpx;border-radius: 6rpx;background: rgba(204, 204, 204, 1);position: relative; /* 用于定位加號 */
}/* 水平線條 */
.plus-box::before {content: '';position: absolute;top: 50%;left: 50%;width: 40rpx; /* 橫線長度 */height: 6rpx; /* 橫線粗細 */background-color: white; /* 加號顏色 */transform: translate(-50%, -50%); /* 居中對齊 */border-radius: 3rpx; /* 線條圓角 */
}/* 垂直線條 */
.plus-box::after {content: '';position: absolute;top: 50%;left: 50%;width: 6rpx; /* 豎線粗細 */height: 40rpx; /* 豎線長度 */background-color: white; /* 加號顏色 */transform: translate(-50%, -50%); /* 居中對齊 */border-radius: 3rpx; /* 線條圓角 */
}
wxml
<view class="plus-box"></view>