seimin 10 months ago
parent
commit
5feda7a9ec

+ 8 - 3
components/IncidentListFilter.vue

@@ -35,6 +35,8 @@
35 35
     </view>
36 36
     <PyhRdtpicker
37 37
         :show="isShowDate"
38
+        :start="start"
39
+        :end="end"
38 40
         @showchange="showDatechange"
39 41
         :value="searchData.acceptDate"
40 42
         @change="bindDateChange"
@@ -81,7 +83,7 @@
81 83
 <script setup>
82 84
   import PyhRdtpicker from '@/components/PyhRdtpicker/PyhRdtpicker.vue';
83 85
   import { defineEmits, ref, reactive, defineProps } from 'vue'
84
-  import { startOfDay, endOfDay, format, startOfWeek, endOfWeek, add } from 'date-fns'
86
+  import { startOfYear, endOfYear, format, add } from 'date-fns'
85 87
   import { onLoad } from '@dcloudio/uni-app'
86 88
   import { useLoginUserStore } from '@/stores/loginUser'
87 89
   import { api_area, api_incidentcategory } from "@/http/api.js"
@@ -102,6 +104,9 @@
102 104
   // 登记时间
103 105
   const isShowDate = ref(false)
104 106
   
107
+  const start = ref(format(startOfYear(add(new Date(), { years: -5})), 'yyyy-MM-dd'));
108
+  const end = ref(format(endOfYear(add(new Date(), { years: 0})), 'yyyy-MM-dd'));
109
+  
105 110
   const tabs = reactive([
106 111
     // { name: '全部事件', value: 'all' },
107 112
     { name: '待我处理', value: 'todoingAll' },
@@ -121,7 +126,7 @@
121 126
     selected: 'todoingAll',
122 127
     area: {id: 0, area: '全部'},
123 128
     category: {id: 0, category: '全部'},
124
-    acceptDate: [format(startOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd'), format(endOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd')],
129
+    acceptDate: [],
125 130
   })
126 131
   
127 132
   // 显示登记时间
@@ -158,7 +163,7 @@
158 163
     searchData.selected = 'todoingAll';
159 164
     searchData.area = {id: 0, area: '全部'};
160 165
     searchData.category = {id: 0, category: '全部'};
161
-    searchData.acceptDate = [format(startOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd'), format(endOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd')];
166
+    searchData.acceptDate = [];
162 167
     console.log(searchData.acceptDate)
163 168
   }
164 169
   

+ 1 - 1
manifest.json

@@ -62,7 +62,7 @@
62 62
         "devServer" : {
63 63
             "proxy" : {
64 64
                 "/service" : {
65
-                    "target" : "http://192.168.4.163", //请求的目标域名
65
+                    "target" : "http://192.168.3.111", //请求的目标域名
66 66
                     "changeOrigin" : true, //是否跨域
67 67
                     "secure" : false
68 68
                 }

+ 1 - 1
pages/buildIncident/buildIncident.vue

@@ -401,7 +401,7 @@
401 401
         incidentData,
402 402
         incidentBuildStore.incidentBuild.data,
403 403
         {
404
-          priority: incidentBuildStore.incidentBuild.data.category ? incidentBuildStore.incidentBuild.data.category.priority : undefined,
404
+          priority: incidentBuildStore.incidentBuild.data.category ? (incidentBuildStore.incidentBuild.data.category.priority ? incidentBuildStore.incidentBuild.data.category.priority.id : undefined) : undefined,
405 405
           description: incidentBuildStore.incidentBuild.data.category ? incidentBuildStore.incidentBuild.data.category.mutiCategory : undefined,
406 406
         },
407 407
       );

+ 2 - 2
pages/incidentList/incidentList.vue

@@ -66,7 +66,7 @@
66 66
 <script setup>
67 67
   import IncidentListFilter from '@/components/IncidentListFilter.vue';
68 68
   import IncidentAttachment from '@/components/IncidentAttachment.vue';
69
-  import { startOfDay, endOfDay, format, startOfWeek, endOfWeek, add } from 'date-fns'
69
+  import { startOfDay, endOfDay, format, add } from 'date-fns'
70 70
   import { ref, reactive, computed } from 'vue'
71 71
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
72 72
   import { api_getDictionary, api_incident, api_incident_count, api_incidentTask } from "@/http/api.js"
@@ -131,7 +131,7 @@
131 131
       selected: 'todoingAll',
132 132
       area: {id: 0, area: '全部'},
133 133
       category: {id: 0, category: '全部'},
134
-      acceptDate: [format(startOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd'), format(endOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd')],
134
+      acceptDate: [],
135 135
     },//筛选框数据
136 136
   })
137 137