|
@@ -181,7 +181,7 @@ export default {
|
|
|
computed: {},
|
|
|
created() {},
|
|
|
async mounted() {
|
|
|
- this.column = await this.$commonJS.getCustomField('claimManage')
|
|
|
+ this.column = await this.$commonJS.getCustomField('claimManage',{projectId:this.projectId})
|
|
|
this.checkList = this.column.map(item=>{
|
|
|
if(!item.ifHidden){
|
|
|
return item.field
|
|
@@ -225,6 +225,7 @@ export default {
|
|
|
}
|
|
|
var params = {
|
|
|
tableName: 'claimManage',
|
|
|
+ projectId:this.projectId,
|
|
|
value: this.column,
|
|
|
}
|
|
|
this.$api.setTableColumns(params).then((response) => {
|