externalList.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!-- @format -->
  2. <template>
  3. <view class="container">
  4. <view style="margin: 15rpx 0">
  5. <view class="contentItems" @click="handleDetails" v-for="item of 2">
  6. <u-checkbox :customStyle="{ marginBottom: '8px' }"> </u-checkbox>
  7. <view class="content">
  8. <view class="title"
  9. >器具出厂编号
  10. <text style="margin-left: 40rpx"> 2024845782 </text>
  11. </view>
  12. </view>
  13. <view class="content">
  14. <view class="title">器具名称</view>
  15. <view class="message">血压计和高压</view>
  16. </view>
  17. <view class="content">
  18. <view class="title">规格型号</view>
  19. <view class="message">20kg*10</view>
  20. </view>
  21. </view>
  22. </view>
  23. <view
  24. style="
  25. background: #fff;
  26. padding: 20rpx 0;
  27. position: fixed;
  28. bottom: 0;
  29. left: 0;
  30. width: 100%;
  31. "
  32. >
  33. <u-button
  34. @click="handleApplicat"
  35. style="width: 95%; margin: 0 auto"
  36. type="primary"
  37. >下一步</u-button
  38. >
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. activeContent: "我的申请",
  47. tabsList: [
  48. {
  49. name: "我的申请",
  50. },
  51. ],
  52. };
  53. },
  54. methods: {
  55. //备案申请
  56. handleApplicat() {
  57. uni.navigateTo({
  58. url: "/pages/verification/external",
  59. success: (res) => {},
  60. fail: () => {},
  61. complete: () => {},
  62. });
  63. },
  64. handleChange(row) {
  65. this.activeContent = row.name;
  66. },
  67. handleCurrentForm() {},
  68. },
  69. };
  70. </script>
  71. <style lang="scss" scoped>
  72. .createFixed {
  73. background: #2979ff;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. width: 90rpx;
  78. height: 90rpx;
  79. border-radius: 50%;
  80. position: fixed;
  81. right: 30rpx;
  82. bottom: 200rpx;
  83. }
  84. .createNew {
  85. font-size: 30rpx;
  86. margin: 20rpx 0 20rpx 20rpx;
  87. color: #3c9ff3;
  88. }
  89. .container {
  90. height: 100vh;
  91. background: rgb(243, 244, 249);
  92. .contentItems {
  93. width: 93%;
  94. border-radius: 6px;
  95. background: #fff;
  96. margin: 0rpx auto 20rpx;
  97. padding: 20rpx 30rpx 20rpx;
  98. .content {
  99. border-bottom: 1px solid rgb(242, 242, 242);
  100. padding: 24rpx 0;
  101. display: flex;
  102. justify-content: space-between;
  103. }
  104. .content:last-child {
  105. border-bottom: none;
  106. }
  107. .title {
  108. font-size: 26rpx;
  109. color: black;
  110. letter-spacing: 3rpx;
  111. }
  112. .message {
  113. font-size: 26rpx;
  114. color: rgb(146, 146, 146);
  115. }
  116. }
  117. }
  118. </style>