multipleRoles.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view>
  3. <view class="text-area">
  4. <text>选择以下业务类型</text>
  5. </view>
  6. <view class="types">
  7. <view class="icon">
  8. <image src="./hospital.png"
  9. style="height: 25px;width: 25px;margin-right: 30px;"></image>
  10. </view>
  11. <view style="display: flex;flex-direction: column;">
  12. <text style="font-size: 18px; " >行走药师</text>
  13. <text style="font-size: 14px;color: rgba(153, 153, 153, 1);margin-top: 8px; ">适用于行走的药师业务页面</text>
  14. </view>
  15. </view>
  16. <view class="types">
  17. <view class="icon">
  18. <image src="./check.png"
  19. style="height: 25px;width: 25px;margin-right: 30px;"></image>
  20. </view>
  21. <view style="display: flex;flex-direction: column;">
  22. <text style="font-size: 18px; " >飞行检查</text>
  23. <text style="font-size: 14px;color: rgba(153, 153, 153, 1);margin-top: 8px; ">适用于飞行检查业务页面</text>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script setup>
  29. </script>
  30. <style>
  31. .text-area {
  32. margin-left: 20px;
  33. margin-top: 20px;
  34. font-size: 22px;
  35. }
  36. .types{
  37. margin-left: 25px;
  38. margin-top: 30px;
  39. width: 300px;
  40. height: 94px;
  41. opacity: 1;
  42. border-radius: 5px;
  43. border: 0.5px solid rgba(221, 221, 221, 1);
  44. display: flex;
  45. justify-content: flex-start;
  46. align-items: center;
  47. padding: 0px 16px 0px 16px;
  48. display: flex;
  49. flex-direction: row;
  50. }
  51. </style>