Blame view

pages-sub/problem/regional-order-manage/index.vue 29.2 KB
3d474e84   刘淇   快速工单 加上业务线
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <template>
    <view class="page-container">
      <!-- 顶部固定区域 -->
      <up-sticky>
        <view class="header-wrap">
          <!-- 第一行:u-tabs 待办/已办切换  :scrollable="false"-->
          <up-tabs
              v-model="activeTab"
              :list="tabList"
              active-color="#1989fa"
              inactive-color="#666"
              font-size="30rpx"
              @click="handleTabChange"
          />
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
15
  
3d474e84   刘淇   快速工单 加上业务线
16
17
18
19
20
21
22
23
24
25
26
27
28
          <!-- 第二行:下拉框 + 搜索框 -->
          <view class="search-header">
            <!-- 左侧下拉框 -->
            <view class="select-wrap common-text-color">
              <up-select
                  v-model:current="selectedSortValue"
                  :options="sortOptions"
                  :showOptionsLabel="true"
                  @select="handleSortChange"
                  border="surround"
                  :style="{ flex: 1 }"
              />
            </view>
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
29
  
3d474e84   刘淇   快速工单 加上业务线
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
            <!-- 右侧搜索框 -->
            <view class="search-input-wrap">
              <up-search
                  v-model="searchValue"
                  placeholder="请输入关键字"
                  @search="handleSearch"
                  bg-color="#f5f5f5"
                  :clearabled="false"
                  :show-action="true"
                  actionText="搜索"
                  :animation="true"
                  @custom="handleSearch"
              />
            </view>
          </view>
        </view>
      </up-sticky>
  
      <!-- 列表容器 -->
      <z-paging
          ref="paging"
          v-model="orderList"
          @query="queryList"
          :auto-show-system-loading="true"
  
      >
        <template #empty>
          <empty-view/>
        </template>
  
        <view class="common-card-list" style="padding-top: 200rpx;padding-bottom: 30rpx">
          <!-- 待办工单卡片 -->
          <up-card
              v-if="activeTab == 0"
              :border="false"
              :foot-border-top="false"
              v-for="(item, index) in orderList"
              :key="`todo_${item.orderNo}_${index}`"
              :show-head="false"
              class="order-card"
          >
            <template #body>
              <view class="card-body">
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单编号:</view>
                  <view class="u-line-1 u-body-value">{{ item.orderNo || '-' }}</view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单位置:</view>
                  <view class="u-line-1 u-body-value">{{ item.lonLatAddress || '-' }}</view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单名称:</view>
                  <view class="u-line-1 u-body-value">{{ item.orderName || '未填写' }}</view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">情况描述:</view>
                  <view class="u-line-1 u-body-value">{{ item.remark || '无' }}</view>
                </view>
                <view class="u-body-item u-flex  common-item-center common-justify-between">
                  <view class="u-body-item-title">紧急程度:</view>
                  <view class="u-line-1 u-body-value">
                    {{ uni.$dict.getDictLabel('workorder_pressing_type', item.pressingType) }}
                  </view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单状态:</view>
2e2b95d3   刘淇   修改接口路径 和命名
97
                  <view class="u-line-1 u-body-value">{{ buzStatusMap[item.buzStatus] }}</view>
3d474e84   刘淇   快速工单 加上业务线
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">提交时间:</view>
                  <view class="u-line-1 u-body-value">{{ timeFormat(item.createTime, 'yyyy-mm-dd hh:MM:ss') }}</view>
                </view>
                <!-- 操作按钮行 -->
                <view class="u-body-item u-flex common-justify-between common-item-center mt-20">
                  <up-button type="warning" size="mini" @click="handleReject(item)"
                             v-show="nextStepMap[item.taskKey].backShow">回退
                  </up-button>
  
                  <up-button type="success" size="mini" @click="handleRenew(item)"
                             v-show="nextStepMap[item.taskKey].renewShow">重新提交
                  </up-button>
  
                  <up-button type="primary" size="mini" @click="handleProcess(item)">{{
                      nextStepMap[item.taskKey].btnText
                    }}
                  </up-button>
                  <up-button type="info" size="mini" @click="handleDetail(item)">详情</up-button>
                </view>
              </view>
            </template>
          </up-card>
  
          <!-- 已办工单卡片和我发起的 -->
          <up-card
              v-if="activeTab == 2||activeTab == 1"
              :border="false"
              :foot-border-top="false"
              v-for="(item, index) in orderList"
              :key="`done_${item.orderNo}_${index}`"
              :show-head="false"
              class="order-card"
          >
            <template #body>
              <view class="card-body">
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单编号:</view>
                  <view class="u-line-1 u-body-value">{{ item.orderNo || '-' }}</view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单位置:</view>
34d239d6   刘淇   全域巡查员
141
                  <view class="u-line-1 u-body-value">{{ item.lonLatAddress || '-' }}</view>
3d474e84   刘淇   快速工单 加上业务线
142
143
144
145
146
147
148
149
150
151
152
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单名称:</view>
                  <view class="u-line-1 u-body-value">{{ item.orderName || '未填写' }}</view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">情况描述:</view>
                  <view class="u-line-1 u-body-value">{{ item.remark || '无' }}</view>
                </view>
  
                <view class="u-body-item u-flex common-justify-between common-item-center">
2e2b95d3   刘淇   修改接口路径 和命名
153
154
                  <view class="u-body-item-title">
                    紧急程度:{{ uni.$dict.getDictLabel('workorder_pressing_type', item.pressingType) }}
3d474e84   刘淇   快速工单 加上业务线
155
156
157
158
159
160
161
                  </view>
                  <view class=" ">
                    <up-button type="primary" size="mini" @click="handleDetail(item)">工单详情</up-button>
                  </view>
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">工单状态:</view>
2e2b95d3   刘淇   修改接口路径 和命名
162
                  <view class="u-line-1 u-body-value">{{ buzStatusMap[item.buzStatus] }}</view>
3d474e84   刘淇   快速工单 加上业务线
163
164
165
166
167
168
169
170
171
172
173
174
                </view>
                <view class="u-body-item u-flex">
                  <view class="u-body-item-title">提交时间:</view>
                  <view class="u-line-1 u-body-value">{{ timeFormat(item.createTime, 'yyyy-mm-dd hh:MM:ss') }}</view>
                </view>
              </view>
            </template>
          </up-card>
        </view>
      </z-paging>
  
      <!-- 底部新增工单按钮(仅巡查员显示) -->
2e2b95d3   刘淇   修改接口路径 和命名
175
176
177
178
179
      <!--    <view v-if="isInspector" class="fixed-bottom-btn-wrap">-->
      <!--      <up-button type="primary" size="large" @click="handleAddOrder">-->
      <!--        新增工单-->
      <!--      </up-button>-->
      <!--    </view>-->
3d474e84   刘淇   快速工单 加上业务线
180
  
f0ec74d6   刘淇   大区经理派单
181
      <view class="fixed-bottom-btn-wrap" v-if="isInspector">
3d474e84   刘淇   快速工单 加上业务线
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
        <up-button type="primary" size="large" @click="handleAddOrder">
          新增工单
        </up-button>
      </view>
  
  
      <!-- 回退原因弹窗:替换为up-modal(核心修改) -->
      <up-modal
          :show="rejectModalShow"
          title="回退原因"
          :closeOnClickOverlay="false"
          :showConfirmButton="true"
          :showCancelButton="true"
          @cancel="handleRejectModalCancel"
          @confirm="confirmReject"
      >
        <view class="reject-modal-content">
          <!-- 回退原因 必填textarea -->
          <up-textarea
              v-model.trim="rejectReason"
              placeholder="请输入回退原因(必填)"
              rows="6"
              :count="200"
              maxlength="200"
              class="reject-textarea"
          />
          <!-- 上传图片(选填)- 按照参考页面改造 -->
          <view class="upload-wrap mt-20">
            <view class="upload-title">上传图片(选填)</view>
            <up-upload
                :file-list="rejectImgs.rawImgList.value|| []"
                @after-read="rejectImgs.uploadImgs"
                @delete="rejectImgs.deleteImg"
                multiple
                width="70"
                height="70"
                :max-count="rejectImgs.uploadConfig.maxCount"
                :upload-text="rejectImgs.uploadConfig.uploadText"
                :size-type="rejectImgs.uploadConfig.sizeType"
            />
          </view>
        </view>
      </up-modal>
  
      <!-- 验收弹窗 up-modal(含图片上传) -->
      <up-modal
          :show="acceptModalShow"
          title="验收"
          :closeOnClickOverlay="false"
          :showConfirmButton="true"
          :showCancelButton="true"
          @cancel="handleAcceptModalCancel"
          @confirm="handleAcceptModalConfirm"
      >
        <view class="accept-modal-content">
          <!-- 第一行:单选框(通过/不通过,默认通过) -->
          <view class="radio-group-wrap">
            <up-radio-group v-model="acceptRadioValue">
              <up-radio name="0" label="通过"></up-radio>
              <up-radio name="1" label="不通过"></up-radio>
            </up-radio-group>
          </view>
  
          <!-- 第二行:必填textarea,最多200字 -->
          <view class="textarea-wrap mt-30">
            <up-textarea
                v-model.trim="acceptReason"
                placeholder="请输入验收原因(必填,最多200字)"
                :required="true"
                maxlength="200"
                rows="5"
                count
            />
          </view>
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
256
  
3d474e84   刘淇   快速工单 加上业务线
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
          <!-- 验收图片上传(选填,参考回退弹窗样式) -->
          <view class="upload-wrap mt-20">
            <view class="upload-title">上传验收图片(选填)</view>
            <up-upload
                :file-list="acceptImgs.rawImgList.value || []"
                @after-read="acceptImgs.uploadImgs"
                @delete="acceptImgs.deleteImg"
  
                multiple
                width="70"
                height="70"
                :max-count="acceptImgs.uploadConfig.maxCount"
                :upload-text="acceptImgs.uploadConfig.uploadText"
                :size-type="acceptImgs.uploadConfig.sizeType"
            />
          </view>
        </view>
      </up-modal>
    </view>
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
276
277
  </template>
  
3d474e84   刘淇   快速工单 加上业务线
278
279
280
281
282
283
284
285
  <script setup>
  import { ref, computed, watch } from 'vue';
  import { onShow, onLoad } from '@dcloudio/uni-app';
  import { timeFormat } from '@/uni_modules/uview-plus';
  import {
    myBuzSimplePage,
    todoBuzSimplePage,
    doneBuzSimplePage,
d9752a1e   刘淇   大区经理 自己流程
286
    qyWorkorderCreate,
2e2b95d3   刘淇   修改接口路径 和命名
287
288
289
290
    qyUniversalApproval,
    daquUniversalApproval,
    dcyUniversalApproval
  } from '@/api/regional-order-manage/regional-order-manage'
3d474e84   刘淇   快速工单 加上业务线
291
292
293
294
295
  // 从用户store获取角色信息
  import { useUserStore } from '@/pinia/user';
  import { nextStepMap, buzStatusMap } from '@/common/utils/common'
  // 引入图片上传组合式函数(与参考页面一致)
  import { useUploadImgs } from '@/common/utils/useUploadImgs'
3d474e84   刘淇   快速工单 加上业务线
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
  // ========== 状态管理 ==========
  const userStore = useUserStore();
  // 标签页切换
  const activeTab = ref(0); // 0-待办 1-我发起的 2-已办
  const tabList = ref([
    {name: '待办'},
    {name: '我发起的任务'},
    {name: '已办'}
  ]);
  // 排序下拉框
  const selectedSortValue = ref(1);
  const sortOptions = ref([
    {name: '位置', id: 1},
    {name: '名称', id: 2},
    {name: '描述', id: 3},
    {name: '编号', id: 4},
  ]);
  // 搜索
  const searchValue = ref('');
  // 分页
  const paging = ref(null);
  const orderList = ref([]);
  // 角色控制(巡查员显示新增按钮)
  const isInspector = computed(() => {
f0ec74d6   刘淇   大区经理派单
320
321
    // patrol_global  全域巡查员
    // regional_manager  大区经理
3d474e84   刘淇   快速工单 加上业务线
322
    // 增加可选链,避免用户信息不存在报错
f0ec74d6   刘淇   大区经理派单
323
324
    // return userStore.userInfo?.roles?.includes('yl_inspector') || false;
    return true
3d474e84   刘淇   快速工单 加上业务线
325
326
327
328
329
  });
  // 回退弹窗相关
  const rejectModalShow = ref(false); // 回退modal显示开关
  const rejectReason = ref(''); // 回退原因
  const currentRejectItem = ref(null); // 当前回退工单
3d474e84   刘淇   快速工单 加上业务线
330
331
332
333
334
335
336
337
  // 回退图片上传配置(与参考页面风格一致)
  const rejectImgs = useUploadImgs({
    maxCount: 3, // 最多上传3张
    uploadText: '选择回退图片', // 自定义上传提示文字
    sizeType: ['compressed'], // 仅上传压缩图
    formRef: null, // 该弹窗无表单校验
    fieldName: 'rejectImgs' // 自定义字段名
  })
3d474e84   刘淇   快速工单 加上业务线
338
339
340
341
342
  // ========== 验收弹窗相关状态(含图片上传) ==========
  const acceptModalShow = ref(false); // 验收弹窗显示开关
  const acceptRadioValue = ref('0'); // 单选框值,默认0(通过)
  const acceptReason = ref(''); // 验收原因
  const currentAcceptItem = ref(null); // 当前验收的工单项
3d474e84   刘淇   快速工单 加上业务线
343
344
345
346
347
348
349
350
  // 验收图片上传配置(独立实例,参考回退弹窗)
  const acceptImgs = useUploadImgs({
    maxCount: 3, // 最多上传3张,与回退弹窗一致
    uploadText: '选择验收图片', // 自定义上传提示文字
    sizeType: ['compressed'], // 仅上传压缩图,优化性能
    formRef: null, // 验收弹窗无表单校验
    fieldName: 'acceptImgs' // 自定义字段名,区分回退图片
  })
3d474e84   刘淇   快速工单 加上业务线
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
  // 分页查询列表
  const queryList = async (pageNo, pageSize) => {
    try {
      const apiParams = {
        searchContent: searchValue.value.trim() || '',
        pageNo,
        pageSize,
        type: selectedSortValue.value // 1-位置 2-工单名称 3-情况描述 4-工单编号
      };
      let res;
      if (activeTab.value == 0) {
        // 待办工单
        res = await todoBuzSimplePage(apiParams);
      } else if (activeTab.value == 1) {
        // 我发起的任务
        res = await myBuzSimplePage(apiParams);
      } else {
        // 已办工单
        res = await doneBuzSimplePage(apiParams);
      }
      // 适配z-paging分页
      paging.value.complete(res.list, res.total);
    } catch (error) {
      console.error('加载工单失败:', error);
      paging.value?.complete(false);
      uni.showToast({title: '加载失败,请重试', icon: 'none'});
    }
  };
3d474e84   刘淇   快速工单 加上业务线
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
  // ========== 事件处理 ==========
  // 标签页切换
  const handleTabChange = (item) => {
    console.log(item)
    activeTab.value = item.index;
    paging.value?.reload(); // 切换标签页刷新列表
  };
  // 排序变更
  const handleSortChange = (val) => {
    selectedSortValue.value = val.id;
    searchValue.value = '';
    paging.value?.reload(); // 排序变更刷新列表
  };
  // 搜索
  const handleSearch = (val) => {
    searchValue.value = val;
    paging.value?.reload(); // 搜索刷新列表
  };
  // 工单详情
  const handleDetail = (item) => {
    // 0-待办 1我发起的- 2-已办
    uni.navigateTo({
      url: `/pages-sub/problem/regional-order-manage/order-detail?taskId=${item.taskId}&activeTab=${activeTab.value}&processInstanceId=${item.processInstanceId}`,
      events: {
        // 自定义事件名:needRefresh(与详情页保持一致)
        needRefresh: () => {
          console.log('详情页返回,触发工单列表刷新');
          if (paging.value) {
            paging.value.reload(); // 刷新z-paging列表
          }
        }
      }
    });
  };
3d474e84   刘淇   快速工单 加上业务线
413
414
415
416
  // 生成临时key
  const generateTempKey = () => {
    return 'renew_order_' + Date.now() + '_' + Math.floor(Math.random() * 10000);
  };
3d474e84   刘淇   快速工单 加上业务线
417
418
  // 待办-重新提交工单(改造后:大数据存本地,仅传唯一标识)
  const handleRenew = (item) => {
3d474e84   刘淇   快速工单 加上业务线
419
420
421
  
    // 1. 生成唯一临时标识
    const tempKey = generateTempKey();
3d474e84   刘淇   快速工单 加上业务线
422
423
    // 2. 将完整工单数据存入本地临时存储(同步存储,确保数据立即生效)
    try {
2e2b95d3   刘淇   修改接口路径 和命名
424
425
      console.log(item)
      console.log('123')
3d474e84   刘淇   快速工单 加上业务线
426
427
428
429
430
431
432
      uni.setStorageSync(tempKey, item);
    } catch (error) {
      console.error('存储工单数据失败:', error);
      uni.showToast({title: '数据存储异常,无法重新提交', icon: 'none'});
      return;
    }
  
2e2b95d3   刘淇   修改接口路径 和命名
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
    if (userStore.userInfo?.roles.includes('patrol_global')) { // 全域巡查员
      uni.navigateTo({
        url: `/pages-sub/problem/regional-order-manage/add-patrol-order?isRenew=1&tempKey=${tempKey}`
      });
    }
    if (userStore.userInfo?.roles.includes('regional_manager')) {  // 大区经理
      uni.navigateTo({
        url: `/pages-sub/problem/regional-order-manage/add-order?isRenew=1&tempKey=${tempKey}`
      });
    }
    if (userStore.userInfo?.roles.includes('Inspector_global')) {  // 督察员
      uni.navigateTo({
        url: `/pages-sub/problem/regional-order-manage/add-order?isRenew=1&tempKey=${tempKey}`
      });
    }
    // // 3. URL 仅传递「唯一标识」和「重新提交标记」(数据量极小,无长度问题)
    // uni.navigateTo({
    //   url: `/pages-sub/problem/regional-order-manage/add-patrol-order?isRenew=1&tempKey=${tempKey}`
    // });
3d474e84   刘淇   快速工单 加上业务线
452
  };
3d474e84   刘淇   快速工单 加上业务线
453
454
455
456
  // 待办-处理工单
  const handleProcess = async (item) => {
    console.log(nextStepMap[item.taskKey].name)
    try {
34d239d6   刘淇   全域巡查员
457
      if (nextStepMap[item.taskKey]?.name == '大区经理分配') {
34d239d6   刘淇   全域巡查员
458
459
460
461
462
463
464
465
466
467
468
        // ① 生成唯一临时key(统一规则,避免冲突)
        const tempKey = `distribute_order_${Date.now()}_${Math.floor(Math.random() * 10000)}`;
        // ② 存储完整item到本地缓存(同步存储,确保立即生效)
        try {
          uni.setStorageSync(tempKey, item);
        } catch (error) {
          console.error('存储分配工单数据失败:', error);
          uni.showToast({title: '数据存储异常,无法跳转', icon: 'none'});
          return;
        }
        // ③ URL仅传递临时key,无其他冗余参数
3d474e84   刘淇   快速工单 加上业务线
469
        uni.navigateTo({
34d239d6   刘淇   全域巡查员
470
          url: `/pages-sub/problem/regional-order-manage/distribution-order?tempKey=${tempKey}`
3d474e84   刘淇   快速工单 加上业务线
471
        })
3d474e84   刘淇   快速工单 加上业务线
472
      }
2e2b95d3   刘淇   修改接口路径 和命名
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
      if (nextStepMap[item.taskKey]?.name == '督察员单子大区经理分配') {
         let postData = {
           "taskKey":item.taskKey,
           "taskId": item.taskId,
           "operateType":60,
           "workerDataId":item.id,
           "agree":0,
           "reason":item.remark,
           "roadId":item.roadId,
           "roadName":item.roadName,
           "pressingType":item.pressingType,
           "orderName":item.orderName,
           "expectedFinishDate": item.expectedFinishDate,
           "busiLine":item.busiLine,
         }
        const res = await dcyUniversalApproval(postData);
        uni.showToast({title: '分配成功', icon: 'success', duration: 1000});
        paging.value?.reload(); // 刷新列表
      }
  
3d474e84   刘淇   快速工单 加上业务线
493
      if (nextStepMap[item.taskKey]?.name == '养护员待实施') {
3d474e84   刘淇   快速工单 加上业务线
494
495
        // ① 生成唯一临时key(和重新提交工单逻辑一致,避免冲突)
        const tempKey = `maintain_order_${Date.now()}_${Math.floor(Math.random() * 10000)}`;
3d474e84   刘淇   快速工单 加上业务线
496
497
498
499
500
501
502
503
        // ② 存储完整item到本地缓存(同步存储,确保立即生效)
        try {
          uni.setStorageSync(tempKey, item);
        } catch (error) {
          console.error('存储养护工单数据失败:', error);
          uni.showToast({title: '数据存储异常,无法跳转', icon: 'none'});
          return;
        }
3d474e84   刘淇   快速工单 加上业务线
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
        // ③ URL仅传递临时key(可选:携带必要简单参数,方便目标页面快速使用)
        uni.navigateTo({
          url: `/pages-sub/problem/regional-order-manage/add-maintain-order?tempKey=${tempKey}`
        })
      }
      // 养护组长验收 - 打开弹窗
      if (nextStepMap[item.taskKey]?.name == '养护组长验收') {
        currentAcceptItem.value = item; // 存储当前工单信息
        acceptReason.value = ''; // 清空上次的验收原因
        acceptRadioValue.value = '0'; // 重置默认选中“通过”
        acceptModalShow.value = true; // 显示验收弹窗
      }
      // 巡查员验收 - 打开弹窗
      if (nextStepMap[item.taskKey]?.name == '巡查员验收') {
        currentAcceptItem.value = item; // 存储当前工单信息
        acceptReason.value = ''; // 清空上次的验收原因
        acceptRadioValue.value = '0'; // 重置默认选中“通过”
        acceptModalShow.value = true; // 显示验收弹窗
      }
3d474e84   刘淇   快速工单 加上业务线
523
524
525
526
527
528
529
530
531
532
      // 发起人确认
      if (nextStepMap[item.taskKey]?.name == '发起人确认') {
        console.log(item)
        uni.showModal({
          title: "结束工单",
          content: "请确定是否结束工单?",
          success: async function (res) {
            if (res.confirm) {
              // 构建请求参数
              const requestData = {
d9752a1e   刘淇   大区经理 自己流程
533
  
3d474e84   刘淇   快速工单 加上业务线
534
                "workerDataId": item.id,
2e2b95d3   刘淇   修改接口路径 和命名
535
                "taskKey": 'ylInspectorStart',
3d474e84   刘淇   快速工单 加上业务线
536
537
538
539
540
                "taskId": item.taskId,
                "operateType": 200,
                "agree": 1,
                "reason": '结束工单'
              };
d9752a1e   刘淇   大区经理 自己流程
541
542
543
544
545
546
547
548
549
550
551
552
              // 调用回退工单接口   daquUniversalApproval
  
              if( userStore.userInfo.roles.includes('regional_manager')){  // 大区经理
                await daquUniversalApproval(requestData)
              }
              if( userStore.userInfo.roles.includes('Inspector_global')){  // 督察员
                await dcyUniversalApproval(requestData);
              }
              if( userStore.userInfo.roles.includes('patrol_global')){  // 全域巡查员
                await qyUniversalApproval(requestData);
              }
  
3d474e84   刘淇   快速工单 加上业务线
553
554
555
556
557
558
559
560
561
562
563
564
565
566
              uni.showToast({title: '结束成功', icon: 'success', duration: 1000});
              rejectModalShow.value = false;
              paging.value?.reload(); // 刷新列表
            } else if (res.cancel) {
              console.log("用户点击取消");
            }
          },
        });
      }
    } catch (error) {
      console.error('处理工单失败:', error);
      uni.showToast({title: '处理失败,请重试', icon: 'none'});
    }
  };
3d474e84   刘淇   快速工单 加上业务线
567
568
569
570
571
572
573
574
575
576
577
578
579
  // 待办-回退工单(打开回退modal)
  const handleReject = (item) => {
    console.log('123213')
    // 校验工单有效性
    if (!item || !item.id) {
      uni.showToast({title: '工单信息异常,无法回退', icon: 'none'});
      return;
    }
    currentRejectItem.value = item;
    rejectReason.value = ''; // 清空上次输入
    rejectImgs.clearImgs(); // 改造后:使用组合式函数的清空方法
    rejectModalShow.value = true; // 显示回退modal
  };
3d474e84   刘淇   快速工单 加上业务线
580
581
582
583
584
585
  // 回退modal - 取消按钮
  const handleRejectModalCancel = () => {
    rejectModalShow.value = false;
    rejectReason.value = '';
    rejectImgs.clearImgs(); // 改造后:使用组合式函数的清空方法
  };
3d474e84   刘淇   快速工单 加上业务线
586
587
588
589
590
591
592
593
594
595
  // 确认回退工单
  const confirmReject = async () => {
    // 严格校验回退原因(去除首尾空格)
    const rejectReasonTrim = rejectReason.value.trim();
    if (!rejectReasonTrim) {
      uni.showToast({title: '请填写回退原因', icon: 'none', duration: 1000});
      return;
    }
    // 校验当前工单有效性
    if (!currentRejectItem.value || !currentRejectItem.value.id) {
2e2b95d3   刘淇   修改接口路径 和命名
596
      uni.showToast({title: '工单信息异常,无法提交', icon: 'none', duration: 1000});
3d474e84   刘淇   快速工单 加上业务线
597
598
599
600
601
602
      rejectModalShow.value = false;
      return;
    }
    try {
      // 显示加载中,防止重复提交
      uni.showLoading({title: '提交中...', mask: true});
3d474e84   刘淇   快速工单 加上业务线
603
604
605
606
607
608
      // 构建请求参数
      const requestData = {
        "returnImgs": rejectImgs.getSuccessImgUrls(), // 改造后:获取上传成功的图片URL数组
        "workerDataId": currentRejectItem.value.id,
        "taskKey": currentRejectItem.value.taskKey,
        "taskId": currentRejectItem.value.taskId,
2e2b95d3   刘淇   修改接口路径 和命名
609
  
3d474e84   刘淇   快速工单 加上业务线
610
611
612
613
614
        "operateType": nextStepMap[currentRejectItem.value.taskKey].operateTypeNoPass,
        "agree": 1,
        "reason": rejectReasonTrim
      };
      // 调用回退工单接口
2e2b95d3   刘淇   修改接口路径 和命名
615
616
617
618
619
620
621
      if(currentRejectItem.value.taskKey=='shRegionManager'){  //  对督察员单子  回退
        const res = await dcyUniversalApproval(requestData);
      }
      if(currentRejectItem.value.taskKey=='regionManager'){  //  对全域巡查员单子  回退
        const res = await qyUniversalApproval(requestData);
      }
      //  对大区经理单子  回退
3d474e84   刘淇   快速工单 加上业务线
622
623
624
625
626
627
628
629
630
631
632
      uni.showToast({title: '回退成功', icon: 'success', duration: 1000});
      rejectModalShow.value = false;
      paging.value?.reload(); // 刷新列表
    } catch (error) {
      console.error('回退工单失败:', error);
      uni.showToast({title: '网络异常,回退失败', icon: 'none', duration: 1000});
    } finally {
      // 隐藏加载中
      uni.hideLoading();
    }
  };
3d474e84   刘淇   快速工单 加上业务线
633
634
  // 新增工单
  const handleAddOrder = () => {
2e2b95d3   刘淇   修改接口路径 和命名
635
    if (userStore.userInfo?.roles.includes('patrol_global')) { // 全域巡查员
f0ec74d6   刘淇   大区经理派单
636
637
638
639
      uni.navigateTo({
        url: '/pages-sub/problem/regional-order-manage/add-patrol-order'
      });
    }
d9752a1e   刘淇   大区经理 自己流程
640
    if (userStore.userInfo?.roles.includes('regional_manager')) {  // 大区经理
f0ec74d6   刘淇   大区经理派单
641
      uni.navigateTo({
34d239d6   刘淇   全域巡查员
642
        url: '/pages-sub/problem/regional-order-manage/add-order'
f0ec74d6   刘淇   大区经理派单
643
644
      });
    }
2e2b95d3   刘淇   修改接口路径 和命名
645
    if (userStore.userInfo?.roles.includes('Inspector_global')) {  // 督察员
eaaa8665   刘淇   全域巡查员
646
647
648
649
      uni.navigateTo({
        url: '/pages-sub/problem/regional-order-manage/add-order'
      });
    }
3d474e84   刘淇   快速工单 加上业务线
650
  };
3d474e84   刘淇   快速工单 加上业务线
651
652
653
654
655
656
657
  // 验收弹窗 - 取消按钮(清空状态)
  const handleAcceptModalCancel = () => {
    acceptModalShow.value = false;
    acceptReason.value = ''; // 清空验收原因
    acceptRadioValue.value = '0'; // 重置单选框为“通过”
    acceptImgs.clearImgs(); // 清空验收图片
  };
3d474e84   刘淇   快速工单 加上业务线
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
  // 验收弹窗 - 确定按钮(含returnImgs传参)
  const handleAcceptModalConfirm = async () => {
    // 1. 校验验收原因是否为空
    if (!acceptReason.value.trim()) {
      uni.showToast({title: '请填写验收原因', icon: 'none', duration: 1000});
      return;
    }
    // 2. 校验验收原因长度
    if (acceptReason.value.length > 200) {
      uni.showToast({title: '验收原因最多200字', icon: 'none', duration: 1000});
      return;
    }
    try {
      // 3. 构建请求参数(含returnImgs)
      console.log(currentAcceptItem.value)
2e2b95d3   刘淇   修改接口路径 和命名
673
674
675
676
677
      console.log( userStore.userInfo.roles)
      console.log( userStore.userInfo.roles.includes('Inspector_global'))
      //
      if( userStore.userInfo.roles.includes('regional_manager')){  // 大区经理验收
        let postData = {
3d474e84   刘淇   快速工单 加上业务线
678
679
680
681
682
          "returnImgs": acceptImgs.getSuccessImgUrls(), // 验收图片URL数组
          "taskKey": currentAcceptItem.value.taskKey,
          "workerDataId": currentAcceptItem.value.id,
          "taskId": currentAcceptItem.value.taskId,
          "operateType": acceptRadioValue.value == 0 ? nextStepMap[currentAcceptItem.value.taskKey].operateTypePass : nextStepMap[currentAcceptItem.value.taskKey].operateTypeNoPass,
d9752a1e   刘淇   大区经理 自己流程
683
684
          "reason": acceptReason.value.trim(),
          "agree":acceptRadioValue.value,
3d474e84   刘淇   快速工单 加上业务线
685
        }
2e2b95d3   刘淇   修改接口路径 和命名
686
        await daquUniversalApproval(postData);
3d474e84   刘淇   快速工单 加上业务线
687
      }
2e2b95d3   刘淇   修改接口路径 和命名
688
689
690
      //
      if( userStore.userInfo.roles.includes('patrol_global')){  // 全域巡查员验收
        let  postData = {
3d474e84   刘淇   快速工单 加上业务线
691
692
693
694
695
696
697
698
          "returnImgs": acceptImgs.getSuccessImgUrls(), // 验收图片URL数组
          "taskKey": currentAcceptItem.value.taskKey,
          "taskId": currentAcceptItem.value.taskId,
          "workerDataId": currentAcceptItem.value.id,
          "operateType": acceptRadioValue.value == 0 ? nextStepMap[currentAcceptItem.value.taskKey].operateTypePass : nextStepMap[currentAcceptItem.value.taskKey].operateTypeNoPass,
          "reason": acceptReason.value.trim(),
          "agree": acceptRadioValue.value
        }
2e2b95d3   刘淇   修改接口路径 和命名
699
        await qyUniversalApproval(postData);
3d474e84   刘淇   快速工单 加上业务线
700
      }
2e2b95d3   刘淇   修改接口路径 和命名
701
702
703
704
705
706
707
708
709
710
711
712
713
714
      //
      if( userStore.userInfo.roles.includes('Inspector_global')){  // 督察员验收
        let  postData = {
          "returnImgs": acceptImgs.getSuccessImgUrls(), // 验收图片URL数组
          "taskKey": currentAcceptItem.value.taskKey,
          "taskId": currentAcceptItem.value.taskId,
          "workerDataId": currentAcceptItem.value.id,
          "operateType": acceptRadioValue.value == 0 ? nextStepMap[currentAcceptItem.value.taskKey].operateTypePass : nextStepMap[currentAcceptItem.value.taskKey].operateTypeNoPass,
          "reason": acceptReason.value.trim(),
          "agree": acceptRadioValue.value
        }
        await dcyUniversalApproval(postData);
      }
  
3d474e84   刘淇   快速工单 加上业务线
715
716
717
718
719
720
721
722
723
724
      // 4. 操作成功处理
      uni.showToast({title: '提交成功', icon: 'success', duration: 1000});
      handleAcceptModalCancel(); // 清空状态
      paging.value?.reload(); // 刷新工单列表
    } catch (error) {
      // 5. 操作失败处理
      console.error('验收失败:', error);
      uni.showToast({title: '验收提交失败,请重试', icon: 'none', duration: 1000});
    }
  };
3d474e84   刘淇   快速工单 加上业务线
725
726
727
728
729
730
731
  // 页面初始化
  onLoad(() => {
    // 初始化加载列表
    paging.value?.reload();
  });
  </script>
  
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
732
  <style scoped lang="scss">
3d474e84   刘淇   快速工单 加上业务线
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
  .page-container {
    min-height: 100vh;
    background-color: #fafafa;
  }
  
  // 顶部固定区域
  .header-wrap {
    background-color: #fff;
  }
  
  // 搜索栏样式
  .search-header {
    display: flex;
    align-items: center;
    padding: 20rpx;
    box-sizing: border-box;
  
    .select-wrap {
      width: 120rpx;
      margin-right: 20rpx;
  
      :deep(.u-select) {
        width: 100%;
        font-size: 28rpx;
      }
  
      :deep(.u-input__placeholder) {
        font-size: 28rpx;
      }
    }
  
    .search-input-wrap {
      flex: 1;
    }
  }
  
  // 工单卡片样式
  .order-card {
    margin: 0 20rpx 20rpx;
    background: #fff;
    border-radius: 12rpx;
    box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
  }
  
  .card-body {
  
  }
  
  // 回退modal样式
  .reject-modal-content {
    width: 100%;
    box-sizing: border-box;
    padding: 10rpx 0;
  }
  
  .textarea-label {
    font-size: 28rpx;
    color: #333;
    margin-bottom: 10rpx;
  
    .required-mark {
      color: #f56c6c;
      margin-left: 4rpx;
    }
  }
  
  .upload-wrap {
    margin-top: 20rpx;
  
    .upload-title {
      font-size: 28rpx;
      color: #333;
      margin-bottom: 10rpx;
    }
  }
  
  .mt-20 {
    margin-top: 20rpx;
  }
  
  .mt-30 {
    margin-top: 30rpx;
  }
  
  // 养护组长验收弹窗样式
  .accept-modal-content {
    width: 100%;
    box-sizing: border-box;
  }
  
  .radio-group-wrap {
    display: flex;
    align-items: center;
    gap: 40rpx; // 单选框之间的间距
    font-size: 28rpx;
    margin-bottom: 20rpx;
  }
  
  .textarea-wrap {
    width: 100%;
    margin-top: 30rpx;
  }
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
835
  
3d474e84   刘淇   快速工单 加上业务线
836
837
838
839
840
841
  .modal-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10rpx;
  }
4c54ad5d   刘淇   转工单 选择是 传紧急程度和...
842
  </style>