addFamily.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <!-- 添加家人信息 -->
  2. <template>
  3. <view class="">
  4. <view class="item">
  5. <view class="title">姓名</view>
  6. <view class="content">
  7. <input type="text" v-model="name" placeholder="请输入姓名" placeholder-class="holder" />
  8. </view>
  9. </view>
  10. <view class="item">
  11. <view class="title">手机号 </view>
  12. <view class="content">
  13. <input type="number" v-model="phone" placeholder="请输入手机号" placeholder-class="holder" />
  14. </view>
  15. </view>
  16. <view class="item">
  17. <view class="title">身份证号</view>
  18. <view class="content">
  19. <input type="text" v-model="idNumber" placeholder="请输入身份证号" placeholder-class="holder" />
  20. </view>
  21. </view>
  22. <view class="item" style="height: 414rpx;">
  23. <view class="title">人脸照片 </view>
  24. <view class="content" style="height: 300rpx;">
  25. <image src="../../static/circle_image@2x.png" style="width: 330rpx;height: 300rpx;" @tap="chooseImg" v-show="isShow"></image>
  26. <image :src="photo" style="width: 330rpx;height: 300rpx;" v-show="isImg" @tap="chooseImg"></image>
  27. </view>
  28. </view>
  29. <!-- <view class="tip">注:带*为必填项</view> -->
  30. <view class="btn" :class="{active: name && phone && idNumber && photo}" @tap="save">保存</view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. name: '', //姓名
  38. phone: '', //手机号
  39. idNumber: '', //身份证号
  40. photo: '', //人脸照片
  41. isShow: true, //判断添加照片是否显示
  42. isImg: false
  43. }
  44. },
  45. methods: {
  46. // 选择照片
  47. chooseImg() {
  48. uni.chooseImage({
  49. count: 1, //默认9
  50. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  51. // sourceType: ['album'], //从相册选择
  52. success: (res) => {
  53. this.photo = res.tempFiles[0].path
  54. this.isShow = false
  55. this.isImg = true
  56. }
  57. })
  58. },
  59. //提交表单数据
  60. save() {
  61. if (!this.name || !this.phone || !this.idNumber || !this.photo) {
  62. return
  63. } else {
  64. 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]$/; //身份证正则
  65. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  66. // 表单校验
  67. if (!phoneReg.test(this.phone)) {
  68. uni.showToast({
  69. 'icon': 'none',
  70. title: "手机号码格式不正确"
  71. })
  72. } else if (!idNumerReg.test(this.idNumber)) {
  73. uni.showToast({
  74. 'icon': 'none',
  75. title: "身份证号码格式不正确"
  76. })
  77. } else {
  78. this.http.httpRequest('/wxapplet/owner/peopleInfor/faceadd', 'post', {
  79. comtyId: uni.getStorageSync('comtyId'),
  80. cardNo: this.idNumber,
  81. personName: this.name,
  82. phoneNum: this.phone,
  83. facePic: this.photo,
  84. doorNum:uni.getStorageSync('homeId')
  85. }, true).then((res) => {
  86. if (res.code == 0) {
  87. uni.showToast({
  88. 'icon': 'success',
  89. title: "保存成功"
  90. })
  91. uni.navigateTo({
  92. url: './family'
  93. })
  94. } else {
  95. uni.showToast({
  96. title: res.msg,
  97. 'icon': 'none'
  98. })
  99. }
  100. })
  101. }
  102. }
  103. }
  104. }
  105. }
  106. </script>
  107. <style>
  108. .btn {
  109. width: 702rpx;
  110. height: 90rpx;
  111. background: rgba(163, 197, 237, 1);
  112. opacity: 1;
  113. border-radius: 18rpx;
  114. text-align: center;
  115. font-size: 32rpx;
  116. font-family: PingFang SC;
  117. font-weight: bold;
  118. line-height: 90rpx;
  119. color: rgba(255, 255, 255, 1);
  120. margin: 0 auto;
  121. margin-top: 140rpx;
  122. }
  123. .tip {
  124. width: 186rpx;
  125. height: 34rpx;
  126. font-size: 24rpx;
  127. font-family: PingFang SC;
  128. font-weight: 400;
  129. color: rgba(231, 0, 30, 1);
  130. margin-left: 44rpx;
  131. margin-top: 20rpx;
  132. }
  133. .title {
  134. width: 100%;
  135. height: 44rpx;
  136. font-size: 32rpx;
  137. font-family: PingFang SC;
  138. font-weight: bold;
  139. line-height: 44px;
  140. color: rgba(51, 51, 51, 1);
  141. margin-top: 32rpx;
  142. margin-bottom: 58rpx;
  143. /* overflow: hidden; */
  144. }
  145. .content {
  146. width: 100%;
  147. height: 40rpx;
  148. font-size: 28rpx;
  149. font-family: PingFang SC;
  150. font-weight: 400;
  151. line-height: 40rpx;
  152. color: rgba(51, 51, 51, 1);
  153. margin-left: 18rpx;
  154. }
  155. .item {
  156. width: 662rpx;
  157. height: 154rpx;
  158. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  159. ;
  160. margin: 0 auto;
  161. }
  162. .holder {
  163. color: rgba(153, 153, 153, 1);
  164. }
  165. .active {
  166. background: rgba(41, 138, 253, 1);
  167. }
  168. </style>