57 lines
930 B
Vue
57 lines
930 B
Vue
<template>
|
|
<div class="play">
|
|
播放
|
|
</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>
|