credit_upload.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <view class="total-page page-box task-bg page-env-20">
  3. <Nav title="上传征信" :genre="1" is_fixed></Nav>
  4. <view class="p-lr30 p-t10 container">
  5. <text>已上传(0页)</text>
  6. <view class=" container">
  7. <view class="column-c justify-center item-box" @click="onUpload">
  8. <image class="wh-45 m-b10" src="/static/img/information/credit.png" mode="aspectFill"></image>
  9. <text class="text-color-666 size-26">上传征信</text>
  10. </view>
  11. <view class="item-box" v-for="(item,index) in 10">
  12. <!-- <image style="width: 100%;height: 240rpx;" src="/static/img/index/top-nav.png"
  13. mode="aspectFill">
  14. </image> -->
  15. 1ddadsad
  16. <image class="wh-30 delete_iocn" src="/static/img/information/blank_delete.png" mode=""></image>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. methods: {
  29. // onUpload() {
  30. // this.$refs.popup.open('bottom')
  31. // },
  32. // onClose() {
  33. // this.$refs.popup.close('bottom')
  34. // },
  35. }
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. .container {
  40. display: flex;
  41. justify-content: space-between;
  42. flex-wrap: wrap;
  43. gap: 10px;
  44. .item-box {
  45. flex: 0 0 calc(50% - 5px);
  46. box-sizing: border-box;
  47. border: 1rpx dashed #999999;
  48. height: 240rpx;
  49. border-radius: 10rpx;
  50. text-align: center;
  51. background: #F7F9FE;
  52. position: relative;
  53. .delete_iocn {
  54. position: absolute;
  55. right: -12rpx;
  56. top: -12rpx;
  57. }
  58. }
  59. }
  60. </style>