| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <template>
- <view>
- <!--product/medicine/medicine.wxml-->
- <view class="address">
- <view class="addr-no dflex">
- <image src="/product/static/product/image/dzico.png" class="dzico"></image>
- <view class="flex">新建地址</view>
- <image src="/product/static/product/image/you1.png" class="rico"></image>
- </view>
- <view class="addr dflex">
- <image src="/product/static/product/image/dzico.png" class="dzico"></image>
- <view class="flex">
- <view class="name">袁莱<text>13235654099</text></view>
- <view class="brief">湖南省长沙市岳麓区中电软件园总部大楼6楼</view>
- </view>
- <image src="/product/static/product/image/you1.png" class="rico"></image>
- </view>
- </view>
- <view class="form">
- <view class="li dflex">
- <label>用药人信息</label>
- <view class="item flex">
- 请选择
- </view>
- <image src="/product/static/product/image/you2.png" class="rico"></image>
- </view>
- <view class="li dflex">
- <label>是否孕妇</label>
- <view class="item dflex flex">
- <view class="lis active">孕妇</view>
- <view class="lis">非孕妇</view>
- </view>
- </view>
- <view class="li dflex">
- <label>是否代煎</label>
- <view class="item dflex flex">
- <view class="lis">膏方</view>
- <view class="lis active">代煎</view>
- <view class="lis">非代煎</view>
- </view>
- </view>
- </view>
- <view class="upload-box">
- <label>上传处方单</label>
- <view class="imgbox dflex">
- <view class="imgs">
- <image src="/product/static/product/image/abroad.png" mode="aspectFit"></image>
- </view>
- <view class="upload"><image src="/product/static/product/image/upload.png"></image>上传图片</view>
- </view>
- </view>
- <view class="form">
- <view class="li dflex">
- <label>备注</label>
- <view class="item flex">
- <input placeholder="请输入" placeholer-class="placeholer"></input>
- </view>
- <image src="/product/static/product/image/you2.png" class="rico"></image>
- </view>
- </view>
- <view class="xieyi dflex">
- <image src="/product/static/product/image/gou.png"></image>
- <view class=" dflex">已经阅读并同意<navigator url hover-class="none">《免责协议》</navigator></view>
- </view>
- <view class="bot dflex">
- <view class="zong flex">小计:<text>¥0.01</text></view>
- <view class="btn">支付定金</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- components: {},
- props: {},
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {},
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {},
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {},
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {},
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {},
- methods: {}
- };
- </script>
- <style>
- @import "./medicine.css";
- </style>
|