布局知识库

This commit is contained in:
qq787203167
2022-08-04 14:17:00 +08:00
parent 35dacd6004
commit ecd1567551
4 changed files with 198 additions and 2 deletions
@@ -70,17 +70,19 @@
</div>
</div>
<displayInformationModel ref="displayInformationModelRef"/>
<countryCardViewAdd ref="countryCardViewAddRef" @countryCardViewAddForm="countryCardViewAddForm"/>
</div>
</template>
<script>
import { getAction, postAction, downloadFile } from '@/api/manage'
import displayInformationModel from './displayInformationModel'
import countryCardViewAdd from './countryCardViewAdd'
export default {
name: 'countryCardView',
components: {
displayInformationModel
displayInformationModel,
countryCardViewAdd
},
data() {
return {}
@@ -92,6 +94,9 @@
this.$refs.displayInformationModelRef.getData()
},
newlyAddedClick() {
this.$refs.countryCardViewAddRef.add()
},
countryCardViewAddForm(){
}
}