合成照相馆小程序
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.
 
 
 
photo_uniapp/meeting/index/index.vue

34 lines
664 B

<template>
<div>
<custom_navbar title="Ai会议助手" :isFixed="false"></custom_navbar>
<div>
<u-button :customStyle="customStyle1">立即开始会议</u-button>
</div>
</div>
</template>
<script>
import custom_navbar from "../components/custom_navbar.vue";
export default {
components: {
custom_navbar,
},
data() {
return {
customStyle1: {
width: "558rpx",
height: "80rpx",
borderRadius: "16rpx",
backgroundColor: "#1467FF",
color: '#fff',
fontSize: "30rpx",
fontWeight: "700",
},
};
},
};
</script>
<style>
</style>