You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
795 B
41 lines
795 B
<template>
|
|
<s-layout
|
|
title="商学院"
|
|
tabbar="/pages/index/businessSchool"
|
|
:bgStyle="state.styles.background"
|
|
:navbarStyle="state.styles.navbar"
|
|
onShareAppMessage
|
|
>
|
|
<s-block>
|
|
<s-block-item :type="'businessSchool'" />
|
|
</s-block>
|
|
</s-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive } from 'vue';
|
|
|
|
const state = reactive({
|
|
styles: {
|
|
"background": {
|
|
"color": "#F6F6F6",
|
|
"src": ""
|
|
},
|
|
"navbar": {
|
|
"mode": "normal",
|
|
"alwaysShow": 0,
|
|
"type": "color",
|
|
"color": "",
|
|
"src": "",
|
|
"list": {
|
|
"mp": [],
|
|
"app": []
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|
|
|