assayList.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. handleApplicat() {
  56. uni.navigateTo({
  57. url: "/pages/assay/assayForm",
  58. success: (res) => {},
  59. fail: () => {},
  60. complete: () => {},
  61. });
  62. },
  63. handleChange(row) {
  64. this.activeContent = row.name;
  65. },
  66. handleCurrentForm() {},
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .createFixed {
  72. background: #2979ff;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. width: 90rpx;
  77. height: 90rpx;
  78. border-radius: 50%;
  79. position: fixed;
  80. right: 30rpx;
  81. bottom: 200rpx;
  82. }
  83. .createNew {
  84. font-size: 30rpx;
  85. margin: 20rpx 0 20rpx 20rpx;
  86. color: #3c9ff3;
  87. }
  88. .container {
  89. height: 100vh;
  90. background: rgb(243, 244, 249);
  91. .contentItems {
  92. width: 93%;
  93. border-radius: 6px;
  94. background: #fff;
  95. margin: 0rpx auto 20rpx;
  96. padding: 20rpx 30rpx 20rpx;
  97. .content {
  98. border-bottom: 1px solid rgb(242, 242, 242);
  99. padding: 24rpx 0;
  100. display: flex;
  101. justify-content: space-between;
  102. }
  103. .content:last-child {
  104. border-bottom: none;
  105. }
  106. .title {
  107. font-size: 26rpx;
  108. color: black;
  109. letter-spacing: 3rpx;
  110. }
  111. .message {
  112. font-size: 26rpx;
  113. color: rgb(146, 146, 146);
  114. }
  115. }
  116. }
  117. </style>