12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view class="container">
- <div class="jc" v-for="item in 8" :key="item">
- <image class="xc" src="../../static/img/xc.png" mode="aspectFit"></image>
- <checkbox class="xz"></checkbox>
- </div>
- <view class="all"></view>
- <view class="sc" @click="chooseImage">
- <button class="dele">删除</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- deleteList:[]
- }
- },
- onShow() {
-
- },
- methods: {
- chooseImage() {
-
- }
- }
- };
- </script>
- <style lang="scss">
- .container {
- min-height: 100%;
- background-color: #fff;
- position: relative;
- display: flex;
- flex-wrap: wrap;
- .jc {
- background-color: #fff;
- position: relative;
- display: flex;
- .xc {
- width: 360rpx;
- height: 477rpx;
- padding: 20rpx 10rpx 10rpx 20rpx;
- }
- .xz {
- position: absolute;
- top: 200px;
- right: 19px;
- // height: 30px;
- }
- }
- .all {
- width: 750rpx;
- height: 80rpx;
- }
- .sc {
- width: 750rpx;
- height: 100rpx;
- position: fixed;
- bottom: 0rpx;
- display: flex;
- align-items: center;
- // background-color: #EEEEEE;
- background-color: #fff;
- .dele {
- background-color: #FF6F0F;
- width: 160rpx;
- height: 64rpx;
- border-radius: 32rpx;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 45rpx;
- }
- }
- }
- </style>
|