credit-item.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="p-lr20 p-b40">
  3. <view class="sys-background-fff r-30 text-color-12 p-20 m-t20" v-for="(item,index) in 20" :key="index">
  4. <view class="row-justify-sb center">
  5. <view class="row-c line-30">
  6. <text class="size-30 sys-weight-600">张三</text>
  7. <image class="wh-30 m-lr16" src="/static/img/task/task-phone.png" mode="aspectFill"></image>
  8. <text class="size-26">11212345465</text>
  9. </view>
  10. <image class="wh-80" src="/page_task/static/img/task-details/icon-5.png" mode="aspectFill"></image>
  11. </view>
  12. <view class="sys-from-background-color size-24 text-color-666 p-20 r-20 m-tb20">
  13. <view>
  14. <text>报告时间:</text>
  15. <text>2024.09.12 12:14:56</text>
  16. </view>
  17. <view class="m-t10">
  18. <text>报告编号:</text>
  19. <text>537000653987897457454</text>
  20. </view>
  21. </view>
  22. <view class="row-justify-sb center">
  23. <text class="size-24 text-color-999 flex">2024.10.11 12:45上传</text>
  24. <button class="credit-item-button sys-weight-500 size-28" type="default" hover-class="is-hover"
  25. @click="onSubmit">去处理</button>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. props: {
  33. },
  34. data() {
  35. return {
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .credit-item-button {
  42. width: 173rpx;
  43. color: #fff;
  44. background: #0FB160;
  45. line-height: 70rpx;
  46. border-radius: 100rpx;
  47. }
  48. button::after {
  49. border: none;
  50. }
  51. </style>