|
@@ -50,7 +50,7 @@
|
|
</template>
|
|
</template>
|
|
<template #do-column-value="{scope}">
|
|
<template #do-column-value="{scope}">
|
|
<CusButton v-if="scope.row.isMain == 1" type="table-add" icon="text" title="主配置" @click="onMain(scope.row)"/>
|
|
<CusButton v-if="scope.row.isMain == 1" type="table-add" icon="text" title="主配置" @click="onMain(scope.row)"/>
|
|
- <CusButton type="table-add" icon="text" title="列配置" @click="onText(scope.row)"/>
|
|
|
|
|
|
+ <CusButton v-if="scope.row.type === 'inner_index'" type="table-add" icon="text" title="列配置" @click="onText(scope.row)"/>
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
<CusButton type="table-del" @click="onDel(scope.row)"/>
|
|
<CusButton type="table-del" @click="onDel(scope.row)"/>
|
|
</template>
|
|
</template>
|
|
@@ -150,7 +150,7 @@ const handleSelect = (item) => {
|
|
themeId: props.transfer.id,
|
|
themeId: props.transfer.id,
|
|
conditionOptions: state.form.themeParam,
|
|
conditionOptions: state.form.themeParam,
|
|
relationOptions: state.query.result.data.map(v => ({dictLabel: v.indexName, dictValue: v.id})),
|
|
relationOptions: state.query.result.data.map(v => ({dictLabel: v.indexName, dictValue: v.id})),
|
|
- hasMain: state.query.result.data.some(v => v.isMain == 1)
|
|
|
|
|
|
+ hasMain: state.query.result.data.some(v => v.isMain == 1) || state.type !== 'inner_index'
|
|
}
|
|
}
|
|
state.relationDetail.show = true
|
|
state.relationDetail.show = true
|
|
}
|
|
}
|
|
@@ -202,7 +202,7 @@ const onEdit = (row) => {
|
|
indexName: row.indexName,
|
|
indexName: row.indexName,
|
|
conditionOptions: state.form.themeParam,
|
|
conditionOptions: state.form.themeParam,
|
|
relationOptions: state.query.result.data.filter(v => v.id !== row.id).map(v => ({dictLabel: v.indexName, dictValue: v.id})),
|
|
relationOptions: state.query.result.data.filter(v => v.id !== row.id).map(v => ({dictLabel: v.indexName, dictValue: v.id})),
|
|
- hasMain: hasMain
|
|
|
|
|
|
+ hasMain: hasMain || row.type !== 'inner_index'
|
|
}
|
|
}
|
|
state.relationDetail.show = true
|
|
state.relationDetail.show = true
|
|
}
|
|
}
|