| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <view class="total-page page-box task-bg page-env-20">
- <Nav title="上传征信" :genre="1" is_fixed></Nav>
- <view class="p-lr30 p-t10 container">
- <text>已上传(0页)</text>
- <view class=" container">
- <view class="column-c justify-center item-box" @click="onUpload">
- <image class="wh-45 m-b10" src="/static/img/information/credit.png" mode="aspectFill"></image>
- <text class="text-color-666 size-26">上传征信</text>
- </view>
- <view class="item-box" v-for="(item,index) in 10">
- <!-- <image style="width: 100%;height: 240rpx;" src="/static/img/index/top-nav.png"
- mode="aspectFill">
- </image> -->
- 1ddadsad
- <image class="wh-30 delete_iocn" src="/static/img/information/blank_delete.png" mode=""></image>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- // onUpload() {
- // this.$refs.popup.open('bottom')
- // },
- // onClose() {
- // this.$refs.popup.close('bottom')
- // },
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- gap: 10px;
- .item-box {
- flex: 0 0 calc(50% - 5px);
- box-sizing: border-box;
- border: 1rpx dashed #999999;
- height: 240rpx;
- border-radius: 10rpx;
- text-align: center;
- background: #F7F9FE;
- position: relative;
- .delete_iocn {
- position: absolute;
- right: -12rpx;
- top: -12rpx;
- }
- }
- }
- </style>
|