1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="home">
- 首页
- <view class="box"></view>
- <icon type="success" size="26"/>
- <icon type="clear" size="26"/>
- <icon type="search" size="26"/>
- <h1 class="h1">你好</h1>
- <text space='emsp'>今 三</text>
- <h2>你好</h2>
- <text space="nbsp">今 三</text>
- <h2>你好</h2>
- <text space="ensp">今 三</text>
- <button @click="getList">获取列表信息</button>
- </view>
- </template>
- <script>
- export default {
- methods:{
- getList() {
-
- const result = this.$newRequest({
- url:'/rexxar/api/v2/subject_collection/tv_domestic/items?start=0&count=8',
- method:"GET"
- })
- console.log(result);
- }
- }
- }
- </script>
- <style scoped lang="scss">
- @import url("../../test.css");
- text {
- color: $uni-color-primary;
- }
- .box {
- width: 300rpx;
- height: 300rpx;
- background: #00f;
- }
- </style>
|