属性库

This commit is contained in:
wang-liang0615 2023-08-15 19:34:17 +08:00
parent 37d0dacd2e
commit 92bff08b84
2 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@
import { searchAttributes } from '../../api/CITypeAttr' import { searchAttributes } from '../../api/CITypeAttr'
import AttributeCard from './attributeCard.vue' import AttributeCard from './attributeCard.vue'
export default { export default {
name: 'AttrbuteStore', name: 'AttributeStore',
components: { AttributeCard }, components: { AttributeCard },
data() { data() {
return { return {

View File

@ -29,7 +29,7 @@
<a <a
@click=" @click="
() => { () => {
$refs.AttributeStore.open() $refs.attributeStore.open()
} }
" "
>属性库</a >属性库</a
@ -258,7 +258,7 @@
</a-form> </a-form>
</CustomDrawer> </CustomDrawer>
<CMDBGrant ref="cmdbGrant" resourceType="CIType" app_id="cmdb" /> <CMDBGrant ref="cmdbGrant" resourceType="CIType" app_id="cmdb" />
<AttributeStore ref="AttributeStore" /> <AttributeStore ref="attributeStore" />
</div> </div>
</template> </template>