Inspectionrecord.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  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" :columns="columnstypexunjian" keyName="dictLabel" @confirm="confirmxunjian"
  69. @cancel='cancelxunjian'>
  70. </u-picker>
  71. <u-picker :show="showtype" :columns="columnstype" keyName="realName" @confirm="confirmtype" @cancel='canceltype'>
  72. </u-picker>
  73. <u-picker :show="showfloor" 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. cycle: "",
  121. //status: "",
  122. page: 1,
  123. limit: 10,
  124. },
  125. showtype: false,
  126. showdct: false,
  127. mytitle: '',
  128. alldata: [],
  129. showfloor: false,
  130. loading: false,
  131. columns: [],
  132. columnData: [],
  133. pd: true,
  134. xjry: '巡检人员',
  135. showPicker: false,
  136. myday: currentDate,
  137. columnstypexunjian: [],
  138. columnstype: [],
  139. }
  140. },
  141. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  142. onLoad() {
  143. let getDictDataList = uni.getStorageSync('getDictDataList');
  144. console.log('111111111111111111', getDictDataList)
  145. for (let i = 0; i < getDictDataList.length; i++) {
  146. if (getDictDataList[i].dictType == 'ReviewType') {
  147. let pushdata = {
  148. dictLabel: "全部",
  149. dictValue: "",
  150. }
  151. getDictDataList[i].dataList.unshift(pushdata)
  152. this.columnstypexunjian = [getDictDataList[i].dataList]
  153. }
  154. }
  155. this.getUserList();
  156. this.getfloor();
  157. // this.loadmore();
  158. },
  159. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  160. onReady() {
  161. // 微信小程序需要用此写法
  162. },
  163. //监听页面隐藏
  164. onHide() {},
  165. //监听窗口尺寸变化
  166. onResize() {},
  167. //监听页面卸载
  168. onUnload() {},
  169. //监听用户下拉动作,一般用于下拉刷新
  170. onPullDownRefresh() {},
  171. methods: {
  172. getUserList() {
  173. this.$api.get('/user/list',{ page: 1,
  174. limit: 100,})
  175. .then(res=>{
  176. // console.log('111111111111111111',res.data.data)
  177. this.columnstype=[res.data.data]
  178. })
  179. },
  180. scrolltolower() {
  181. if (this.pd) {
  182. this.getalldata();
  183. } else {
  184. return
  185. }
  186. },
  187. xunjianchange() {
  188. this.showtypexunjian = true;
  189. },
  190. cancelxunjian() {
  191. this.showtypexunjian = false;
  192. },
  193. confirmxunjian(e) {
  194. console.log('111111111111111111',e)
  195. this.xjlx = e.value[0].dictLabel;
  196. this.dataForm.circuitType = e.value[0].dictValue;
  197. this.indexList=[];
  198. this.dataForm.page = 1;
  199. this.getalldata();
  200. this.showtypexunjian = false;
  201. },
  202. getalldata() {
  203. this.$api.get('/circuitrecord/page', this.dataForm)
  204. .then(res => {
  205. this.totalnumber = res.data.data.total;
  206. // console.log('111111111111111111',res.data.data.list)
  207. if (res.data.data.list.length != 0) {
  208. this.indexList.push(...res.data.data.list);
  209. this.dataForm.page = this.dataForm.page + 1;
  210. this.pd = true;
  211. } else {
  212. uni.showToast({
  213. title: '暂无更多数据了',
  214. icon: 'none',
  215. duration: 1500
  216. })
  217. this.pd = false;
  218. //this.jfnodata=true
  219. }
  220. })
  221. },
  222. canceltype() {
  223. this.showtype = false;
  224. },
  225. confirmtype(e) {
  226. this.showtype = false;
  227. this.xjry = e.value[0].label;
  228. this.dataForm.cycle = e.value[0].id;
  229. this.indexList=[];
  230. this.dataForm.page = 1;
  231. this.getalldata();
  232. },
  233. typechange() {
  234. this.showtype = true;
  235. },
  236. dateChange(e) {
  237. this.myday = e.target.value;
  238. this.dataForm.cycle = e.target.value;
  239. this.indexList=[];
  240. this.dataForm.page = 1;
  241. this.getalldata();
  242. },
  243. getDate(type) {
  244. const date = new Date();
  245. let year = date.getFullYear();
  246. let month = date.getMonth() + 1;
  247. if (type === 'start') {
  248. year = year - 60;
  249. } else if (type === 'end') {
  250. year = year + 2;
  251. }
  252. month = month > 9 ? month : '0' + month;
  253. // day = day > 9 ? day : '0' + day;
  254. return `${year}-${month}`;
  255. },
  256. getfloor() {
  257. this.$api.get('/control/getOrgStructureTree/', {})
  258. .then(res => {
  259. if (res.data.code == 0) {
  260. this.dataForm.projectId = res.data.data[0].orgId;
  261. this.mytitle = res.data.data[0].orgName;
  262. this.alldata = res.data.data[0].childrenList;
  263. //console.log('111111111111111111', res.data.data[0].childrenList)
  264. this.columns = [
  265. res.data.data[0].childrenList,
  266. res.data.data[0].childrenList[0].childrenList
  267. ]
  268. let allfloor = [];
  269. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  270. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  271. }
  272. // console.log('111111111111111111',allfloor)
  273. this.columnData = allfloor;
  274. this.indexList=[];
  275. this.dataForm.page = 1;
  276. this.getalldata();
  277. } else {
  278. this.showdct = true
  279. }
  280. })
  281. },
  282. floorchange() {
  283. this.showfloor = true;
  284. },
  285. changeHandler(e) {
  286. const {
  287. columnIndex,
  288. index,
  289. // 微信小程序无法将picker实例传出来,只能通过ref操作
  290. picker = this.$refs.uPicker
  291. } = e
  292. if (columnIndex === 0) {
  293. this.loading = true
  294. picker.setColumnValues(1, this.columnData[index])
  295. this.loading = false
  296. }
  297. // this.getalldata();
  298. },
  299. confirmfloor(e) {
  300. console.log('222222', e.value)
  301. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  302. this.dataForm.buildingId = e.value[0].orgId;
  303. this.dataForm.storeyId = e.value[1].orgId;
  304. this.showfloor = false;
  305. this.indexList=[];
  306. this.dataForm.page = 1;
  307. this.getalldata();
  308. },
  309. cancelfloor() {
  310. this.showfloor = false;
  311. },
  312. }
  313. }
  314. </script>
  315. <style lang="scss">
  316. .Currentamount {
  317. padding-left: 30rpx;
  318. height: 50rpx;
  319. line-height: 50rpx;
  320. color: #BCB3A7;
  321. span {
  322. color: #FA5555;
  323. padding-left: 9rpx;
  324. }
  325. }
  326. .Callfee {
  327. width: 100rpx;
  328. height: 45rpx;
  329. text-align: center;
  330. line-height: 45rpx;
  331. color: #5C8FFF;
  332. border: 1px solid #5C8FFF;
  333. font-size: 22rpx;
  334. position: absolute;
  335. bottom: 10rpx;
  336. right: 10px;
  337. font-weight: bold;
  338. }
  339. .companylist {
  340. margin: 20rpx 30rpx;
  341. background: #fff;
  342. height: 280rpx;
  343. border-radius: 10px;
  344. position: relative;
  345. h3 {
  346. height: 70rpx;
  347. line-height: 70rpx;
  348. padding-left: 30rpx;
  349. }
  350. }
  351. .settled {
  352. background-color: #09C700;
  353. width: 100rpx;
  354. height: 40rpx;
  355. text-align: center;
  356. line-height: 40rpx;
  357. color: #fff;
  358. font-size: 14rpx;
  359. position: absolute;
  360. top: 0px;
  361. right: 0px;
  362. border-top-right-radius: 10rpx;
  363. border-bottom-left-radius: 10rpx;
  364. }
  365. .outstanding {
  366. background-color: #FA5555;
  367. width: 100rpx;
  368. height: 40rpx;
  369. text-align: center;
  370. line-height: 40rpx;
  371. color: #fff;
  372. font-size: 14rpx;
  373. position: absolute;
  374. top: 0px;
  375. right: 0px;
  376. border-top-right-radius: 10rpx;
  377. border-bottom-left-radius: 10rpx;
  378. }
  379. .billall {}
  380. .topbill {
  381. display: flex;
  382. justify-content: space-around;
  383. align-items: center;
  384. height: 100rpx;
  385. background-color: #e6e6e6;
  386. }
  387. .topbilledit {
  388. display: flex;
  389. justify-content: space-around;
  390. align-items: center;
  391. }
  392. .changetime1 {
  393. padding-right: 10rpx;
  394. }
  395. </style>