medicine.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <view>
  3. <!--product/medicine/medicine.wxml-->
  4. <view class="address">
  5. <view class="addr-no dflex">
  6. <image src="/product/static/product/image/dzico.png" class="dzico"></image>
  7. <view class="flex">新建地址</view>
  8. <image src="/product/static/product/image/you1.png" class="rico"></image>
  9. </view>
  10. <view class="addr dflex">
  11. <image src="/product/static/product/image/dzico.png" class="dzico"></image>
  12. <view class="flex">
  13. <view class="name">袁莱<text>13235654099</text></view>
  14. <view class="brief">湖南省长沙市岳麓区中电软件园总部大楼6楼</view>
  15. </view>
  16. <image src="/product/static/product/image/you1.png" class="rico"></image>
  17. </view>
  18. </view>
  19. <view class="form">
  20. <view class="li dflex">
  21. <label>用药人信息</label>
  22. <view class="item flex">
  23. 请选择
  24. </view>
  25. <image src="/product/static/product/image/you2.png" class="rico"></image>
  26. </view>
  27. <view class="li dflex">
  28. <label>是否孕妇</label>
  29. <view class="item dflex flex">
  30. <view class="lis active">孕妇</view>
  31. <view class="lis">非孕妇</view>
  32. </view>
  33. </view>
  34. <view class="li dflex">
  35. <label>是否代煎</label>
  36. <view class="item dflex flex">
  37. <view class="lis">膏方</view>
  38. <view class="lis active">代煎</view>
  39. <view class="lis">非代煎</view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="upload-box">
  44. <label>上传处方单</label>
  45. <view class="imgbox dflex">
  46. <view class="imgs">
  47. <image src="/product/static/product/image/abroad.png" mode="aspectFit"></image>
  48. </view>
  49. <view class="upload"><image src="/product/static/product/image/upload.png"></image>上传图片</view>
  50. </view>
  51. </view>
  52. <view class="form">
  53. <view class="li dflex">
  54. <label>备注</label>
  55. <view class="item flex">
  56. <input placeholder="请输入" placeholer-class="placeholer"></input>
  57. </view>
  58. <image src="/product/static/product/image/you2.png" class="rico"></image>
  59. </view>
  60. </view>
  61. <view class="xieyi dflex">
  62. <image src="/product/static/product/image/gou.png"></image>
  63. <view class=" dflex">已经阅读并同意<navigator url hover-class="none">《免责协议》</navigator></view>
  64. </view>
  65. <view class="bot dflex">
  66. <view class="zong flex">小计:<text>¥0.01</text></view>
  67. <view class="btn">支付定金</view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. export default {
  73. data() {
  74. return {};
  75. },
  76. components: {},
  77. props: {},
  78. /**
  79. * 生命周期函数--监听页面加载
  80. */
  81. onLoad: function (options) {},
  82. /**
  83. * 生命周期函数--监听页面初次渲染完成
  84. */
  85. onReady: function () {},
  86. /**
  87. * 生命周期函数--监听页面显示
  88. */
  89. onShow: function () {},
  90. /**
  91. * 生命周期函数--监听页面隐藏
  92. */
  93. onHide: function () {},
  94. /**
  95. * 生命周期函数--监听页面卸载
  96. */
  97. onUnload: function () {},
  98. /**
  99. * 页面相关事件处理函数--监听用户下拉动作
  100. */
  101. onPullDownRefresh: function () {},
  102. /**
  103. * 页面上拉触底事件的处理函数
  104. */
  105. onReachBottom: function () {},
  106. methods: {}
  107. };
  108. </script>
  109. <style>
  110. @import "./medicine.css";
  111. </style>