addFamily.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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="img" 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. img:'',
  42. isShow: true, //判断添加照片是否显示
  43. isImg: false
  44. }
  45. },
  46. methods: {
  47. // 选择照片
  48. chooseImg() {
  49. uni.chooseImage({
  50. count: 1, //默认9
  51. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  52. // sourceType: ['album'], //从相册选择
  53. success: (res) => {
  54. this.img=res.tempFiles[0].path
  55. wx.getFileSystemManager().readFile({
  56. filePath:res.tempFiles[0].path,//微信小程序图片默认路径
  57. encoding: 'base64', //编码格式
  58. success:(res)=>{
  59. this.isShow = false
  60. this.isImg = true
  61. this.photo=res.data
  62. },fail(){
  63. }
  64. })
  65. }
  66. })
  67. },
  68. //提交表单数据
  69. save() {
  70. if (!this.name || !this.phone || !this.idNumber || !this.photo) {
  71. return
  72. } else {
  73. 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]$/; //身份证正则
  74. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  75. let nameReg = /^[\u4E00-\u9FA5\uf900-\ufa2d·s]{2,20}$/
  76. if (!nameReg.test(this.name)) {
  77. uni.showToast({
  78. icon: 'none',
  79. title: '请输入正确的姓名格式',
  80. duration: 2000
  81. });
  82. }
  83. // 表单校验
  84. else if (!phoneReg.test(this.phone)) {
  85. uni.showToast({
  86. 'icon': 'none',
  87. title: "手机号码格式不正确"
  88. })
  89. } else if (!idNumerReg.test(this.idNumber)) {
  90. uni.showToast({
  91. 'icon': 'none',
  92. title: "身份证号码格式不正确"
  93. })
  94. } else {
  95. uni.showLoading({
  96. mask:true,
  97. title:'加载中'
  98. })
  99. this.http.httpRequest('/wxapplet/owner/peopleInfor/faceadd', 'post', {
  100. comtyId: uni.getStorageSync('comtyId'),
  101. cardNo: this.idNumber,
  102. personName: this.name,
  103. phoneNum: this.phone,
  104. facePic: this.photo,
  105. doorNum:uni.getStorageSync('homeId')
  106. }, true).then((res) => {
  107. if (res.code == 0) {
  108. uni.hideLoading()
  109. uni.showToast({
  110. 'icon': 'success',
  111. title: "保存成功"
  112. })
  113. this.name=''
  114. this.phone=''
  115. this.idNumber=''
  116. setTimeout(()=>{
  117. uni.navigateTo({
  118. url: './family'
  119. })
  120. },500)
  121. } else {
  122. uni.hideLoading()
  123. uni.showToast({
  124. title: res.msg,
  125. 'icon': 'none'
  126. })
  127. }
  128. }).catch(()=>{
  129. uni.hideLoading()
  130. })
  131. }
  132. }
  133. }
  134. }
  135. }
  136. </script>
  137. <style>
  138. .btn {
  139. width: 702rpx;
  140. height: 90rpx;
  141. background: rgba(163, 197, 237, 1);
  142. opacity: 1;
  143. border-radius: 18rpx;
  144. text-align: center;
  145. font-size: 32rpx;
  146. font-family: PingFang SC;
  147. font-weight: bold;
  148. line-height: 90rpx;
  149. color: rgba(255, 255, 255, 1);
  150. margin: 0 auto;
  151. margin-top: 140rpx;
  152. }
  153. .tip {
  154. width: 186rpx;
  155. height: 34rpx;
  156. font-size: 24rpx;
  157. font-family: PingFang SC;
  158. font-weight: 400;
  159. color: rgba(231, 0, 30, 1);
  160. margin-left: 44rpx;
  161. margin-top: 20rpx;
  162. }
  163. .title {
  164. width: 100%;
  165. height: 44rpx;
  166. font-size: 32rpx;
  167. font-family: PingFang SC;
  168. font-weight: bold;
  169. line-height: 44px;
  170. color: rgba(51, 51, 51, 1);
  171. margin-top: 32rpx;
  172. margin-bottom: 58rpx;
  173. /* overflow: hidden; */
  174. }
  175. .content {
  176. width: 100%;
  177. height: 40rpx;
  178. font-size: 28rpx;
  179. font-family: PingFang SC;
  180. font-weight: 400;
  181. line-height: 40rpx;
  182. color: rgba(51, 51, 51, 1);
  183. margin-left: 18rpx;
  184. }
  185. .item {
  186. width: 662rpx;
  187. height: 154rpx;
  188. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  189. ;
  190. margin: 0 auto;
  191. }
  192. .holder {
  193. color: rgba(153, 153, 153, 1);
  194. }
  195. .active {
  196. background: rgba(41, 138, 253, 1);
  197. }
  198. </style>