Fixiaobai
2023-09-24 49f3321fa839e0ff5fb4d2de75756096a6db7b92
src/components/view/rawInsBox.vue
@@ -1,4 +1,3 @@
<style scoped>
</style>
@@ -14,23 +13,23 @@
import RawIns from './raw-ins.vue'
import RawInsDetail from './rawInsDetail.vue'
export default {
    components:{RawIns,RawInsDetail},
      components: {
         RawIns,
         RawInsDetail
      },
    data() {
        return {
            showDetail: false,
            id:0
        }
    },
    mounted(){
    },
      mounted() {},
    methods:{
        goDetail(id) {
            this.showDetail = true
            this.id = id
            console.log(this.id)
        },
        goBack() {
            this.$parent.removeAllTab()
            this.showDetail = false
        }
    }