Toberepaired.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <view class="OutermostLayer">
  3. <h3 class="baoxiu">报修信息</h3>
  4. <u-cell-group>
  5. <u-cell icon="integral-fill" title="报修时间" :value="details.shijian" >
  6. <u-icon slot="icon" size="40" name="calendar"></u-icon>
  7. </u-cell>
  8. <u-cell icon="integral-fill" title="报修位置" :value="details.weizhi" >
  9. <u-icon slot="icon" size="40" name="map"></u-icon>
  10. </u-cell>
  11. <u-cell icon="integral-fill" title="报修区域" :value="details.quyu" >
  12. <u-icon slot="icon" size="40" name="grid"></u-icon>
  13. </u-cell>
  14. <u-cell icon="integral-fill" title="报修类型" :value="details.leixing" >
  15. <u-icon slot="icon" size="40" name="pushpin"></u-icon>
  16. </u-cell>
  17. <u-cell icon="integral-fill" title="联系人" :value="details.lxr" >
  18. <u-icon slot="icon" size="40" name="man-add"></u-icon>
  19. </u-cell>
  20. <u-cell icon="integral-fill" title="联系电话" :value="details.lxdh">
  21. <u-icon slot="icon" size="40" name="phone"></u-icon>
  22. </u-cell>
  23. <u-cell icon="integral-fill" title="故障描述" :value="details.gzms" >
  24. <u-icon slot="icon" size="40" name="order"></u-icon>
  25. </u-cell>
  26. <u-cell icon="integral-fill" title="故障照片" >
  27. <u-icon slot="icon" size="40" name="photo"></u-icon>
  28. <view
  29. slot="title"
  30. class="guzhang"
  31. >
  32. <view class="">
  33. 故障照片
  34. </view>
  35. <view class="albumcontent">
  36. <u-album :urls="details.gzimg"></u-album>
  37. </view>
  38. </view>
  39. </u-cell>
  40. </u-cell-group>
  41. <h3 class="baoxiu">维修信息</h3>
  42. <u-cell-group>
  43. <u-cell icon="integral-fill" title="紧急程度" :value="details.jinji" >
  44. <u-icon slot="icon" size="40" name="bell"></u-icon>
  45. </u-cell>
  46. <u-cell icon="integral-fill" title="维修人员" :value="details.weixiury" >
  47. <u-icon slot="icon" size="40" name="man-add"></u-icon>
  48. </u-cell>
  49. <u-cell icon="integral-fill" title="联系电话" :value="details.weixiudh" >
  50. <u-icon slot="icon" size="40" name="phone"></u-icon>
  51. </u-cell>
  52. </u-cell-group>
  53. <view class="returndata">
  54. <view v-if="$has('app:MaintenanceCompleted')">
  55. <u-button type="primary" text="维修完成" @click="returndata"></u-button>
  56. </view>
  57. <!--<view class="Maintenancepersonnel">-->
  58. <!--<u-button type="primary" text="指派维修人员" @click="Maintenancepersonnel"></u-button>-->
  59. <!--</view>-->
  60. </view>
  61. <!--确定弹窗-->
  62. <u-modal :show="showqd" title="提示" content='请问是否确定维修完成?' :showCancelButton="true"
  63. @confirm="weixiuyes" @cancel="weixiuno"
  64. ></u-modal>
  65. <u-notify ref="uNotify" message="" ></u-notify>
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. data() {
  71. return {
  72. columnsrenyuan:[],
  73. columnsrenjinji:[],
  74. model1: {
  75. userInfo: {
  76. repairPersonId: '',
  77. urgency:'',
  78. },
  79. },
  80. rules: {
  81. 'userInfo.repairPersonId': {
  82. type: 'string',
  83. required: true,
  84. message: '请选择维修人员',
  85. trigger: ['blur', 'change']
  86. },
  87. 'userInfo.urgency': {
  88. type: 'string',
  89. required: true,
  90. message: '请选择紧急程度',
  91. trigger: ['blur', 'change']
  92. },
  93. },
  94. showjinji:false,
  95. showSex:false,
  96. showqd:false,
  97. showweixiu:false,
  98. companyOrgId:'',
  99. renyuanid:'',
  100. jjcd:'',
  101. src: 'https://cdn.uviewui.com/uview/album/1.jpg',
  102. details:{
  103. shijian:'',
  104. weizhi:'',
  105. quyu:'',
  106. leixing:'',
  107. lxr:'',
  108. lxdh:'',
  109. gzms:'',
  110. gzimg:[],
  111. jinji:'',
  112. weixiury:'',
  113. weixiudh:''
  114. },
  115. albumWidth: 0,
  116. }
  117. },
  118. onReady() {
  119. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  120. //this.$refs.uForm.setRules(this.rules)
  121. },
  122. onLoad(options) {
  123. this.companyOrgId = options.id;
  124. // console.log(options.id);
  125. // let getDictDataList = uni.getStorageSync('getDictDataList');
  126. this.getUserList();
  127. this.getdata();
  128. },
  129. methods: {
  130. getUserList() {
  131. this.$api.get('/user/list',{ page: 1,
  132. limit: 100,})
  133. .then(res=>{
  134. // console.log('111111111111111111',res.data.data)
  135. this.columnsrenyuan=res.data.data;
  136. })
  137. },
  138. getdata(){
  139. this.$api.get('/repairorder/'+this.companyOrgId,{})
  140. .then(res=>{
  141. this.details.shijian=res.data.data.createDate;
  142. this.details.weizhi=res.data.data.repairPosition;
  143. this.details.lxr=res.data.data.contactPerson;
  144. this.details.lxdh=res.data.data.contactPhone;
  145. this.details.gzms=res.data.data.faultDes;
  146. this.details.weixiury=res.data.data.repairPersonName;
  147. res.data.data.faultPics=res.data.data.faultPics.split(",");
  148. this.details.gzimg=res.data.data.faultPics;
  149. // console.log('111111111111111111', this.details.gzimg)
  150. if(res.data.data.repairRegion==1){
  151. this.details.quyu='公共区域';
  152. }else if(res.data.data.repairRegion==2){
  153. this.details.quyu='室内';
  154. }
  155. if(res.data.data.repairType==1){
  156. this.details.leixing='水';
  157. }else if(res.data.data.repairType==2){
  158. this.details.leixing='电';
  159. }else if(res.data.data.repairType==3){
  160. this.details.leixing='其他';
  161. }
  162. if(res.data.data.urgency==1){
  163. this.details.jinji='非常紧急';
  164. }else if(res.data.data.urgency==2){
  165. this.details.jinji='紧急';
  166. }else if(res.data.data.urgency==3){
  167. this.details.jinji='普通';
  168. }
  169. for(let i=0;i<this.columnsrenyuan.length;i++){
  170. if(this.columnsrenyuan[i].id==res.data.data.repairPersonId){
  171. console.log('111111111111111111',this.columnsrenyuan[i])
  172. this.details.weixiudh=this.columnsrenyuan[i].mobile
  173. }
  174. }
  175. })
  176. },
  177. quxiao(){
  178. this.showweixiu=false;
  179. },
  180. queding(){
  181. this.$refs.uForm.validate().then(res => {
  182. // uni.$u.toast('校验通过')
  183. // jjcd renyuanid companyOrgId
  184. //console.log('111111111111111111',this.jjcd,this.renyuanid,this.companyOrgId)
  185. this.$api.put('/repairorder',{
  186. id: this.companyOrgId,
  187. repairPersonId: this.renyuanid,
  188. urgency: this.jjcd,
  189. })
  190. .then(res=>{
  191. //console.log('111111111111111111',res)
  192. if(res.data.code==0){
  193. this.$refs.uNotify.success('指派成功')
  194. setTimeout(function(){uni.navigateTo({
  195. url: '/pages/index/Workordertodone/Workordertodone'
  196. })},1000);
  197. }else{
  198. this.$refs.uNotify.error(res.data.msg)
  199. // uni.navigateBack({
  200. // delta: 1
  201. // });
  202. }
  203. })
  204. }).catch(errors => {
  205. uni.$u.toast('校验失败')
  206. })
  207. },
  208. returndata(){
  209. this.showqd=true;
  210. },
  211. weixiuyes(){
  212. this.$api.post('/repairorder/finish/'+this.companyOrgId,{})
  213. .then(res=>{
  214. //console.log('111111111111111111',res)
  215. if(res.data.code==0){
  216. this.$refs.uNotify.success('维修成功')
  217. setTimeout(function(){uni.navigateTo({
  218. url: '/pages/index/Workordertodone/Workordertodone'
  219. })},1000);
  220. }else{
  221. this.$refs.uNotify.error(res.data.msg)
  222. }
  223. })
  224. this.showqd=false;
  225. },
  226. weixiuno(){
  227. this.showqd=false;
  228. },
  229. }
  230. }
  231. </script>
  232. <style lang="scss">
  233. .guidang{
  234. display: flex;
  235. align-items: center;
  236. justify-content: space-around;
  237. margin-top: 80rpx;
  238. }
  239. .queding{
  240. width: 300rpx;
  241. }
  242. .baoxiu{
  243. padding: 30rpx;
  244. }
  245. .albumcontent{
  246. display: flex;
  247. .u-album{
  248. display: flex;
  249. flex-direction: row;
  250. flex-wrap: wrap;
  251. }
  252. }
  253. .guzhang{
  254. display: flex;
  255. justify-content: space-between;
  256. align-items: center;
  257. }
  258. .returndata{
  259. padding: 30rpx;
  260. }
  261. .Maintenancepersonnel{
  262. margin-top: 15rpx;
  263. }
  264. .weixiudc{
  265. width: 750rpx;
  266. height: 450rpx;
  267. h3{
  268. font-size: 30rpx;
  269. font-weight: bold;
  270. width: 750rpx;
  271. height: 80rpx;
  272. line-height: 80rpx;
  273. text-align: center;
  274. }
  275. }
  276. </style>