|
@@ -13,9 +13,6 @@
|
|
|
<template #colleges="{row}">
|
|
|
<elective-major-college :group="row"></elective-major-college>
|
|
|
</template>
|
|
|
- <template #report="{row}">
|
|
|
- <el-button @click="toReport('single',row)">查看</el-button>
|
|
|
- </template>
|
|
|
</mx-table>
|
|
|
<elective-ai-report-dialog v-if="true" ref="aiReportDialog" :generation="generation"></elective-ai-report-dialog>
|
|
|
</div>
|
|
@@ -66,13 +63,13 @@ export default {
|
|
|
slot: 'colleges',
|
|
|
width: '250'
|
|
|
},
|
|
|
- signUp: {
|
|
|
- label: '报告',
|
|
|
- slot: 'report',
|
|
|
- width: '100',
|
|
|
- fixed: 'right',
|
|
|
- hidden: this.readonly
|
|
|
- }
|
|
|
+ // signUp: {
|
|
|
+ // label: '报告',
|
|
|
+ // slot: 'report',
|
|
|
+ // width: '100',
|
|
|
+ // fixed: 'right',
|
|
|
+ // hidden: this.readonly
|
|
|
+ // }
|
|
|
}
|
|
|
},
|
|
|
resolveDynamicAITable() {
|
|
@@ -101,8 +98,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- toReport(type, row) {
|
|
|
- this.$refs.aiReportDialog.init(type, row)
|
|
|
+ toReport() {
|
|
|
+ this.$refs.aiReportDialog.init()
|
|
|
}
|
|
|
}
|
|
|
}
|