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.
66 lines
2.3 KiB
66 lines
2.3 KiB
|
1 month ago
|
<navbar fixed custom-style="background:transparent" back>
|
||
|
|
<view class="page-order" slot="left">
|
||
|
|
<view class="item active">1</view>
|
||
|
|
<view class="item active">2</view>
|
||
|
|
</view>
|
||
|
|
</navbar>
|
||
|
|
<view
|
||
|
|
class="page"
|
||
|
|
style="background: url('/images/bg4.png') no-repeat top center / 100% 710rpx;padding-top: {{pageTop+80}}px;"
|
||
|
|
>
|
||
|
|
<image class="page-title" src="/images/content2.png"></image>
|
||
|
|
<view class="form">
|
||
|
|
<view class="row">
|
||
|
|
<view class="label">您的身份</view>
|
||
|
|
<view class="wrap">
|
||
|
|
<input type="text" class="input" placeholder-class="place-input" placeholder="请输入姓名" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="row">
|
||
|
|
<view class="label">所属药店</view>
|
||
|
|
<view class="wrap" bind:tap="handleDrug">
|
||
|
|
<input disabled type="text" class="input" placeholder-class="place-input" placeholder="选择所属药店" />
|
||
|
|
<image class="icon" src="/images/icon2.png"></image>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<button class="phone" bind:tap="handleWxSubmit">注册</button>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<van-popup show="{{ show }}" title="选择所属药店" position="bottom" round closeable bind:close="onClose">
|
||
|
|
<view class="popup">
|
||
|
|
<view class="p-header">
|
||
|
|
<view class="title">选择所属药店</view>
|
||
|
|
<view class="search">
|
||
|
|
<image class="icon" src="/images/icon1.png"></image>
|
||
|
|
<input
|
||
|
|
type="text"
|
||
|
|
placeholder="搜索药店名/药师姓名"
|
||
|
|
class="input"
|
||
|
|
placeholder-class="place-input"
|
||
|
|
confirm-type="search"
|
||
|
|
bindconfirm="handleSearch"
|
||
|
|
/>
|
||
|
|
</view>
|
||
|
|
<pickerArea bindchange="handleChange">
|
||
|
|
<view class="options">
|
||
|
|
<view class="o-item">
|
||
|
|
<view class="content">请选择省份</view>
|
||
|
|
<image class="icon" src="/images/icon2.png"></image>
|
||
|
|
</view>
|
||
|
|
<view class="o-item">
|
||
|
|
<view class="content">请选择省份</view>
|
||
|
|
<image class="icon" src="/images/icon2.png"></image>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</pickerArea>
|
||
|
|
</view>
|
||
|
|
<view class="p-list">
|
||
|
|
<view class="l-item">
|
||
|
|
<view class="name">北京同仁堂昌平东关药店(医保定点)</view>
|
||
|
|
<view class="site">北京市昌平区府学路3号一层101号(昌平东关地铁站A西北口步行180米)</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</van-popup>
|