吉安感知网项目-前端
罗广辉
2026-01-26 da5600a13f910c29da17212f8c1c73e0d96d4f9b
applications/task-work-order/src/views/orderView/orderManage/clueEvents/ViewDiaLog.vue
@@ -1,8 +1,8 @@
<template>
   <el-dialog class="gd-dialog" :close-on-click-modal="false" v-model="visible" title="查看" @closed="visible = false" width="1000px" destroy-on-close>
      <div class="" v-loading="loading">
         <div class="gd-table-content-bg">
            <el-table :data="list">
   <el-dialog class="gd-dialog" v-model="visible" title="查看" @closed="visible = false" width="1000px" destroy-on-close>
      <div class="gd-table-container" v-loading="loading" style="height: 600px">
         <div class="gd-table-content gd-table-content-bg">
            <el-table class="gd-table" :data="list">
               <el-table-column label="线索缩略图" width="120">
                  <template v-slot="{ row }">
                     <el-image
@@ -32,7 +32,10 @@
               <el-table-column prop="distributeUserName" show-overflow-tooltip label="分发人员" />
               <el-table-column label="操作" class-name="operation-btns" width="140">
                  <template v-slot="{ row }">
                     <el-link @click="openDistributeDialog(row)" :disabled="row.distributeStatus === 1">
                     <el-link  type="primary"
                        @click="openDistributeDialog(row)"
                        :disabled="row.distributeStatus === 1 || currentRow.taskStatus !== '50'"
                     >
                        转为事件并分发
                     </el-link>
                  </template>
@@ -71,6 +74,7 @@
   { label: '未分发', value: 0 },
   { label: '已分发', value: 1 },
   { label: '已驳回', value: 2 },
   { label: '已确认', value: 3 },
]
// 获取分发状态标签
@@ -119,4 +123,9 @@
defineExpose({ open })
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
   .disabled-text {
      color: #C0C4CC;
      cursor: not-allowed;
   }
</style>