| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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-box">
- <view><text>已上传(0页)</text></view>
- <view class=" container m-t20">
- <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>
- <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() {
- },
- 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>
|