credit_upload.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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-box">
  5. <view><text>已上传(0页)</text></view>
  6. <view class=" container m-t20">
  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. <image class="wh-30 delete_iocn" src="/static/img/information/blank_delete.png" mode=""></image>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. }
  26. },
  27. methods: {
  28. onUpload() {
  29. },
  30. onClose() {
  31. this.$refs.popup.close('bottom')
  32. },
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .container {
  38. display: flex;
  39. justify-content: space-between;
  40. flex-wrap: wrap;
  41. gap: 10px;
  42. .item-box {
  43. flex: 0 0 calc(50% - 5px);
  44. box-sizing: border-box;
  45. border: 1rpx dashed #999999;
  46. height: 240rpx;
  47. border-radius: 10rpx;
  48. text-align: center;
  49. background: #F7F9FE;
  50. position: relative;
  51. .delete_iocn {
  52. position: absolute;
  53. right: -12rpx;
  54. top: -12rpx;
  55. }
  56. }
  57. }
  58. </style>