| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .imgs-row-scroll {
- max-width: 100%;
- overflow: auto;
- ::v-deep .uni-scroll-view {
- height: 100% !important;
- }
- .img-list {
- display: flex;
- align-items: center;
- }
-
- .img-item {
- flex-shrink: 0;
- border-radius: 12rpx;
- overflow: hidden;
- background-color: #f5f5f5;
- position: relative;
- }
-
- .img-content {
- width: 100%;
- height: 100%;
- border-radius: 12rpx;
- object-fit: contain;
- }
- .delete-icon {
- position: absolute;
- top: 8rpx;
- right: 8rpx;
- width: 36rpx;
- height: 36rpx;
- background-color: rgba(0, 0, 0, 0.5);
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- ::v-deep .u-icon{
- background-color: transparent !important;
- }
- }
- // 使用indicator隐藏滚动条会报错,暂时使用样式隐藏
- ::v-deep .u-scroll-list__indicator{
- display: none !important;
- }
- }
|