details.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view>
  3. <u-navbar
  4. :title="title"
  5. title-color="#fff"
  6. :custom-back="customBack"
  7. :border-bottom="false"
  8. back-icon-color="#CCE8FF"
  9. :background="{background: 'linear-gradient(99deg, #7A4398 0%, #5A5DB9 100%)' }"></u-navbar>
  10. <view class="base-info">
  11. <view class="base-info-item u-flex u-row-between">
  12. <view class=""><b>路段/停车场:</b>{{pageData.roadName}}</view>
  13. </view>
  14. <view class="base-info-item">
  15. <view class=""><b>问题描述:</b>{{pageData.exceprionDes}}</view>
  16. </view>
  17. <view class="base-info-item">
  18. <view class=""><b>处理过程:</b>{{pageData.processDes}}</view>
  19. </view>
  20. <view class="base-info-item">
  21. <view class="">
  22. <b>图片:</b>
  23. <view class="img-list">
  24. <image class="img" v-for="(item,index) in pageData.imgList" @click="previewImage(index)" :src="item" mode="widthFix" :key="index"></image>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default{
  34. data(){
  35. return{
  36. title:'应急处置登记',
  37. pageData:[],
  38. id:'',
  39. dataList:[],
  40. }
  41. },
  42. onLoad(page){
  43. this.id = page.id;
  44. },
  45. onShow(){
  46. this.getReportDetail();
  47. },
  48. mounted() {
  49. },
  50. onReady() {
  51. // this.$refs.uForm.setRules(this.rules);
  52. },
  53. methods:{
  54. customBack(){
  55. uni.navigateBack()
  56. },
  57. getReportDetail(){
  58. this.$u.api.reportDetail({id:this.id}).then(res=>{
  59. if(res.code==200){
  60. this.pageData = res.data;
  61. // console.log('reportDetail',res);
  62. }else{
  63. uni.showToast({
  64. icon:'none',
  65. title:res.msg
  66. })
  67. }
  68. console.log('res',res);
  69. }).catch(err=>{
  70. console.log('err',err);
  71. })
  72. },
  73. previewImage(index){
  74. uni.previewImage({
  75. current: index,
  76. urls: this.pageData.imgList
  77. });
  78. }
  79. }
  80. }
  81. </script>
  82. <style>
  83. page{background: #F3F3F3;}
  84. </style>
  85. <style lang="scss" scoped>
  86. @import '../report.scss'
  87. </style>