耀实惠小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.4 KiB

  1. <template>
  2. <view class="user_info" @click="selectUser">
  3. <view class="info">
  4. <text class="info_title">用药人</text>
  5. <view class="name_box">
  6. <text class="name">李快乐</text>
  7. <text class="name_btn">本人</text>
  8. </view>
  9. <view class="other_info">
  10. <text></text>
  11. <text>23</text>
  12. <text>137****9878</text>
  13. </view>
  14. </view>
  15. <u-icon name="arrow-right"></u-icon>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'drug-user-item',
  21. data() {
  22. return {};
  23. },
  24. methods: {
  25. selectUser () {
  26. this.$tools.navigateTo({
  27. url: '/pagesA/my_other_list/prescription/select_medicine_man/index'
  28. })
  29. }
  30. }
  31. };
  32. </script>
  33. <style lang="scss" scoped>
  34. .user_info {
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. .info {
  39. margin-left: 24rpx;
  40. display: flex;
  41. flex-direction: column;
  42. .info_title {
  43. font-size: 26rpx;
  44. color: #707070;
  45. margin-top: 17rpx;
  46. margin-bottom: 17rpx;
  47. }
  48. .name_box {
  49. font-size: 28rpx;
  50. color: #000;
  51. margin-bottom: 17rpx;
  52. .name_btn {
  53. margin-left: 10rpx;
  54. font-size: 24rpx;
  55. color: #0c85ff;
  56. border-radius: 10rpx;
  57. border: 1px solid #0c85ff;
  58. padding: 5rpx 10rpx;
  59. }
  60. }
  61. .other_info {
  62. display: flex;
  63. font-size: 24rpx;
  64. padding-bottom: 23rpx;
  65. color: #000;
  66. text {
  67. margin-right: 38rpx;
  68. }
  69. }
  70. }
  71. /deep/ .u-icon__icon {
  72. padding-right: 37rpx;
  73. }
  74. }
  75. </style>