cargoowner.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <view class='content'>
  3. <view class='identity flex items-center'>
  4. <view style='width:100%;' class='flex items-center'>
  5. <u--image class='image' :showLoading="true" src="../../../static/mine/huozhurenzheng/shenfen.png" width="32px"
  6. height="32px"></u--image>
  7. <view style='width:100%;'>
  8. <view style='font-size:21px;'>身份信息</view>
  9. <view class='flex flex-space-between' style='width:100%;color:#999999;font-size:14px;'>您还未认证身份信息<u-icon name="arrow-right" color="#7E7E7E" size="10"></u-icon></view>
  10. </view>
  11. </view>
  12. </view>
  13. <view>
  14. <view>所属企业(0)</view>
  15. <view>
  16. <view>
  17. <view>公司</view>
  18. <view>状态</view>
  19. </view>
  20. <view>
  21. <view>可垫付运费</view>
  22. <view>编辑</view>
  23. <view>删除</view>
  24. </view>
  25. </view>
  26. <view>
  27. <u--image class='image weibangding' :showLoading="true" src="../../../static/mine/huozhurenzheng/weibangding.png" width="141px"
  28. height="141px"></u--image>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. }
  38. },
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .content{
  45. height:90vh;
  46. }
  47. .identity{
  48. background: url('~@/static/mine/huozhurenzheng/bg.png') no-repeat;
  49. background-size:100%;
  50. height:120px;
  51. padding:0 30px;
  52. }
  53. .u-image {
  54. justify-content:center;
  55. }
  56. </style>