|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div v-if="refreshPage" style="min-width:1200px">
|
|
|
- <div style="margin:10px 10px 0 10px;border-radius:5px" class="container normal-panel sticky">
|
|
|
+ <div style="margin:10px 10px 0 10px;border-radius:5px" class="container normal-panel sticky" @click="closeTags">
|
|
|
<div class="flex-align-start flex-between normal-margin" style="flex-wrap:nowrap">
|
|
|
<div>
|
|
|
<p class="main_title mt-10">{{titleText?titleText:'##'}}</p>
|
|
|
@@ -179,6 +179,9 @@ export default {
|
|
|
},
|
|
|
refreshTag () {
|
|
|
this.$refs.tag.queryTag()
|
|
|
+ },
|
|
|
+ closeTags() {
|
|
|
+ this.$refs.tag.closeTag()
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|