Commit e6a72f23 authored by Zhang Xiaojie's avatar Zhang Xiaojie

createteam界面

parent 1bc3f8b7
<template>
<div class="teambtn">
<button class=" w-full bg-myblue rounded-3xl text-center h-10 text-white block "
@click="handleClick">
{{title}}
</button>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
name:'teambtn',
props:{
title:{
type:String,
default:'确定'
}
},
methods:{
handleClick(){
console.log('被点击了');
}
}
});
</script>
<style lang="less">
</style>
...@@ -94,6 +94,7 @@ module.exports = { ...@@ -94,6 +94,7 @@ module.exports = {
backgroundColor: theme => ({ backgroundColor: theme => ({
...theme('colors'), ...theme('colors'),
'mygray': '#F6F7F8', 'mygray': '#F6F7F8',
'myblue': '#32B2F7'
}), }),
backgroundImage: { backgroundImage: {
none: 'none', none: 'none',
...@@ -711,8 +712,9 @@ module.exports = { ...@@ -711,8 +712,9 @@ module.exports = {
}, },
textColor: (theme) => theme('colors'), textColor: (theme) => theme('colors'),
textColor:{ textColor:{
'mygray':'#8A97A5', 'mygray':'#8A97A5',
'darkgray':'#24374E' 'darkgray':'#24374E',
'white':'#FFFFFF',
}, },
textOpacity: (theme) => theme('opacity'), textOpacity: (theme) => theme('opacity'),
transformOrigin: { transformOrigin: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment