report.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="f-padding">
  3. <u-navbar
  4. :title="title"
  5. title-color="#fff"
  6. :border-bottom="false"
  7. :custom-back="customBack"
  8. back-icon-color="#CCE8FF"
  9. :background="{background: 'linear-gradient(99deg, #7A4398 0%, #5A5DB9 100%)' }"></u-navbar>
  10. <u-form :model="form" ref="uForm">
  11. <u-form-item label="路段/停车场:" prop="roadName" required :label-width="labelWidth">
  12. <u-input v-model="form.roadName" type="select" :border="true" placeholder="请选择" @click="selectShow = true" />
  13. <u-select v-model="selectShow" :list="roadList" value-name="roadNo" label-name="roadName" @confirm="selectConfirm"></u-select>
  14. </u-form-item>
  15. <u-form-item label="维修内容" prop="exceprionDes" required :label-width="labelWidth">
  16. <u-input type="textarea" :border="true" maxlength="200" v-model="form.exceprionDes" />
  17. </u-form-item>
  18. <u-form-item label="图片说明" :label-width="labelWidth" :border-bottom="false">
  19. <u-upload ref="uploadRef" :action="action" max-count="5"></u-upload>
  20. </u-form-item>
  21. </u-form>
  22. <u-button type="primary" @click="submit" style="margin-top: 20vh;">提交</u-button>
  23. </view>
  24. </template>
  25. <script>
  26. export default{
  27. data(){
  28. return{
  29. title:'问题上报',
  30. labelWidth:190,
  31. action:this.config.upFileUrl,
  32. selectShow:false,
  33. selectList:[],
  34. roadList:[],
  35. form:{
  36. roadName:'',
  37. roadNo:'',
  38. exceprionDes:'',
  39. imgList:[]
  40. },
  41. rules:{
  42. roadName: [
  43. {
  44. required: true,
  45. message: '请选择路段',
  46. trigger: ['change','blur'],
  47. }
  48. ],
  49. exceprionDes: [
  50. {
  51. required: true,
  52. message: '请输入姓名',
  53. trigger: ['change','blur'],
  54. }
  55. ],
  56. }
  57. }
  58. },
  59. onLoad(){
  60. },
  61. onShow(){
  62. this.getRoadAllList();
  63. },
  64. onReady() {
  65. this.$refs.uForm.setRules(this.rules);
  66. },
  67. methods:{
  68. customBack(){
  69. uni.reLaunch({
  70. url: '/pages/index/index'
  71. });
  72. },
  73. getRoadAllList(){
  74. this.$u.api.getRoadAllList().then(res=>{
  75. if(res.code==200){
  76. this.roadList = res.data;
  77. // console.log('getDeviceStatis',res);
  78. }else{
  79. uni.showToast({
  80. icon:'none',
  81. title:res.msg
  82. })
  83. }
  84. console.log('res',res);
  85. }).catch(err=>{
  86. console.log('err',err);
  87. })
  88. },
  89. selectConfirm(e){
  90. // console.log('e',e);
  91. this.form.roadNo = e[0].value;
  92. this.form.roadName = e[0].label;
  93. // console.log('this.form',this.form);
  94. },
  95. submit(){
  96. let that = this;
  97. this.$refs.uForm.validate(valid => {
  98. if (valid) {
  99. console.log('验证通过');
  100. // delete this.dealForm.selectedUserList;
  101. let files = [];
  102. // 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
  103. files = this.$refs.uploadRef.lists.filter(val => {
  104. return val.progress == 100;
  105. })
  106. console.log('files',files);
  107. // 如果您不需要进行太多的处理,直接如下即可
  108. // files = this.$refs.uUpload.lists;
  109. files.forEach(function(item){
  110. if(item.response.data){that.form.imgList.push(item.response.data.url)}
  111. });
  112. this.$u.api.report(this.form).then(res=>{
  113. console.log('res',res);
  114. this.form = {};
  115. uni.showToast({
  116. icon:'none',
  117. title:res.msg,
  118. duration:1500,
  119. });
  120. setTimeout(()=>{
  121. uni.switchTab({
  122. url: '/pages/index/index',
  123. })
  124. },1500)
  125. }).catch(err=>{
  126. uni.showToast({
  127. icon:'none',
  128. title:err.msg
  129. })
  130. console.log('err',err);
  131. })
  132. } else {
  133. console.log('验证失败');
  134. }
  135. });
  136. },
  137. }
  138. }
  139. </script>
  140. <style lang="scss" scoped>
  141. // @import './report.scss'
  142. </style>