Flex
2025-03-31 d22f65477d269a8e13c216cedd47bdbf91d74e43
easegen-front/src/views/digitalcourse/digitalhumans/index.vue
@@ -151,9 +151,10 @@
      </el-table-column>
      <el-table-column :label="t('table.action')" align="center" fixed="right" width="200">
        <template #default="scope">
          <!-- :disabled="scope.row.status == 3" -->
          <el-button
            v-if="superAdminProcess(scope.row.status, scope.row.type)"
            :disabled="scope.row.status == 3"
            :disabled="scope.row.status == 3"
            link
            type="primary"
            @click="openAuditForm('update', scope.row.id)"
@@ -191,6 +192,7 @@
  <!-- 表单弹窗:添加/修改 -->
  <DigitalHumansForm ref="formRef" @success="getList" />
  <!-- 处理 -->
  <AuditForm ref="auditFormRef" @success="getList" />
</template>
@@ -304,3 +306,13 @@
  getList()
})
</script>
<style>
.el-scrollbar__view{
  width: 100%;
}
.el-scrollbar__view .el-table__body{
  width: 100% !important;
}
</style>