visitorPass.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  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;"
  13. @tap="back"></image>
  14. <view style="color:#fff;" class="nvaTitle">访客密码</view>
  15. </view>
  16. <view class="info">
  17. <!-- 截止日期 -->
  18. <view class="endDate" v-show="endTime">截止日期:{{endDate}}</view>
  19. <view class="topType"></view>
  20. <view class="info-title">访客信息填写</view>
  21. <view class="item" style="margin-top: -50rpx;">
  22. <view class="left-icon">
  23. <image src="../../static/register_icon_name@2x.png" style="width: 100%;height: 100%;"></image>
  24. </view>
  25. <input class="uni-input item-input" v-model="form.name" focus placeholder="请输入真实姓名" />
  26. </view>
  27. <view class="item">
  28. <view class="left-icon">
  29. <image src="../../static/register_icon_identity@2x.png" style="width: 100%;height: 100%;"></image>
  30. </view>
  31. <input class="uni-input item-input" v-model="form.idNumber" focus placeholder="请输入身份证号" />
  32. </view>
  33. <view class="item">
  34. <view class="left-icon">
  35. <image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
  36. </view>
  37. <input class="uni-input item-input" type="number" v-model="form.phone" focus placeholder="请输入手机号" />
  38. </view>
  39. <picker mode="selector" :range="dateData" @change="selectDate" range-key="label" class="item">
  40. <view class="item" >
  41. <view class="left-icon">
  42. <image src="../../static/visitor_icon_hour@2x.png" style="width: 100%;height: 100%;"></image>
  43. </view>
  44. <input class="uni-input item-input" v-model="form.date" :disabled="true" focus placeholder="访问时间" />
  45. <image src="../../static/icon_combo@2x.png" style="width: 56rpx;height: 30rpx;margin-top: 68rpx;margin-right: 54rpx;"></image>
  46. </view>
  47. </picker>
  48. <view class="item">
  49. <view class="left-icon">
  50. <image src="../../static/visitor_icon_regard@2x.png" style="width: 100%;height: 100%;"></image>
  51. </view>
  52. <input class="uni-input item-input" v-model="form.dec" placeholder="请输入您的来访事由" />
  53. </view>
  54. </view>
  55. <!-- 获取临时开门码 -->
  56. <button class="loginNow" @tap="loginNow()" :class="{active:form.name && form.idNumber && form.phone && form.date &&form.dec}" >
  57. 获取临时开门码
  58. </button>
  59. </view>
  60. <!-- 来访时间选择组件 -->
  61. <lb-picker ref="date" :list="dateData" @confirm="confirm">
  62. <!-- <view slot="cancle-text">取消</view>
  63. <view slot="confirm-text" >确定</view> -->
  64. </lb-picker>
  65. </view>
  66. </template>
  67. <script>
  68. import LbPicker from '@/components/lb-picker'
  69. export default {
  70. components: {
  71. LbPicker
  72. },
  73. data() {
  74. return {
  75. isLoading:false,
  76. endDate: '',
  77. startTime: '',
  78. endTime: '',
  79. phoneHeight: 0, //手机状态栏的高度
  80. // 时间数据
  81. dateData: [{
  82. label: '一个小时',
  83. value: 1
  84. }, {
  85. label: '一天',
  86. value: 24
  87. }, {
  88. label: '一周',
  89. value: 7
  90. }],
  91. time: '', //选择时间绑定值
  92. //表单绑定值
  93. form: {
  94. name: '', //姓名
  95. idNumber: '', //身份证号
  96. phone: '', //手机号
  97. date: '', //时间
  98. dec: '', //来访事由
  99. }
  100. }
  101. },
  102. created() {
  103. // 获取状态栏的高度
  104. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  105. },
  106. methods: {
  107. // 计算时间
  108. computedTime(type) {
  109. let endTime = 0
  110. let nowDate = Date.parse(new Date());
  111. this.startTime = this.date.formatDate(nowDate, 's')
  112. // 判断当前选择的时间是多少
  113. if (type == 1) {
  114. endTime = nowDate + (1 * 60 * 60 * 1000)
  115. } else if (type == 24) {
  116. endTime = nowDate + (24 * 60 * 60 * 1000)
  117. } else {
  118. endTime = nowDate + (168 * 60 * 60 * 1000)
  119. }
  120. this.endDate = this.date.formatDate(endTime, 'm')
  121. this.endTime = this.date.formatDate(endTime, 's')
  122. },
  123. // 返回
  124. back() {
  125. uni.navigateBack({
  126. delta: 1
  127. })
  128. },
  129. //选择时间打开组件
  130. selectDate(e) {
  131. this.form.date = this.dateData[e.target.value].label
  132. this.time = this.dateData[e.target.value].value
  133. this.computedTime(this.time)
  134. },
  135. //获取临时开门码
  136. loginNow() {
  137. // 判断输入框是否都有值 否不可以点击
  138. if (!this.form.name || !this.form.idNumber || !this.form.date || !this.form.phone || !this.form.dec) {
  139. return
  140. } else {
  141. 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]$/; //身份证正则
  142. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  143. let nameReg = /^[\u4E00-\u9FA5\uf900-\ufa2d·s]{2,20}$/
  144. if (!nameReg.test(this.form.name)) {
  145. uni.showToast({
  146. icon: 'none',
  147. title: '请输入正确的姓名格式',
  148. duration: 2000
  149. });
  150. }
  151. else if (!idNumerReg.test(this.form.idNumber)) {
  152. console.log(this.form.idNumber)
  153. uni.showToast({
  154. icon: 'none',
  155. title: '身份证号码格式不正确',
  156. duration: 2000
  157. });
  158. } else if (!phoneReg.test(this.form.phone)) {
  159. uni.showToast({
  160. icon: 'none',
  161. title: '手机号码格式不正确',
  162. duration: 2000
  163. });
  164. } else {
  165. uni.showLoading({
  166. mask:true,
  167. title:"加载中"
  168. })
  169. this.http.httpRequest('/wxapplet/owner/peopleInfor/add', 'post',{
  170. cardId: uni.getStorageSync('idNumber'),
  171. comtyId: uni.getStorageSync('comtyId'),
  172. startTime: this.startTime,
  173. endTime: this.endTime,
  174. visitorReason: this.form.dec,
  175. doorNum: uni.getStorageSync('homeId'),
  176. ownerUserName: uni.getStorageSync('createBy'),
  177. cardNo: this.form.idNumber,
  178. phoneNum: this.form.phone,
  179. personName: this.form.name
  180. },true).then((res) => {
  181. if (res.code == 0) {
  182. uni.redirectTo({
  183. url: "../visitor/doorCode?code="+res.data.Qrcode+'&img='+res.data.codePhotoUrl
  184. })
  185. uni.hideLoading()
  186. } else {
  187. uni.hideLoading()
  188. uni.showToast({
  189. title: res.msg,
  190. 'icon': 'none'
  191. })
  192. }
  193. }).catch(()=>{
  194. uni.hideLoading()
  195. })
  196. }
  197. }
  198. },
  199. },
  200. }
  201. </script>
  202. <style>
  203. .endDate {
  204. width: 342rpx;
  205. height: 34rpx;
  206. font-size: 24rpx;
  207. font-family: PingFang SC;
  208. font-weight: 400;
  209. color: rgba(102, 102, 102, 1);
  210. position: absolute;
  211. top: 542rpx;
  212. left: 90rpx;
  213. }
  214. .topBack {
  215. display: flex;
  216. position: absolute;
  217. }
  218. .popupClose {
  219. width: 44rpx;
  220. height: 44rpx;
  221. position: absolute;
  222. right: 20rpx;
  223. top: 20rpx;
  224. }
  225. .popupBtn {
  226. width: 342rpx;
  227. height: 80rpx;
  228. position: absolute;
  229. bottom: 80rpx;
  230. left: 128rpx;
  231. background: rgba(41, 138, 253, 1);
  232. color: #FFFFFF;
  233. font-size: 32rpx;
  234. }
  235. .popupTitle {
  236. width: 260rpx;
  237. height: 40rpx;
  238. font-size: 28rpx;
  239. color: #999999;
  240. position: absolute;
  241. bottom: 232rpx;
  242. left: 170rpx;
  243. }
  244. .popupImage {
  245. width: 100%;
  246. height: 300rpx;
  247. /* background-image: url(../../static/success_popup@2x.png);
  248. position: absolute;
  249. top: -64rpx; */
  250. }
  251. .loginNow {
  252. width: 702rpx;
  253. height: 90rpx;
  254. font-size: 32rpx;
  255. font-family: PingFang SC;
  256. font-weight: bold;
  257. color: rgba(255, 255, 255, 1);
  258. position: absolute;
  259. top: 1188rpx;
  260. left: 26rpx;
  261. line-height: 90rpx;
  262. background: rgba(163, 197, 237, 1);
  263. opacity: 1;
  264. }
  265. .info-btn {
  266. width: 342rpx;
  267. height: 88rpx;
  268. background: rgba(163, 197, 237, 1);
  269. opacity: 1;
  270. border-radius: 14rpx;
  271. font-size: 32rpx;
  272. text-align: center;
  273. line-height: 88rpx;
  274. color: rgba(255, 255, 255, 1);
  275. margin: 0 auto;
  276. margin-top: 44rpx;
  277. }
  278. .item-input {
  279. width: 100%;
  280. margin-left: 20rpx;
  281. height: 40rpx;
  282. margin-top: 62rpx;
  283. font-size: 32rpx;
  284. color: #999999;
  285. color: #333333;
  286. opacity: 1;
  287. }
  288. .active {
  289. background: rgba(41, 138, 253, 1);
  290. }
  291. .left-icon {
  292. width: 40rpx;
  293. height: 40rpx;
  294. /* border: 1rpx solid #555555; */
  295. /* box-sizing: border-box; */
  296. margin-top: 62rpx;
  297. }
  298. .item {
  299. display: flex;
  300. width: 531rpx;
  301. height: 120rpx;
  302. margin: 0 auto;
  303. border-bottom: 2px solid rgba(247, 247, 247, 1);
  304. opacity: 1;
  305. /* margin-top: 50rpx; */
  306. }
  307. .info-box {
  308. width: 90%;
  309. margin: 0 auto;
  310. border: 1px solid #808080;
  311. }
  312. .info-title {
  313. width: 100%;
  314. height: 48rpx;
  315. font-size: 34rpx;
  316. text-align: center;
  317. line-height: 48rpx;
  318. font-family: PingFang SC;
  319. font-weight: bold;
  320. position: absolute;
  321. top: 30rpx;
  322. }
  323. .topType {
  324. width: 150rpx;
  325. height: 150rpx;
  326. border-radius: 50%;
  327. background: #FFFFFF;
  328. margin: 0 auto;
  329. margin-top: -50rpx;
  330. border: 1rpx solide #C0C0C0;
  331. }
  332. .info {
  333. width: 602rpx;
  334. height: 747rpx;
  335. background: rgba(255, 255, 255, 1);
  336. box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
  337. opacity: 1;
  338. position: absolute;
  339. top: 369rpx;
  340. left: 74rpx;
  341. border-radius: 20rpx;
  342. }
  343. .btn {
  344. width: 702rpx;
  345. height: 90rpx;
  346. background: rgba(41, 138, 253, 1);
  347. opacity: 1;
  348. border-radius: 18rpx;
  349. font-size: 32rpx;
  350. font-family: PingFang SC;
  351. color: rgba(255, 255, 255, 1);
  352. text-align: center;
  353. line-height: 90rpx;
  354. position: absolute;
  355. top: 990rpx;
  356. left: 27rpx;
  357. }
  358. .nvaTitle {
  359. width: 140rpx;
  360. height: 48rpx;
  361. text-align: center;
  362. font-size: 32rpx;
  363. font-family: PingFang SC;
  364. font-weight: bold;
  365. color: rgba(255, 255, 255, 1);
  366. margin: 0 auto;
  367. padding-top: 20rpx;
  368. margin-left: 234rpx;
  369. }
  370. </style>