Files
AI-guangzhou-uniapp/src/App.vue
2024-08-16 14:04:26 +08:00

54 lines
653 B
Vue

<script lang="ts">
export default {
mpType: 'app',
onLaunch() {},
onLoad() {},
onShow() {},
onHide() {}
}
</script>
<style lang="scss">
* {
padding: 0;
margin: 0;
box-sizing: border-box;
*::-webkit-scrollbar {
display: none;
}
}
/*每个页面公共css */
.page_class {
width: 100%;
min-height: 100vh;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
}
.rich_text,
uni-rich-text {
word-break: break-all;
ul,
ol,
blockquote,
li {
padding: revert;
margin: revert;
}
table {
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
}
}
</style>