lyh
2025-04-14 0c4e7ea6e347db2f2749bf9446ac0ed215bdecd5
src/views/flowable/workflow/FlowCompleted.vue
@@ -48,6 +48,11 @@
        class="j-table-force-nowrap"
        @change="handleTableChange">
        <!-- 字符串超长截取省略号显示-->
        <span slot="description" slot-scope="text">
          <j-ellipsis :value="text" :length="25" />
        </span>
        <template slot="htmlSlot" slot-scope="text">
          <div v-html="text"></div>
        </template>
@@ -105,7 +110,7 @@
  },
  data () {
    return {
      description: '设备特殊字符管理页面',
      description: '工作流-已办',
      // 表头
      columns: [
        {
@@ -131,10 +136,11 @@
          width: 200,
        },
        {
          title: '流程业务简要描述',
          align: "center",
          title:'流程业务简要描述',
          align:"center",
          dataIndex: 'description',
          width:300
          width:300,
          scopedSlots: {customRender: 'description'},
        },
        {
          title: '流程发起人名称',
@@ -207,6 +213,9 @@
    },
    handDrDetial(item) {
      this.selectShenpiData = item
      this.selectShenpiData.assignee_dictText=item.todoUsers_dictText
      this.selectShenpiData.procInstId=item.procInsId
      this.selectShenpiData.title=item.description
      this.$refs.modalFormApproval.clearTableSource()
      this.$refs.modalFormApproval.getAllApproveData(item)
    },