Files
2024-09-27 02:06:13 +08:00

57 lines
931 B
Vue

<template>
<div class="radio">
播放
</div>
</template>
<script>
import lime from "../../components/lime-painter"
export default {
data () {
return {
href: 'https://uniapp.dcloud.io/component/README?id=uniui',
base: {
width: '686rpx',
height: '130rpx',
views: [
{
type: 'view',
css: {
left: '0rpx',
top: '0rpx',
background: '#07c160',
width: '120rpx',
height: '120rpx'
}
}
]
}
}
},
created () {
// this.GetIndex()
},
components: {
lime
},
methods: {
async GetIndex () {
console.log("GetIndex")
let res = await this.$http.IndexService.Index({});
console.log("哈哈哈:", res)
}
}
}
</script>
<style>
.container {
padding: 20px;
font-size: 14px;
line-height: 24px;
}
</style>