合成照相馆小程序
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

32 lines
561 B

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