family.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <template>
  2. <view class="">
  3. <view style="width:520rpx;margin: 0 auto;margin-top: 100rpx;" v-show="visible">
  4. <image src="../../static/notData.png" style="width:520rpx ;height: 520rpx;"></image>
  5. <view style="width:144rpx;height:50rpx;font-size:36rpx;margin: 0 auto;margin-top: 46rpx;">暂无数据</view>
  6. </view>
  7. <!-- <view style="width: 100%;text-align: center;margin-top: 20rpx;" v-if="data.length==0">暂无数据</view> -->
  8. <uni-swipe-action v-show="!visible">
  9. <uni-swipe-action-item :options="options" @click="onClick(item)" @change="change" v-for="(item,index) in data" :key="index">
  10. <view class="item">
  11. <view class="left">
  12. <image src="../../static/youer.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-if="IdCard(item.cardNo)<=6"></image>
  13. <image src="../../static/shaonian.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-else-if="IdCard(item.cardNo)>=7 && IdCard(item.cardNo)<=12"></image>
  14. <image src="../../static/qingShao.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-else-if="IdCard(item.cardNo)>=13 && IdCard(item.cardNo)<=17"></image>
  15. <image src="../../static/young.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-else-if="IdCard(item.cardNo)>=18 && IdCard(item.cardNo)<=45"></image>
  16. <image src="../../static/zhongnian.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-else-if="IdCard(item.cardNo)>=46 && IdCard(item.cardNo)<=69"></image>
  17. <image src="../../static/old.png" style="width:140rpx;height:140rpx;border-radius: 20rpx;" v-else-if="IdCard(item.cardNo)>69"></image>
  18. </view>
  19. <view class="right">
  20. <view class="name">{{item.personName}}</view>
  21. <view class="phone">
  22. <text>手机号 :</text><text style="margin-left:15rpx">{{item.phoneNum}}</text>
  23. </view>
  24. <view class="idNumber">
  25. <text>身份证号 :</text><text style="margin-left:15rpx">{{item.cardNo}}</text>
  26. </view>
  27. </view>
  28. </view>
  29. </uni-swipe-action-item>
  30. </uni-swipe-action>
  31. <!-- 添加家人信息 -->
  32. <view class="btn" @tap="addFamily">添加家人信息</view>
  33. </view>
  34. </template>
  35. <script>
  36. import uniSwipeAction from '../../components/uni-swipe-action/uni-swipe-action.vue'
  37. import uniSwipeActionItem from '../../components/uni-swipe-action-item/uni-swipe-action-item.vue'
  38. export default {
  39. data() {
  40. return {
  41. visible:true,
  42. length: false, //数据判断值
  43. data: [], //列表数据
  44. options: [{ //左滑动数据
  45. text: '删除',
  46. style: {
  47. backgroundColor: '#dd524d'
  48. }
  49. }]
  50. }
  51. },
  52. created() {
  53. this.getListData()
  54. },
  55. onUnload() {
  56. uni.switchTab({
  57. url:'./mine'
  58. })
  59. },
  60. mounted() {
  61. },
  62. components: {
  63. uniSwipeAction,
  64. uniSwipeActionItem
  65. },
  66. computed: {
  67. },
  68. methods: {
  69. //根据身份证号获取年龄
  70. IdCard(UUserCard) {
  71. var myDate = new Date();
  72. var month = myDate.getMonth() + 1;
  73. var day = myDate.getDate();
  74. var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1;
  75. if (UUserCard.substring(10, 12) < month || UUserCard.substring(10, 12) == month && UUserCard.substring(12, 14) <=
  76. day) {
  77. age++;
  78. }
  79. return age
  80. },
  81. // 点击删除
  82. onClick(item) {
  83. uni.showModal({
  84. title: '提示',
  85. content: '您确定要删除当前数据吗?',
  86. success: (res) => {
  87. // 判断用户是选择确定还是取消
  88. if (res.confirm) {
  89. this.http.httpRequest('/wxapplet/owner/peopleInfor/family/del', 'post', {
  90. cardNo: item.cardNo,
  91. comtyId: item.comtyId,
  92. zzjgid: item.zzjgid
  93. }, true).then((res) => {
  94. console.log(res)
  95. // 判断接口是否请求成功
  96. if (res.code == 0) {
  97. uni.showToast({
  98. title: '删除成功',
  99. 'icon': 'success'
  100. })
  101. setTimeout(() => {
  102. this.getListData()
  103. }, 500)
  104. } else {
  105. uni.showToast({
  106. title: res.msg,
  107. 'icon': 'none'
  108. })
  109. }
  110. })
  111. } else if (res.cancel) {
  112. }
  113. }
  114. })
  115. },
  116. // 获取列表数据
  117. getListData() {
  118. uni.showLoading({
  119. mask: true,
  120. title: '加载中'
  121. })
  122. this.http.httpRequest('/wxapplet/owner/peopleInfor/getfamily', 'get', {
  123. cardNo: uni.getStorageSync('idNumber'),
  124. comtyId: uni.getStorageSync('comtyId')
  125. }, true).then((res) => {
  126. console.log(res)
  127. if (res.code == 0) {
  128. // 判断当前是否返回数据
  129. if (res.data.rows.length == 0) {
  130. this.visible=true
  131. }else{
  132. this.data = res.data.rows
  133. this.visible=false
  134. }
  135. uni.hideLoading()
  136. } else {
  137. uni.hideLoading()
  138. uni.showToast({
  139. title: res.msg,
  140. 'icon': 'none'
  141. })
  142. }
  143. }).catch(() => {
  144. uni.hideLoading()
  145. })
  146. },
  147. // 添加家人信息
  148. addFamily() {
  149. uni.navigateTo({
  150. url: "addFamily"
  151. })
  152. }
  153. }
  154. }
  155. </script>
  156. <style>
  157. .btn {
  158. width: 702rpx;
  159. height: 90rpx;
  160. background: rgba(41, 138, 253, 1);
  161. opacity: 1;
  162. border-radius: 18rpx;
  163. font-size: 32rpx;
  164. font-family: PingFang SC;
  165. font-weight: bold;
  166. line-height: 90rpx;
  167. color: rgba(255, 255, 255, 1);
  168. text-align: center;
  169. position: fixed;
  170. left: 26rpx;
  171. bottom: 56rpx;
  172. }
  173. .title{
  174. width: 510rpx;
  175. height: 50rpx;
  176. font-size:36rpx;
  177. font-family:PingFang SC;
  178. font-weight:400;
  179. line-height:50rpx;
  180. color:rgba(36,36,36,1);
  181. margin:0 auto;
  182. margin-top: 30rpx;
  183. text-align: center;
  184. }
  185. .idNumber {
  186. width: 100%;
  187. height: 34rpx;
  188. font-size: 24rpx;
  189. font-family: PingFang SC;
  190. font-weight: 400;
  191. line-height: 34rpx;
  192. color: rgba(51, 51, 51, 1);
  193. }
  194. .name {
  195. width: 100%;
  196. height: 44rpx;
  197. font-size: 32rpx;
  198. font-family: PingFang SC;
  199. font-weight: bold;
  200. line-height: 44px;
  201. color: rgba(51, 51, 51, 1);
  202. }
  203. .phone {
  204. width: 100%;
  205. height: 34rpx;
  206. font-size: 24rpx;
  207. font-family: PingFang SC;
  208. font-weight: 400;
  209. line-height: 34rpx;
  210. color: rgba(51, 51, 51, 1);
  211. margin-top: 28rpx;
  212. margin-left: 26rpx;
  213. }
  214. .left {
  215. width: 140rpx;
  216. height: 140rpx;
  217. border-radius: 20rpx;
  218. margin-top: 40rpx;
  219. }
  220. .right {
  221. width: 100%;
  222. margin-left: 20rpx;
  223. margin-top: 40rpx;
  224. }
  225. .item {
  226. width: 680rpx;
  227. height: 220rpx;
  228. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  229. ;
  230. margin: 0 auto;
  231. display: flex;
  232. }
  233. </style>