<template>
<page-container :show="isShow" position="bottom" bind:enter="onEnter" bind:clickoverlay="onClickOverlay">
<view class="space-view">
<view class="modify-sub">
<image src="/static/detail/guanbi.svg" mode="widthFix" @click="isShow=false"></image>
</view>
<view class="att-input">
<input type="text" placeholder="请输入分类" placeholder-class="i-style" cursor-spacing="50"/>
</view>
<view class="newly-added classif">提交</view>
</view>
</page-container>
</template>
<script setup>
function onClickOverlay(e) {
console.log(e)
}
</script>
<style>
</style>