Workordertodone.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. <template>
  2. <view class="">
  3. <view class="" style="width: 750rpx;height: 50rpx;">
  4. </view>
  5. <view class="topname">
  6. <view class="topname1" @click="goback">
  7. <u-icon name="arrow-left" color="#000000" size="36"></u-icon>
  8. </view>
  9. <view class="topname2">
  10. 报修工单
  11. </view>
  12. </view>
  13. <view class="subsection">
  14. <u-subsection :list="list" fontSize="30rpx" :current="current" @change="sectionChange"></u-subsection>
  15. </view>
  16. <!-- 待指派 -->
  17. <view class="" v-show="cdshow==0">
  18. <view style="padding:20rpx 0 0 30rpx">
  19. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  20. </view>
  21. <view class="u-listdata" >
  22. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  23. <u-list-item v-for="(item, index) in indexList" :key="index">
  24. <view class="paisong" @click="Workorderdetails1(item)">
  25. <h3>{{item.repairPosition}}</h3>
  26. <view class="Currentamount1" v-if='item.repairType==1'>
  27. 报修类型: 水
  28. </view>
  29. <view class="Currentamount1" v-if='item.repairType==2'>
  30. 报修类型: 电
  31. </view>
  32. <view class="Currentamount1" v-if='item.repairType==3'>
  33. 报修类型: 其他
  34. </view>
  35. <view class="Currentamount1">
  36. 报修时间: {{item.createDate}}
  37. </view>
  38. </view>
  39. </u-list-item>
  40. </u-list>
  41. </view>
  42. </view>
  43. <!-- 已派送(待维修) -->
  44. <view class="" v-show="cdshow==1">
  45. <!-- 列表 -->
  46. <view class="u-listdata" >
  47. <view style="padding:20rpx 0 0 30rpx">
  48. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  49. </view>
  50. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  51. <u-list-item v-for="(item, index) in indexList" :key="index">
  52. <view class="paisong" @click="Workorderdetails2(item)">
  53. <view class="settled1" v-if="item.urgency==1">
  54. 非常紧急
  55. </view>
  56. <view class="settled2" v-if="item.urgency==2">
  57. 紧急
  58. </view>
  59. <view class="settled3" v-if="item.urgency==3">
  60. 普通
  61. </view>
  62. <h3>{{item.repairPosition}}</h3>
  63. <view class="Currentamount1" v-if='item.repairType==1'>
  64. 报修类型: 水
  65. </view>
  66. <view class="Currentamount1" v-if='item.repairType==2'>
  67. 报修类型: 电
  68. </view>
  69. <view class="Currentamount1" v-if='item.repairType==3'>
  70. 报修类型: 其他
  71. </view>
  72. <view class="Currentamount1">
  73. 派送时间:{{ item.updateDate }}
  74. </view>
  75. </view>
  76. </u-list-item>
  77. </u-list>
  78. </view>
  79. </view>
  80. <!--已维修 -->
  81. <view class="" v-show="cdshow==2">
  82. <!-- 列表 -->
  83. <view class="u-listdata" >
  84. <view style="padding:20rpx 0 0 30rpx">
  85. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  86. </view>
  87. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  88. <u-list-item v-for="(item, index) in indexList" :key="index">
  89. <view class="paisong" @click="Workorderdetails3(item)">
  90. <view class="settled1" v-if="item.urgency==1">
  91. 非常紧急
  92. </view>
  93. <view class="settled2" v-if="item.urgency==2">
  94. 紧急
  95. </view>
  96. <view class="settled3" v-if="item.urgency==3">
  97. 普通
  98. </view>
  99. <h3>{{item.repairPosition}}</h3>
  100. <view class="Currentamount1" v-if='item.repairType==1'>
  101. 报修类型: 水
  102. </view>
  103. <view class="Currentamount1" v-if='item.repairType==2'>
  104. 报修类型: 电
  105. </view>
  106. <view class="Currentamount1" v-if='item.repairType==3'>
  107. 报修类型: 其他
  108. </view>
  109. <view class="Currentamount1">
  110. 维修完成时间:{{ item.repairFinishTime }}
  111. </view>
  112. </view>
  113. </u-list-item>
  114. </u-list>
  115. </view>
  116. </view>
  117. </view>
  118. </template>
  119. <script>
  120. // import { isEmpty, getDictDataList } from "@/utils/index";
  121. export default {
  122. name:'Workordertodone',
  123. data() {
  124. return {
  125. totalnumber:0,
  126. jfnodata:false,
  127. showtype: false,
  128. cdshow: 0,
  129. fatherparameter: {},
  130. expensedata:'全部',
  131. list: [],
  132. gly:true,
  133. current: 0,
  134. dataForm: {
  135. status: "1",
  136. page: 1,
  137. limit: 10,
  138. },
  139. indexList: [],
  140. payStatusList: [],
  141. nodata:true,
  142. pd:true,
  143. columnstype: [],
  144. repairTypeList:[],
  145. UrgencyTypelist:[],
  146. }
  147. },
  148. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  149. onLoad: function(options) { //option为object类型,会序列化上个页面传递的参数
  150. let permissions = uni.getStorageSync('ButtonPermissions');
  151. let isHave = permissions.includes('app:Tobeassigned');
  152. this.gly=permissions.includes('app:Tobeassigned');
  153. // console.log('2222',isHave)
  154. if(isHave){
  155. this.list= ['待指派', '已指派(待维修)','已维修' ];
  156. this.cdshow = 0;
  157. this.indexList=[];
  158. this.dataForm.page = 1;
  159. this.dataForm.status = 1;
  160. this.getpaisongdata();
  161. }else{
  162. this.list= [ '已指派(待维修)','已维修' ];
  163. this.cdshow = 1;
  164. this.indexList=[];
  165. this.dataForm.page = 1;
  166. this.dataForm.status = 2;
  167. this.getpaisongdata();
  168. }
  169. //this.getRepairTypeList();
  170. // this.getpaisongdata();
  171. },
  172. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  173. onReady() {},
  174. //监听页面隐藏
  175. onHide() {},
  176. //监听窗口尺寸变化
  177. onResize() {},
  178. //监听页面卸载
  179. onUnload() {},
  180. //监听用户下拉动作,一般用于下拉刷新
  181. onPullDownRefresh() {},
  182. methods: {
  183. getRepairTypeList() {
  184. // console.log('9999', getDictDataList("UrgencyType"))
  185. // this.UrgencyTypelist=getDictDataList("UrgencyType");
  186. // console.log('888', getDictDataList("RepairType"))
  187. // this.repairTypeList = getDictDataList("RepairType");
  188. },
  189. Workorderdetails1(e){
  190. // console.log('111111111111111111',e)
  191. uni.navigateTo({
  192. url: `/pages/index/Workordertodone/Workorderdetails/Workorderdetails?id=${e.id}`
  193. });
  194. },
  195. Workorderdetails2(e){
  196. // console.log('111111111111111111',e)
  197. uni.navigateTo({
  198. url: `/pages/index/Workordertodone/Toberepaired/Toberepaired?id=${e.id}`
  199. });
  200. },
  201. Workorderdetails3(e){
  202. // console.log('111111111111111111',e)
  203. uni.navigateTo({
  204. url: `/pages/index/Workordertodone/hasrepaired/hasrepaired?id=${e.id}`
  205. });
  206. },
  207. sectionChange(index) {
  208. //this.gly
  209. console.log('111111111111111111',index)
  210. if(this.gly){
  211. this.current = index;
  212. if (index == 0) {
  213. this.cdshow = 0;
  214. this.indexList=[];
  215. this.dataForm.page = 1;
  216. this.dataForm.status = 1;
  217. this.getpaisongdata();
  218. } else if(index == 1) {
  219. this.cdshow = 1;
  220. this.indexList=[];
  221. this.dataForm.page = 1;
  222. this.dataForm.status = 2;
  223. this.getpaisongdata();
  224. } else if(index == 2) {
  225. this.cdshow = 2;
  226. this.indexList=[];
  227. this.dataForm.page = 1;
  228. this.dataForm.status = 3;
  229. this.getpaisongdata();
  230. }
  231. }else{
  232. this.current = index;
  233. if (index == 0) {
  234. this.cdshow = 1;
  235. this.indexList=[];
  236. this.dataForm.page = 1;
  237. this.dataForm.status = 2;
  238. this.getpaisongdata();
  239. } else if(index == 1) {
  240. this.cdshow = 2;
  241. this.indexList=[];
  242. this.dataForm.page = 1;
  243. this.dataForm.status = 3;
  244. this.getpaisongdata();
  245. }
  246. }
  247. },
  248. scrolltolower() {
  249. if(this.pd){
  250. this.getpaisongdata();
  251. }else{
  252. return
  253. }
  254. },
  255. // dict_filter(val, list) {
  256. // if (isEmpty(val)) {
  257. // return {};
  258. // }
  259. // return this[list].find((item) => item.dictValue == val);
  260. // },
  261. getpaisongdata(){
  262. this.$api.get('/repairorder/page', this.dataForm)
  263. .then(res => {
  264. this.totalnumber=res.data.data.total;
  265. if (res.data.data.list.length != 0) {
  266. this.indexList.push(...res.data.data.list);
  267. this.dataForm.page = this.dataForm.page + 1;
  268. this.pd=true;
  269. this.jfnodata=false;
  270. } else {
  271. uni.showToast({
  272. title:'暂无更多数据了',
  273. icon: 'none',
  274. duration: 1500
  275. })
  276. this.pd=false;
  277. //this.jfnodata=true
  278. }
  279. })
  280. },
  281. goback() {
  282. uni.navigateTo({
  283. url: '/pages/index/index'
  284. })
  285. },
  286. }
  287. }
  288. </script>
  289. <style lang="scss">
  290. .topname {
  291. height: 44px;
  292. width: 750rpx;
  293. display: flex;
  294. align-items: center;
  295. }
  296. .topname1 {
  297. width: 50rpx;
  298. padding-left: 10rpx;
  299. }
  300. .topname2 {
  301. width: 700rpx;
  302. text-align: center;
  303. font-weight: bold;
  304. }
  305. .nodata{
  306. text-align: center;
  307. padding-top: 400rpx;
  308. }
  309. .paisong{
  310. display: flex;
  311. flex-direction: column;
  312. justify-content:center;
  313. height:170rpx;
  314. background-color: #fff;
  315. margin: 30rpx;
  316. border-radius: 9rpx;
  317. position: relative;
  318. h3 {
  319. height: 70rpx;
  320. line-height: 70rpx;
  321. padding-left: 30rpx;
  322. }
  323. }
  324. .companylist {
  325. margin: 20rpx 30rpx;
  326. background: #fff;
  327. height: 280rpx;
  328. border-radius: 10px;
  329. position: relative;
  330. h3 {
  331. height: 70rpx;
  332. line-height: 70rpx;
  333. padding-left: 30rpx;
  334. }
  335. }
  336. .settled1 {
  337. background-color: #ED3A25;
  338. width: 100rpx;
  339. height: 40rpx;
  340. text-align: center;
  341. line-height: 40rpx;
  342. color: #fff;
  343. font-size: 14rpx;
  344. position: absolute;
  345. top: 0px;
  346. right: 0px;
  347. border-top-right-radius: 10rpx;
  348. border-bottom-left-radius: 10rpx;
  349. }
  350. .settled2 {
  351. background-color: #FF9C27;
  352. width: 100rpx;
  353. height: 40rpx;
  354. text-align: center;
  355. line-height: 40rpx;
  356. color: #fff;
  357. font-size: 14rpx;
  358. position: absolute;
  359. top: 0px;
  360. right: 0px;
  361. border-top-right-radius: 10rpx;
  362. border-bottom-left-radius: 10rpx;
  363. }
  364. .settled3 {
  365. background-color: #30D3A2;
  366. width: 100rpx;
  367. height: 40rpx;
  368. text-align: center;
  369. line-height: 40rpx;
  370. color: #fff;
  371. font-size: 14rpx;
  372. position: absolute;
  373. top: 0px;
  374. right: 0px;
  375. border-top-right-radius: 10rpx;
  376. border-bottom-left-radius: 10rpx;
  377. }
  378. .Currentamount {
  379. padding-left: 30rpx;
  380. height: 50rpx;
  381. line-height: 50rpx;
  382. color: #BCB3A7;
  383. span {
  384. color: #FA5555;
  385. padding-left: 9rpx;
  386. }
  387. }
  388. .Currentamount1 {
  389. padding-left: 30rpx;
  390. height: 40rpx;
  391. line-height: 40rpx;
  392. color: #BCB3A7;
  393. span {
  394. color: #FA5555;
  395. padding-left: 9rpx;
  396. }
  397. }
  398. .records1{
  399. background-color: #FA5555;
  400. width: 100rpx;
  401. height: 40rpx;
  402. text-align: center;
  403. line-height: 40rpx;
  404. color: #fff;
  405. font-size: 14rpx;
  406. position: absolute;
  407. top: 0px;
  408. right: 0px;
  409. border-top-right-radius: 10rpx;
  410. border-bottom-left-radius: 10rpx;
  411. }
  412. .records{
  413. display: flex;
  414. flex-direction: column;
  415. // justify-content: center;
  416. position: relative;
  417. width: 690rpx;
  418. height: 210rpx;
  419. background: #fff;
  420. margin: 0 auto;
  421. border-radius: 9rpx;
  422. }
  423. .onerecord{
  424. width: 750rpx;
  425. height: 90rpx;
  426. line-height: 90rpx;
  427. padding-left: 30rpx;
  428. color: #999;
  429. span{
  430. color: red;
  431. }
  432. }
  433. .topbilledit {
  434. display: flex;
  435. justify-content: center;
  436. align-items: center;
  437. background: #fff;
  438. height: 60rpx;
  439. }
  440. .changetime2 {
  441. padding-left: 10rpx;
  442. }
  443. .subsection {
  444. padding: 30rpx;
  445. background: #fff;
  446. }
  447. .topname {
  448. height: 44px;
  449. width: 750rpx;
  450. display: flex;
  451. align-items: center;
  452. }
  453. .topname1 {
  454. width: 50rpx;
  455. padding-left: 10rpx;
  456. }
  457. .topname2 {
  458. width: 700rpx;
  459. text-align: center;
  460. font-weight: bold;
  461. }
  462. </style>