Inspectionrecord.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <template>
  2. <view class="billall">
  3. <u-cell-group class="toptemplate">
  4. <u-cell :title="mytitle" @click="floorchange">
  5. <u-icon slot="icon" size="40" color="#fff" name="map"></u-icon>
  6. <u-icon slot="right-icon" size="40" color="#fff" name="search"></u-icon>
  7. </u-cell>
  8. </u-cell-group>
  9. <view class="topbill">
  10. <view class="topbilledit" @click="xunjianchange">
  11. <view class="changetime1">
  12. {{xjlx}}
  13. </view>
  14. <view class="changetime2">
  15. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  16. </view>
  17. </view>
  18. <view class="topbilledit" @click="typechange">
  19. <view class="changetime1">
  20. {{xjry}}
  21. </view>
  22. <view class="changetime2">
  23. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 列表 -->
  28. <!-- <t-table>
  29. <t-tr>
  30. <t-th>序号</t-th>
  31. <t-th>姓名</t-th>
  32. <t-th>年龄</t-th>
  33. <t-th>爱好</t-th>
  34. <t-th>操作</t-th>
  35. </t-tr>
  36. <t-tr v-for="item in tableList" :key="item.id">
  37. <t-td>{{ item.id + 1 }}</t-td>
  38. <t-td>{{ item.name }}</t-td>
  39. <t-td>{{ item.age }}</t-td>
  40. <t-td>{{ item.hobby }}</t-td>
  41. <t-td align="left"> <u-button @click="edit(item)" size="small" type="primary" :plain="true" text="编辑"></u-button></t-td>
  42. </t-tr>
  43. </t-table> -->
  44. <view class="u-listdata">
  45. <view style="padding:10rpx 0 0 30rpx">
  46. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  47. </view>
  48. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  49. <u-list-item v-for="(item, index) in indexList" :key="index">
  50. <view class="companylist">
  51. <h3>{{item.position}}</h3>
  52. <view class="Currentamount">
  53. 巡检类型: 安保
  54. </view>
  55. <view class="Currentamount">
  56. 巡检人员: {{item.circuitPerson.realName}}
  57. </view>
  58. <view class="Currentamount">
  59. 联系电话:¥{{item.circuitPerson.mobile}}
  60. </view>
  61. <view class="Currentamount">
  62. 巡检时间: {{item.circuitTime}}
  63. </view>
  64. </view>
  65. </u-list-item>
  66. </u-list>
  67. </view>
  68. <u-picker :show="showtypexunjian" :itemHeight="80" :columns="columnstypexunjian" keyName="dictLabel" @confirm="confirmxunjian"
  69. @cancel='cancelxunjian'>
  70. </u-picker>
  71. <u-picker :show="showtype" :itemHeight="80" :columns="columnstype" keyName="realName" @confirm="confirmtype" @cancel='canceltype'>
  72. </u-picker>
  73. <u-picker :show="showfloor" :itemHeight="80" ref="uPicker" :loading="loading" @confirm="confirmfloor" @cancel='cancelfloor'
  74. :columns="columns" keyName="orgName" @change="changeHandler"></u-picker>
  75. <u-notify ref="uNotify" :show="showdct" message="服务器请求失败"></u-notify>
  76. </view>
  77. </template>
  78. <script>
  79. // import tTable from '@/components/t-table/t-table.vue';
  80. // import tTh from '@/components/t-table/t-th.vue';
  81. // import tTr from '@/components/t-table/t-tr.vue';
  82. import cellGroup from '../../../uni_modules/uview-ui/libs/config/props/cellGroup';
  83. // import tTd from '@/components/t-table/t-td.vue';
  84. export default {
  85. components: {
  86. // tTable,
  87. // tTh,
  88. // tTr,
  89. // tTd
  90. },
  91. data() {
  92. const currentDate = this.getDate({
  93. format: 'yyyy-mm'
  94. })
  95. return {
  96. totalnumber: 0,
  97. showtypexunjian: false,
  98. setyesno: true,
  99. // tableList: [{
  100. // id: 0,
  101. // name: '张三',
  102. // age: '19',
  103. // hobby: '游泳'
  104. // },
  105. // {
  106. // id: 1,
  107. // name: '李四',
  108. // age: '21',
  109. // hobby: '绘画'
  110. // },
  111. // ],
  112. indexList: [],
  113. xjlx: '巡检类型',
  114. dataList: [],
  115. dataForm: {
  116. //projectId: "",
  117. buildingId: "",
  118. storeyId: "",
  119. circuitType: "",
  120. circuitPersonId: "",
  121. page: 1,
  122. limit: 10,
  123. },
  124. showtype: false,
  125. showdct: false,
  126. mytitle: '',
  127. alldata: [],
  128. showfloor: false,
  129. loading: false,
  130. columns: [],
  131. columnData: [],
  132. pd: true,
  133. xjry: '巡检人员',
  134. showPicker: false,
  135. myday: currentDate,
  136. columnstypexunjian: [],
  137. columnstype: [],
  138. }
  139. },
  140. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  141. onLoad() {
  142. let getDictDataList = uni.getStorageSync('getDictDataList');
  143. console.log('111111111111111111', getDictDataList)
  144. for (let i = 0; i < getDictDataList.length; i++) {
  145. if (getDictDataList[i].dictType == 'ReviewType') {
  146. let pushdata = {
  147. dictLabel: "全部",
  148. dictValue: "",
  149. }
  150. getDictDataList[i].dataList.unshift(pushdata)
  151. this.columnstypexunjian = [getDictDataList[i].dataList]
  152. }
  153. }
  154. this.getUserList();
  155. this.getfloor();
  156. // this.loadmore();
  157. },
  158. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  159. onReady() {
  160. // 微信小程序需要用此写法
  161. },
  162. //监听页面隐藏
  163. onHide() {},
  164. //监听窗口尺寸变化
  165. onResize() {},
  166. //监听页面卸载
  167. onUnload() {},
  168. //监听用户下拉动作,一般用于下拉刷新
  169. onPullDownRefresh() {},
  170. methods: {
  171. getUserList() {
  172. this.$api.get('/user/list',{ page: 1,
  173. limit: 999999,})
  174. .then(res=>{
  175. // console.log('111111111111111111',res.data.data)
  176. this.columnstype=[res.data.data]
  177. })
  178. },
  179. scrolltolower() {
  180. if (this.pd) {
  181. this.getalldata();
  182. } else {
  183. return
  184. }
  185. },
  186. xunjianchange() {
  187. this.showtypexunjian = true;
  188. },
  189. cancelxunjian() {
  190. this.showtypexunjian = false;
  191. },
  192. confirmxunjian(e) {
  193. console.log('111111111111111111',e)
  194. this.xjry = e.value[0].dictLabel;
  195. this.dataForm.circuitType = e.value[0].dictValue;
  196. this.indexList=[];
  197. this.dataForm.page = 1;
  198. this.getalldata();
  199. this.showtypexunjian = false;
  200. },
  201. getalldata() {
  202. this.$api.get('/circuitrecord/page', this.dataForm)
  203. .then(res => {
  204. this.totalnumber = res.data.data.total;
  205. // console.log('111111111111111111',res.data.data.list)
  206. if (res.data.data.list.length != 0) {
  207. this.indexList.push(...res.data.data.list);
  208. this.dataForm.page = this.dataForm.page + 1;
  209. this.pd = true;
  210. } else {
  211. uni.showToast({
  212. title: '暂无更多数据了',
  213. icon: 'none',
  214. duration: 1500
  215. })
  216. this.pd = false;
  217. //this.jfnodata=true
  218. }
  219. })
  220. },
  221. canceltype() {
  222. this.showtype = false;
  223. },
  224. confirmtype(e) {
  225. console.log('111111111111111111',e)
  226. this.showtype = false;
  227. this.xjry = e.value[0].realName;
  228. this.dataForm.circuitPersonId = e.value[0].id;
  229. this.indexList=[];
  230. this.dataForm.page = 1;
  231. this.getalldata();
  232. },
  233. typechange() {
  234. this.showtype = true;
  235. },
  236. getDate(type) {
  237. const date = new Date();
  238. let year = date.getFullYear();
  239. let month = date.getMonth() + 1;
  240. if (type === 'start') {
  241. year = year - 60;
  242. } else if (type === 'end') {
  243. year = year + 2;
  244. }
  245. month = month > 9 ? month : '0' + month;
  246. // day = day > 9 ? day : '0' + day;
  247. return `${year}-${month}`;
  248. },
  249. getfloor() {
  250. this.$api.get('/control/getOrgStructureTree/', {})
  251. .then(res => {
  252. if (res.data.code == 0) {
  253. //this.dataForm.projectId = res.data.data[0].orgId;
  254. this.mytitle = res.data.data[0].orgName;
  255. this.alldata = res.data.data[0].childrenList;
  256. //console.log('111111111111111111', res.data.data[0].childrenList)
  257. this.columns = [
  258. res.data.data[0].childrenList,
  259. res.data.data[0].childrenList[0].childrenList
  260. ]
  261. let allfloor = [];
  262. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  263. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  264. }
  265. // console.log('111111111111111111',allfloor)
  266. this.columnData = allfloor;
  267. this.indexList=[];
  268. this.dataForm.page = 1;
  269. this.getalldata();
  270. } else {
  271. this.showdct = true
  272. }
  273. })
  274. },
  275. floorchange() {
  276. this.showfloor = true;
  277. },
  278. changeHandler(e) {
  279. const {
  280. columnIndex,
  281. index,
  282. // 微信小程序无法将picker实例传出来,只能通过ref操作
  283. picker = this.$refs.uPicker
  284. } = e
  285. if (columnIndex === 0) {
  286. this.loading = true
  287. picker.setColumnValues(1, this.columnData[index])
  288. this.loading = false
  289. }
  290. // this.getalldata();
  291. },
  292. confirmfloor(e) {
  293. console.log('222222', e.value)
  294. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  295. this.dataForm.buildingId = e.value[0].orgId;
  296. this.dataForm.storeyId = e.value[1].orgId;
  297. this.showfloor = false;
  298. this.indexList=[];
  299. this.dataForm.page = 1;
  300. this.getalldata();
  301. },
  302. cancelfloor() {
  303. this.showfloor = false;
  304. },
  305. }
  306. }
  307. </script>
  308. <style lang="scss">
  309. .Currentamount {
  310. padding-left: 30rpx;
  311. height: 50rpx;
  312. line-height: 50rpx;
  313. color: #BCB3A7;
  314. span {
  315. color: #FA5555;
  316. padding-left: 9rpx;
  317. }
  318. }
  319. .Callfee {
  320. width: 100rpx;
  321. height: 45rpx;
  322. text-align: center;
  323. line-height: 45rpx;
  324. color: #5C8FFF;
  325. border: 1px solid #5C8FFF;
  326. font-size: 22rpx;
  327. position: absolute;
  328. bottom: 10rpx;
  329. right: 10px;
  330. font-weight: bold;
  331. }
  332. .companylist {
  333. margin: 20rpx 30rpx;
  334. background: #fff;
  335. height: 280rpx;
  336. border-radius: 10px;
  337. position: relative;
  338. h3 {
  339. height: 70rpx;
  340. line-height: 70rpx;
  341. padding-left: 30rpx;
  342. }
  343. }
  344. .settled {
  345. background-color: #09C700;
  346. width: 100rpx;
  347. height: 40rpx;
  348. text-align: center;
  349. line-height: 40rpx;
  350. color: #fff;
  351. font-size: 14rpx;
  352. position: absolute;
  353. top: 0px;
  354. right: 0px;
  355. border-top-right-radius: 10rpx;
  356. border-bottom-left-radius: 10rpx;
  357. }
  358. .outstanding {
  359. background-color: #FA5555;
  360. width: 100rpx;
  361. height: 40rpx;
  362. text-align: center;
  363. line-height: 40rpx;
  364. color: #fff;
  365. font-size: 14rpx;
  366. position: absolute;
  367. top: 0px;
  368. right: 0px;
  369. border-top-right-radius: 10rpx;
  370. border-bottom-left-radius: 10rpx;
  371. }
  372. .billall {}
  373. .topbill {
  374. display: flex;
  375. justify-content: space-around;
  376. align-items: center;
  377. height: 100rpx;
  378. background-color: #e6e6e6;
  379. }
  380. .topbilledit {
  381. display: flex;
  382. justify-content: space-around;
  383. align-items: center;
  384. }
  385. .changetime1 {
  386. padding-right: 10rpx;
  387. }
  388. </style>