Immediateinspection.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <template>
  2. <view class="">
  3. <view class="getuserInfo">
  4. <view class="getuserInfoimg">
  5. <u--image :src="src" width="120rpx" height="120rpx"></u--image>
  6. </view>
  7. <view class="getuserInfoname">
  8. <h3>{{getuserInfo.realName}}</h3>
  9. <view>安保组</view>
  10. </view>
  11. <view class="getuserInfophone">
  12. <view class="getuserInfophone1">
  13. <u-icon name="phone" color="#2979ff" size="36"></u-icon>
  14. </view>
  15. <view class="getuserInfophone2">{{getuserInfo.mobile}}</view>
  16. </view>
  17. </view>
  18. <!--打卡-->
  19. <view class="Punchin">
  20. <view class="dakaweizhi">
  21. <view class="dakaweizhi1">
  22. <u-icon name="map" color="#6DD400" size="36"></u-icon>
  23. </view>
  24. <view class="dakaweizhi2">当前打卡位置:{{Punchposition}}</view>
  25. </view>
  26. <view class="shexiangji" @click="Punchindata">
  27. <view class="shexiangji1">扫码打卡</view>
  28. <view class="shexiangji2">
  29. <u-icon name="camera" color="#ffffff" size="90"></u-icon>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="dakajilv">今日打卡记录</view>
  34. <view class="u-listdata">
  35. <view style="padding:10rpx 0 0 30rpx">
  36. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  37. </view>
  38. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  39. <u-list-item v-for="(item, index) in indexList" :key="index">
  40. <view class="companylist">
  41. <h3>{{item.position}}</h3>
  42. <view class="Currentamount">
  43. 巡检时间:{{item.circuitTime}}
  44. </view>
  45. </view>
  46. </u-list-item>
  47. </u-list>
  48. </view>
  49. <u-notify ref="uNotify" message=""></u-notify>
  50. </view>
  51. </template>
  52. <script>
  53. import {
  54. getCurrentTime
  55. } from "@/utils/index";
  56. export default {
  57. data() {
  58. return {
  59. Punchposition: '',
  60. getuserInfo: {},
  61. pd: true,
  62. totalnumber: 0,
  63. indexList: [],
  64. src: 'https://cdn.uviewui.com/uview/album/1.jpg',
  65. dataForm: {
  66. page: 1,
  67. limit: 10,
  68. circuitType: "",
  69. startDate: "",
  70. endDate: "",
  71. buildingId: "",
  72. storeyId: "",
  73. circuitPersonId: "",
  74. },
  75. }
  76. },
  77. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  78. onLoad() {
  79. this.getuserInfo = uni.getStorageSync('getuserInfo');
  80. console.log('111111111111111111', this.getuserInfo)
  81. var date = new Date();
  82. var year = date.getFullYear();
  83. var month = date.getMonth() + 1;
  84. var day = date.getDate();
  85. // this.circuitPosition = this.$route.query.circuitPosition;
  86. this.dataForm.startDate = `${year}-${month}-${day}` + " 00:00:00";
  87. this.dataForm.endDate = `${year}-${month}-${day}` + " 23:59:59";
  88. this.dataForm.circuitPersonId = this.getuserInfo.id;
  89. // this.dataForm.circuitType = this.userInfo.circuitType;
  90. // console.log('111111111111111111',this.dataForm)
  91. this.getDataList();
  92. },
  93. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  94. onReady() {},
  95. //监听页面隐藏
  96. onHide() {},
  97. //监听窗口尺寸变化
  98. onResize() {},
  99. //监听页面卸载
  100. onUnload() {},
  101. //监听用户下拉动作,一般用于下拉刷新
  102. onPullDownRefresh() {},
  103. methods: {
  104. Punchindata() {
  105. uni.scanCode({
  106. //是否只能从相机扫码,不能从相册扫码
  107. onlyFromCamera: false,
  108. //规定扫码类型 字节跳动小程序不支持此参数
  109. // barcode就是一维码(条形码) qrcode就是(er)维码
  110. // datamatrix就是Data Matrix码 pdf417就是PDF417条码
  111. scanType: ['barCode', 'qrCode', ],
  112. // 是否启动自动识别字符编码功能
  113. autoDecodeCharset: false,
  114. // 是否开启自动放大功能 仅 App-Android (3.5.4+) 支持
  115. autoZoom: false,
  116. // 是否支持手动输入条形码 仅飞书小程序(V3.14.0)支持
  117. barCodeInput: false,
  118. success: (res) => {
  119. //console.log('111111111111111111', JSON.parse(res.result))
  120. let lsdata = JSON.parse(res.result)
  121. this.Punchposition = lsdata.position;
  122. let postdata = {
  123. "buildingId": lsdata.buildingId, //楼宇id
  124. "storeyId": lsdata.storeyId, //楼层id
  125. //"houseId": lsdata.buildingId, //房间id
  126. "position": lsdata.position, //位置信息
  127. "circuitPersonId": this.getuserInfo.id, //巡检人员id
  128. "circuitTime": getCurrentTime(), //巡检时间
  129. // "circuitType": this.getuserInfo.circuitType,//巡检类型
  130. "circuitType": '', //巡检类型
  131. "remark": lsdata.remark, //备注
  132. }
  133. this.$api.post('/circuitrecord', postdata)
  134. .then(res => {
  135. console.log('99999', res)
  136. if (res.data.code == 0) {
  137. this.$refs.uNotify.success('打卡成功')
  138. this.getDataListtwo();
  139. } else {
  140. this.$refs.uNotify.error('打卡失败')
  141. }
  142. })
  143. },
  144. fail: (error) => {
  145. this.$refs.uNotify.error(error)
  146. }
  147. })
  148. },
  149. getDataListtwo() {
  150. this.dataForm.page = 1;
  151. this.$api.get('/circuitrecord/page', this.dataForm)
  152. .then(res => {
  153. //console.log('111111111111111111',res.data.data)
  154. this.totalnumber = res.data.data.total;
  155. this.indexList = res.data.data.list;
  156. })
  157. },
  158. scrolltolower() {
  159. if (this.pd) {
  160. this.getalldata();
  161. } else {
  162. return
  163. }
  164. },
  165. getDataList() {
  166. this.$api.get('/circuitrecord/page', this.dataForm)
  167. .then(res => {
  168. //console.log('111111111111111111',res.data.data)
  169. this.totalnumber = res.data.data.total;
  170. if (res.data.data.list.length != 0) {
  171. this.indexList.push(...res.data.data.list);
  172. this.dataForm.page = this.dataForm.page + 1;
  173. this.pd = true;
  174. } else {
  175. uni.showToast({
  176. title: '暂无更多数据了',
  177. icon: 'none',
  178. duration: 1500
  179. })
  180. this.pd = false;
  181. }
  182. })
  183. },
  184. }
  185. }
  186. </script>
  187. <style lang="scss">
  188. .dakajilv {
  189. color: #666;
  190. font-size: 32rpx;
  191. padding-left: 30rpx;
  192. }
  193. .Currentamount {
  194. padding-left: 30rpx;
  195. height: 50rpx;
  196. line-height: 50rpx;
  197. color: #BCB3A7;
  198. span {
  199. color: #FA5555;
  200. padding-left: 9rpx;
  201. }
  202. }
  203. .Callfee {
  204. width: 100rpx;
  205. height: 45rpx;
  206. text-align: center;
  207. line-height: 45rpx;
  208. color: #5C8FFF;
  209. border: 1px solid #5C8FFF;
  210. font-size: 22rpx;
  211. position: absolute;
  212. bottom: 10rpx;
  213. right: 10px;
  214. font-weight: bold;
  215. }
  216. .companylist {
  217. margin: 20rpx 30rpx;
  218. background: #fff;
  219. height: 140rpx;
  220. border-radius: 10px;
  221. position: relative;
  222. h3 {
  223. height: 70rpx;
  224. line-height: 70rpx;
  225. padding-left: 30rpx;
  226. }
  227. }
  228. .settled {
  229. background-color: #09C700;
  230. width: 100rpx;
  231. height: 40rpx;
  232. text-align: center;
  233. line-height: 40rpx;
  234. color: #fff;
  235. font-size: 14rpx;
  236. position: absolute;
  237. top: 0px;
  238. right: 0px;
  239. border-top-right-radius: 10rpx;
  240. border-bottom-left-radius: 10rpx;
  241. }
  242. .outstanding {
  243. background-color: #30D3A2;
  244. width: 100rpx;
  245. height: 40rpx;
  246. text-align: center;
  247. line-height: 40rpx;
  248. color: #fff;
  249. font-size: 14rpx;
  250. position: absolute;
  251. top: 0px;
  252. right: 0px;
  253. border-top-right-radius: 10rpx;
  254. border-bottom-left-radius: 10rpx;
  255. }
  256. .billall {}
  257. .topbill {
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. height: 100rpx;
  262. background-color: #e6e6e6;
  263. }
  264. .topbilledit {
  265. display: flex;
  266. justify-content: space-around;
  267. align-items: center;
  268. }
  269. .changetime1 {
  270. padding-right: 10rpx;
  271. }
  272. .shexiangji1 {
  273. color: #fff;
  274. font-size: 36rpx;
  275. font-weight: bold;
  276. }
  277. .shexiangji {
  278. width: 300rpx;
  279. height: 300rpx;
  280. border-radius: 50%;
  281. background: #5C8FFF;
  282. margin: 0 auto;
  283. display: flex;
  284. justify-content: center;
  285. flex-direction: column;
  286. align-items: center;
  287. }
  288. .dakaweizhi2 {
  289. color: #999;
  290. font-size: 26rpx;
  291. }
  292. .dakaweizhi {
  293. display: flex;
  294. align-items: center;
  295. justify-content: center;
  296. width: 690rpx;
  297. height: 300rpx;
  298. }
  299. .Punchin {
  300. width: 690rpx;
  301. margin: 30rpx auto;
  302. background: #fff;
  303. height: 690rpx;
  304. }
  305. .getuserInfo {
  306. display: flex;
  307. align-items: center;
  308. width: 690rpx;
  309. margin: 0 auto;
  310. background: #fff;
  311. height: 160rpx;
  312. border-radius: 10rpx;
  313. }
  314. .getuserInfoimg {
  315. margin-left: 20rpx;
  316. margin-right: 30rpx;
  317. }
  318. .getuserInfoname {
  319. height: 120rpx;
  320. display: flex;
  321. flex-direction: column;
  322. justify-content: space-between;
  323. margin-right: 20rpx;
  324. h3 {
  325. color: #333;
  326. font-size: 32rpx;
  327. }
  328. view {
  329. color: #999;
  330. font-size: 24rpx;
  331. }
  332. }
  333. .getuserInfophone {
  334. height: 120rpx;
  335. display: flex;
  336. align-items: flex-start;
  337. }
  338. .getuserInfophone2 {
  339. color: #666;
  340. font-size: 28rpx;
  341. }
  342. </style>