liuzhihui преди 2 години
родител
ревизия
6f067af8a7

+ 1 - 1
CallCenterWeb.UI/RMYY/src/views/comDispatch/components/dispatchdetail.vue

@@ -342,7 +342,7 @@
342 342
             ];
343 343
             if (fileUrls && fileUrls.length > 0) {
344 344
               fileUrls.forEach(function(v, n) {
345
-                if (v.F_FileType === ".jpg" || v.F_FileType === ".png") {
345
+                if (v.F_FileType === ".jpg" || v.F_FileType === ".png" || v.F_FileType === ".jpeg") {
346 346
                   imgs.push(v);
347 347
                 } else {
348 348
                   others.push(v);

+ 1 - 1
CallCenterWeb.UI/RMYY/src/views/orderManage/mySubmit/index.vue

@@ -60,7 +60,7 @@
60 60
       >
61 61
         搜索
62 62
       </el-button>
63
-      <el-button type="primary" size="medium" @click="btn_export"
63
+      <el-button type="primary" class="filter-btn" @click="btn_export"
64 64
         >导出</el-button
65 65
       >
66 66
       <el-button

+ 0 - 2
CallCenterWeb.UI/RMYY/src/views/orderManage/orderList/index.vue

@@ -227,14 +227,12 @@
227 227
     methods: {
228 228
       formtDept(row, column) {
229 229
         if (row.F_ProposerDept && row.F_ApplicationDept != '0') {
230
-          console.log(this.$store.getters.deptmap, 'this.$store.getters.deptmap')
231 230
           return this.$store.getters.deptmap[parseInt(row.F_ProposerDept)]
232 231
             .text;
233 232
         }
234 233
       },
235 234
       formtLocation(row, column) {
236 235
         if (row.F_ProposerDept) {
237
-          console.log(this.$store.getters.deptmap, 'this.$store.getters.deptmap')
238 236
           return this.$store.getters.deptmap[parseInt(row.F_ProposerDept)]
239 237
             .location;
240 238
         }

+ 5 - 5
CallCenterWeb.UI/RMYYAPP/pages/myTask/comDispatch/comDispatchDetail/comDispatchDetail.vue

@@ -219,11 +219,11 @@
219 219
 		filters: {
220 220
 			getEvaluateFilters(state) {
221 221
 				const data = {
222
-					1: '',
223
-					2: '',
224
-					3: '',
225
-					4: '',
226
-					5: '',
222
+					1: '不满意',
223
+					2: '不满意',
224
+					3: '基本满意',
225
+					4: '满意',
226
+					5: '满意',
227 227
 				}
228 228
 				return data[state]
229 229
 			}