visitorPass.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <template>
  2. <view>
  3. <view style="width:100%;height:516rpx;position: relative;">
  4. <view class="navImage">
  5. <image src="../../static/login_bgground@2x.png" style="width:100%;height:516rpx;"></image>
  6. </view>
  7. </view>
  8. <!-- -->
  9. <view style="width: 100%;position: absolute;top: 0;">
  10. <!-- 返回icon -->
  11. <view class="topBack" :style="{marginTop:phoneHeight + 'px'}">
  12. <image src="../../static/icon_back@2x(1).png" style="width:48rpx ;height: 48rpx;margin-left: 36rpx;margin-top: 18rpx;" @tap="back"></image>
  13. <view style="color:#fff;" class="nvaTitle">访客密码</view>
  14. </view>
  15. <view class="info">
  16. <!-- 截止日期 -->
  17. <view class="endDate">截止日期:2020-1-1 13:10</view>
  18. <view class="topType"></view>
  19. <view class="info-title">访客信息填写</view>
  20. <view class="item" style="margin-top: -50rpx;">
  21. <view class="left-icon">
  22. <image src="../../static/register_icon_name@2x.png" style="width: 100%;height: 100%;"></image>
  23. </view>
  24. <input class="uni-input item-input" v-model="form.name" focus placeholder="请输入真实姓名" />
  25. </view>
  26. <view class="item">
  27. <view class="left-icon">
  28. <image src="../../static/register_icon_identity@2x.png" style="width: 100%;height: 100%;"></image>
  29. </view>
  30. <input class="uni-input item-input" v-model="form.idNumber" focus placeholder="请输入身份证号" />
  31. </view>
  32. <view class="item">
  33. <view class="left-icon">
  34. <image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
  35. </view>
  36. <input class="uni-input item-input" type="number" v-model="form.phone" focus placeholder="请输入手机号" />
  37. </view>
  38. <view class="item" @tap="selectDate">
  39. <view class="left-icon">
  40. <image src="../../static/visitor_icon_hour@2x.png" style="width: 100%;height: 100%;"></image>
  41. </view>
  42. <input class="uni-input item-input" v-model="form.date" focus placeholder="访问时间" />
  43. <image src="../../static/icon_combo@2x.png" style="width: 56rpx;height: 30rpx;margin-top: 68rpx;margin-right: 54rpx;"></image>
  44. </view>
  45. <view class="item">
  46. <view class="left-icon">
  47. <image src="../../static/visitor_icon_regard@2x.png" style="width: 100%;height: 100%;"></image>
  48. </view>
  49. <input class="uni-input item-input" v-model="form.dec" placeholder="请输入您的来访事由" />
  50. </view>
  51. </view>
  52. <!-- 获取临时开门码 -->
  53. <button class="loginNow" @tap="loginNow()" :class="{active:form.name && form.idNumber && form.phone && form.date &&form.dec}">
  54. 获取临时开门码
  55. </button>
  56. </view>
  57. <!-- 来访时间选择组件 -->
  58. <lb-picker ref="date" :list="dateData" @confirm="confirm">
  59. <!-- <view slot="cancle-text">取消</view>
  60. <view slot="confirm-text" >确定</view> -->
  61. </lb-picker>
  62. </view>
  63. </template>
  64. <script>
  65. import LbPicker from '@/components/lb-picker'
  66. export default {
  67. components: {
  68. LbPicker
  69. },
  70. data() {
  71. return {
  72. phoneHeight: 0, //手机状态栏的高度
  73. // 时间数据
  74. dateData:[{label:'一个小时',value:1,child:[]},{label:'一天',value:24,child:[]},],
  75. time:'',//选择时间绑定值
  76. //表单绑定值
  77. form: {
  78. name: '', //姓名
  79. idNumber: '', //身份证号
  80. phone: '', //手机号
  81. date:'',//时间
  82. dec: '', //来访事由
  83. }
  84. }
  85. },
  86. created() {
  87. // 获取状态栏的高度
  88. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  89. },
  90. methods: {
  91. // 返回
  92. back(){
  93. uni.navigateBack({
  94. delta:1
  95. })
  96. },
  97. // 选择时间确定
  98. confirm(data){
  99. this.form.date=data.item.label
  100. this.time=data.item.value
  101. console.log(this.time)
  102. },
  103. //选择时间打开组件
  104. selectDate(){
  105. this.$refs.date.show()
  106. },
  107. //获取临时开门码
  108. loginNow() {
  109. // 判断输入框是否都有值 否不可以点击
  110. if (!this.form.name || !this.form.idNumber || !this.form.date || !this.form.phone|| !this.form.dec) {
  111. return
  112. } else {
  113. let idNumerReg = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/; //身份证正则
  114. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  115. if (!idNumerReg.test(this.form.idNumber)) {
  116. console.log(this.form.idNumber)
  117. uni.showToast({
  118. icon: 'none',
  119. title: '身份证号码格式不正确',
  120. duration: 2000
  121. });
  122. } else if (!phoneReg.test(this.form.phone)) {
  123. uni.showToast({
  124. icon: 'none',
  125. title: '手机号码格式不正确',
  126. duration: 2000
  127. });
  128. }else{
  129. uni.navigateTo({
  130. url: "../visitor/doorCode"
  131. })
  132. }
  133. }
  134. },
  135. },
  136. }
  137. </script>
  138. <style>
  139. .endDate{
  140. width: 342rpx;
  141. height:34rpx ;
  142. font-size:24rpx;
  143. font-family:PingFang SC;
  144. font-weight:400;
  145. color:rgba(102,102,102,1);
  146. position: absolute;
  147. top: 542rpx;
  148. left: 90rpx;
  149. }
  150. .topBack{
  151. display: flex;
  152. position: absolute;
  153. }
  154. .popupClose{
  155. width: 44rpx;
  156. height: 44rpx;
  157. position: absolute;
  158. right: 20rpx;
  159. top: 20rpx;
  160. }
  161. .popupBtn{
  162. width: 342rpx;
  163. height: 80rpx;
  164. position: absolute;
  165. bottom: 80rpx;
  166. left: 128rpx;
  167. background:rgba(41,138,253,1);
  168. color: #FFFFFF;
  169. font-size: 32rpx;
  170. }
  171. .popupTitle{
  172. width: 260rpx;
  173. height: 40rpx;
  174. font-size: 28rpx;
  175. color: #999999;
  176. position: absolute;
  177. bottom: 232rpx;
  178. left: 170rpx;
  179. }
  180. .popupImage{
  181. width:100%;
  182. height:300rpx;
  183. /* background-image: url(../../static/success_popup@2x.png);
  184. position: absolute;
  185. top: -64rpx; */
  186. }
  187. .loginNow {
  188. width: 702rpx;
  189. height: 90rpx;
  190. font-size:32rpx;
  191. font-family:PingFang SC;
  192. font-weight:bold;
  193. color:rgba(255,255,255,1);
  194. position: absolute;
  195. top: 1188rpx;
  196. left: 26rpx;
  197. line-height: 90rpx;
  198. background:rgba(163,197,237,1);
  199. opacity:1;
  200. }
  201. .info-btn {
  202. width: 342rpx;
  203. height: 88rpx;
  204. background: rgba(163, 197, 237, 1);
  205. opacity: 1;
  206. border-radius: 14rpx;
  207. font-size: 32rpx;
  208. text-align: center;
  209. line-height: 88rpx;
  210. color: rgba(255, 255, 255, 1);
  211. margin: 0 auto;
  212. margin-top: 44rpx;
  213. }
  214. .item-input {
  215. width: 100%;
  216. margin-left: 20rpx;
  217. height: 40rpx;
  218. margin-top: 62rpx;
  219. font-size: 32rpx;
  220. color: #999999;
  221. color: #333333;
  222. opacity: 1;
  223. }
  224. .active {
  225. background:rgba(41,138,253,1);
  226. }
  227. .left-icon {
  228. width: 40rpx;
  229. height: 40rpx;
  230. /* border: 1rpx solid #555555; */
  231. /* box-sizing: border-box; */
  232. margin-top: 62rpx;
  233. }
  234. .item {
  235. display: flex;
  236. width: 531rpx;
  237. height: 120rpx;
  238. margin: 0 auto;
  239. border-bottom: 2px solid rgba(247, 247, 247, 1);
  240. opacity: 1;
  241. /* margin-top: 50rpx; */
  242. }
  243. .info-box {
  244. width: 90%;
  245. margin: 0 auto;
  246. border: 1px solid #808080;
  247. }
  248. .info-title {
  249. width: 100%;
  250. height: 48rpx;
  251. font-size: 34rpx;
  252. text-align: center;
  253. line-height: 48rpx;
  254. font-family: PingFang SC;
  255. font-weight: bold;
  256. position: absolute;
  257. top: 30rpx;
  258. }
  259. .topType {
  260. width: 150rpx;
  261. height: 150rpx;
  262. border-radius: 50%;
  263. background: #FFFFFF;
  264. margin: 0 auto;
  265. margin-top: -50rpx;
  266. border: 1rpx solide #C0C0C0;
  267. }
  268. .info {
  269. width: 602rpx;
  270. height: 747rpx;
  271. background: rgba(255, 255, 255, 1);
  272. box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
  273. opacity: 1;
  274. position: absolute;
  275. top: 369rpx;
  276. left: 74rpx;
  277. border-radius: 20rpx;
  278. }
  279. .btn {
  280. width: 702rpx;
  281. height: 90rpx;
  282. background: rgba(41, 138, 253, 1);
  283. opacity: 1;
  284. border-radius: 18rpx;
  285. font-size: 32rpx;
  286. font-family: PingFang SC;
  287. color: rgba(255, 255, 255, 1);
  288. text-align: center;
  289. line-height: 90rpx;
  290. position: absolute;
  291. top: 990rpx;
  292. left: 27rpx;
  293. }
  294. .nvaTitle {
  295. width: 140rpx;
  296. height: 48rpx;
  297. text-align: center;
  298. font-size: 32rpx;
  299. font-family:PingFang SC;
  300. font-weight:bold;
  301. color:rgba(255,255,255,1);
  302. margin: 0 auto;
  303. padding-top: 20rpx;
  304. margin-left: 234rpx;
  305. }
  306. </style>