report.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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="payeeName" required :label-width="labelWidth">
  16. <u-input type="text" :border="true" maxlength="200" @click="$u.route('/pages/payee/payee')" v-model="form.payeeName" disabled />
  17. <!-- <u-input v-model="form.payeeName" type="select" :border="true" placeholder="请选择" @click="selectPayeeShow = true" />
  18. <u-select v-model="selectPayeeShow" :list="payeeList" value-name="roadNo" label-name="roadName" @confirm="selectPayeeConfirm"></u-select> -->
  19. </u-form-item>
  20. <u-form-item label="问题类型:" required :label-width="labelWidth">
  21. <!-- <u-input v-model="form.payeeExceptionType" type="select" :border="true" placeholder="请选择" @click="problemShow = true" />
  22. <u-select v-model="problemShow" :list="payeeExceptionTypeList" value-name="dictValue" label-name="dictLabel" @confirm="problemConfirm"></u-select> -->
  23. <u-checkbox-group @change="checkboxGroupChange" width="50%">
  24. <u-checkbox
  25. size="24"
  26. @change="checkboxChange"
  27. v-model="item.checked"
  28. :disabled="item.disabled"
  29. v-for="(item, index) in payeeExceptionTypeList" :key="item.dictValue"
  30. :name="item.dictValue"
  31. >{{item.dictLabel}}
  32. </u-checkbox>
  33. </u-checkbox-group>
  34. </u-form-item>
  35. <u-form-item label="补充说明" prop="exceprionDes" required :label-width="labelWidth">
  36. <u-input type="textarea" :border="true" maxlength="200" v-model="form.exceprionDes" />
  37. </u-form-item>
  38. <u-form-item label="图片说明" :label-width="labelWidth" :border-bottom="false">
  39. <u-upload ref="uploadRef" :action="action" max-count="3"></u-upload>
  40. </u-form-item>
  41. </u-form>
  42. <u-button type="primary" @click="submit" style="margin-top: 20vh;">提交</u-button>
  43. </view>
  44. </template>
  45. <script>
  46. export default{
  47. data(){
  48. return{
  49. title:'问题上报',
  50. labelWidth:190,
  51. action:this.config.upFileUrl,
  52. selectShow:false,
  53. problemShow:false,
  54. selectPayeeShow:false,
  55. selectList:[],
  56. roadList:[],
  57. payeeList:[],
  58. payeeExceptionTypeList:[],
  59. form:{
  60. roadName:'',
  61. roadNo:'',
  62. exceprionDes:'',
  63. imgList:[],
  64. payeeExceptionType:'',
  65. },
  66. rules:{
  67. roadName: [
  68. {
  69. required: true,
  70. message: '请选择路段',
  71. trigger: ['change','blur'],
  72. }
  73. ],
  74. payeeName: [
  75. {
  76. required: true,
  77. message: '请选择收费员',
  78. trigger: ['change','blur'],
  79. }
  80. ],
  81. payeeExceptionType: [
  82. {
  83. required: true,
  84. message: '请选择问题类型',
  85. trigger: ['change','blur'],
  86. }
  87. ],
  88. exceprionDes: [
  89. {
  90. required: true,
  91. message: '请输入内容',
  92. trigger: ['change','blur'],
  93. }
  94. ],
  95. }
  96. }
  97. },
  98. onLoad(){
  99. },
  100. onShow(){
  101. this.getRoadAllList();
  102. this.getPayeeExceptionType();
  103. this.form.payeeExceptionType = '';
  104. // this.getPayeeList();
  105. this.form.payeeName = this.vuex_selected_payee.name;
  106. this.form.payeeId = this.vuex_selected_payee.id;
  107. },
  108. onReady() {
  109. this.$refs.uForm.setRules(this.rules);
  110. },
  111. methods:{
  112. customBack(){
  113. // uni.reLaunch({
  114. // url: '/pages/index/index'
  115. // });
  116. uni.navigateBack()
  117. },
  118. getRoadAllList(){
  119. this.$u.api.getRoadAllList().then(res=>{
  120. if(res.code==200){
  121. this.roadList = res.data;
  122. // console.log('getDeviceStatis',res);
  123. }else{
  124. uni.showToast({
  125. icon:'none',
  126. title:res.msg
  127. })
  128. }
  129. console.log('res',res);
  130. }).catch(err=>{
  131. console.log('err',err);
  132. })
  133. },
  134. getPayeeExceptionType(){
  135. this.$u.api.payeeExceptionType().then(res=>{
  136. if(res.code==200){
  137. this.payeeExceptionTypeList = res.data.data;
  138. // this.payeeExceptionType.forEach((item)=>{
  139. // item.disabled = false
  140. // item.checked = false;
  141. // });
  142. console.log('this.payeeExceptionTypeList',this.payeeExceptionTypeList);
  143. }else{
  144. uni.showToast({
  145. icon:'none',
  146. title:res.msg
  147. })
  148. }
  149. console.log('res',res);
  150. }).catch(err=>{
  151. console.log('err',err);
  152. })
  153. },
  154. // getPayeeList(){
  155. // this.$u.api.payeeList().then(res=>{
  156. // if(res.code==200){
  157. // this.payeeList = res.data.data;
  158. // // console.log('getDeviceStatis',res);
  159. // }else{
  160. // uni.showToast({
  161. // icon:'none',
  162. // title:res.msg
  163. // })
  164. // }
  165. // console.log('res',res);
  166. // }).catch(err=>{
  167. // console.log('err',err);
  168. // })
  169. // },
  170. selectConfirm(e){
  171. // console.log('e',e);
  172. this.form.roadNo = e[0].value;
  173. this.form.roadName = e[0].label;
  174. // console.log('this.form',this.form);
  175. },
  176. selectPayeeConfirm(e){
  177. console.log('e',e);
  178. },
  179. checkboxChange(e){
  180. console.log('checkboxChange',e);
  181. },
  182. checkboxGroupChange(e){
  183. console.log('checkboxGroupChange',e);
  184. this.form.payeeExceptionType = e.toString();
  185. },
  186. submit(){
  187. console.log('this.form',this.form);
  188. if(this.form.payeeExceptionType.length<1){
  189. uni.showToast({
  190. icon:'error',
  191. title:'请选择问题类型'
  192. })
  193. return
  194. }
  195. let that = this;
  196. this.$refs.uForm.validate(valid => {
  197. if (valid) {
  198. console.log('验证通过');
  199. // delete this.dealForm.selectedUserList;
  200. let files = [];
  201. // 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
  202. files = this.$refs.uploadRef.lists.filter(val => {
  203. return val.progress == 100;
  204. })
  205. console.log('files',files);
  206. // 如果您不需要进行太多的处理,直接如下即可
  207. // files = this.$refs.uUpload.lists;
  208. files.forEach(function(item){
  209. if(item.response.data){that.form.imgList.push(item.response.data.url)}
  210. });
  211. this.$u.api.payeeReport(this.form).then(res=>{
  212. console.log('res',res);
  213. // this.form = {};
  214. uni.showToast({
  215. icon:'none',
  216. title:res.msg,
  217. duration:1500,
  218. });
  219. setTimeout(()=>{
  220. uni.switchTab({
  221. url: '/pages/index/index',
  222. })
  223. },1500)
  224. }).catch(err=>{
  225. uni.showToast({
  226. icon:'none',
  227. title:err.msg
  228. })
  229. console.log('err',err);
  230. })
  231. } else {
  232. console.log('验证失败');
  233. }
  234. });
  235. },
  236. }
  237. }
  238. </script>
  239. <style lang="scss" scoped>
  240. // @import './report.scss'
  241. </style>