family.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view>
  3. <view class="topImg">
  4. <image src="../../static/care_family.png" style="width: 100%;height: 100%;"></image>
  5. <view class="topTile">家人关怀</view>
  6. <view class="topNum">今天有<text style="font-weight:400;">0</text>条出行异常</view>
  7. </view>
  8. <!-- <view style="margin-top: 30rpx;"> -->
  9. <view style="width: 100%;">
  10. <!-- <view class="img">
  11. <image src="../../static/null_image_checking@2x.png" style="width: 100%;height: 100%;"></image>
  12. </view> -->
  13. <view style="width:520rpx;margin: 0 auto;margin-top: 30rpx;" v-show="visible">
  14. <image src="../../static/notData.png" style="width:520rpx ;height: 520rpx;"></image>
  15. <view style="width:144rpx;height:50rpx;font-size:36rpx;margin: 0 auto;margin-top: 46rpx;">暂无数据</view>
  16. </view>
  17. <view class="content" v-for="(item,index) in data" :key="index" v-show="!visible">
  18. <view class="item">
  19. <view class="left" style="width: 60rpx;">姓名</view><view style="height:42rpx;margin-left: 138rpx;">{{item.personName}}</view>
  20. <view class="status" v-show="false">出行异常</view>
  21. </view>
  22. <view class="item">
  23. <view class="left">时间</view><view class="right">{{item.passTime}}</view>
  24. </view>
  25. <view class="item">
  26. <view class="left">通过入口</view><view class="right">{{item.deviceName}}</view>
  27. </view>
  28. <view class="item" style="padding-bottom: 20rpx;">
  29. <view class="left">通过类型</view>
  30. <view class="right" v-if="item.passType==1">人脸识别</view>
  31. <view class="right" v-else-if="item.passType==2">门禁卡</view>
  32. <view class="right" v-else-if="item.passType==3">密码开门</view>
  33. <view class="right" v-else-if="item.passType==4">app远程开门</view>
  34. <view class="right" v-else-if="item.passType==5">人脸与身份证比对</view>
  35. <view class="right" v-else-if="item.passType==6">二维码开门</view>
  36. <view class="right" v-else-if="item.passType==10">一键开门</view>
  37. <view class="right" v-else>其他</view>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. visible:true,
  48. moreIndex: '',
  49. IsFirst: true, //判断是否显示更多数据
  50. data: [
  51. ]
  52. }
  53. },
  54. onShow() {
  55. // this.getList()
  56. },
  57. onTabItemTap(e) {
  58. uni.pageScrollTo({
  59. scrollTop: 0,
  60. duration: 300
  61. });
  62. this.getList()
  63. },
  64. onPullDownRefresh() {
  65. uni.showLoading({
  66. title: '加载中',
  67. mask: true
  68. })
  69. this.getList()
  70. },
  71. onLoad() {
  72. },
  73. mounted() {
  74. },
  75. methods: {
  76. // 获取列表数据
  77. getList() {
  78. uni.showLoading({
  79. mask:true,
  80. title:'加载中'
  81. })
  82. this.http.httpRequest('/wxapplet/owner/peolepass/locklist', 'get', {
  83. cardNo: uni.getStorageSync('idNumber')
  84. }, true).then((res) => {
  85. if (res.code == 0) {
  86. // 判断返回数据是否为空
  87. if(res.data.rows.length==0){
  88. this.visible=true
  89. }else{
  90. this.visible=false
  91. this.data = res.data.rows
  92. }
  93. setTimeout(() => {
  94. uni.hideLoading()
  95. uni.stopPullDownRefresh()
  96. }, 1000)
  97. } else {
  98. uni.hideLoading()
  99. uni.showToast({
  100. title: res.msg,
  101. "icon": 'none'
  102. })
  103. }
  104. }).catch(()=>{
  105. uni.hideLoading()
  106. })
  107. },
  108. // 查看更多数据
  109. seeMore(index) {}
  110. }
  111. }
  112. </script>
  113. <style>
  114. .title{
  115. width: 510rpx;
  116. height: 50rpx;
  117. font-size:36rpx;
  118. font-family:PingFang SC;
  119. font-weight:400;
  120. line-height:50rpx;
  121. color:rgba(36,36,36,1);
  122. margin:0 auto;
  123. margin-top: 30rpx;
  124. text-align: center;
  125. }
  126. .status{
  127. width:100rpx;
  128. height:26rpx;
  129. background:rgba(231,0,30,1);
  130. opacity:1;
  131. border-radius:22rpx;
  132. color: #FFFFFF;
  133. font-size:16rpx;
  134. font-family:PingFang SC;
  135. text-align: center;
  136. line-height: 26rpx;
  137. margin-top: 8rpx;
  138. margin-left:26rpx ;
  139. }
  140. .left {
  141. width: 180rpx;
  142. height: 42rpx;
  143. font-size: 30rpx;
  144. font-family: PingFang SC;
  145. font-weight: bold;
  146. color: rgba(51, 51, 51, 1);
  147. }
  148. .right {
  149. width: 100%;
  150. height: 42rpx;
  151. font-size:28rpx;
  152. font-family:PingFang SC;
  153. font-weight:400;
  154. color:rgba(153,153,153,1);
  155. margin-left: 60rpx;
  156. }
  157. .rightStatus {
  158. width: 116rpx;
  159. height: 40rpx;
  160. font-size: 28rpx;
  161. font-family: PingFang SC;
  162. font-weight: bold;
  163. color: rgba(41, 138, 253, 1);
  164. }
  165. .item {
  166. width: 700rpx;
  167. margin: 0 auto;
  168. padding-top: 40rpx;
  169. display: flex;
  170. }
  171. .content {
  172. width: 100%;
  173. min-height: 280rpx;
  174. background: rgba(255, 255, 255, 1);
  175. /* box-shadow: 0rpx 6rpx 10rpx rgba(0, 0, 0, 0.1); */
  176. opacity: 1;
  177. overflow: hidden;
  178. border-bottom:2rpx solid rgba(215,215,217,1);
  179. }
  180. .topImg {
  181. width: 100%;
  182. height: 300rpx;
  183. position: relative;
  184. }
  185. .topTile {
  186. width: 180px;
  187. height: 60px;
  188. font-size: 44rpx;
  189. font-family: PingFang SC;
  190. font-weight: bold;
  191. color: rgba(255, 255, 255, 1);
  192. position: absolute;
  193. top: 146rpx;
  194. left: 28rpx;
  195. }
  196. .topNum {
  197. height: 44rpx;
  198. font-size: 26rpx;
  199. font-family: PingFang SC;
  200. color: rgba(255, 255, 255, 1);
  201. position: absolute;
  202. top: 216rpx;
  203. left: 28rpx;
  204. }
  205. .rightBox {
  206. width: 572rpx;
  207. margin-left: 12rpx;
  208. }
  209. </style>