|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<view class="homework-container">
|
|
<view class="homework-container">
|
|
<!-- 头部区域 -->
|
|
<!-- 头部区域 -->
|
|
- <top-box :timeStamp="timeStamp"></top-box>
|
|
|
|
|
|
+ <top-box :timeStamp="timeStamp" />
|
|
<view class="module-container">
|
|
<view class="module-container">
|
|
<view style="margin: 0 20rpx;">
|
|
<view style="margin: 0 20rpx;">
|
|
<u-tabs :list="list" :current="current" @change="changeModule"
|
|
<u-tabs :list="list" :current="current" @change="changeModule"
|
|
@@ -14,12 +14,13 @@
|
|
<view class="module-box" v-for="(item,index) in card" :key="index" v-if="current == index">
|
|
<view class="module-box" v-for="(item,index) in card" :key="index" v-if="current == index">
|
|
<view class="card" :style="{backgroundColor: `${item.color}`}">
|
|
<view class="card" :style="{backgroundColor: `${item.color}`}">
|
|
<view style="display: flex; flex-direction: column;">
|
|
<view style="display: flex; flex-direction: column;">
|
|
- <text class="card-title">{{item.title}}{{item.num}}</text>
|
|
|
|
- <text class="card-subtitle">{{item.subtitle}}{{item.finish}}</text>
|
|
|
|
|
|
+ <text class="card-title">{{item.title}}{{item.detail.data.length}}</text>
|
|
|
|
+ <text class="card-subtitle">{{item.subtitle}}{{item.detail.finishData.length}}</text>
|
|
<text class="card-subtitle">完成情况: {{item.level}}</text>
|
|
<text class="card-subtitle">完成情况: {{item.level}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="image" :style="{backgroundImage:`url(${item.image})`}"></view>
|
|
<view class="image" :style="{backgroundImage:`url(${item.image})`}"></view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
<!-- 中间标题 -->
|
|
<!-- 中间标题 -->
|
|
<view style="display: flex; align-items: center;">
|
|
<view style="display: flex; align-items: center;">
|
|
<view class="cut-off">{{item.detail.nav}}</view>
|
|
<view class="cut-off">{{item.detail.nav}}</view>
|
|
@@ -33,17 +34,15 @@
|
|
<view class="t-icon t-icon-ceping"></view>
|
|
<view class="t-icon t-icon-ceping"></view>
|
|
<view class="item-text">近七天完成率</view>
|
|
<view class="item-text">近七天完成率</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <!-- 图表部分 -->
|
|
<view class="charts-box" v-if="current == 0">
|
|
<view class="charts-box" v-if="current == 0">
|
|
- <qiun-data-charts type="fin-column" :chartData="homeworkData.testData" :loadingType="4"
|
|
|
|
- :canvas2d='true' tooltipFormat='tooltipPercent' canvasId='canvans0980111' />
|
|
|
|
|
|
+ <qiun-data-charts type="fin-area" :chartData="homeworkData.testData" :loadingType="4" :canvas2d='true' tooltipFormat='HomeworkPercent' canvasId='canvans0980111' />
|
|
</view>
|
|
</view>
|
|
<view class="charts-box" v-if="current == 1">
|
|
<view class="charts-box" v-if="current == 1">
|
|
- <qiun-data-charts type="fin-column" :chartData="homeworkData.homeworkData" :loadingType="4"
|
|
|
|
- :canvas2d='true' tooltipFormat='tooltipPercent' canvasId='canvans0933511' />
|
|
|
|
|
|
+ <qiun-data-charts type="fin-area" :chartData="homeworkData.homeworkData" :loadingType="4" :canvas2d='true' tooltipFormat='HomeworkPercent' canvasId='canvans0933511' />
|
|
</view>
|
|
</view>
|
|
<view class="charts-box" v-if="current == 2">
|
|
<view class="charts-box" v-if="current == 2">
|
|
- <qiun-data-charts type="fin-column" :chartData="homeworkData.activityData" :loadingType="4"
|
|
|
|
- :canvas2d='true' tooltipFormat='tooltipPercent' canvasId='canvans0531032' />
|
|
|
|
|
|
+ <qiun-data-charts type="fin-area" :chartData="homeworkData.activityData" :loadingType="4" :canvas2d='true' tooltipFormat='HomeworkPercent' canvasId='canvans0531032' />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
@@ -52,8 +51,24 @@
|
|
<view class="t-icon t-icon-shenhe"></view>
|
|
<view class="t-icon t-icon-shenhe"></view>
|
|
<view class="item-text">今日已完成</view>
|
|
<view class="item-text">今日已完成</view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ <view style="display: flex; flex-wrap: wrap;">
|
|
|
|
+ <view class="block-finish" v-for="(j,y) in item.detail.finishData" :key="y">
|
|
|
|
+ <view class="title">{{j.name}}</view>
|
|
|
|
+ <view style="display: flex;">
|
|
|
|
+ <view class="tag-box">
|
|
|
|
+ <view class="tag">{{j.subject}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="tag-box">
|
|
|
|
+ <view class="tag">{{j.teacher}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
|
|
|
|
<view class="detail-box-item">
|
|
<view class="detail-box-item">
|
|
<view class="item-info">
|
|
<view class="item-info">
|
|
@@ -61,24 +76,22 @@
|
|
<view class="item-text">{{item.detail.title}}</view>
|
|
<view class="item-text">{{item.detail.title}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
- <view style="padding: 20rpx;">
|
|
|
|
- <u-swipe-action v-for="(msg,i) in item.detail.data" :key="i" >
|
|
|
|
- <u-swipe-action-item :options="options1">
|
|
|
|
- <view class="swipe-action u-border-top u-border-bottom">
|
|
|
|
- <view class="swipe-action__content">
|
|
|
|
- <text class="swipe-action__content__text">{{msg.name}}</text>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- </u-swipe-action-item>
|
|
|
|
- </u-swipe-action>
|
|
|
|
|
|
+ <view class="class-block" v-for="(i,x) in item.detail.data" :key="x">
|
|
|
|
+ <view class="block-title">{{i.name}}</view>
|
|
|
|
+ <view class="block-tag-box">
|
|
|
|
+ <view class="block-tag">{{i.subject}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="block-tag-box">
|
|
|
|
+ <view class="block-tag">{{i.teacher}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="block-subtitle">{{i.description}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
|
|
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -108,9 +121,7 @@
|
|
//卡片内容
|
|
//卡片内容
|
|
card: [{
|
|
card: [{
|
|
title: '今日评测数:' + '\xa0\xa0\xa0',
|
|
title: '今日评测数:' + '\xa0\xa0\xa0',
|
|
- num: 5,
|
|
|
|
subtitle: '评测已完成:' + '\xa0\xa0\xa0',
|
|
subtitle: '评测已完成:' + '\xa0\xa0\xa0',
|
|
- finish: 3,
|
|
|
|
level: '良好',
|
|
level: '良好',
|
|
color: '#0080ff;',
|
|
color: '#0080ff;',
|
|
image: 'https://ouch-cdn2.icons8.com/gpV8ZT40juL5H5uR0cv7ptJaV0vbUu64ANLmkch6cr4/rs:fit:1289:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvNTE3/L2M0Zjg4MDUzLTMx/ZDUtNDlhZS05M2Nj/LWU4YWM3YTNjODAx/My5zdmc.png',
|
|
image: 'https://ouch-cdn2.icons8.com/gpV8ZT40juL5H5uR0cv7ptJaV0vbUu64ANLmkch6cr4/rs:fit:1289:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvNTE3/L2M0Zjg4MDUzLTMx/ZDUtNDlhZS05M2Nj/LWU4YWM3YTNjODAx/My5zdmc.png',
|
|
@@ -118,22 +129,53 @@
|
|
nav: '评测信息',
|
|
nav: '评测信息',
|
|
title: '评测列表',
|
|
title: '评测列表',
|
|
data: [{
|
|
data: [{
|
|
- name: '评测数据1'
|
|
|
|
|
|
+ name: '评测数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '评测数据2'
|
|
|
|
|
|
+ name: '评测数据2',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '评测数据3'
|
|
|
|
|
|
+ name: '评测数据3',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '评测数据4'
|
|
|
|
|
|
+ name: '评测数据4',
|
|
|
|
+ subject: '思品',
|
|
|
|
+ teacher: '李老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '评测数据5'
|
|
|
|
|
|
+ name: '评测数据5',
|
|
|
|
+ subject: '科学',
|
|
|
|
+ teacher: '李老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
|
|
+ }],
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ finishData: [{
|
|
|
|
+ name: '评测数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '评测数据2',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '评测数据3',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是评测描述信息'
|
|
}]
|
|
}]
|
|
}
|
|
}
|
|
}, {
|
|
}, {
|
|
title: '今日作业数:' + '\xa0\xa0\xa0',
|
|
title: '今日作业数:' + '\xa0\xa0\xa0',
|
|
- num: 3,
|
|
|
|
subtitle: '作业已完成:' + '\xa0\xa0\xa0',
|
|
subtitle: '作业已完成:' + '\xa0\xa0\xa0',
|
|
- finish: 3,
|
|
|
|
level: '完美',
|
|
level: '完美',
|
|
color: '#ff8caf;',
|
|
color: '#ff8caf;',
|
|
image: 'https://ouch-cdn2.icons8.com/XuAMXajgkDqsOY7cp6uY1LQivtTxahNZjWM1Qk2bfoY/rs:fit:1216:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvMzE4/LzdjYTU2NDM4LTc4/MTktNDVhNi1hMjZh/LTMyZWE5NDE4YzI5/My5zdmc.png',
|
|
image: 'https://ouch-cdn2.icons8.com/XuAMXajgkDqsOY7cp6uY1LQivtTxahNZjWM1Qk2bfoY/rs:fit:1216:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvMzE4/LzdjYTU2NDM4LTc4/MTktNDVhNi1hMjZh/LTMyZWE5NDE4YzI5/My5zdmc.png',
|
|
@@ -141,18 +183,42 @@
|
|
nav: '作业信息',
|
|
nav: '作业信息',
|
|
title: '作业列表',
|
|
title: '作业列表',
|
|
data: [{
|
|
data: [{
|
|
- name: '作业数据1'
|
|
|
|
|
|
+ name: '作业数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '作业数据2',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '作业数据2'
|
|
|
|
|
|
+ name: '作业数据3',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
|
|
+ }],
|
|
|
|
+
|
|
|
|
+ finishData:[{
|
|
|
|
+ name: '作业数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '作业数据2',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '作业数据3'
|
|
|
|
|
|
+ name: '作业数据3',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是作业描述信息'
|
|
}]
|
|
}]
|
|
}
|
|
}
|
|
}, {
|
|
}, {
|
|
title: '今日活动数:' + '\xa0\xa0\xa0',
|
|
title: '今日活动数:' + '\xa0\xa0\xa0',
|
|
- num: 6,
|
|
|
|
subtitle: '活动已完成:' + '\xa0\xa0\xa0',
|
|
subtitle: '活动已完成:' + '\xa0\xa0\xa0',
|
|
- finish: 5,
|
|
|
|
level: '优秀',
|
|
level: '优秀',
|
|
color: '#f9c752;',
|
|
color: '#f9c752;',
|
|
image: 'https://ouch-cdn2.icons8.com/xrmiKHmKAqKegMFWYXXUHk6mqTXXTqoU0wsTFULoboQ/rs:fit:1002:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvNzcy/LzczYWVmZjhkLTk4/N2ItNDI2Ny04NmNk/LTA1NTI4YjhiMTIw/Ni5zdmc.png',
|
|
image: 'https://ouch-cdn2.icons8.com/xrmiKHmKAqKegMFWYXXUHk6mqTXXTqoU0wsTFULoboQ/rs:fit:1002:912/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9zdmcvNzcy/LzczYWVmZjhkLTk4/N2ItNDI2Ny04NmNk/LTA1NTI4YjhiMTIw/Ni5zdmc.png',
|
|
@@ -160,42 +226,82 @@
|
|
nav: '活动信息',
|
|
nav: '活动信息',
|
|
title: '活动列表',
|
|
title: '活动列表',
|
|
data: [{
|
|
data: [{
|
|
- name: '活动数据1'
|
|
|
|
|
|
+ name: '活动数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '活动数据2',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '活动数据2'
|
|
|
|
|
|
+ name: '活动数据3',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '活动数据3'
|
|
|
|
|
|
+ name: '活动数据4',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '活动数据4'
|
|
|
|
|
|
+ name: '活动数据5',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '活动数据5'
|
|
|
|
|
|
+ name: '活动数据6',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
|
|
+ }],
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ finishData:[{
|
|
|
|
+ name: '活动数据1',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '活动数据2',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}, {
|
|
}, {
|
|
- name: '活动数据6'
|
|
|
|
|
|
+ name: '活动数据3',
|
|
|
|
+ subject: '语文',
|
|
|
|
+ teacher: '张老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '活动数据4',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
|
|
+ }, {
|
|
|
|
+ name: '活动数据5',
|
|
|
|
+ subject: '数学',
|
|
|
|
+ teacher: '王老师',
|
|
|
|
+ description: '这里是活动描述信息'
|
|
}]
|
|
}]
|
|
}
|
|
}
|
|
}],
|
|
}],
|
|
//历史数据
|
|
//历史数据
|
|
historyData: {
|
|
historyData: {
|
|
- test: [90, 89, 98, 100, 50, 55,77],
|
|
|
|
- homework: [10, 29, 38, 60, 50,88,100],
|
|
|
|
- activity: [70, 19, 28, 40, 60,100,100]
|
|
|
|
|
|
+ test: [90, 89, 98, 100, 50, 55, 77],
|
|
|
|
+ homework: [10, 29, 38, 60, 50, 88, 100],
|
|
|
|
+ activity: [70, 19, 28, 40, 60, 100, 100]
|
|
},
|
|
},
|
|
- options1: [{
|
|
|
|
- text: '待办',
|
|
|
|
- style: {
|
|
|
|
- backgroundColor: '#3c9cff'
|
|
|
|
- }
|
|
|
|
- }, {
|
|
|
|
- text: '删除',
|
|
|
|
- style: {
|
|
|
|
- backgroundColor: '#f56c6c'
|
|
|
|
- }
|
|
|
|
- }],
|
|
|
|
|
|
+
|
|
|
|
+
|
|
};
|
|
};
|
|
},
|
|
},
|
|
onLoad() {
|
|
onLoad() {
|
|
this.$getTimeStamp()
|
|
this.$getTimeStamp()
|
|
this.saveToStudyChart()
|
|
this.saveToStudyChart()
|
|
|
|
+ let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
|
|
|
|
+ let curParam = routes[routes.length - 1].options; //获取路由参数
|
|
|
|
+ this.current = curParam.index
|
|
},
|
|
},
|
|
//刷新页面
|
|
//刷新页面
|
|
onPullDownRefresh() {
|
|
onPullDownRefresh() {
|
|
@@ -243,12 +349,10 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
- .homework-container {
|
|
|
|
-
|
|
|
|
|
|
+ @import '@/pages/common/blockmsg.scss';
|
|
.home-topinfo {
|
|
.home-topinfo {
|
|
background: linear-gradient($color-green, $page-background-color) !important;
|
|
background: linear-gradient($color-green, $page-background-color) !important;
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
|
|
.module-container {
|
|
.module-container {
|
|
margin-top: -70rpx;
|
|
margin-top: -70rpx;
|
|
@@ -310,6 +414,7 @@
|
|
.item-info {
|
|
.item-info {
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
|
|
+ padding: 20rpx;
|
|
|
|
|
|
.t-icon {
|
|
.t-icon {
|
|
width: 40rpx;
|
|
width: 40rpx;
|
|
@@ -320,42 +425,47 @@
|
|
font-size: 30rpx;
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
color: $color-title;
|
|
color: $color-title;
|
|
- margin-left: 10rpx;
|
|
|
|
|
|
+ margin-left: 15rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ .block-finish{
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: space-around;
|
|
|
|
+ background-color: #f6f6f6;
|
|
|
|
+ margin: 10rpx auto 10rpx auto;
|
|
|
|
+ padding: 5rpx;
|
|
|
|
+ width: 44%;
|
|
|
|
+ height: 120rpx;
|
|
|
|
+ border-radius: $card-border-radius;
|
|
|
|
+ .title {
|
|
|
|
+ font-size: 30rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: $color-title;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .subtitle {
|
|
|
|
+ font-size: 22rpx;
|
|
|
|
+ color: $color-title;
|
|
|
|
+ }
|
|
|
|
+ .tag-box{
|
|
|
|
+ border-radius: 20rpx;
|
|
|
|
+ border: 1rpx solid #3C9CFF;
|
|
|
|
+ padding: 6rpx;
|
|
|
|
+ margin: 10rpx;
|
|
|
|
+ .tag{
|
|
|
|
+ font-size: 22rpx;
|
|
|
|
+ color: #3C9CFF;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
.charts-box {
|
|
.charts-box {
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 250rpx;
|
|
|
|
|
|
+ height: 230rpx;
|
|
margin-bottom: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
}
|
|
-
|
|
|
|
- .t-icon {
|
|
|
|
- margin: 20rpx;
|
|
|
|
- width: 110rpx;
|
|
|
|
- height: 110rpx;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .u-page {
|
|
|
|
- padding: 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .u-demo-block__title {
|
|
|
|
- padding: 10px 0 2px 15px;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .swipe-action {
|
|
|
|
- &__content {
|
|
|
|
- padding: 25rpx 0;
|
|
|
|
-
|
|
|
|
- &__text {
|
|
|
|
- font-size: 15px;
|
|
|
|
- color: $u-main-color;
|
|
|
|
- padding-left: 30rpx;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-</style>
|
|
|
|
|
|
+</style>
|