baggageStatisticsCharts.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <CommonBarStatisticsCharts
  3. charts-title="行李量"
  4. :query-settings="querySettings"
  5. :custom-form-items="customFormItems"
  6. />
  7. </template>
  8. <script>
  9. import CommonBarStatisticsCharts from '../../components/commonBarStatisticsCharts.vue'
  10. export default {
  11. name: 'BaggageStatisticsCharts',
  12. components: { CommonBarStatisticsCharts },
  13. data() {
  14. return {
  15. querySettings: {
  16. byArea: SERVICE_ID.baggageByArea,
  17. byOther: SERVICE_ID.baggageByOther,
  18. notDelByArea: SERVICE_ID.notDelByArea,
  19. notDelByOther: SERVICE_ID.notDelByOther
  20. },
  21. customFormItems: [
  22. {
  23. prop: 'baggageType',
  24. inputType: 'select',
  25. placeholder: '行李类型',
  26. requiredWarning: '请先选择行李类型',
  27. clearable: true,
  28. options: [
  29. {
  30. value: '全部',
  31. label: '全部'
  32. },
  33. {
  34. value: '不包含DEL',
  35. label: '实际托运'
  36. }
  37. ]
  38. }
  39. ]
  40. }
  41. }
  42. }
  43. </script>