|
@@ -55,7 +55,7 @@ export default {
|
|
|
field: [],
|
|
|
// 按钮Loading
|
|
|
btnLoading: false,
|
|
|
- rightSelect:[],
|
|
|
+ rightSelect: [],
|
|
|
}
|
|
|
},
|
|
|
async mounted() {
|
|
@@ -64,7 +64,10 @@ export default {
|
|
|
methods: {
|
|
|
// 获取栏位数据
|
|
|
async getList() {
|
|
|
- this.field = await this.$commonJS.getCustomField('patent', { projectId: this.projectId, taskId: this.taskId })
|
|
|
+ let field = await this.$commonJS.getCustomField('patent', { projectId: this.projectId, taskId: this.taskId })
|
|
|
+ this.field = field.filter(item => {
|
|
|
+ return item.name
|
|
|
+ })
|
|
|
},
|
|
|
// 导出
|
|
|
handleExport() {
|