吉安感知网项目-前端
罗广辉
2026-01-23 6470b366daa350bee83b763ac945b3136691a7d6
Merge remote-tracking branch 'origin/master'
3 files modified
17 ■■■■ changed files
applications/task-work-order/src/views/orderView/orderManage/clueEvents/ViewDiaLog.vue 1 ●●●● patch | view | raw | blame | history
uniapps/work-app/src/api/work/index1.js 2 ●●● patch | view | raw | blame | history
uniapps/work-app/src/subPackages/workDetail/index.vue 14 ●●●● patch | view | raw | blame | history
applications/task-work-order/src/views/orderView/orderManage/clueEvents/ViewDiaLog.vue
@@ -72,6 +72,7 @@
    { label: '未分发', value: 0 },
    { label: '已分发', value: 1 },
    { label: '已驳回', value: 2 },
    { label: '已确认', value: 3 },
]
// 获取分发状态标签
uniapps/work-app/src/api/work/index1.js
@@ -51,7 +51,7 @@
// 退回工单
export const backGdApi = (data) => {
  return request({
    url: '/drone-gd/workOrder/gdClueEvent/reject',
    url: '/drone-gd/workOrder/gdClueEvent/handle',
    method: 'post',
    data,
  })
uniapps/work-app/src/subPackages/workDetail/index.vue
@@ -153,7 +153,7 @@
// 退回
const rejectTicket = () => {
  const id = workDetailData.value.id
  backGdApi({eventId : id,eventStutas:'0'}).then(res => {
  backGdApi({eventId : id,eventStatus:'0'}).then(res => {
    uni.showToast({
      title: '退回成功',
      icon: 'success',
@@ -164,7 +164,7 @@
// 确认工单
const confirmTheTicket = () => {
  const id = workDetailData.value.id
  backGdApi({eventId : id,eventStutas:'1'}).then(res => {
  backGdApi({eventId : id,eventStatus:'1'}).then(res => {
    uni.showToast({
      title: '确认成功',
      icon: 'success',
@@ -293,13 +293,13 @@
<style lang="scss" scoped>
.workDetailContainer {
  // 添加导航栏高度的padding-top,避免内容被遮挡
  padding-top: 44px;
  padding-top: 88rpx;
  // 分享按钮样式
  .share-btn {
    color: #1D6FE9;
    font-size: 14px;
    padding: 0 10px;
    line-height: 44px;
    img {
      width: 40rpx;
      height: 40rpx;
    }
  }
  .detailTop {
    .image-container {