mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2026-07-27 04:20:43 +08:00
Compare commits
15 Commits
v1.0.1-beta
...
v1.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| a0f3d1b220 | |||
| 6e80fa14c8 | |||
| 22a8e92dc2 | |||
| 6b1e0e5cc0 | |||
| 261617fc12 | |||
| 5000da9a64 | |||
| 9573b303e2 | |||
| f12262f4df | |||
| 1305b4a555 | |||
| b7e2025ebb | |||
| 0da5feb2ee | |||
| e46c5c2b6f | |||
| 70c5b34de0 | |||
| 9d3ebac076 | |||
| 3fd3b2247a |
@@ -2,4 +2,5 @@ node_modules/
|
||||
unpackage/
|
||||
config/halo.config.js
|
||||
config/ad.config.js
|
||||
config/love.config.js
|
||||
package-lock.json
|
||||
@@ -64,14 +64,10 @@ export default {
|
||||
@import './common/icons/mphtmliconfont.css';
|
||||
|
||||
/* #ifndef MP-WEIXIN */
|
||||
@import './common/markdown/markdown.scss'; //引入markdown呈现
|
||||
@import './common/markdown/markdown.scss';
|
||||
/* #endif */
|
||||
|
||||
page {
|
||||
// background-color: #f3f5f7;
|
||||
// background-color: #f7f7f7;
|
||||
// background-color: #ffffff;
|
||||
background-color: #fafafa;
|
||||
// background-color: #f4f5f5;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -94,8 +94,13 @@
|
||||
|
||||
## 🌈 在线体验
|
||||
|
||||
- 敬请期待...
|
||||
微信小程序搜索:小莫唐尼
|
||||
<br/>
|
||||

|
||||
|
||||
## 🌈 交流群
|
||||
|
||||
QQ群号:632969367
|
||||
|
||||
## 🔍 许可证
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ import archive from './archive.js'
|
||||
import article from './article.js'
|
||||
import blogger from './blogger.js'
|
||||
import category from './category.js'
|
||||
import tag from './tag.js'
|
||||
import comment from './comment.js'
|
||||
import journal from './journal.js'
|
||||
import link from './link.js'
|
||||
@@ -44,6 +45,7 @@ const ApiManager = {
|
||||
...article,
|
||||
...blogger,
|
||||
...category,
|
||||
...tag,
|
||||
...comment,
|
||||
...journal,
|
||||
...link,
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* 标签接口
|
||||
* @see https://api.halo.run/content-api.html#tag/tag-controller
|
||||
*/
|
||||
|
||||
import HttpHandler from '@/common/http/request.js'
|
||||
export default {
|
||||
/**
|
||||
* 查询标签列表
|
||||
* @param {Object} params 查询参数
|
||||
*/
|
||||
getTagList: (params) => {
|
||||
return HttpHandler.Get('/api/content/tags', params)
|
||||
},
|
||||
|
||||
/**
|
||||
* 查询标签下的文章
|
||||
* @param {String} slug 别名
|
||||
* @param {Object} params 查询参数
|
||||
*/
|
||||
getTagPostsList: (slug, params) => {
|
||||
return HttpHandler.Get(`/api/content/tags/${slug}/posts`, params)
|
||||
},
|
||||
}
|
||||
@@ -44,53 +44,53 @@ export default {
|
||||
color: var(--main);
|
||||
line-height: 24px;
|
||||
position: relative;
|
||||
font-size:1.25em;
|
||||
font-size:1.2em;
|
||||
`,
|
||||
h2: `
|
||||
color: var(--main);
|
||||
line-height: 24px;
|
||||
position: relative;
|
||||
margin: 22px 0 16px;
|
||||
font-size: 1.2em;
|
||||
font-size: 1.16em;
|
||||
`,
|
||||
h3: `
|
||||
color: var(--main);
|
||||
line-height: 24px;
|
||||
position: relative;
|
||||
margin: 26px 0 18px;
|
||||
font-size: 1.3em;
|
||||
font-size: 1.14em;
|
||||
`,
|
||||
h4: `
|
||||
color: var(--main);
|
||||
line-height: 24px;
|
||||
margin-bottom: 18px;
|
||||
position: relative;
|
||||
font-size: 1.18em;
|
||||
font-size: 1.12em;
|
||||
`,
|
||||
h5: `
|
||||
color: var(--main);
|
||||
line-height: 24px;
|
||||
margin-bottom: 14px;
|
||||
position: relative;
|
||||
font-size: 1em;
|
||||
font-size: 1.1em;
|
||||
`,
|
||||
h6: `
|
||||
color: #303133;
|
||||
line-height: 24px;
|
||||
margin-bottom: 14px;
|
||||
position: relative;
|
||||
font-size: 1em;
|
||||
font-size: 14px;
|
||||
`,
|
||||
p: `
|
||||
line-height: 1.65;
|
||||
margin-bottom: 14px;
|
||||
font-size: 15px;
|
||||
font-size: 14px;
|
||||
`,
|
||||
'code': ` `,
|
||||
strong: 'font-weight: 700;color: rgb(248, 57, 41);',
|
||||
video: 'width: 100%',
|
||||
},
|
||||
containStyle: 'font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, "PingFang SC", Cambria, Cochin, Georgia, Times, "Times New Roman", serif;padding:12px;font-size: 16px;color: #606266;word-spacing: 0.8px;letter-spacing: 0.8px;border-radius: 6px;background-color:#FFFFFF;',
|
||||
containStyle: 'font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, "PingFang SC", Cambria, Cochin, Georgia, Times, "Times New Roman", serif;padding:12px;font-size: 14px;color: #606266;word-spacing: 0.8px;letter-spacing: 0.8px;border-radius: 6px;background-color:#FFFFFF;',
|
||||
|
||||
loadingGif: HaloConfig.loadingGifUrl,
|
||||
emptyGif: HaloConfig.loadingEmptyUrl,
|
||||
|
||||
@@ -24,7 +24,7 @@ export default {
|
||||
computed: {
|
||||
// 获取全局应用设置
|
||||
globalAppSettings() {
|
||||
return uni.$tm.vx.getters().setting.getSettings;
|
||||
return uni.$tm.vx.getters().getSettings;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
// 微信分享配置
|
||||
import haloConfig from '@/config/halo.config.js'
|
||||
import { jsonToUrlParams2 } from '@/utils/url.params.js'
|
||||
export const haloWxShareMixin = {
|
||||
data() {
|
||||
return {
|
||||
haloWxShareData: {
|
||||
...haloConfig.wxShareConfig
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
//#ifdef MP-WEIXIN
|
||||
onShareAppMessage(res) {
|
||||
return {
|
||||
...this.haloWxShareData,
|
||||
success: res => {}
|
||||
}
|
||||
},
|
||||
//#endif
|
||||
/* 分享到微信好友 */
|
||||
onShareAppMessage(res) {
|
||||
const promise = new Promise(resolve => {
|
||||
setTimeout(() => {
|
||||
resolve({
|
||||
title: this.haloWxShareData.title,
|
||||
path: this.haloWxShareData.path,
|
||||
})
|
||||
}, 2000)
|
||||
})
|
||||
return {
|
||||
title: this.haloWxShareData.title,
|
||||
path: '',
|
||||
promise
|
||||
}
|
||||
},
|
||||
|
||||
// 分享到朋友圈-这里封装不够,在页面还要声明一次,否则是拿不到参数的,被分享者在朋友圈打开链接是空的
|
||||
onShareTimeline: function() {
|
||||
return {
|
||||
title: this.haloWxShareData.title,
|
||||
query: {},
|
||||
imageUrl: this.haloWxShareData.imageUrl,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 设置分享信息(需要在页面调用)
|
||||
fnSetWxShareConfig(config = {}) {
|
||||
let currentRoutes = getCurrentPages(); // 获取当前打开过的页面路由数组
|
||||
let currentRoute = currentRoutes[currentRoutes.length - 1].route; //获取当前页面路由(分销思路,分享者点开使用的小程序将获取到分享者的id)
|
||||
let sharePath = currentRoutes
|
||||
if (config.params) {
|
||||
const URLParams = config.params ? jsonToUrlParams2(config.params) : {};
|
||||
sharePath += URLParams
|
||||
}
|
||||
let _config = Object.assign({}, {
|
||||
path: sharePath,
|
||||
copyLink: haloConfig.apiUrl,
|
||||
query: {}
|
||||
}, config)
|
||||
|
||||
uni.$tm.vx.commit('setWxShare', _config);
|
||||
this.haloWxShareData = _config;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -36,3 +36,120 @@
|
||||
transform: rotateZ(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
// 自定义广告
|
||||
|
||||
.ad-card {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
background-color: #ffffff;
|
||||
border-radius: 12rpx;
|
||||
|
||||
&.is-lr {
|
||||
display: flex;
|
||||
.ad-card_tip {
|
||||
top: initial;
|
||||
left: 288rpx;
|
||||
bottom: 24rpx;
|
||||
// right: 160rpx;
|
||||
padding: 4rpx 20rpx;
|
||||
background-color: transparent;
|
||||
border: 2rpx solid #607d8b;
|
||||
color: #607d8b;
|
||||
}
|
||||
.ad-card_cover {
|
||||
width: 240rpx;
|
||||
height: 180rpx;
|
||||
animation: adLinkAni 1s ease-in-out infinite;
|
||||
}
|
||||
.ad-card_info {
|
||||
width: 0;
|
||||
flex-grow: 1;
|
||||
padding-left: 24rpx;
|
||||
&-title {
|
||||
margin-top: 0;
|
||||
width: 100%;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
&-link {
|
||||
top: initial;
|
||||
// right: 150rpx;
|
||||
bottom: 0;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&_tip {
|
||||
position: absolute;
|
||||
left: 36rpx;
|
||||
top: 36rpx;
|
||||
display: inline-flex;
|
||||
box-sizing: border-box;
|
||||
border-radius: 6rpx;
|
||||
padding: 4rpx 10rpx;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
color: #ffffff;
|
||||
font-size: 24rpx;
|
||||
z-index: 2;
|
||||
}
|
||||
&_cover {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
border-radius: 6rpx;
|
||||
}
|
||||
&_info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
&-title {
|
||||
width: calc(100% - 120rpx);
|
||||
font-size: 28rpx;
|
||||
font-weight: bold;
|
||||
margin-top: 8rpx;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
color: #333;
|
||||
}
|
||||
&-desc {
|
||||
margin-top: 6rpx;
|
||||
font-size: 24rpx;
|
||||
color: #616161;
|
||||
line-height: 1.8;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
&-link {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 6rpx;
|
||||
display: inline-flex;
|
||||
box-sizing: border-box;
|
||||
border-radius: 6rpx;
|
||||
padding: 4rpx 10rpx;
|
||||
border: 2rpx solid #03a9f4;
|
||||
color: #03a9f4;
|
||||
font-size: 24rpx;
|
||||
transform: scale(0.93);
|
||||
// animation: adLinkAni 0.8s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
}
|
||||
@keyframes adLinkAni {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.02);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="title">
|
||||
<text class="is-top" v-if="article.topped">置顶</text>
|
||||
<text class="is-top bg-gradient-blue-accent" v-if="article.topped">置顶</text>
|
||||
<text class="title-text text-overflow">{{ article.title }}</text>
|
||||
</view>
|
||||
<view class="content text-overflow-2">{{ article.summary }}</view>
|
||||
@@ -33,8 +33,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import tmTags from '@/tm-vuetify/components/tm-tags/tm-tags.vue';
|
||||
export default {
|
||||
name: 'article-card',
|
||||
components: { tmTags },
|
||||
props: {
|
||||
from: {
|
||||
type: String,
|
||||
@@ -157,10 +159,10 @@ export default {
|
||||
}
|
||||
&.tb_image_text {
|
||||
flex-direction: column;
|
||||
padding: 0;
|
||||
padding: 24rpx;
|
||||
.left {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
height: 340rpx;
|
||||
.thumbnail {
|
||||
::v-deep uni-image {
|
||||
border-radius: 6rpx 6rpx 0 0 !important;
|
||||
@@ -169,7 +171,8 @@ export default {
|
||||
}
|
||||
.right {
|
||||
padding-left: 0;
|
||||
padding: 24rpx;
|
||||
padding: 24rpx 0;
|
||||
padding-bottom: 0;
|
||||
width: 100%;
|
||||
.foot {
|
||||
justify-content: flex-start;
|
||||
@@ -188,7 +191,7 @@ export default {
|
||||
flex-direction: column;
|
||||
.left {
|
||||
width: 100%;
|
||||
height: 260rpx;
|
||||
height: 340rpx;
|
||||
order: 2;
|
||||
margin-top: 24rpx;
|
||||
}
|
||||
@@ -252,6 +255,7 @@ export default {
|
||||
box-sizing: border-box;
|
||||
.title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 30rpx;
|
||||
color: var(--main-text-color);
|
||||
.is-top {
|
||||
@@ -263,8 +267,9 @@ export default {
|
||||
white-space: nowrap;
|
||||
vertical-align: 4rpx;
|
||||
color: #fff;
|
||||
background-image: -webkit-linear-gradient(0deg, #3ca5f6 0, #a86af9 100%);
|
||||
border-radius: 4rpx 12rpx;
|
||||
// background-image: -webkit-linear-gradient(0deg, #3ca5f6 0, #a86af9 100%);
|
||||
border-radius: 6rpx 12rpx;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
&-text {
|
||||
color: #303133;
|
||||
|
||||
@@ -56,7 +56,7 @@ export default {
|
||||
margin: 12rpx 24rpx;
|
||||
margin-bottom: 24rpx;
|
||||
padding: 16rpx;
|
||||
box-shadow: 0rpx 2rpx 24rpx rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0rpx 2rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
&.lr_image_text {
|
||||
}
|
||||
|
||||
|
||||
@@ -1,15 +1,11 @@
|
||||
<template>
|
||||
<view style="overflow: hidden;position: fixed;width: 100%;height: 100%;pointer-events: none; top: 0;">
|
||||
<view class="danmu-li" v-for="(item, index) in listData" :class="item.type" :style="item.style" :key="index">
|
||||
<view class="barrage-wrap" :class="[type]">
|
||||
<view class="danmu-li" v-for="(item, index) in listData" :class="[type, item.type]" :style="[item.style]" :key="index">
|
||||
<view class="danmu-inner">
|
||||
<view class="user-box">
|
||||
<view class="user-img">
|
||||
<view class="img-box">
|
||||
<image :src="item.avatar || 'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=317894666,3379114684&fm=26&gp=0.jpg'"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="user-text cl1">{{ item.nickName }}</view>
|
||||
<view class="user-status cl1">{{ item.text }}</view>
|
||||
<view class="user-img"><image class="avatar" :src="item.item.avatar"></image></view>
|
||||
<view class="user-text cl1">{{ item.item.author }}</view>
|
||||
<view class="user-status cl1">{{ item.item.content }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -18,11 +14,17 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
//rightToLeft leftToRight leftBottom
|
||||
// rightToLeft leftToRight leftBottom
|
||||
type: {
|
||||
type: String,
|
||||
default: 'rightToLeft'
|
||||
},
|
||||
list: {
|
||||
type: Array,
|
||||
default() {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
minTime: {
|
||||
type: Number,
|
||||
default: 4
|
||||
@@ -43,34 +45,34 @@ export default {
|
||||
//轨道高度
|
||||
type: Number,
|
||||
default: 40
|
||||
},
|
||||
noStacked: {
|
||||
//不允许堆叠(暂不可用)
|
||||
type: Array,
|
||||
default() {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
closeTimer: null,
|
||||
listData: []
|
||||
};
|
||||
},
|
||||
|
||||
mounted() {
|
||||
this.hrackNum = Math.floor((this.maxTop - this.minTop) / this.hrackH);
|
||||
//leftBottom 使用参数
|
||||
if (this.type === 'leftBottom') {
|
||||
this.hrackNum = Math.floor(this.maxTop / this.hrackH);
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
add(obj) {
|
||||
this.isShow = true;
|
||||
this.showFlag = true;
|
||||
let data = {
|
||||
item: obj.item,
|
||||
...obj,
|
||||
id: Date.parse(new Date()),
|
||||
time: Math.ceil(Math.floor(Math.random() * (this.maxTime - this.minTime + 1) + this.minTime)),
|
||||
type: this.type
|
||||
};
|
||||
if (this.type === 'leftBottom') {
|
||||
let objData = {
|
||||
item: data.item,
|
||||
item: data,
|
||||
type: 'leftBottomEnter',
|
||||
style: {
|
||||
transition: `all 0.5s`,
|
||||
@@ -88,7 +90,7 @@ export default {
|
||||
} else if (this.listData[i].status === 'reset') {
|
||||
//重置
|
||||
this.listData[i].style.transition = 'none';
|
||||
this.listData[i].style.bottom = 0;
|
||||
this.listData[i].style.bottom = '6px';
|
||||
this.listData[i].status = 'reuse';
|
||||
} else if (this.listData[i].status === 'recycle') {
|
||||
//回收
|
||||
@@ -105,8 +107,16 @@ export default {
|
||||
if (listLen < hrackNum + 2) {
|
||||
this.listData.push(objData);
|
||||
}
|
||||
} else if (this.type === 'rightToLeft' || this.type === 'leftToRight') {
|
||||
let objData = this.horStacked(data);
|
||||
} else if (this.type === 'rightToLeft') {
|
||||
let objData = {
|
||||
item: data,
|
||||
type: 'rightToLeft',
|
||||
style: {
|
||||
animationDuration: `${data.time}s`,
|
||||
top: `${Math.ceil(Math.random() * (this.maxTop - this.minTop + 1) + this.minTop)}px`
|
||||
},
|
||||
delTime: Date.parse(new Date()) + data.time * 1200
|
||||
};
|
||||
for (let i in this.listData) {
|
||||
if (this.listData[i].delTime <= Date.parse(new Date())) {
|
||||
this.repaint(i, objData.type);
|
||||
@@ -118,16 +128,50 @@ export default {
|
||||
this.listData.push(objData);
|
||||
}
|
||||
},
|
||||
horStacked(data) {
|
||||
return {
|
||||
item: data.item,
|
||||
type: this.type,
|
||||
style: {
|
||||
animationDuration: `${data.time}s`,
|
||||
top: `${Math.ceil(Math.random() * (this.maxTop - this.minTop + 1) + this.minTop)}px`
|
||||
async remove(options = {}) {
|
||||
if (this.type == 'rightToLeft') {
|
||||
if (this.listData.length != 0) {
|
||||
const last = this.listData[this.listData.length - 1];
|
||||
setTimeout(() => {
|
||||
this.listData = [];
|
||||
}, last.item.time * 1200 + 1000);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
options = Object.assign(
|
||||
{},
|
||||
{
|
||||
duration: 5000, // 延迟关闭的时间
|
||||
speed: 1000 // 弹幕消失的速度
|
||||
},
|
||||
delTime: Date.parse(new Date()) + data.time * 1200
|
||||
options
|
||||
);
|
||||
|
||||
const _fnHandleRemove = item => {
|
||||
return new Promise(resolve => {
|
||||
setTimeout(() => {
|
||||
// item['type'] = 'leftBottomExitLeft';
|
||||
item['type'] = 'is-hide';
|
||||
resolve();
|
||||
}, options.speed);
|
||||
});
|
||||
};
|
||||
const _fnHandleLoop = item => {
|
||||
return new Promise(resolve => {
|
||||
setTimeout(async () => {
|
||||
for (var i = 0; i < this.listData.length; i++) {
|
||||
await _fnHandleRemove(this.listData[i]);
|
||||
}
|
||||
resolve();
|
||||
}, options.duration);
|
||||
});
|
||||
};
|
||||
|
||||
await _fnHandleLoop();
|
||||
setTimeout(() => {
|
||||
this.listData = [];
|
||||
}, options.duration + 200);
|
||||
},
|
||||
repaint(index, type) {
|
||||
setTimeout(() => {
|
||||
@@ -137,8 +181,8 @@ export default {
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style></style>
|
||||
<style lang="scss">
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@keyframes leftBottomEnter {
|
||||
0% {
|
||||
transform: translateY(100%);
|
||||
@@ -163,6 +207,20 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes leftBottomExitLeft {
|
||||
0% {
|
||||
transform: translateX(0%);
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
transform: translateX(-50%);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-100%);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes leftToRight {
|
||||
0% {
|
||||
transform: translateX(-100%);
|
||||
@@ -182,13 +240,38 @@ export default {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
.barrage-wrap {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
top: 0;
|
||||
z-index: 99;
|
||||
transition: all 1s ease-in-out;
|
||||
&.leftBottom {
|
||||
top: initial;
|
||||
/* #ifdef H5 */
|
||||
bottom: 130rpx;
|
||||
/* #endif */
|
||||
/* #ifndef H5 */
|
||||
bottom: 36rpx;
|
||||
/* #endif */
|
||||
}
|
||||
}
|
||||
.danmu-li {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
transform: translateX(100%);
|
||||
animation-timing-function: linear;
|
||||
|
||||
transition: all 0.5s ease-in-out;
|
||||
opacity: 1;
|
||||
&.is-hide {
|
||||
opacity: 0;
|
||||
// transform: translateX(-100%) !important;
|
||||
}
|
||||
&.leftBottom {
|
||||
left: 24rpx;
|
||||
}
|
||||
&.leftBottomEnter {
|
||||
animation-name: leftBottomEnter;
|
||||
}
|
||||
@@ -196,53 +279,59 @@ export default {
|
||||
animation-name: leftBottomExit;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
|
||||
&.leftBottomExitLeft {
|
||||
animation-name: leftBottomExitLeft;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
&.rightToLeft {
|
||||
animation-name: rightToLeft;
|
||||
}
|
||||
|
||||
&.leftToRight {
|
||||
animation-name: leftToRight;
|
||||
animation-name: rightToLeft;
|
||||
}
|
||||
|
||||
.danmu-inner {
|
||||
display: inline-block;
|
||||
|
||||
font-size: 24rpx;
|
||||
.user-box {
|
||||
display: flex;
|
||||
padding: 3rpx 40rpx 3rpx 10rpx;
|
||||
padding: 6rpx 40rpx 6rpx 10rpx;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 32rpx;
|
||||
align-items: center;
|
||||
|
||||
.user-img {
|
||||
.img-box {
|
||||
display: flex;
|
||||
|
||||
image {
|
||||
width: 58rpx;
|
||||
height: 58rpx;
|
||||
background: rgba(55, 55, 55, 1);
|
||||
border-radius: 50%;
|
||||
}
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.avatar {
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
background: rgba(55, 55, 55, 1);
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.user-status {
|
||||
margin-left: 10rpx;
|
||||
white-space: nowrap;
|
||||
font-size: 28rpx;
|
||||
font-weight: 400;
|
||||
color: rgba(255, 255, 255, 1);
|
||||
max-width: 320rpx;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.user-text {
|
||||
max-width: 100rpx;
|
||||
margin-left: 10rpx;
|
||||
// white-space: nowrap;
|
||||
font-size: 28rpx;
|
||||
font-weight: 400;
|
||||
width: 80rpx;
|
||||
color: rgba(255, 255, 255, 1);
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="cache-image">
|
||||
<view class="cache-image-wrap">
|
||||
<view v-if="loadStatus == 'loading'" class="img-loading" :style="[imgStyle, loadStyle]">
|
||||
<!-- <text class="img-load-icon iconfont icon-loading"></text>
|
||||
<text class="img-load-text">{{ loadText }}</text> -->
|
||||
@@ -145,7 +145,7 @@ export default {
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.cache-image {
|
||||
.cache-image-wrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<view class="category-mini-card">
|
||||
<!-- <image class="img" lazy-load :src="$utils.checkThumbnailUrl(category.thumbnail)" mode="aspectFill"></image> -->
|
||||
<cache-image
|
||||
class="img"
|
||||
height="120rpx"
|
||||
@@ -35,12 +34,13 @@ export default {
|
||||
border-radius: 12rpx;
|
||||
background-color: #fff;
|
||||
overflow: hidden;
|
||||
// border: 2rpx solid #f7f7f7;
|
||||
box-shadow: 0rpx 2rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
position: relative;
|
||||
.img {
|
||||
width: 100%;
|
||||
height: 120rpx;
|
||||
border: 6rpx 6rpx 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.label {
|
||||
position: absolute;
|
||||
@@ -55,9 +55,13 @@ export default {
|
||||
padding-right: 24rpx;
|
||||
}
|
||||
.name {
|
||||
position: absolute;
|
||||
bottom: 16rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
font-size: 24rpx;
|
||||
text-align: center;
|
||||
color: var(--main-text-color);
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,8 +1,22 @@
|
||||
<template>
|
||||
<view class=" comment-item flex flex-col mt-30 pt-24" :class="{ 'child-comment-item': isChild, 'no-solid': !useSolid, classItem }">
|
||||
<view class="comment-item_user flex">
|
||||
<image v-if="comment.isAdmin" class="user-avatar" :src="bloggerInfo.avatar" mode="aspectFill" @error="fnOnImageError(comment)"></image>
|
||||
<image v-else class="user-avatar" :src="comment.avatar" mode="aspectFill" @error="fnOnImageError(comment)"></image>
|
||||
<image
|
||||
v-if="comment.isAdmin"
|
||||
class="user-avatar"
|
||||
:class="{ 'is-radius': globalAppSettings.isAvatarRadius }"
|
||||
:src="bloggerInfo.avatar"
|
||||
mode="aspectFill"
|
||||
@error="fnOnImageError(comment)"
|
||||
></image>
|
||||
<image
|
||||
v-else
|
||||
class="user-avatar"
|
||||
:class="{ 'is-radius': globalAppSettings.isAvatarRadius }"
|
||||
:src="comment.avatar"
|
||||
mode="aspectFill"
|
||||
@error="fnOnImageError(comment)"
|
||||
></image>
|
||||
<view class="user-info pl-14">
|
||||
<view class="author">
|
||||
<text class="mr-6 text-grey-darken-1 text-size-m">{{ comment.author }}</text>
|
||||
@@ -11,7 +25,7 @@
|
||||
<tm-tags v-else :dense="true" color="bg-gradient-light-blue-lighten " size="xs" model="fill">游客</tm-tags>
|
||||
</view>
|
||||
<view class="flex mt-4">
|
||||
<view v-if="false" class="text-size-s text-grey mr-12">IP属地:浙江省杭州市</view>
|
||||
<view v-if="false" class="text-size-s text-grey mr-12">IP属地:暂无信息</view>
|
||||
<view class="time text-size-xs text-grey">
|
||||
<text class="">{{ $tm.dayjs(comment.createTime).format('YYYY年MM月DD日') }}</text>
|
||||
<text class="ml-12">{{ $tm.dayjs(comment.createTime).fromNow(true) }}前</text>
|
||||
@@ -19,13 +33,12 @@
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="useActions" class="">
|
||||
<tm-button size="s" text theme="blue" @click="$emit('on-comment', { type: 'user', comment: comment })">回复</tm-button>
|
||||
<tm-button v-if="!disallowComment" size="s" text theme="blue" @click="$emit('on-comment', { type: 'user', comment: comment })">回复</tm-button>
|
||||
<tm-button size="s" text theme="grey" @click="$emit('on-copy', comment.content)">复制</tm-button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="comment-item_content mt-12" :class="{ 'has-bg': useContentBg, 'not-ml': isChild }" @click="$emit('on-detail', comment)" v-html="comment.content"></view>
|
||||
|
||||
<!-- <view v-if="useActions" class="comment-item_info text-size-s text-grey">
|
||||
<text v-if="false" @click="$emit('on-todo')">点赞</text>
|
||||
<text @click="$emit('on-comment', { type: 'user', comment: comment })">回复</text>
|
||||
@@ -46,6 +59,10 @@ export default {
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
disallowComment: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
useActions: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
@@ -74,7 +91,7 @@ export default {
|
||||
computed: {
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
let blogger = this.$tm.vx.getters().blogger.getBlogger;
|
||||
let blogger = this.$tm.vx.getters().getBlogger;
|
||||
blogger.avatar = this.$utils.checkAvatarUrl(blogger.avatar, true);
|
||||
return blogger;
|
||||
}
|
||||
@@ -111,10 +128,13 @@ export default {
|
||||
.user-avatar {
|
||||
width: 70rpx;
|
||||
height: 70rpx;
|
||||
border-radius: 50%;
|
||||
box-sizing: border-box;
|
||||
border: 4rpx solid #ffffff;
|
||||
box-shadow: 0rpx 2rpx 24rpx rgba(0, 0, 0, 0.05);
|
||||
border: 4rpx solid #ffffff;
|
||||
border-radius: 12rpx;
|
||||
&.is-radius {
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
.user-info {
|
||||
width: 0;
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
<!-- <text class="filter-item">全部</text> -->
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view v-if="disallowComment" class="disallow-comment"><tm-empty icon="icon-shiliangzhinengduixiang-" label="文章已开启禁止评论"></tm-empty></view> -->
|
||||
<!-- 内容区域 -->
|
||||
<view class="comment-list_content">
|
||||
<view v-if="loading != 'success'" class="loading-wrap flex">
|
||||
@@ -27,9 +26,21 @@
|
||||
</view>
|
||||
</view>
|
||||
<block v-else>
|
||||
<tm-alerts
|
||||
v-if="disallowComment && dataList.length !== 0"
|
||||
color="red"
|
||||
text
|
||||
:margin="[0, 0]"
|
||||
:shadow="0"
|
||||
label="Ծ‸Ծ博主已设置该文章禁止评论!"
|
||||
:round="3"
|
||||
></tm-alerts>
|
||||
<view class="empty pt-50" v-if="dataList.length == 0">
|
||||
<tm-empty icon="icon-shiliangzhinengduixiang-" label="暂无评论">
|
||||
<tm-button theme="bg-gradient-light-blue-accent" size="m" v-if="!disallowComment" @click="fnToComment(null)">抢沙发</tm-button>
|
||||
<tm-empty v-if="disallowComment" icon="icon-shiliangzhinengduixiang-" label="暂无评论">
|
||||
<text class="text-red text-size-s">- 文章已开启禁止评论 -</text>
|
||||
</tm-empty>
|
||||
<tm-empty v-else icon="icon-shiliangzhinengduixiang-" label="暂无评论">
|
||||
<tm-button theme="light-blue" :dense="true" :shadow="0" size="m" @click="fnToComment(null)">抢沙发</tm-button>
|
||||
</tm-empty>
|
||||
</view>
|
||||
<block v-else>
|
||||
@@ -40,6 +51,7 @@
|
||||
:isChild="false"
|
||||
:comment="comment"
|
||||
:postId="postId"
|
||||
:disallowComment="disallowComment"
|
||||
@on-copy="fnCopyContent"
|
||||
@on-comment="fnToComment"
|
||||
@on-todo="fnToDo"
|
||||
@@ -54,6 +66,7 @@
|
||||
:isChild="true"
|
||||
:comment="childComment"
|
||||
:postId="postId"
|
||||
:disallowComment="disallowComment"
|
||||
@on-copy="fnCopyContent"
|
||||
@on-comment="fnToComment"
|
||||
@on-todo="fnToDo"
|
||||
@@ -74,9 +87,11 @@
|
||||
<script>
|
||||
import tmEmpty from '@/tm-vuetify/components/tm-empty/tm-empty.vue';
|
||||
import tmButton from '@/tm-vuetify/components/tm-button/tm-button.vue';
|
||||
import tmAlerts from '@/tm-vuetify/components/tm-alerts/tm-alerts.vue';
|
||||
|
||||
export default {
|
||||
name: 'comment-list',
|
||||
components: { tmEmpty, tmButton },
|
||||
components: { tmEmpty, tmButton, tmAlerts },
|
||||
props: {
|
||||
// 是否禁用评论
|
||||
disallowComment: {
|
||||
@@ -127,6 +142,7 @@ export default {
|
||||
this.result = res.data;
|
||||
this.dataList = res.data.content;
|
||||
this.loading = 'success';
|
||||
this.$emit('on-loaded', this.dataList);
|
||||
} else {
|
||||
this.loading = 'error';
|
||||
}
|
||||
@@ -200,7 +216,7 @@ export default {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
padding-left: 24rpx;
|
||||
font-size: 34rpx;
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
|
||||
&:before {
|
||||
@@ -209,7 +225,7 @@ export default {
|
||||
left: 0rpx;
|
||||
top: 8rpx;
|
||||
width: 8rpx;
|
||||
height: 30rpx;
|
||||
height: 26rpx;
|
||||
background-color: rgb(3, 174, 252);
|
||||
border-radius: 6rpx;
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ export default {
|
||||
computed: {
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
let blogger = this.$tm.vx.getters().blogger.getBlogger;
|
||||
let blogger = this.$tm.vx.getters().getBlogger;
|
||||
blogger.avatar = this.$utils.checkAvatarUrl(blogger.avatar, true);
|
||||
return blogger;
|
||||
}
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
#如何使用
|
||||
###js
|
||||
```javascript
|
||||
import lffBarrage from '@/components/lff-barrage/lff-barrage.vue'
|
||||
components:{lffBarrage},
|
||||
methods:{
|
||||
colrdo(){ //插入一条弹幕
|
||||
this.$refs.lffBarrage.add({item:'你好呀小伙子'});
|
||||
}
|
||||
}
|
||||
```
|
||||
###HTML
|
||||
```html
|
||||
<lff-barrage ref="lffBarrage"></lff-barrage>
|
||||
```
|
||||
@@ -0,0 +1,85 @@
|
||||
<template>
|
||||
<view class="scroll-btn" :style="{ bottom: bottom }" @click.stop="fnScroll()">
|
||||
<text v-if="_scrollTop >= 180" class="iconfont icon-long-arrow-up"></text>
|
||||
<text v-else class="iconfont icon-long-arrow-down"></text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import throttle from '@/utils/throttle.js';
|
||||
export default {
|
||||
name: 'scroll-btn',
|
||||
props: {
|
||||
bottom: {
|
||||
type: String,
|
||||
default: '180rpx'
|
||||
},
|
||||
scrollTop: {
|
||||
type: Number,
|
||||
default: 0
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return { timer: null, _scrollTop: 0 };
|
||||
},
|
||||
watch: {
|
||||
scrollTop(val) {
|
||||
this._scrollTop = val;
|
||||
this.$forceUpdate();
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this._scrollTop = this.scrollTop;
|
||||
},
|
||||
methods: {
|
||||
fnScroll() {
|
||||
throttle(() => {
|
||||
this.$emit('on-status', false);
|
||||
const isTop = this._scrollTop >= 180;
|
||||
this._scrollTop = isTop ? 0 : 999999999999;
|
||||
uni.pageScrollTo({
|
||||
duration: 500,
|
||||
scrollTop: this._scrollTop,
|
||||
success: () => {
|
||||
clearTimeout(this.timer);
|
||||
this.timer = setTimeout(() => {
|
||||
this.$emit('on-status', true);
|
||||
}, 500);
|
||||
}
|
||||
});
|
||||
this.$emit('update:scrollTop', this._scrollTop);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.scroll-btn {
|
||||
position: fixed;
|
||||
// bottom: 200rpx;
|
||||
// right: -90rpx;
|
||||
right: 52rpx;
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
border-radius: 50%;
|
||||
border: 4rpx solid #ffffff;
|
||||
background-color: #bfe9ef;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.1);
|
||||
z-index: 99;
|
||||
transition: right 0.5s ease-in-out;
|
||||
|
||||
&.is-show {
|
||||
right: 52rpx;
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-size: 36rpx;
|
||||
color: #555;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -15,6 +15,16 @@ export default {
|
||||
},
|
||||
// 文章详情广告
|
||||
articleDetail: {
|
||||
use: false, // 是否启用
|
||||
// 微信广告/dclound申请的广告
|
||||
use: true,
|
||||
|
||||
// 自定义广告
|
||||
custom: {
|
||||
use: true,
|
||||
cover: 'https://b.925i.cn/uni_halo/uni_halo_ad_cover.png',
|
||||
title: 'uni-halo 正式开源啦,欢迎来使用和体验!',
|
||||
content: '基于 uni-app + halo1.x API 实现一款现代化的开源博客 / CMS 系统API开发的多端应用。功能包括:前台博客系统 和 后台管理系统,同时满足浏览和管理两端合一的需求,真正实现一个应用实现博客浏览和后台管理。',
|
||||
url: 'https://uni-halo.925i.cn'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,14 +14,17 @@ export default {
|
||||
showAbout: true, // 显示关于项目入口
|
||||
uni_halo_logo: 'https://b.925i.cn/uni_halo/uni_halo_logo.png', // uni-halo的logo
|
||||
|
||||
apiUrl: '', // Api基础域名(您的halo博客基础域名或者是Halo后台管理系统api地址)
|
||||
apiAuthorization: '', // Halo中-系统-博客设置-切换到高级选项-API设置-Access key
|
||||
apiUrl: '', // Api基础域名 [必填] :你的Halo博客基础域名
|
||||
apiAuthorization: '', // Api认证key [必填]: Halo中-系统-博客设置-切换到高级选项-API设置-Access key
|
||||
|
||||
title: '', // 博客标题
|
||||
miniCodeImageUrl: '', // 小程序码地址
|
||||
title: '', // 博客标题 [建议必填]:在某些页面没有设置具体的页面名称时候,使用该值显示
|
||||
miniCodeImageUrl: '', // 小程序的太阳码/二维码的图片地址 [建议必填]:主要用于文章详情页面的生成海报的功能
|
||||
aboutProfileImageUrl: '', // 关于页面中的资料卡背景图 [建议必填]
|
||||
|
||||
start: { // 首次启动页配置
|
||||
title: 'uni-halo', // 标题
|
||||
// 启动页面的配置(页面地址`/pagesA/start/start`)
|
||||
start: {
|
||||
use: true, // 是否使用首次启动页:用户第一次使用你的应用会显示否则不显示
|
||||
title: 'uni-halo', // 启动页面中的文字标题
|
||||
bg: '', // 留空则使用默认 开屏首页背景,可以是颜色值或者图片图片地址
|
||||
logo: 'https://b.925i.cn/uni_halo/uni_halo_logo.png', // logo
|
||||
desc1: '全新UI,准备出发', // 描述信息1
|
||||
@@ -29,12 +32,25 @@ export default {
|
||||
btnText: '全新触发' // 按钮文字
|
||||
},
|
||||
|
||||
// 博主信息
|
||||
author: {
|
||||
name: '', // 昵称
|
||||
avatar: '', // 头像地址
|
||||
motto: '', // 格言
|
||||
use: true, // 是否启用这里配置的信息,不启用则获取PC端博客设置的信息
|
||||
nickname: '', // 昵称
|
||||
avatar: '', // 头像
|
||||
email: '', // 邮箱
|
||||
description: '', // 介绍
|
||||
},
|
||||
|
||||
// 版权信息(用于文章详情)
|
||||
copyright: {
|
||||
use: true, // 是否使用版权描述
|
||||
author: '', // 版权归属说明
|
||||
description: '', // 版权描述
|
||||
violation: '', // 侵权处理说明
|
||||
},
|
||||
|
||||
// 社交信息(将会在`/pagesA/contact/contact`页面中展示)
|
||||
// 具体的某个参数值留空则不展示
|
||||
social: {
|
||||
qq: "", // qq号
|
||||
wechat: "", // 微信号
|
||||
@@ -49,6 +65,7 @@ export default {
|
||||
},
|
||||
|
||||
defaultThumbnailUrl: '', // 默认封面图地址
|
||||
defaultStaticThumbnailUrl: '', // 静态默认封面图(不可以是随机图地址)
|
||||
defaultImageUrl: '', // 默认图片地址
|
||||
defaultAvatarUrl: '', // 默认头像地址
|
||||
|
||||
@@ -105,8 +122,8 @@ export default {
|
||||
title: '', // 小程序分享标题[非必填]
|
||||
desc: '', // 小程序分享描述[非必填]
|
||||
imageUrl: '', // 小程序分享时候图片地址[非必填]
|
||||
path: '/pages/start/start', // 分享路径[非必填] - 基本不需要修改
|
||||
copyLink: '/pages/start/start', // 复制链接[非必填] - 基本不需要修改
|
||||
path: '/pages/index/index', // 分享路径[非必填] - 基本不需要修改
|
||||
copyLink: '/pages/index/index', // 复制链接[非必填] - 基本不需要修改
|
||||
query: {}, // 分享参数[非必填] - 基本不需要填写
|
||||
},
|
||||
|
||||
|
||||
@@ -0,0 +1,148 @@
|
||||
/**
|
||||
* 恋爱日记配置
|
||||
*/
|
||||
export default {
|
||||
waveImageUrl: 'https://b.925i.cn/uni_halo/uni_halo_about_wave.gif', // 波浪图片地址
|
||||
bgImageUrl: 'https://b.925i.cn/uni_halo_love/love_bg1.png', // 背景图片
|
||||
loveImageUrl: 'https://b.925i.cn/uni_halo_love/like.png', // 爱心图片
|
||||
|
||||
boy: {
|
||||
name: '未知男主',
|
||||
avatar: 'https://b.925i.cn/uni_halo_love/love_boy.png',
|
||||
birthday: '2022-09-25', // 生日
|
||||
},
|
||||
|
||||
girl: {
|
||||
name: '未知女主',
|
||||
avatar: 'https://b.925i.cn/uni_halo_love/love_girl.png',
|
||||
birthday: '2022-04-19', // 生日
|
||||
},
|
||||
timeTitle: '这是我们一起走过的',
|
||||
loveStartDate: '2022-04-10 13:14:20', // 恋爱开始时间
|
||||
|
||||
nav: [{
|
||||
key: 'journey',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '关于我们',
|
||||
desc: '我们一起度过的那些经历'
|
||||
},
|
||||
{
|
||||
key: 'album',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '恋爱相册',
|
||||
desc: '定格了我们的那些小美好'
|
||||
},
|
||||
{
|
||||
key: 'list',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '恋爱清单',
|
||||
desc: '你我之间的约定我们都在努力实现'
|
||||
},
|
||||
],
|
||||
|
||||
// 关于我们:支持富文本内容
|
||||
journey: `
|
||||
准备晚安啦,睡觉前讲个故事吧~<p>槐树庄的村口有一棵大槐树,树下的村口第一家就是猫奶奶的家。</p><p>猫奶奶是一位孤寡老人,因为她经常收留和救治周围的流浪猫,所以村民就都管她叫“猫奶奶”。</p><p>一个月圆之夜,猫奶奶走到院门口,忽然发现门口石级上放着一个红毯子,里面包着一个啼(tí)哭的女婴。</p><p>猫奶奶找不到女婴的父母,只好收留了她,并给她起了个名字叫樱红。</p><p>猫奶奶辛苦地抚育着樱红成长,转眼之间,樱红已经九岁,上小学三年级了。</p><p>从樱红懂事起,猫奶奶就爱给她讲一个睡前故事,那是当地一个古老的传说。</p><p>在浓郁的树影深处有一个百花园,百花园里生长着奇花异草,还住了一个会唱歌的花仙子。花仙子的歌声美丽动人,能治百病。但是那里有一条奇怪的规矩,寻找花仙子的人在进入百花园后,见到花仙子之前,都不能发出一点声音,不然花仙子就不会出来见他。</p><p>受这个故事的影响,樱红特别喜欢唱歌。</p><p>这天晚上,樱红放学回家,家家户户炊烟袅(niǎo)袅,而自家烟囱却连一丝一缕(lǚ)的炊烟都没有。</p><p>樱红一惊,冲进院门一看,果然出事了!只见猫奶奶呻吟着倒在灶台前,双目紧闭,两只小脚也在不停地抽搐(chù)。</p><p>樱红慌了,好在有邻居的帮助,猫奶奶被送到了医院。经过抢救,猫奶奶总算醒过来,但是却半身不遂(suí),说话也不利落了。</p><p>猫奶奶不能下地行走做家务,小小的樱红,一夜之间就挑起了家庭的重担。</p><p>樱红一面求助于村委会,四处寻医问药,让猫奶奶获得进一步的治疗;一面在课余学做家务,悉心照顾猫奶奶,端水喂饭,不辞辛苦。</p><p>自从猫奶奶病倒以后,樱红每天早晨推开院门就会看见门前放着一朵小花,有时还会有一两尾鲜活的鲑(guī)鱼。</p><p>这样过了三个月,好奇的樱红在一个夜晚悄悄躲在院门的后面,想看看到底是谁。</p><p>到了午夜十二点,只见一只花猫衔着一棵风铃草来到院门前,把风铃草放下,转身就走。(浪漫童话小故事)樱红认出这只小花猫曾经被猫奶奶救助过,于是,她悄悄地尾随小花猫往前走。</p><p>不一会儿,她就发现自己进入了一个从未见过的世界:蔚蓝的天空飘着七色的云,阳光千丝万缕地落下来,鲜花盛开,彩蝶飞舞,百鸟齐鸣。</p><p>这到底是什么地方?她忽然想起了那个传说,这该不会就是花仙子住的百花园吧?</p><p>樱红几乎惊叫起来,但她立即想起了那条在见到花仙子之前,不能发出一点声音的规矩。于是她捂紧了嘴巴。</p><p>这时,她发现百花园里除了自己还有一个面色苍白的男孩子,闭着眼睛,右手攥着一根竹竿摸索着前行,应该是眼睛看不见了。</p><p>只见男孩子慢慢地偏离了路径,马上就要掉进路边的水沟里了。</p><p>樱红下意识地大声呼喊:“站住,小心脚底下!”一张口,樱红才想起来,自己已经坏了规矩!</p><p>此时,“轰隆”一声巨响后,眼前的一切都消失了,樱红仍然站在自家院门前的大槐树下。</p><p>真遗憾啊!樱红深深叹了口气,可为了救人,她并不觉得后悔。</p><p>第二天早上,樱红被一种美妙的歌声唤醒。</p><p>唱歌的人就是美丽的花仙子,她乘坐着奇花异草编成的花篮,飘进了她家的院子里。</p><p>奇迹发生了,只见猫奶奶起身下床,像健康人一样走出房门。</p><p>猫奶奶看到了花仙子,不敢相信地揉着眼睛说:“你就是传说中的花仙子吗?是你治好了我的病?”</p><p>花仙子说:“是的!是这个小女孩的善良打动了我,连我那不能出声的规矩都要为她破例了。”</p><p>樱红高兴地看着猫奶奶。从此,她和猫奶奶继续幸福地生活着。</p>
|
||||
`,
|
||||
// 恋爱相册
|
||||
albumKeyName: '恋爱相册', // 对应后台的图库分组名称
|
||||
// 恋爱清单
|
||||
loveList: {
|
||||
useApi: false, // 是否启用api接口
|
||||
api: '', // api 接口(如果使用api接口的方式,则下方的data可以留空,但是api接口必须按照对应的数据格式返回)
|
||||
data: [{
|
||||
index: 0, // 序号
|
||||
finish: true, // 是否已完成
|
||||
title: '偷偷记录对方熟睡的模样', // 事件名称
|
||||
desc: '偷偷观察对方熟睡的模样,记录下来', // 事件描述
|
||||
detail: {
|
||||
start: '2022年05月20日', // 计划开始时间
|
||||
desc: '偷偷观察对方熟睡的模样,记录下来', // 事件详细描述
|
||||
end: '每天', // 完成时间,
|
||||
moment: '', // 完成瞬间的记录
|
||||
other: '', // 其他说明
|
||||
}
|
||||
}, {
|
||||
index: 1,
|
||||
finish: false,
|
||||
title: '陪对方过生日',
|
||||
desc: '陪对方一起过生日',
|
||||
detail: {
|
||||
start: '2023年05月20日',
|
||||
desc: '陪对方一起过生日,他和我的生日',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '他 生日5月20日 我生日9月25日',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 2,
|
||||
finish: false,
|
||||
title: '一起去旅行',
|
||||
desc: '一起来一场说走就走的旅行,希望去的是大理',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '一起来一场说走就走的旅行,希望去的是大理',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 3,
|
||||
finish: false,
|
||||
title: '一起穿情侣装逛街',
|
||||
desc: '一起穿情侣装逛街',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 4,
|
||||
finish: false,
|
||||
title: '一起看日出',
|
||||
desc: '一起看日出',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 5,
|
||||
finish: false,
|
||||
title: '一起看日落',
|
||||
desc: '一起看日落',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '', // 其他说明
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 6,
|
||||
finish: false,
|
||||
title: '一起买菜、做饭、刷碗',
|
||||
desc: '一起买菜、做饭、刷碗',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,150 @@
|
||||
/**
|
||||
* 恋爱日记配置
|
||||
*/
|
||||
export default {
|
||||
waveImageUrl: 'https://b.925i.cn/uni_halo/uni_halo_about_wave.gif', // 波浪图片地址
|
||||
bgImageUrl: 'https://b.925i.cn/uni_halo_love/love_bg1.png', // 背景图片
|
||||
loveImageUrl: 'https://b.925i.cn/uni_halo_love/like.png', // 爱心图片
|
||||
|
||||
boy: {
|
||||
name: '未知男主',
|
||||
avatar: 'https://b.925i.cn/uni_halo_love/love_boy.png',
|
||||
birthday: '2022-09-25', // 生日
|
||||
},
|
||||
|
||||
girl: {
|
||||
name: '未知女主',
|
||||
avatar: 'https://b.925i.cn/uni_halo_love/love_girl.png',
|
||||
birthday: '2022-07-25', // 生日
|
||||
},
|
||||
|
||||
timeTitle: '这是我们一起走过的', // 恋爱时间标题
|
||||
loveStartDate: '2022-05-20 13:14:20', // 恋爱开始时间
|
||||
|
||||
// 恋爱日记首页导航(除了 key 以外都可以修改)
|
||||
nav: [{
|
||||
key: 'journey',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '关于我们',
|
||||
desc: '我们一起度过的那些经历'
|
||||
},
|
||||
{
|
||||
key: 'album',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '恋爱相册',
|
||||
desc: '定格了我们的那些小美好'
|
||||
},
|
||||
{
|
||||
key: 'list',
|
||||
use: true,
|
||||
iconImageUrl: 'https://b.925i.cn/uni_halo_love/diandian.png',
|
||||
title: '恋爱清单',
|
||||
desc: '你我之间的约定我们都在努力实现'
|
||||
},
|
||||
],
|
||||
|
||||
// 关于我们:支持富文本内容
|
||||
journey: `
|
||||
<p>有一只马,它的邻居是一只驴。</p><p>有一天,马和驴都被主人牵到外面晒太阳,马和驴聊起了天。</p><p>马说:“我叫马,你呢?”</p><p>驴说:“我叫驴。(哄小宝贝睡觉的甜甜睡前故事)”</p><p>马说:“为什么我俩的名字不一样呢?”</p><p>驴说:“因为我和你不一样。”</p><p>马说:“我们俩什么地方不一样呢?”</p><p>驴说:“我身材小巧,而你却比较粗壮,不如我耐看。”马看了看比自已矮小很多的驴,认为驴说的话有点道理。</p><p>马说:“我们俩除了身材不一样,还有什么不同呢?”</p><p>驴说:“我们俩的声音不一样,我的声音多动听呀!”说着驴伸长脖子叫了两声。“不信,你也叫两声试试。”马也伸长脖子嘶鸣了两声,的确和驴的声音有点不同,马不好意思地低下了头。</p><p>过了一会儿,马又说:“我们俩除了身材和声音不一样外,还有什么不同呢?”</p><p>驴说:“我的步伐多么优雅呀。”说着,驴迈开蹄子走了两步,“而你呢,却昂首阔步,一点儿也不优雅,(如何哄女朋友睡觉的睡前故事爱情浪漫)不信你走两步试试。”</p><p>马听驴这么一说,就高昂着头走了两步,旋即,马飞奔了起来,转了一圈回来后,驴得意地说:“怎么样,我没说错罢,你就是急性子,和优雅不沾边。”马听了驴的话,有点感到惭愧。</p><p>最后,马又鼓起勇气说:“我们俩还有什么不同呢?”</p><p>驴说:“我的家庭意识比你强,主人抽我一鞭子,我就跟着主人回家,而你呢?恐怕不会吧……”</p><p>马还没有来得及回答,马和驴的主人同时来到了马和驴的身边。只见驴的主人抽了驴一鞭子后,驴乖乖地跟着主人回家了。马把这一切都看在了眼里,它为自已和驴的诸多不同而感到惭愧,只见马的主人也抽了马一鞭子,马犹豫了一下,终于象驴一样乖乖地跟着主人回了家。</p><p>一个伯乐站在远处看到了这一幕后,叹口气离开了。</p>
|
||||
`,
|
||||
// 恋爱相册
|
||||
albumKeyName: '恋爱相册', // 对应后台的图库分组名称
|
||||
// 恋爱清单
|
||||
loveList: {
|
||||
useApi: false, // 是否启用api接口
|
||||
api: '', // api 接口(如果使用api接口的方式,则下方的data可以留空,但是api接口必须按照对应的数据格式返回)
|
||||
data: [{
|
||||
index: 0, // 序号
|
||||
finish: true, // 是否已完成
|
||||
title: '偷偷记录对方熟睡的模样', // 事件名称
|
||||
desc: '偷偷观察对方熟睡的模样,记录下来', // 事件描述
|
||||
detail: {
|
||||
start: '2022年05月20日', // 计划开始时间
|
||||
desc: '偷偷观察对方熟睡的模样,记录下来', // 事件详细描述
|
||||
end: '每天', // 完成时间,
|
||||
moment: '', // 完成瞬间的记录
|
||||
other: '', // 其他说明
|
||||
}
|
||||
}, {
|
||||
index: 1,
|
||||
finish: false,
|
||||
title: '陪对方过生日',
|
||||
desc: '陪对方一起过生日',
|
||||
detail: {
|
||||
start: '2023年05月20日',
|
||||
desc: '陪对方一起过生日,他和我的生日',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '他 生日5月20日 我生日9月25日',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 2,
|
||||
finish: false,
|
||||
title: '一起去旅行',
|
||||
desc: '一起来一场说走就走的旅行,希望去的是大理',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '一起来一场说走就走的旅行,希望去的是大理',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 3,
|
||||
finish: false,
|
||||
title: '一起穿情侣装逛街',
|
||||
desc: '一起穿情侣装逛街',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 4,
|
||||
finish: false,
|
||||
title: '一起看日出',
|
||||
desc: '一起看日出',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 5,
|
||||
finish: false,
|
||||
title: '一起看日落',
|
||||
desc: '一起看日落',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '', // 其他说明
|
||||
}
|
||||
},
|
||||
{
|
||||
index: 6,
|
||||
finish: false,
|
||||
title: '一起买菜、做饭、刷碗',
|
||||
desc: '一起买菜、做饭、刷碗',
|
||||
detail: {
|
||||
start: '',
|
||||
desc: '',
|
||||
end: '',
|
||||
moment: '',
|
||||
other: '',
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
}
|
||||
+6
-1
@@ -139,7 +139,6 @@
|
||||
"h5" : {
|
||||
"title" : "uni-halo",
|
||||
"devServer" : {
|
||||
"https" : false,
|
||||
"disableHostCheck" : true,
|
||||
"proxy" : {
|
||||
"/api" : {
|
||||
@@ -151,6 +150,12 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"optimization" : {
|
||||
"preload" : true,
|
||||
"treeShaking" : {
|
||||
"enable" : true
|
||||
}
|
||||
}
|
||||
},
|
||||
"_spaceID" : "699a26a5-a6cd-4b54-b603-5155b312a5f5"
|
||||
|
||||
+21
-7
@@ -1,9 +1,23 @@
|
||||
{
|
||||
"devDependencies": {
|
||||
"vue-i18n": "^9.1.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"uni-read-pages": "^1.0.5",
|
||||
"uni-simple-router": "^2.0.8-beta.4"
|
||||
}
|
||||
"name": "uni-halo",
|
||||
"version": "1.0.0",
|
||||
"description": "<p align=\"center\">\r <img alt=\"logo\" src=\"https://b.925i.cn/uni_halo/uni_halo_logo.png\" width=\"120\" height=\"120\" style=\"margin-bottom: 10px;\">\r </p>\r <h3 align=\"center\" style=\"margin: 30px 0 30px;font-weight: bold;font-size:40px;\">uni-halo</h3>\r <h3 align=\"center\">uni-halo 基于Halo一款现代化的开源博客/CMS系统API开发的可多端编译应用</h3>",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://gitee.com/ialley-workshop-open/uni-halo.git"
|
||||
},
|
||||
"keywords": ["uni-halo", "小莫唐尼", "巷子工坊"],
|
||||
"author": "巷子工坊丨小莫唐尼",
|
||||
"license": "AGPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://gitee.com/ialley-workshop-open/uni-halo/issues"
|
||||
},
|
||||
"homepage": "https://uni-halo.925i.cn",
|
||||
"devDependencies": {
|
||||
"vue-i18n": "^9.1.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"uni-read-pages": "^1.0.5",
|
||||
"uni-simple-router": "^2.0.8-beta.4"
|
||||
}
|
||||
}
|
||||
|
||||
+47
-2
@@ -110,7 +110,28 @@
|
||||
}, {
|
||||
"path": "love/love",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"navigationBarTitleText": "恋爱日记",
|
||||
"navigationStyle": "custom",
|
||||
"enablePullDownRefresh": false,
|
||||
"app-plus": {
|
||||
"pullToRefresh": {
|
||||
"color": "#03a9f4",
|
||||
"style": "circle"
|
||||
}
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"path": "love/list",
|
||||
"style": {
|
||||
"navigationBarTitleText": "恋爱清单",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}, {
|
||||
"path": "love/album",
|
||||
"style": {
|
||||
"navigationBarTitleText": "恋爱相册",
|
||||
"enablePullDownRefresh": true,
|
||||
"app-plus": {
|
||||
"pullToRefresh": {
|
||||
@@ -119,7 +140,13 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}, {
|
||||
"path": "love/journey",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我们的故事",
|
||||
"navigationStyle": "custom",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "archives/archives",
|
||||
"style": {
|
||||
@@ -215,6 +242,24 @@
|
||||
"navigationBarTitleText": "设置",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "tags/tags",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "tag-detail/tag-detail",
|
||||
"style": {
|
||||
"navigationBarTitleText": "标签详情",
|
||||
"enablePullDownRefresh": true,
|
||||
"app-plus": {
|
||||
"pullToRefresh": {
|
||||
"color": "#03a9f4",
|
||||
"style": "circle"
|
||||
}
|
||||
}
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
||||
@@ -5,11 +5,17 @@
|
||||
<script>
|
||||
export default {
|
||||
onLoad() {
|
||||
this.fnCheckHadStarted();
|
||||
this.fnCheckShowStarted();
|
||||
},
|
||||
methods: {
|
||||
// 检查是否已经启动过
|
||||
fnCheckHadStarted() {
|
||||
// 检查是否需要跳转到启动页
|
||||
fnCheckShowStarted() {
|
||||
if (!getApp().globalData.start.use) {
|
||||
uni.switchTab({
|
||||
url: '/pages/tabbar/home/home'
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (uni.getStorageSync('APP_HAS_STARTED')) {
|
||||
uni.switchTab({
|
||||
url: '/pages/tabbar/home/home'
|
||||
|
||||
+104
-22
@@ -1,11 +1,13 @@
|
||||
<template>
|
||||
<view class="app-page pb-24">
|
||||
<!-- 博主信息 -->
|
||||
<view class="blogger-info">
|
||||
<image class="avatar" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill" @click="miniProfileCard.show = true"></image>
|
||||
<view class="blogger-info" :style="[calcProfileStyle]">
|
||||
<image class="avatar" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill"></image>
|
||||
<view class="profile">
|
||||
<view class="author mt-24 text-size-g text-weight-b">{{ bloggerInfo.nickname }}</view>
|
||||
<view class="desc mt-24 text-size-m">{{ bloggerInfo.description || '这个博主很懒,竟然没写介绍~' }}</view>
|
||||
<view class="desc mt-24 text-size-m">
|
||||
{{ bloggerInfo.description || '这个博主很懒,竟然没写介绍~' }}
|
||||
</view>
|
||||
</view>
|
||||
<image v-if="calcWaveUrl" :src="calcWaveUrl" mode="scaleToFill" class="gif-wave"></image>
|
||||
</view>
|
||||
@@ -17,19 +19,34 @@
|
||||
<view class="statistics flex pt-24 pb-24" :class="{ 'has-solid': statisticsShowMore }">
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-orange-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.postCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.postCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-align-center text-size-s text-grey-darken-1">文章总数</view>
|
||||
</view>
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-blue-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.categoryCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.categoryCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-align-center text-size-s text-grey-darken-1">分类总数</view>
|
||||
</view>
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-green-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.tagCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.tagCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-size-s text-grey-darken-1">标签总数</view>
|
||||
</view>
|
||||
@@ -37,19 +54,34 @@
|
||||
<view class="statistics solid-top has-solid flex pt-24 pb-24">
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-orange-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.commentCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.commentCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-align-center text-size-s text-grey-darken-1">评论数量</view>
|
||||
</view>
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-blue-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.linkCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.linkCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-align-center text-size-s text-grey-darken-1">点赞数量</view>
|
||||
</view>
|
||||
<view class="item flex-1 text-align-center">
|
||||
<view class="number text-size-xl text-bg-gradient-green-accent">
|
||||
<tm-flop :startVal="0" :decimals="0" :endVal="statistics.visitCount" :duration="3000"></tm-flop>
|
||||
<tm-flop
|
||||
:startVal="0"
|
||||
:decimals="0"
|
||||
:endVal="statistics.visitCount"
|
||||
:duration="3000"
|
||||
></tm-flop>
|
||||
</view>
|
||||
<view class="mt-6 text-size-s text-grey-darken-1">访客数量</view>
|
||||
</view>
|
||||
@@ -60,7 +92,12 @@
|
||||
|
||||
<!-- 快捷导航 -->
|
||||
<view v-if="useQuickNav" class="quick-nav flex flex-between round-3 ma-24 pa-24 pl-40 pr-40">
|
||||
<view class="quick-nav-item flex flex-col flex-center" v-for="(nav, index) in quickNavList" :key="index" @click="fnToNavPage(nav)">
|
||||
<view
|
||||
class="quick-nav-item flex flex-col flex-center"
|
||||
v-for="(nav, index) in quickNavList"
|
||||
:key="index"
|
||||
@click="fnToNavPage(nav)"
|
||||
>
|
||||
<view class="icon round-24 halocoloricon" :class="[nav.icon]"></view>
|
||||
<view class="name text-size-s mt-8">{{ nav.text }}</view>
|
||||
</view>
|
||||
@@ -80,7 +117,9 @@
|
||||
@click="fnOnNav(nav)"
|
||||
>
|
||||
<template slot="rightValue">
|
||||
<button class="right-value-btn" v-if="nav.openType" :open-type="nav.openType">{{ nav.rightText }}</button>
|
||||
<button class="right-value-btn" v-if="nav.openType" :open-type="nav.openType">
|
||||
{{ nav.rightText }}
|
||||
</button>
|
||||
<text v-else>{{ nav.rightText }}</text>
|
||||
</template>
|
||||
</tm-listitem>
|
||||
@@ -88,7 +127,9 @@
|
||||
</tm-grouplist>
|
||||
</view>
|
||||
<!-- 版权 -->
|
||||
<view v-if="showCopyright" class="copyright mt-40 text-size-xs text-align-center"><view class="">「 2022 uni-halo 丨 开源项目@小莫唐尼 」</view></view>
|
||||
<view v-if="showCopyright" class="copyright mt-40 text-size-xs text-align-center">
|
||||
<view class="">「 2022 uni-halo 丨 开源项目@小莫唐尼 」</view>
|
||||
</view>
|
||||
|
||||
<!-- 名片 -->
|
||||
<tm-poup v-model="miniProfileCard.show" width="94vw" height="auto" :round="3" position="center">
|
||||
@@ -97,17 +138,35 @@
|
||||
<view class="left flex flex-col flex-center">
|
||||
<image class="avatar" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill"></image>
|
||||
<view class="name mt-10 text-size-m text-weight-b">{{ bloggerInfo.nickname }}</view>
|
||||
<view class="mt-10 round-a-1 pa-2 pl-12 pr-12 text-size-s bg-gradient-light-blue-accent">前端摸鱼大师</view>
|
||||
<view class="mt-6 text-size-xs text-align-center text-grey-darken-2">一个爱凑热闹的、喜欢捣鼓前端的博主。</view>
|
||||
<view class="mt-10 round-a-1 pa-2 pl-12 pr-12 text-size-s bg-gradient-light-blue-accent">
|
||||
前端摸鱼大师
|
||||
</view>
|
||||
<view class="mt-6 text-size-xs text-align-center text-grey-darken-2">
|
||||
一个爱凑热闹的、喜欢捣鼓前端的博主。
|
||||
</view>
|
||||
</view>
|
||||
<view class="right flex flex-col pl-12">
|
||||
<view class="label text-size-s text-weight-b">爱好:摸鱼、打游戏、听音乐、逛B站</view>
|
||||
<view class="motto mt-12 text-size-s text-grey-darken-1">如果不是在空闲着的时候就能挣到钱,那就不算摸鱼!</view>
|
||||
<view class="motto mt-12 text-size-s text-grey-darken-1">
|
||||
如果不是在空闲着的时候就能挣到钱,那就不算摸鱼!
|
||||
</view>
|
||||
<view class="mt-12 text-size-m text-weight-b text-grey-darken-2">精选图片</view>
|
||||
<view class="photos mt-6 flex ">
|
||||
<image class="photos-img round-2" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill"></image>
|
||||
<image class="photos-img round-2" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill"></image>
|
||||
<image class="photos-img round-2" :src="$utils.checkAvatarUrl(bloggerInfo.avatar)" mode="aspectFill"></image>
|
||||
<image
|
||||
class="photos-img round-2"
|
||||
:src="$utils.checkAvatarUrl(bloggerInfo.avatar)"
|
||||
mode="aspectFill"
|
||||
></image>
|
||||
<image
|
||||
class="photos-img round-2"
|
||||
:src="$utils.checkAvatarUrl(bloggerInfo.avatar)"
|
||||
mode="aspectFill"
|
||||
></image>
|
||||
<image
|
||||
class="photos-img round-2"
|
||||
:src="$utils.checkAvatarUrl(bloggerInfo.avatar)"
|
||||
mode="aspectFill"
|
||||
></image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -168,7 +227,19 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
bloggerInfo() {
|
||||
return this.$tm.vx.getters().blogger.getBlogger;
|
||||
return this.$tm.vx.getters().getBlogger;
|
||||
},
|
||||
calcProfileStyle() {
|
||||
let _imgUrlOr = getApp().globalData.aboutProfileImageUrl;
|
||||
if (this.$utils.checkIsUrl(_imgUrlOr)) {
|
||||
return {
|
||||
backgroundImage: `url(${_imgUrlOr})`
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
background: _imgUrlOr
|
||||
};
|
||||
}
|
||||
},
|
||||
calcWaveUrl() {
|
||||
return getApp().globalData.waveImageUrl;
|
||||
@@ -374,7 +445,8 @@ export default {
|
||||
})
|
||||
.then(res => {
|
||||
uni.clearStorageSync();
|
||||
this.navList.find(x => x.key == 'cache').rightText = uni.getStorageInfoSync().currentSize + 'KB';
|
||||
this.navList.find(x => x.key == 'cache').rightText =
|
||||
uni.getStorageInfoSync().currentSize + 'KB';
|
||||
})
|
||||
.catch(err => {});
|
||||
break;
|
||||
@@ -405,6 +477,18 @@ export default {
|
||||
|
||||
// 快捷导航页面跳转
|
||||
fnToNavPage(item) {
|
||||
// 判断是内置页面还是网页
|
||||
if (this.$utils.checkIsUrl(item.path)) {
|
||||
uni.navigateTo({
|
||||
url:
|
||||
'/pagesC/website/website?data=' +
|
||||
JSON.stringify({
|
||||
title: item.text || this.$haloConfig.title,
|
||||
url: item.path
|
||||
})
|
||||
});
|
||||
return;
|
||||
}
|
||||
switch (item.type) {
|
||||
case 'tabbar':
|
||||
uni.switchTab({
|
||||
@@ -437,10 +521,8 @@ export default {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 600rpx;
|
||||
background-image: url('@/static/summer.jpg');
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
// box-shadow: 0rpx 2rpx 24rpx rgba(0, 0, 0, 0.05);
|
||||
&:before {
|
||||
content: '';
|
||||
width: 100%;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<tm-empty icon="icon-shiliangzhinengduixiang-" label="博主还没有文章分类~"></tm-empty>
|
||||
</view>
|
||||
<block v-else>
|
||||
<tm-sliderNav :list="categoryList" color="light-blue" rang-key="name" @change="fnOnCategoryChange"></tm-sliderNav>
|
||||
<tm-sliderNav :list="categoryList" bg-color="white" color="light-blue" rang-key="name" @change="fnOnCategoryChange"></tm-sliderNav>
|
||||
<scroll-view
|
||||
class="right-content pt-12 pb-12"
|
||||
:scroll-y="true"
|
||||
@@ -20,6 +20,7 @@
|
||||
:refresher-enabled="true"
|
||||
:refresher-triggered="triggered"
|
||||
:refresher-threshold="60"
|
||||
refresher-background="#fafafa"
|
||||
@refresherrefresh="fnGetData(true)"
|
||||
@scrolltolower="fnGetData(false)"
|
||||
@scroll="fnOnScroll"
|
||||
@@ -235,6 +236,7 @@ export default {
|
||||
height: 100vh;
|
||||
background-color: #fff;
|
||||
white-space: nowrap;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.loading-wrap {
|
||||
padding: 24rpx;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="app-page" :class="{ 'is-balck grey-darken-6': isBlackTheme }">
|
||||
<view class="app-page">
|
||||
<!-- 顶部切换 -->
|
||||
<view class="e-fixed" v-if="category.list.length > 2">
|
||||
<tm-tabs color="light-blue" v-model="category.activeIndex" :list="category.list" align="left" @change="fnOnCategoryChange"></tm-tabs>
|
||||
@@ -9,14 +9,12 @@
|
||||
<!-- 加载区域 -->
|
||||
<view v-if="loading != 'success'" class="loading-wrap">
|
||||
<tm-skeleton model="card"></tm-skeleton>
|
||||
<tm-skeleton model="cardActions"></tm-skeleton>
|
||||
<tm-skeleton model="list"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="card"></tm-skeleton>
|
||||
<tm-skeleton model="card"></tm-skeleton>
|
||||
<tm-skeleton model="card"></tm-skeleton>
|
||||
</view>
|
||||
<!-- 内容区域 -->
|
||||
<view class="content" v-else :class="{ 'bg-white': dataList.length !== 0 }">
|
||||
<view class="content" v-else>
|
||||
<view v-if="dataList.length == 0" class="content-empty">
|
||||
<!-- 空布局 -->
|
||||
<tm-empty icon="icon-shiliangzhinengduixiang-" label="博主还没有分享图片~"></tm-empty>
|
||||
@@ -25,8 +23,8 @@
|
||||
<tm-flowLayout v-if="globalAppSettings.gallery.useWaterfull" @click="fnOnClick" ref="wafll">
|
||||
<template v-slot:left="{ hdata }">
|
||||
<tm-translate animation-name="fadeUp">
|
||||
<view class="round-3 shadow-2 overflow white">
|
||||
<tm-images :previmage="true" :src="hdata.item.image"></tm-images>
|
||||
<view class="card round-3 overflow white">
|
||||
<tm-images :previmage="false" :src="hdata.item.image" @click="fnPreview(hdata.item)"></tm-images>
|
||||
<view class="pa-10 text-size-s">
|
||||
<view class="text-overflow-2">
|
||||
<tm-tags color="bg-gradient-amber-accent" :shadow="0" :dense="true" size="s" model="fill">{{ hdata.item.team }}</tm-tags>
|
||||
@@ -50,8 +48,8 @@
|
||||
</template>
|
||||
<template v-slot:right="{ hdata }">
|
||||
<tm-translate animation-name="fadeUp">
|
||||
<view class="round-3 shadow-2 overflow white">
|
||||
<tm-images :previmage="true" :src="hdata.item.image"></tm-images>
|
||||
<view class="card round-3 overflow white">
|
||||
<tm-images :previmage="false" :src="hdata.item.image" @click="fnPreview(hdata.item)"></tm-images>
|
||||
<view class="pa-10 text-size-s">
|
||||
<view class="text-overflow-2">
|
||||
<tm-tags :shadow="0" :dense="true" color="bg-gradient-amber-accent" size="s" model="fill">{{ hdata.item.team }}</tm-tags>
|
||||
@@ -78,7 +76,7 @@
|
||||
<block v-for="(item, index) in dataList" :key="index">
|
||||
<tm-translate animation-name="fadeUp" :wait="(index + 1) * 50">
|
||||
<view class="round-3 shadow-2 overflow white mb-24">
|
||||
<tm-images :previmage="false" :src="item.image" @click="fnPreview(item, index)"></tm-images>
|
||||
<tm-images :previmage="false" :src="item.image" @click="fnPreview(item)"></tm-images>
|
||||
<view class="pa-24 text-size-m">
|
||||
<view class="text-overflow-2">
|
||||
<tm-tags :shadow="0" :dense="true" color="bg-gradient-amber-accent" size="s" model="fill">{{ item.team }}</tm-tags>
|
||||
@@ -281,10 +279,11 @@ export default {
|
||||
console.log('点击数据', data);
|
||||
},
|
||||
// 预览
|
||||
fnPreview(item, index) {
|
||||
fnPreview(item) {
|
||||
const index = this.cache.dataList.findIndex(x => x.id == item.id);
|
||||
uni.previewImage({
|
||||
current: index,
|
||||
urls: this.dataList.map(x => x.image),
|
||||
urls: this.cache.dataList.map(x => x.image),
|
||||
indicator: 'number',
|
||||
loop: true
|
||||
});
|
||||
@@ -293,14 +292,14 @@ export default {
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
<style lang="scss" scoped>
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-bottom: 24rpx;
|
||||
background-color: #fafafd;
|
||||
background-color: #fafafa;
|
||||
|
||||
&.is-balck {
|
||||
background-color: #212121;
|
||||
@@ -322,4 +321,7 @@ export default {
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
}
|
||||
.card {
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -136,9 +136,8 @@ export default {
|
||||
},
|
||||
|
||||
computed: {
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
let blogger = this.$tm.vx.getters().blogger.getBlogger;
|
||||
let blogger = this.$tm.vx.getters().getBlogger;
|
||||
blogger.avatar = this.$utils.checkAvatarUrl(blogger.avatar, true);
|
||||
return blogger;
|
||||
}
|
||||
@@ -150,13 +149,6 @@ export default {
|
||||
|
||||
created() {
|
||||
this.fnQuery();
|
||||
this.$httpApi
|
||||
.getOptionList()
|
||||
.then(result => {
|
||||
console.log('配置列表:');
|
||||
console.log(result);
|
||||
})
|
||||
.catch(err => {});
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.isLoadMore = false;
|
||||
@@ -177,7 +169,6 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 查询数据
|
||||
fnQuery() {
|
||||
this.fnGetBanner();
|
||||
this.fnGetArticleList();
|
||||
|
||||
@@ -7,39 +7,19 @@
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
</view>
|
||||
<view v-else class="content">
|
||||
<view v-else class="content" :class="{ 'bg-white': result.length !== 0 }">
|
||||
<!-- 空数据 -->
|
||||
<view v-if="result.length == 0" class="content-empty flex flex-center"><tm-empty icon="icon-shiliangzhinengduixiang-" label="啊偶,博主还没有朋友呢~"></tm-empty></view>
|
||||
|
||||
<!-- 如果只有一个分组:使用列表的形式 result.length == 1 -->
|
||||
<view v-else-if="result.length == 1" class="flex flex-col pb-24">
|
||||
<block v-for="(item, index) in result[0].children" :key="index">
|
||||
<block v-for="(link, index) in result[0].children" :key="index">
|
||||
<tm-translate animation-name="fadeUp" :wait="(index + 1) * 50">
|
||||
<view class="link-card one round-a-6 flex ma-24 mb-0 pa-24" @click="fnOnLinkEvent(item)">
|
||||
<cache-image class="logo shadow-2" radius="12rpx" width="80rpx" height="80rpx" :url="item.logo" :fileMd5="item.logo" mode="aspectFill"></cache-image>
|
||||
<view class="info pl-24">
|
||||
<view class="name text-size-g">{{ item.name }}</view>
|
||||
<view class="desc mt-12 text-size-s text-grey-darken-1">{{ item.description }}</view>
|
||||
<view class="link mt-12 text-size-m text-grey-darken-1">
|
||||
<text class="iconfont icon-link mr-6 text-size-s"></text>
|
||||
{{ item.url }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</tm-translate>
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<!-- 如果大于一个分组:使用联系人的索引形式 result.length > 1 -->
|
||||
<block v-else>
|
||||
<block v-for="(team, index) in result" :key="index">
|
||||
<view class="grey-lighten-4 text text-size-s text-weight-b px-32 py-12">{{ team.title }}</view>
|
||||
<block v-for="(link, linkIndex) in team.children" :key="link.id">
|
||||
<!-- 艳丽版本 -->
|
||||
<!-- 色彩版本 -->
|
||||
<view
|
||||
v-if="!globalAppSettings.links.useSimple"
|
||||
class="info flex pa-36"
|
||||
:class="{ 'border-b-1': linkIndex != team.children.length - 1 }"
|
||||
class="info flex pt-24 pb-24 pl-12 pr-12 border-b-1"
|
||||
:class="{ 'border-b-1': index != team.children.length - 1 }"
|
||||
@click="fnOnLinkEvent(link)"
|
||||
>
|
||||
<view class="link-logo"><cache-image class="link-logo_img" radius="12rpx" :url="link.logo" :fileMd5="link.logo" mode="aspectFill"></cache-image></view>
|
||||
@@ -47,7 +27,7 @@
|
||||
<view class="link-card_name text-size-l text-weight-b text-red">{{ link.name }}</view>
|
||||
<view class="poup-tag ml--10 mt-6">
|
||||
<tm-tags color="bg-gradient-amber-accent" :shadow="0" size="s" model="fill">ID:{{ link.id }}</tm-tags>
|
||||
<tm-tags color=" bg-gradient-light-blue-lighten" :shadow="0" size="s" model="fill">{{ link.team }}</tm-tags>
|
||||
<tm-tags color=" bg-gradient-light-blue-lighten" :shadow="0" size="s" model="fill">{{ link.team || '暂未分组' }}</tm-tags>
|
||||
</view>
|
||||
<view class="link-card_desc text-overflow text-size-s mt-4">博客简介:{{ link.description || '这个博主很懒,没写简介~' }}</view>
|
||||
</view>
|
||||
@@ -64,7 +44,51 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</tm-translate>
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<!-- 如果大于一个分组:使用联系人的索引形式 result.length > 1 -->
|
||||
<block v-else>
|
||||
<block v-for="(team, index) in result" :key="index">
|
||||
<tm-translate animation-name="fadeUp" :wait="(index + 1) * 50">
|
||||
<view class="grey-lighten-4 text text-size-s text-weight-b px-32 py-12">{{ team.title }}</view>
|
||||
<block v-for="(link, linkIndex) in team.children" :key="link.id">
|
||||
<tm-translate animation-name="fadeUp" :wait="(linkIndex + 1) * 50">
|
||||
<!-- 色彩版本 -->
|
||||
<view
|
||||
v-if="!globalAppSettings.links.useSimple"
|
||||
class="info flex pt-24 pb-24 pl-12 pr-12"
|
||||
:class="{ 'border-b-1': linkIndex != team.children.length - 1 || index == result.length - 1 }"
|
||||
@click="fnOnLinkEvent(link)"
|
||||
>
|
||||
<view class="link-logo">
|
||||
<cache-image class="link-logo_img" radius="12rpx" :url="link.logo" :fileMd5="link.logo" mode="aspectFill"></cache-image>
|
||||
</view>
|
||||
<view class="flex flex-col pl-30 info-detail">
|
||||
<view class="link-card_name text-size-l text-weight-b text-red">{{ link.name }}</view>
|
||||
<view class="poup-tag ml--10 mt-6">
|
||||
<tm-tags color="bg-gradient-amber-accent" :shadow="0" size="s" model="fill">ID:{{ link.id }}</tm-tags>
|
||||
<tm-tags color=" bg-gradient-light-blue-lighten" :shadow="0" size="s" model="fill">{{ link.team || '暂未分组' }}</tm-tags>
|
||||
</view>
|
||||
<view class="link-card_desc text-overflow text-size-s mt-4">博客简介:{{ link.description || '这个博主很懒,没写简介~' }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 简洁版本 -->
|
||||
<view v-else class="link-card flex ml-24 mr-24 pt-24 pb-24" @click="fnOnLinkEvent(link)">
|
||||
<image class="logo shadow-6" :src="link.logo" mode="aspectFill"></image>
|
||||
<view class="info pl-24">
|
||||
<view class="name text-size-g">{{ link.name }}</view>
|
||||
<view class="desc mt-12 text-size-s text-grey-darken-1">{{ link.description }}</view>
|
||||
<view v-if="false" class="link mt-12 text-size-m text-grey-darken-1">
|
||||
<text class="iconfont icon-link mr-6 text-size-s"></text>
|
||||
{{ link.url }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</tm-translate>
|
||||
</block>
|
||||
</tm-translate>
|
||||
</block>
|
||||
</block>
|
||||
|
||||
@@ -80,7 +104,7 @@
|
||||
<view class="poup-name text-size-lg text-weight-b">{{ detail.data.name }}</view>
|
||||
<view class="poup-tag ml--10">
|
||||
<tm-tags color="bg-gradient-amber-accent" size="n" model="fill">ID:{{ detail.data.id }}</tm-tags>
|
||||
<tm-tags color="bg-gradient-light-blue-lighten" size="n" model="fill">{{ detail.data.team }}</tm-tags>
|
||||
<tm-tags color="bg-gradient-light-blue-lighten" size="n" model="fill">{{ detail.data.team || '暂未分组' }}</tm-tags>
|
||||
</view>
|
||||
<view class="poup-link text-size-m" @click="fnCopyLink(detail.data)">
|
||||
<text class="text-orange">{{ detail.data.url }}</text>
|
||||
@@ -109,7 +133,6 @@ import tmImages from '@/tm-vuetify/components/tm-images/tm-images.vue';
|
||||
import tmPoup from '@/tm-vuetify/components/tm-poup/tm-poup.vue';
|
||||
|
||||
import { GetRandomNumberByRange } from '@/utils/random.js';
|
||||
import findCnChart from '@/tm-vuetify/tool/function/findCnChart.js';
|
||||
export default {
|
||||
components: {
|
||||
tmSkeleton,
|
||||
@@ -177,7 +200,6 @@ export default {
|
||||
// 处理数据
|
||||
const _result = res.data.map(item => {
|
||||
const _team = item.team || '未分组';
|
||||
const _firstChart = _team ? _team.substring(0, 1) : '';
|
||||
const _links = item.links.map(link => {
|
||||
this.linkTotal += 1;
|
||||
link.logo = this.$utils.checkAvatarUrl(link.logo);
|
||||
@@ -185,19 +207,16 @@ export default {
|
||||
});
|
||||
return {
|
||||
title: _team,
|
||||
index: findCnChart(_firstChart),
|
||||
children: _links
|
||||
};
|
||||
});
|
||||
|
||||
// this.result = _result.reverse();
|
||||
this.result = _result.reverse();
|
||||
setTimeout(() => {
|
||||
this.loading = 'success';
|
||||
}, 500);
|
||||
} else {
|
||||
setTimeout(() => {
|
||||
this.loading = 'error';
|
||||
}, 500);
|
||||
this.loading = 'error';
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
|
||||
@@ -11,14 +11,15 @@
|
||||
<view class="title">{{ result.title }}</view>
|
||||
<view class="detail">
|
||||
<view class="author">
|
||||
<text class="author-name">{{ author.name }}</text>
|
||||
<text class="author-time">发布于:{{ { d: result.createTime, f: 'yyyy年MM月dd日 星期w' } | formatTime }}</text>
|
||||
<text class="author-name">博主:{{ author.nickname }}</text>
|
||||
<text class="author-time">
|
||||
时间:{{ { d: result.createTime, f: 'yyyy年MM月dd日 星期w' } | formatTime }}
|
||||
</text>
|
||||
</view>
|
||||
|
||||
<view class="cover" v-if="result.thumbnail"><image class="cover-img" mode="aspectFill" :src="calcUrl(result.thumbnail)"></image></view>
|
||||
<!-- <view class="mt-24">
|
||||
<text class="category-tag" v-for="(item, index) in result.tags" :key="index">{{ item.name }}</text>
|
||||
</view> -->
|
||||
<view class="cover" v-if="result.thumbnail">
|
||||
<image class="cover-img" mode="aspectFill" :src="calcUrl(result.thumbnail)"></image>
|
||||
</view>
|
||||
<view class="count" :class="{ 'no-thumbnail': !result.thumbnail }">
|
||||
<view class="count-item">
|
||||
<text class="value">{{ result.visits }}</text>
|
||||
@@ -41,13 +42,34 @@
|
||||
</view>
|
||||
<!-- 分类 -->
|
||||
<view class="category">
|
||||
<view class="">
|
||||
分类:
|
||||
<text class="category-tag" v-for="(item, index) in result.categories" :key="index">{{ item.name }}</text>
|
||||
<view class="category-type">
|
||||
<text class="text-weight-b">分类:</text>
|
||||
<text v-if="result.categories.length == 0" class="category-tag is-empty">未选择分类</text>
|
||||
<block v-else>
|
||||
<text
|
||||
class="category-tag"
|
||||
v-for="(item, index) in result.categories"
|
||||
:key="index"
|
||||
@click="fnToCate(item)"
|
||||
>
|
||||
{{ item.name }}
|
||||
</text>
|
||||
</block>
|
||||
</view>
|
||||
<view class="mt-18">
|
||||
标签:
|
||||
<text class="category-tag" v-for="(item, index) in result.tags" :key="index">{{ item.name }}</text>
|
||||
<view class="mt-18 category-type">
|
||||
<text class="text-weight-b">标签:</text>
|
||||
<text v-if="result.tags.length == 0" class="category-tag is-empty">未选择标签</text>
|
||||
<block v-else>
|
||||
<text
|
||||
class="category-tag"
|
||||
:style="{ backgroundColor: item.color }"
|
||||
v-for="(item, index) in result.tags"
|
||||
:key="index"
|
||||
@click="fnToTag(item)"
|
||||
>
|
||||
{{ item.name }}
|
||||
</text>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 广告区域 -->
|
||||
@@ -78,7 +100,7 @@
|
||||
:copyByLongPress="true"
|
||||
/>
|
||||
|
||||
<!-- 广告区域 -->
|
||||
<!-- 广告区域:微信/decloud申请 -->
|
||||
<view v-if="haloAdConfig.articleDetail.use" class="ad-wrap mt-24 mb-24 ">
|
||||
<!-- #ifdef MP-WEIXIN -->
|
||||
<ad v-if="haloAdConfig.unitId" :unit-id="haloAdConfig.unitId"></ad>
|
||||
@@ -88,15 +110,73 @@
|
||||
<!-- #endif -->
|
||||
</view>
|
||||
|
||||
<!-- 免责声明:todo -->
|
||||
<!-- 广告区域:自定义广告位 -->
|
||||
<view class="ad-card" v-if="haloAdConfig.articleDetail.custom.use">
|
||||
<text class="ad-card_tip">广告</text>
|
||||
<image
|
||||
class="ad-card_cover"
|
||||
:src="haloAdConfig.articleDetail.custom.cover"
|
||||
mode="scaleToFill"
|
||||
></image>
|
||||
<view class="ad-card_info">
|
||||
<view class="ad-card_info-title">{{ haloAdConfig.articleDetail.custom.title }}</view>
|
||||
<view class="ad-card_info-desc">{{ haloAdConfig.articleDetail.custom.content }}</view>
|
||||
<view
|
||||
v-if="haloAdConfig.articleDetail.custom.url"
|
||||
class="ad-card_info-link"
|
||||
@click="fnToWebview(haloAdConfig.articleDetail.custom)"
|
||||
>
|
||||
立即查看
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 版权声明 -->
|
||||
<view v-if="copyright.use" class="copyright-wrap bg-white mt-24 pa-24 round-4">
|
||||
<view class="copyright-title text-weight-b">版权声明</view>
|
||||
<view
|
||||
class="copyright-content mt-12 grey-lighten-5 text-grey-darken-2 round-4 pt-12 pb-12 pl-24 pr-24 "
|
||||
>
|
||||
<view v-if="copyright.author" class="copyright-text text-size-s ">
|
||||
版权归属:{{ copyright.author }}
|
||||
</view>
|
||||
<view v-if="copyright.description" class="copyright-text text-size-s mt-12">
|
||||
版权说明:{{ copyright.description }}
|
||||
</view>
|
||||
<view v-if="copyright.violation" class="copyright-text text-size-s mt-12 text-red">
|
||||
侵权处理:{{ copyright.violation }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 评论展示区域 -->
|
||||
<view class="comment-wrap mt-24 pa-24 round-4"><commentList :postId="result.id" :post="result" @on-comment-detail="fnOnShowCommentDetail"></commentList></view>
|
||||
<view class="comment-wrap bg-white mt-24 pa-24 round-4">
|
||||
<commentList
|
||||
:disallowComment="result.disallowComment"
|
||||
:postId="result.id"
|
||||
:post="result"
|
||||
@on-comment-detail="fnOnShowCommentDetail"
|
||||
@on-loaded="fnOnCommentLoaded"
|
||||
></commentList>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 弹幕效果 -->
|
||||
<barrage ref="barrage" :maxTop="240" :type="globalAppSettings.barrage.type"></barrage>
|
||||
<!-- 返回顶部 -->
|
||||
<tm-flotbutton :offset="[16, 80]" icon="icon-angle-up" color="bg-gradient-light-blue-accent" @click="fnToTopPage()"></tm-flotbutton>
|
||||
<tm-flotbutton :actions="btnOption.actions" actions-pos="left" :show-text="true" color="bg-gradient-orange-accent" @change="fnOnFlotButtonChange"></tm-flotbutton>
|
||||
<tm-flotbutton
|
||||
:offset="[16, 80]"
|
||||
icon="icon-angle-up"
|
||||
color="bg-gradient-light-blue-accent"
|
||||
@click="fnToTopPage()"
|
||||
></tm-flotbutton>
|
||||
<tm-flotbutton
|
||||
:actions="btnOption.actions"
|
||||
actions-pos="left"
|
||||
:show-text="true"
|
||||
color="bg-gradient-orange-accent"
|
||||
@change="fnOnFlotButtonChange"
|
||||
></tm-flotbutton>
|
||||
</block>
|
||||
|
||||
<!-- 评论详情 -->
|
||||
@@ -104,7 +184,13 @@
|
||||
<view class="pa-24">
|
||||
<view class="poup-head pb-24">
|
||||
<view class="poup-title text-align-center text-size-g text-weight-b mb-32">评论详情</view>
|
||||
<comment-item :useContentBg="false" :useActions="false" :isChild="false" :comment="commentDetail.comment" :postId="result.id"></comment-item>
|
||||
<comment-item
|
||||
:useContentBg="false"
|
||||
:useActions="false"
|
||||
:isChild="false"
|
||||
:comment="commentDetail.comment"
|
||||
:postId="result.id"
|
||||
></comment-item>
|
||||
</view>
|
||||
|
||||
<scroll-view :scroll-y="true" class="poup-body">
|
||||
@@ -115,7 +201,14 @@
|
||||
</view>
|
||||
<view v-else-if="commentDetail.loading == 'error'" class="error">
|
||||
<tm-empty icon="icon-wind-cry" label="加载失败">
|
||||
<tm-button theme="bg-gradient-light-blue-accent" size="m" v-if="!disallowComment" @click="fnGetChildComments()">刷新试试</tm-button>
|
||||
<tm-button
|
||||
theme="bg-gradient-light-blue-accent"
|
||||
size="m"
|
||||
v-if="!disallowComment"
|
||||
@click="fnGetChildComments()"
|
||||
>
|
||||
刷新试试
|
||||
</tm-button>
|
||||
</tm-empty>
|
||||
</view>
|
||||
</view>
|
||||
@@ -151,9 +244,15 @@
|
||||
<block v-if="poster.showCanvas">
|
||||
<r-canvas ref="rCanvas"></r-canvas>
|
||||
<view class="poster-save ma-24 mt-0 pt-20 flex flex-center">
|
||||
<tm-button theme="bg-gradient-light-blue-accent" size="m" @click="fnSavePoster()">保存到相册</tm-button>
|
||||
<tm-button v-if="false" theme="bg-gradient-orange-accent" size="m" @click="fnShareTo()">分享给好友</tm-button>
|
||||
<tm-button theme="bg-gradient-blue-grey-accent" size="m" @click="fnOnPosterClose()">关 闭</tm-button>
|
||||
<tm-button theme="bg-gradient-light-blue-accent" size="m" @click="fnSavePoster()">
|
||||
保存到相册
|
||||
</tm-button>
|
||||
<tm-button v-if="false" theme="bg-gradient-orange-accent" size="m" @click="fnShareTo()">
|
||||
分享给好友
|
||||
</tm-button>
|
||||
<tm-button theme="bg-gradient-blue-grey-accent" size="m" @click="fnOnPosterClose()">
|
||||
关 闭
|
||||
</tm-button>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
@@ -175,6 +274,9 @@ import commentList from '@/components/comment-list/comment-list.vue';
|
||||
import commentItem from '@/components/comment-item/comment-item.vue';
|
||||
|
||||
import rCanvas from '@/components/r-canvas/r-canvas.vue';
|
||||
import barrage from '@/components/barrage/barrage.vue';
|
||||
|
||||
import { haloWxShareMixin } from '@/common/mixins/wxshare.mixin.js';
|
||||
export default {
|
||||
components: {
|
||||
tmSkeleton,
|
||||
@@ -185,8 +287,10 @@ export default {
|
||||
mpHtml,
|
||||
commentList,
|
||||
commentItem,
|
||||
rCanvas
|
||||
rCanvas,
|
||||
barrage
|
||||
},
|
||||
mixins: [haloWxShareMixin],
|
||||
data() {
|
||||
return {
|
||||
loading: 'loading',
|
||||
@@ -228,6 +332,9 @@ export default {
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
copyright() {
|
||||
return getApp().globalData.copyright;
|
||||
},
|
||||
calcUrl() {
|
||||
return url => {
|
||||
if (this.$utils.checkIsUrl(url)) {
|
||||
@@ -238,7 +345,7 @@ export default {
|
||||
},
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
let blogger = this.$tm.vx.getters().blogger.getBlogger;
|
||||
let blogger = this.$tm.vx.getters().getBlogger;
|
||||
blogger.avatar = this.$utils.checkAvatarUrl(blogger.avatar, true);
|
||||
return blogger;
|
||||
}
|
||||
@@ -265,7 +372,14 @@ export default {
|
||||
this.result = res.data;
|
||||
this.fnSetPageTitle('文章详情');
|
||||
this.loading = 'success';
|
||||
this.fnSetWxShareInfo();
|
||||
this.fnSetWxShareConfig({
|
||||
title: this.result.title,
|
||||
desc: this.result.summary,
|
||||
imageUrl: this.$utils.checkThumbnailUrl(this.result.thumbnail),
|
||||
path: `/pagesA/article-detail/article-detail?articleId=${this.queryParams.articleId}`,
|
||||
copyLink: this.$haloConfig.apiUrl,
|
||||
query: {}
|
||||
});
|
||||
})
|
||||
.catch(err => {
|
||||
this.loading = 'error';
|
||||
@@ -275,19 +389,7 @@ export default {
|
||||
uni.stopPullDownRefresh();
|
||||
});
|
||||
},
|
||||
fnSetWxShareInfo() {
|
||||
// #ifdef MP-WEIXIN
|
||||
uni.$tm.vx.commit('setWxShare', {
|
||||
title: this.result.title,
|
||||
desc: this.result.summary,
|
||||
// imageUrl: this.poster.res.tempFilePath,
|
||||
imageUrl: this.$utils.checkThumbnailUrl(this.result.thumbnail),
|
||||
path: `/pagesA/article-detail/article-detail?articleId=${this.queryParams.articleId}`,
|
||||
copyLink: this.$haloConfig.apiUrl,
|
||||
query: {}
|
||||
});
|
||||
// #endif
|
||||
},
|
||||
|
||||
// 浮动按钮点击
|
||||
fnOnFlotButtonChange(index) {
|
||||
switch (index) {
|
||||
@@ -304,6 +406,9 @@ export default {
|
||||
},
|
||||
|
||||
fnToComment() {
|
||||
if (this.result.disallowComment) {
|
||||
return uni.$tm.toast('文章已开启禁止评论!');
|
||||
}
|
||||
this.$Router.push({
|
||||
path: '/pagesA/comment/comment',
|
||||
query: {
|
||||
@@ -361,6 +466,8 @@ export default {
|
||||
fnCreatePoster(callback) {
|
||||
this.$nextTick(async () => {
|
||||
const systemInfo = await uni.getSystemInfoSync();
|
||||
const _bloggerAvatar = this.$utils.checkAvatarUrl(this.bloggerInfo.avatar, true);
|
||||
const _articleCover = this.$utils.checkThumbnailUrl(this.result.thumbnail, true);
|
||||
// 初始化
|
||||
await this.$refs.rCanvas.init({
|
||||
canvas_id: 'rCanvas',
|
||||
@@ -385,11 +492,10 @@ export default {
|
||||
icon: 'none'
|
||||
});
|
||||
});
|
||||
console.log(this.$utils.checkAvatarUrl(this.bloggerInfo.avatar, true));
|
||||
// 博主信息
|
||||
await this.$refs.rCanvas
|
||||
.drawImage({
|
||||
url: this.$utils.checkAvatarUrl(this.bloggerInfo.avatar, true),
|
||||
url: _bloggerAvatar,
|
||||
x: 12,
|
||||
y: 12,
|
||||
w: 48,
|
||||
@@ -436,7 +542,7 @@ export default {
|
||||
// 文章封面图
|
||||
await this.$refs.rCanvas
|
||||
.drawImage({
|
||||
url: this.$utils.checkThumbnailUrl(this.result.thumbnail),
|
||||
url: _articleCover,
|
||||
x: 12,
|
||||
y: 75,
|
||||
w: 312,
|
||||
@@ -598,6 +704,70 @@ export default {
|
||||
.catch(err => {
|
||||
this.commentDetail.loading = 'error';
|
||||
});
|
||||
},
|
||||
fnToCate(category) {
|
||||
uni.navigateTo({
|
||||
url: `/pagesA/category-detail/category-detail?slug=${category.slug}&name=${category.name}`
|
||||
});
|
||||
},
|
||||
fnToTag(tag) {
|
||||
uni.navigateTo({
|
||||
url: `/pagesA/tag-detail/tag-detail?id=${tag.id}&slug=${tag.slug}&name=${tag.name}`
|
||||
});
|
||||
},
|
||||
async fnOnCommentLoaded(data) {
|
||||
const _list = [];
|
||||
const _handleData = list => {
|
||||
return new Promise(resolve => {
|
||||
if (list.length == 0) {
|
||||
resolve();
|
||||
} else {
|
||||
list.forEach(item => {
|
||||
_list.push(item);
|
||||
if (item.children && item.children.length != 0) {
|
||||
_handleData(item.children);
|
||||
}
|
||||
resolve();
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
await _handleData(data);
|
||||
if (this.globalAppSettings.barrage.use) {
|
||||
this.$nextTick(() => {
|
||||
if (_list.length != 0) {
|
||||
_handleAddBarrage();
|
||||
}
|
||||
});
|
||||
}
|
||||
const _handleRemove = () => {
|
||||
this.$refs['barrage'].remove({
|
||||
duration: 5000, // 延迟关闭的时间
|
||||
speed: 600 // 弹幕消失的速度
|
||||
});
|
||||
};
|
||||
let index = 0;
|
||||
const _handleAddBarrage = () => {
|
||||
setTimeout(() => {
|
||||
this.$refs['barrage'].add(_list[index]);
|
||||
index += 1;
|
||||
if (index < _list.length - 1) {
|
||||
_handleAddBarrage();
|
||||
} else {
|
||||
_handleRemove();
|
||||
}
|
||||
}, 1000);
|
||||
};
|
||||
},
|
||||
fnToWebview(data) {
|
||||
uni.navigateTo({
|
||||
url:
|
||||
'/pagesC/website/website?data=' +
|
||||
JSON.stringify({
|
||||
title: data.title,
|
||||
url: data.url
|
||||
})
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -646,7 +816,7 @@ export default {
|
||||
&-name {
|
||||
}
|
||||
&-time {
|
||||
margin-left: 12rpx;
|
||||
margin-left: 36rpx;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -711,12 +881,18 @@ export default {
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
// border: 2rpx solid #f8f8f8;
|
||||
font-size: 28rpx;
|
||||
&-type {
|
||||
line-height: 55rpx;
|
||||
}
|
||||
&-tag {
|
||||
background-color: #5bb8fa;
|
||||
color: #fff;
|
||||
padding: 6rpx 12rpx;
|
||||
border-radius: 6rpx;
|
||||
font-size: 24rpx;
|
||||
&.is-empty {
|
||||
background-color: #607d8b;
|
||||
}
|
||||
}
|
||||
}
|
||||
.category-tag + .category-tag {
|
||||
@@ -725,11 +901,27 @@ export default {
|
||||
.content {
|
||||
margin-top: 24rpx;
|
||||
}
|
||||
.ad-wrap {
|
||||
.evan-markdown,
|
||||
.ad-wrap,
|
||||
.copyright-wrap,
|
||||
.comment-wrap {
|
||||
box-shadow: 0rpx 0rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.comment-wrap {
|
||||
background-color: #fff;
|
||||
.copyright-title {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
padding-left: 24rpx;
|
||||
font-size: 30rpx;
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0rpx;
|
||||
top: 8rpx;
|
||||
width: 8rpx;
|
||||
height: 26rpx;
|
||||
background-color: rgb(3, 174, 252);
|
||||
border-radius: 6rpx;
|
||||
}
|
||||
}
|
||||
.poup-head {
|
||||
border-bottom: 2rpx solid #f5f5f5;
|
||||
@@ -754,6 +946,9 @@ export default {
|
||||
min-height: 60vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
.copyright-text {
|
||||
line-height: 1.7;
|
||||
}
|
||||
.poster-loading {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
|
||||
@@ -87,7 +87,7 @@ export default {
|
||||
this.$httpApi
|
||||
.getCategoryPostList(this.slug, this.queryParams)
|
||||
.then(res => {
|
||||
this.fnSetPageTitle(this.pageTitle + ` (共${res.data.total}篇)`);
|
||||
this.fnSetPageTitle(`分类:${this.pageTitle} (共${res.data.total}篇)`);
|
||||
this.result = res.data;
|
||||
if (this.isLoadMore) {
|
||||
this.dataList = this.dataList.concat(res.data.content);
|
||||
|
||||
@@ -67,7 +67,7 @@ export default {
|
||||
computed: {
|
||||
// 评论游客信息
|
||||
wxLoginVisitorUser() {
|
||||
return uni.$tm.vx.getters().user.getWxLoginInfo;
|
||||
return uni.$tm.vx.getters().getWxLoginInfo;
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
@@ -120,7 +120,7 @@ export default {
|
||||
computed: {
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
let blogger = this.$tm.vx.getters().blogger.getBlogger;
|
||||
let blogger = this.$tm.vx.getters().getBlogger;
|
||||
blogger.avatar = this.$utils.checkAvatarUrl(blogger.avatar, true);
|
||||
return blogger;
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
export default {
|
||||
computed: {
|
||||
bloggerInfo() {
|
||||
return this.$tm.vx.getters().blogger.getBlogger;
|
||||
return this.$tm.vx.getters().getBlogger;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppKeys from '@/config//keys.js';
|
||||
import AppKeys from '@/config/keys.js';
|
||||
import SheetConfig from '@/config/sheets.config.js';
|
||||
|
||||
import tmSkeleton from '@/tm-vuetify/components/tm-skeleton/tm-skeleton.vue';
|
||||
|
||||
@@ -0,0 +1,377 @@
|
||||
<template>
|
||||
<view class="app-page">
|
||||
<view v-if="loading != 'success'" class="loading-wrap">
|
||||
<view v-if="loading == 'loading'" class="loading">
|
||||
<view class="loading-icon flex flex-center"><text class="e-loading-icon iconfont icon-loading"></text></view>
|
||||
<view class="loadig-text ">相册正在努力加载中啦~</view>
|
||||
</view>
|
||||
<tm-empty v-else icon="icon-shiliangzhinengduixiang-" color="red" label="啊偶,加载失败了呢~">
|
||||
<tm-button theme="red" :shadow="0" size="m" @click="fnRefresh()">刷新试试</tm-button>
|
||||
</tm-empty>
|
||||
</view>
|
||||
<!-- 内容区域 -->
|
||||
<view v-else class="app-page-content">
|
||||
<view v-if="dataList.length == 0" color="light-blue" class="content-empty flex flex-center">
|
||||
<tm-empty icon="icon-shiliangzhinengduixiang-" label="相册暂时还没有数据~">
|
||||
<tm-button :shadow="0" size="m" theme="light-blue" @click="fnRefresh()">刷新试试</tm-button>
|
||||
</tm-empty>
|
||||
</view>
|
||||
<block v-else>
|
||||
<swiper
|
||||
class="swiper-album"
|
||||
:current="swiperIndex"
|
||||
:acceleration="true"
|
||||
:circular="true"
|
||||
:vertical="false"
|
||||
:indicator-dots="false"
|
||||
:autoplay="false"
|
||||
@change="fnOnChange"
|
||||
>
|
||||
<block v-for="(item, index) in dataList" :key="index">
|
||||
<swiper-item class="swiper-album-item">
|
||||
<view class="scroll-wrap">
|
||||
<view class="card">
|
||||
<cache-image
|
||||
class="card-image"
|
||||
width="100%"
|
||||
height="46vh"
|
||||
radius="12rpx"
|
||||
:url="item.image"
|
||||
:fileMd5="item.image"
|
||||
mode="aspectFill"
|
||||
@on-click="fnOnPreview(item)"
|
||||
></cache-image>
|
||||
<view v-if="item.description" class="card-desc">{{ item.description }}</view>
|
||||
<view v-else class="card-desc is-empty flex flex-col">
|
||||
<view class="text-grey-darken-1">该照片没有记录任何信息</view>
|
||||
<view class="text-size-m mt-24 text-grey-darken-1">记录一下拍照的瞬间,会更精彩哟</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</swiper-item>
|
||||
</block>
|
||||
</swiper>
|
||||
<view class="tabbar">
|
||||
<view class="pre" @click="fnChange(false)">
|
||||
<text class="icon"><text class="iconfont icon-arrow-left"></text></text>
|
||||
<text class="text">上一张</text>
|
||||
</view>
|
||||
<view class="refresh" @click="fnRefresh()">
|
||||
<text class="refresh-text">点击</text>
|
||||
<text class="refresh-heart iconfont icon-diagnose"></text>
|
||||
<text class="refresh-text">刷新</text>
|
||||
</view>
|
||||
<view class="next" @click="fnChange(true)">
|
||||
<text class="text">下一张</text>
|
||||
<text class="icon"><text class="iconfont icon-arrow-right"></text></text>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LoveConfig from '@/config/love.config.js';
|
||||
import throttle from '@/utils/throttle.js';
|
||||
import tmButton from '@/tm-vuetify/components/tm-button/tm-button.vue';
|
||||
import tmFlotbutton from '@/tm-vuetify/components/tm-flotbutton/tm-flotbutton.vue';
|
||||
import tmTranslate from '@/tm-vuetify/components/tm-translate/tm-translate.vue';
|
||||
import tmEmpty from '@/tm-vuetify/components/tm-empty/tm-empty.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
tmButton,
|
||||
tmFlotbutton,
|
||||
tmTranslate,
|
||||
tmEmpty
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loading: 'loading',
|
||||
loveConfig: LoveConfig,
|
||||
queryParams: {
|
||||
size: 99,
|
||||
page: 0,
|
||||
sort: 'takeTime',
|
||||
team: LoveConfig.albumKeyName
|
||||
},
|
||||
result: {},
|
||||
dataList: [],
|
||||
cache: {
|
||||
dataList: [],
|
||||
total: 0
|
||||
},
|
||||
swiperIndex: 0,
|
||||
tabbar: {
|
||||
list: []
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
this.fnSetPageTitle('恋爱相册');
|
||||
},
|
||||
created() {
|
||||
this.fnGetData();
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.fnRefresh();
|
||||
},
|
||||
|
||||
methods: {
|
||||
fnRefresh() {
|
||||
this.queryParams.page = 0;
|
||||
this.fnGetData();
|
||||
},
|
||||
fnGetData() {
|
||||
this.loading = 'loading';
|
||||
this.$httpApi
|
||||
.getPhotoListByPage(this.queryParams)
|
||||
.then(res => {
|
||||
if (res.status == 200) {
|
||||
this.loading = 'success';
|
||||
if (res.data.content.length != 0) {
|
||||
const _list = res.data.content.map((item, index) => {
|
||||
item['image'] = this.$utils.checkImageUrl(item.thumbnail);
|
||||
item['takeTime'] = this.$tm.dayjs(item['takeTime']).format('DD/MM/YYYY');
|
||||
return item;
|
||||
});
|
||||
this.dataList = _list;
|
||||
this.swiperIndex = 0;
|
||||
}
|
||||
} else {
|
||||
this.loading = 'error';
|
||||
uni.$tm.toast('加载失败,请下拉刷新重试!');
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
this.loading = 'error';
|
||||
uni.$tm.toast('加载失败,请下拉刷新重试!');
|
||||
})
|
||||
.finally(() => {
|
||||
setTimeout(() => {
|
||||
uni.stopPullDownRefresh();
|
||||
}, 200);
|
||||
});
|
||||
},
|
||||
// 缓存数据
|
||||
fnCacheDataList(dataList) {
|
||||
if (this.queryParams.page == 0) {
|
||||
this.cache.dataList = dataList;
|
||||
} else {
|
||||
this.cache.dataList = [...this.cache.dataList, ...dataList];
|
||||
}
|
||||
},
|
||||
fnOnPreview(item) {
|
||||
uni.previewImage({
|
||||
current: item.image,
|
||||
urls: this.dataList.map(x => x.image)
|
||||
});
|
||||
},
|
||||
fnOnChange(e) {
|
||||
this.swiperIndex = e.detail.current;
|
||||
},
|
||||
fnChange(isNext) {
|
||||
throttle(() => {
|
||||
if (isNext) {
|
||||
if (this.swiperIndex == this.dataList.length - 1) {
|
||||
this.swiperIndex = 0;
|
||||
} else {
|
||||
this.swiperIndex += 1;
|
||||
}
|
||||
} else {
|
||||
if (this.swiperIndex == 0) {
|
||||
this.swiperIndex = this.dataList.length - 1;
|
||||
} else {
|
||||
this.swiperIndex -= 1;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx 0;
|
||||
padding-bottom: 144rpx;
|
||||
background: linear-gradient(
|
||||
-135deg,
|
||||
rgba(247, 149, 51, 0.1),
|
||||
rgba(243, 112, 85, 0.1) 15%,
|
||||
rgba(239, 78, 123, 0.1) 30%,
|
||||
rgba(161, 102, 171, 0.1) 44%,
|
||||
rgba(80, 115, 184, 0.1) 58%,
|
||||
rgba(16, 152, 173, 0.1) 72%,
|
||||
rgba(7, 179, 155, 0.1) 86%,
|
||||
rgba(109, 186, 130, 0.1)
|
||||
);
|
||||
}
|
||||
.app-page-content {
|
||||
}
|
||||
.loading-wrap {
|
||||
width: 100vw;
|
||||
height: 60vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
padding: 36rpx;
|
||||
|
||||
::v-deep {
|
||||
.tm-icons {
|
||||
margin-right: -20rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.e-loading-icon {
|
||||
font-size: 120rpx;
|
||||
// color: #f88ca2;
|
||||
color: #56bbf9;
|
||||
}
|
||||
|
||||
.loadig-text {
|
||||
margin-top: 28rpx;
|
||||
font-size: 28rpx;
|
||||
// color: #f88ca2;
|
||||
color: #56bbf9;
|
||||
}
|
||||
.content-empty {
|
||||
width: 100%;
|
||||
height: 60vh;
|
||||
}
|
||||
|
||||
.swiper-album {
|
||||
width: 100vw;
|
||||
height: calc(100vh - 24rpx - 144rpx);
|
||||
}
|
||||
.swiper-album-item {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
padding: 36rpx;
|
||||
/* #ifdef H5 */
|
||||
padding-bottom: 110rpx;
|
||||
/* #endif */
|
||||
/* #ifndef H5 */
|
||||
padding-bottom: 60rpx;
|
||||
/* #endif */
|
||||
}
|
||||
.scroll-wrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 36rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 12rpx;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
.card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
// height: 65vh;
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
border-radius: 12rpx;
|
||||
background-color: #ffffff;
|
||||
box-sizing: border-box;
|
||||
// box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
::v-deep {
|
||||
.cache-image {
|
||||
height: initial !important;
|
||||
}
|
||||
}
|
||||
&-image {
|
||||
width: 100%;
|
||||
height: initial !important;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
&-desc {
|
||||
margin-top: 24rpx;
|
||||
line-height: 1.6;
|
||||
font-size: 30rpx;
|
||||
color: rgba(26, 26, 26, 0.9);
|
||||
&.is-empty {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-grow: 1;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.tabbar {
|
||||
width: 90vw;
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
bottom: 40rpx;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 25rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
// background-color: rgba(0, 0, 0, 0.5);
|
||||
background-color: #ffffff;
|
||||
color: #333;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.05);
|
||||
.refresh {
|
||||
animation: refreshAni 6s ease-in-out infinite;
|
||||
color: #56bbf9;
|
||||
&-heart {
|
||||
font-size: 42rpx;
|
||||
color: inherit;
|
||||
margin: 0 6rpx;
|
||||
}
|
||||
&-text {
|
||||
font-size: 24rpx;
|
||||
}
|
||||
}
|
||||
.pre {
|
||||
color: #56bbf9;
|
||||
transition: transform 0.1s ease-in-out;
|
||||
&:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
.text {
|
||||
padding-left: 12rpx;
|
||||
}
|
||||
}
|
||||
.next {
|
||||
color: #f88ca2;
|
||||
transition: transform 0.1s ease-in-out;
|
||||
&:hover {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
.text {
|
||||
padding-right: 12rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
@keyframes refreshAni {
|
||||
0% {
|
||||
color: #f88ca2;
|
||||
}
|
||||
50% {
|
||||
color: #56bbf9;
|
||||
}
|
||||
100% {
|
||||
color: #f88ca2;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,92 @@
|
||||
<template>
|
||||
<view class="app-page">
|
||||
<view class="page-title">我们的故事</view>
|
||||
<view class="html-typed" v-html="html">内容渲染</view>
|
||||
|
||||
<scroll-btn bottom="160rpx" :scrollTop.sync="scrollTop"></scroll-btn>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LoveConfig from '@/config/love.config.js';
|
||||
import ScrollBtn from '@/components/scroll-btn/scroll-btn.vue';
|
||||
export default {
|
||||
components: { ScrollBtn },
|
||||
data() {
|
||||
return {
|
||||
scrollTop: 0,
|
||||
html: '',
|
||||
timer: null
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.fnInit();
|
||||
},
|
||||
onPageScroll(e) {
|
||||
this.scrollTop = e.scrollTop;
|
||||
},
|
||||
onBackPress() {
|
||||
clearTimeout(this.timer);
|
||||
},
|
||||
methods: {
|
||||
fnInit() {
|
||||
clearTimeout(this.timer);
|
||||
const _html = LoveConfig.journey;
|
||||
let _index = 0;
|
||||
const _typing = () => {
|
||||
this.timer = setTimeout(() => {
|
||||
if (_index >= _html.length) {
|
||||
clearTimeout(this.timer);
|
||||
} else {
|
||||
this.html += _html.substring(_index, _index + 1);
|
||||
_index += 1;
|
||||
_typing();
|
||||
}
|
||||
}, 100);
|
||||
};
|
||||
_typing();
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
box-sizing: border-box;
|
||||
padding: 36rpx;
|
||||
/* #ifdef APP-PLUS */
|
||||
padding-top: 100rpx;
|
||||
/* #endif */
|
||||
/* #ifdef H5 */
|
||||
padding-top: 80rpx;
|
||||
/* #endif */
|
||||
/* #ifdef MP-WEIXIN */
|
||||
padding-top: 120rpx;
|
||||
/* #endif */
|
||||
background: linear-gradient(
|
||||
-45deg,
|
||||
rgba(247, 149, 51, 0.1),
|
||||
rgba(243, 112, 85, 0.1) 15%,
|
||||
rgba(239, 78, 123, 0.1) 30%,
|
||||
rgba(161, 102, 171, 0.1) 44%,
|
||||
rgba(80, 115, 184, 0.1) 58%,
|
||||
rgba(16, 152, 173, 0.1) 72%,
|
||||
rgba(7, 179, 155, 0.1) 86%,
|
||||
rgba(109, 186, 130, 0.1)
|
||||
);
|
||||
color: rgba(26, 26, 26, 1);
|
||||
}
|
||||
.page-title {
|
||||
font-size: 42rpx;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-shadow: 0rpx 4rpx 24rpx #bfe9ef;
|
||||
}
|
||||
.html-typed {
|
||||
margin-top: 52rpx;
|
||||
line-height: 1.8;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,421 @@
|
||||
<template>
|
||||
<view class="app-page" @touchstart="fnOnTouchstart" @touchend="fnOnTouchend" @touchcancel="fnOnTouchend">
|
||||
<view class="love-card" :class="{ ani: isDoAni }">
|
||||
<view class="head">
|
||||
<image class="avatar" :src="loveConfig.boy.avatar" mode="scaleToFill"></image>
|
||||
<view class="love-days">
|
||||
<view class="tip-text">相恋</view>
|
||||
<view class="number">
|
||||
<text class="boy">-</text>
|
||||
<text class="days">{{ calcLoveDays }}</text>
|
||||
<text class="girl">-</text>
|
||||
</view>
|
||||
<view class="tip-text">天</view>
|
||||
</view>
|
||||
<image class="avatar" :src="loveConfig.girl.avatar" mode="scaleToFill"></image>
|
||||
</view>
|
||||
<view class="foot">
|
||||
<view class="text" v-if="false">
|
||||
我们已经相恋
|
||||
<text class="number">- {{ calcLoveDays }} -</text>
|
||||
天啦
|
||||
</view>
|
||||
看看我们的恋爱清单都完成了哪些吧
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="list.length == 0" class="list empty">
|
||||
<view class="card">
|
||||
<image class="empty-image" :src="loveConfig.loveImageUrl" mode="scaleToFill"></image>
|
||||
<view class="empty-text">暂时还没有恋爱清单,快去制定你们的恋爱清单吧~</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="list">
|
||||
<block v-for="(item, index) in list" :key="index">
|
||||
<view class="card" :class="{ ani: isDoAni }" :style="{ '--delay': calcCardDelay(index) }">
|
||||
<view class="head">
|
||||
<view class="status">
|
||||
<view v-if="!item.finish" class="text">进行中</view>
|
||||
<view v-else class="text finish">已完成</view>
|
||||
</view>
|
||||
<view class="title">
|
||||
<view class="title-name">{{ item.title }}</view>
|
||||
<view class="title-desc">{{ item.desc }}</view>
|
||||
</view>
|
||||
<view class="actions" @click="fnOnItemOpen(item)">
|
||||
<text class="icon">{{ item.open ? '-' : '+' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.open" class="body">
|
||||
<view class="desc">
|
||||
<view class="desc-label">开始时间:</view>
|
||||
<view class="desc-value">{{ item.detail.start || '暂无计划' }}</view>
|
||||
</view>
|
||||
<view class="desc" v-if="item.detail.desc">
|
||||
<view class="desc-label">事件描述:</view>
|
||||
<view class="desc-value">{{ item.detail.desc }}</view>
|
||||
</view>
|
||||
<view class="desc">
|
||||
<view class="desc-label">完成时间:</view>
|
||||
<view class="desc-value">{{ item.detail.end || '未开始或正在进行中...' }}</view>
|
||||
</view>
|
||||
<view class="desc">
|
||||
<view class="desc-label">完成打卡:</view>
|
||||
<view class="desc-value">{{ item.detail.moment || '未开始或正在进行中...' }}</view>
|
||||
</view>
|
||||
<view class="desc" v-if="item.detail.other">
|
||||
<view class="desc-label">爱心备注:</view>
|
||||
<view class="desc-value">{{ item.detail.other }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
<scroll-btn :scrollTop.sync="scrollTop" @on-status="fnOnScrollStatus"></scroll-btn>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LoveConfig from '@/config/love.config.js';
|
||||
import ScrollBtn from '@/components/scroll-btn/scroll-btn.vue';
|
||||
export default {
|
||||
components: { ScrollBtn },
|
||||
data() {
|
||||
return {
|
||||
isDoAni: true,
|
||||
scrollTop: 0,
|
||||
loveConfig: LoveConfig,
|
||||
list: []
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
calcLoveDays() {
|
||||
const formatStartDate = this.loveConfig.loveStartDate.replace(/-/g, '/');
|
||||
const start = new Date(formatStartDate),
|
||||
now = new Date();
|
||||
const T = now.getTime() - start.getTime();
|
||||
const i = 24 * 60 * 60 * 1000;
|
||||
const d = T / i;
|
||||
const D = Math.floor(d);
|
||||
return D;
|
||||
},
|
||||
calcCardDelay() {
|
||||
return index => {
|
||||
return Math.random() * index + 1 + 's';
|
||||
};
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.fnGetList();
|
||||
},
|
||||
onPageScroll(e) {
|
||||
this.scrollTop = e.scrollTop;
|
||||
},
|
||||
methods: {
|
||||
fnGetList() {
|
||||
if (LoveConfig.loveList.useApi && LoveConfig.loveList.api) {
|
||||
uni.request({
|
||||
url: LoveConfig.loveList.api,
|
||||
header: {
|
||||
ContentType: 'application/json'
|
||||
},
|
||||
method: 'GET',
|
||||
dataType: 'json',
|
||||
success: res => {
|
||||
if (res.statusCode == 200 && res.data.status == 200) {
|
||||
this.list = res.data.data.map(item => {
|
||||
item['open'] = false;
|
||||
return item;
|
||||
});
|
||||
} else {
|
||||
uni.$tm.toast('数据请求失败,请检查接口!');
|
||||
}
|
||||
},
|
||||
fail: err => {
|
||||
uni.$tm.toast('数据请求失败,请检查接口!');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.list = LoveConfig.loveList.data.map(item => {
|
||||
item['open'] = false;
|
||||
return item;
|
||||
});
|
||||
}
|
||||
},
|
||||
fnOnItemOpen(item) {
|
||||
item.open = !item.open;
|
||||
this.$forceUpdate();
|
||||
},
|
||||
fnOnScrollStatus(isEnd) {
|
||||
this.isDoAni = isEnd;
|
||||
},
|
||||
fnOnTouchstart() {
|
||||
this.isDoAni = false;
|
||||
},
|
||||
fnOnTouchend() {
|
||||
this.isDoAni = true;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
box-sizing: border-box;
|
||||
padding: 36rpx;
|
||||
/* #ifdef H5 */
|
||||
padding-top: 60rpx;
|
||||
/* #endif */
|
||||
/* #ifndef H5 */
|
||||
padding-top: 180rpx;
|
||||
/* #endif */
|
||||
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
rgba(247, 149, 51, 0.1),
|
||||
rgba(243, 112, 85, 0.1) 15%,
|
||||
rgba(239, 78, 123, 0.1) 30%,
|
||||
rgba(161, 102, 171, 0.1) 44%,
|
||||
rgba(80, 115, 184, 0.1) 58%,
|
||||
rgba(16, 152, 173, 0.1) 72%,
|
||||
rgba(7, 179, 155, 0.1) 86%,
|
||||
rgba(109, 186, 130, 0.1)
|
||||
);
|
||||
}
|
||||
|
||||
.love-card {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 24rpx;
|
||||
padding-top: 66rpx;
|
||||
padding-bottom: 52rpx;
|
||||
border-radius: 50rpx;
|
||||
border: 4rpx solid rgba(96, 77, 68, 0.9);
|
||||
border-color: #faf8eb;
|
||||
background-color: rgba(255, 199, 184, 0.9);
|
||||
margin-bottom: 52rpx;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.1);
|
||||
&.ani {
|
||||
animation: loveCardAni 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.head {
|
||||
display: flex;
|
||||
.avatar {
|
||||
width: 150rpx;
|
||||
height: 150rpx;
|
||||
box-sizing: border-box;
|
||||
border-radius: 50%;
|
||||
border: 6rpx solid rgba(255, 255, 255, 0.7);
|
||||
|
||||
&.boy {
|
||||
border-color: #56bbf9;
|
||||
}
|
||||
&.girl {
|
||||
border-color: #f88ca2;
|
||||
}
|
||||
}
|
||||
.love-days {
|
||||
margin: 0 12rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 26rpx;
|
||||
.tip-text {
|
||||
color: #333;
|
||||
}
|
||||
.number {
|
||||
font-size: 46rpx;
|
||||
padding: 12rpx 0;
|
||||
> .boy {
|
||||
color: #56bbf9;
|
||||
margin-right: 12rpx;
|
||||
}
|
||||
> .girl {
|
||||
color: #f88ca2;
|
||||
margin-left: 12rpx;
|
||||
}
|
||||
}
|
||||
.days {
|
||||
animation: daysAni 6s ease-in-out infinite;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
.foot {
|
||||
display: none;
|
||||
margin-top: 36rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
}
|
||||
@keyframes daysAni {
|
||||
0% {
|
||||
color: #f88ca2;
|
||||
}
|
||||
50% {
|
||||
color: #56bbf9;
|
||||
}
|
||||
100% {
|
||||
color: #f88ca2;
|
||||
}
|
||||
}
|
||||
@keyframes loveCardAni {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
.list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.empty {
|
||||
height: calc(100vh - 180rpx - 280rpx - 36rpx);
|
||||
.card {
|
||||
height: 100%;
|
||||
padding: 100rpx;
|
||||
margin-bottom: 0;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
color: rgba(96, 77, 68, 0.9);
|
||||
}
|
||||
&-image {
|
||||
width: 300rpx;
|
||||
height: 300rpx;
|
||||
}
|
||||
&-text {
|
||||
margin-top: 36rpx;
|
||||
line-height: 50rpx;
|
||||
}
|
||||
}
|
||||
.card {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
border-radius: 50rpx;
|
||||
border: 4rpx solid rgba(96, 77, 68, 0.9);
|
||||
border-color: #fff;
|
||||
// background-color: #faf8eb;
|
||||
background-color: #ffffff;
|
||||
margin-bottom: 36rpx;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.05);
|
||||
animation-delay: var(--delay);
|
||||
&.ani {
|
||||
animation: cardAni 3s ease-in-out infinite;
|
||||
}
|
||||
.head {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
.status {
|
||||
width: 100rpx;
|
||||
display: flex;
|
||||
.text {
|
||||
width: 100rpx;
|
||||
height: 100rpx;
|
||||
border-radius: 50%;
|
||||
background-color: #ffc6ba;
|
||||
font-size: 24rpx;
|
||||
line-height: 100rpx;
|
||||
text-align: center;
|
||||
color: #55423b;
|
||||
&.finish {
|
||||
background-color: #bfe9ef;
|
||||
}
|
||||
}
|
||||
}
|
||||
.title {
|
||||
width: 0;
|
||||
flex-grow: 1;
|
||||
box-sizing: border-box;
|
||||
padding-left: 30rpx;
|
||||
padding-right: 24rpx;
|
||||
&-name {
|
||||
font-weight: bold;
|
||||
font-size: 30rpx;
|
||||
color: #333;
|
||||
}
|
||||
&-desc {
|
||||
margin-top: 8rpx;
|
||||
font-size: 26rpx;
|
||||
color: #555;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
.actions {
|
||||
width: 50rpx;
|
||||
.icon {
|
||||
display: inline-block;
|
||||
width: 45rpx;
|
||||
height: 45rpx;
|
||||
background-color: rgba(96, 77, 68, 0.2);
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
line-height: 45rpx;
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.body {
|
||||
margin-top: 24rpx;
|
||||
width: 100%;
|
||||
background-color: #ffffff;
|
||||
// background-color: #faf8eb;
|
||||
background-color: rgba(96, 77, 68, 0.05);
|
||||
border-radius: 24rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 24rpx;
|
||||
padding-bottom: 12rpx;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
}
|
||||
@keyframes cardAni {
|
||||
0% {
|
||||
transform: translateY(0rpx);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(-10rpx);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0rpx);
|
||||
}
|
||||
}
|
||||
.desc {
|
||||
display: flex;
|
||||
margin-bottom: 12rpx;
|
||||
&-label {
|
||||
color: #333;
|
||||
width: 140rpx;
|
||||
// font-weight: bold;
|
||||
}
|
||||
&-value {
|
||||
width: 0;
|
||||
flex-grow: 1;
|
||||
line-height: 1.5;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
+340
-4
@@ -1,22 +1,358 @@
|
||||
<template>
|
||||
<view class="app-page bg-white flex flex-center"><text class="text-bg-gradient-red-accent-b">祝有情人👩❤👨终成眷属</text></view>
|
||||
<view class="app-page bg-white">
|
||||
<!-- 情侣信息 -->
|
||||
<view class="lover-wrap" :style="[loveWrapStyle]">
|
||||
<view class="lover-card">
|
||||
<view class="boy">
|
||||
<image class="avatar" :src="loveConfig.boy.avatar" mode="aspectFit"></image>
|
||||
<view class="name">{{ loveConfig.boy.name }}</view>
|
||||
</view>
|
||||
<image class="like" :src="loveConfig.loveImageUrl" mode="scaleToFill"></image>
|
||||
<view class="girl">
|
||||
<image class="avatar" :src="loveConfig.girl.avatar" mode="aspectFit"></image>
|
||||
<view class="name">{{ loveConfig.girl.name }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<image class="wave-image" :src="loveConfig.waveImageUrl" mode="scaleToFill"></image>
|
||||
</view>
|
||||
<!-- 恋爱记时 -->
|
||||
<view class="love-time-wrap">
|
||||
<view class="title">{{ loveConfig.timeTitle }}</view>
|
||||
<view class="content">
|
||||
<text class="text">
|
||||
第
|
||||
<text class="number">{{ loveDayCount.d }}</text>
|
||||
天
|
||||
</text>
|
||||
<text class="text">
|
||||
<text class="number">{{ loveDayCount.h }}</text>
|
||||
小时
|
||||
</text>
|
||||
<text class="text">
|
||||
<text class="number">{{ loveDayCount.m }}</text>
|
||||
分钟
|
||||
</text>
|
||||
<text class="text">
|
||||
<text class="number">{{ loveDayCount.s }}</text>
|
||||
秒
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 功能导航 -->
|
||||
<view class="list-wrap">
|
||||
<block v-for="(nav, index) in loveConfig.nav" :key="index">
|
||||
<view v-if="nav.use" class="list-item" @click="fnToPage(nav.key)">
|
||||
<view class="left"><image class="icon" :src="nav.iconImageUrl" mode="aspectFit"></image></view>
|
||||
<view class="right">
|
||||
<view class="name">{{ nav.title }}</view>
|
||||
<view class="desc">{{ nav.desc }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LoveConfig from '@/config/love.config.js';
|
||||
export default {
|
||||
data() {
|
||||
return {};
|
||||
return {
|
||||
loveConfig: LoveConfig,
|
||||
loveDayTimer: null,
|
||||
loveDayCount: {
|
||||
d: 0,
|
||||
h: 0,
|
||||
m: 0,
|
||||
s: 0
|
||||
}
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
loveWrapStyle() {
|
||||
return {
|
||||
backgroundImage: `url(${this.loveConfig.bgImageUrl})`
|
||||
};
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.fnSetPageTitle('恋爱日记');
|
||||
this.fnInitLoveDayCount();
|
||||
},
|
||||
methods: {}
|
||||
methods: {
|
||||
fnInitLoveDayCount() {
|
||||
clearTimeout(this.loveDayTimer);
|
||||
const _countDownFn = () => {
|
||||
this.loveDayTimer = setTimeout(_countDownFn, 1000);
|
||||
const formatStartDate = this.loveConfig.loveStartDate.replace(/-/g, '/');
|
||||
const start = new Date(formatStartDate),
|
||||
now = new Date();
|
||||
const T = now.getTime() - start.getTime();
|
||||
const i = 24 * 60 * 60 * 1000;
|
||||
const d = T / i;
|
||||
const D = Math.floor(d);
|
||||
const h = (d - D) * 24;
|
||||
const H = Math.floor(h);
|
||||
const m = (h - H) * 60;
|
||||
const M = Math.floor(m);
|
||||
const s = (m - M) * 60;
|
||||
const S = Math.floor(s);
|
||||
this.loveDayCount = {
|
||||
d: D,
|
||||
h: H,
|
||||
m: M,
|
||||
s: S
|
||||
};
|
||||
};
|
||||
_countDownFn();
|
||||
},
|
||||
fnToPage(pageName) {
|
||||
uni.navigateTo({
|
||||
url: `/pagesA/love/${pageName}`
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(
|
||||
-45deg,
|
||||
rgba(247, 149, 51, 0.1),
|
||||
rgba(243, 112, 85, 0.1) 15%,
|
||||
rgba(239, 78, 123, 0.1) 30%,
|
||||
rgba(161, 102, 171, 0.1) 44%,
|
||||
rgba(80, 115, 184, 0.1) 58%,
|
||||
rgba(16, 152, 173, 0.1) 72%,
|
||||
rgba(7, 179, 155, 0.1) 86%,
|
||||
rgba(109, 186, 130, 0.1)
|
||||
);
|
||||
}
|
||||
|
||||
.lover-wrap {
|
||||
position: relative;
|
||||
width: 100vw;
|
||||
height: 50vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
content: '';
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAKUlEQVQImU3IMREAIAgAwJfNkQCEsH8cijjpMf6vnXlQaIiJFx+omEBfmqIEZLe2jzcAAAAASUVORK5CYII=);
|
||||
z-index: 0;
|
||||
backdrop-filter: blur(4rpx);
|
||||
overflow: hidden;
|
||||
}
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -60rpx;
|
||||
width: 100vw;
|
||||
height: 60rpx;
|
||||
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
|
||||
}
|
||||
.lover-card {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 58%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 90vw;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
border-radius: 12rpx;
|
||||
z-index: 2;
|
||||
.avatar {
|
||||
width: 180rpx;
|
||||
height: 180rpx;
|
||||
border-radius: 50%;
|
||||
box-sizing: border-box;
|
||||
// border: 8rpx solid transparent;
|
||||
// border: 8rpx solid rgba(255, 255, 255, 0.7) !important;
|
||||
border: 8rpx solid rgba(255, 255, 255, 1) !important;
|
||||
}
|
||||
.name {
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
letter-spacing: 2rpx;
|
||||
}
|
||||
.boy {
|
||||
color: #3ab8e4;
|
||||
.avatar {
|
||||
border-color: rgba(58, 184, 228, 0.7);
|
||||
}
|
||||
}
|
||||
.girl {
|
||||
color: #f57ab3;
|
||||
.avatar {
|
||||
border-color: rgba(245, 122, 179, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
.like {
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
animation: likeani 1s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
.wave-image {
|
||||
width: 100%;
|
||||
height: 120rpx;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
mix-blend-mode: screen;
|
||||
}
|
||||
}
|
||||
|
||||
.love-time-wrap {
|
||||
margin-top: 80rpx;
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.title {
|
||||
font-size: 46rpx;
|
||||
letter-spacing: 4rpx;
|
||||
// background-image: linear-gradient(270deg, #ff4500, #ffa500, #ffd700, #90ee90, #00ffff, #1e90ff, #9370db, #ff69b4, #ff4500);
|
||||
// -webkit-background-clip: text;
|
||||
// color: #000;
|
||||
color: #333;
|
||||
font-size: 42rpx;
|
||||
font-weight: bold;
|
||||
// animation: loveTimeTitleAni 80s linear infinite;
|
||||
}
|
||||
.content {
|
||||
margin-top: 24rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.text {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.number {
|
||||
margin: 0 8rpx;
|
||||
font-size: 46rpx;
|
||||
// color: #ff69b4;
|
||||
color: #f83856;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-wrap {
|
||||
margin-top: 75rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 36rpx;
|
||||
|
||||
.list-item {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
box-sizing: border-box;
|
||||
padding: 28rpx 32rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 50rpx;
|
||||
margin-bottom: 32rpx;
|
||||
box-shadow: 0rpx 4rpx 24rpx rgba(0, 0, 0, 0.03);
|
||||
|
||||
&:nth-child(1) {
|
||||
animation: listItemAni1 3s ease-in-out infinite;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
animation: listItemAni1 3s ease-in-out infinite;
|
||||
animation-delay: 1.5s;
|
||||
}
|
||||
&:nth-child(3) {
|
||||
animation: listItemAni1 3s ease-in-out infinite;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
.left {
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
.icon {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.right {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
padding-left: 40rpx;
|
||||
.name {
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
}
|
||||
.desc {
|
||||
margin-top: 8px;
|
||||
font-size: 26rpx;
|
||||
color: #777777;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes likeani {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
25% {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
75% {
|
||||
transform: scale(1.3);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@keyframes loveTimeTitleAni {
|
||||
to {
|
||||
background-position: -200rem;
|
||||
}
|
||||
}
|
||||
@keyframes listItemAni1 {
|
||||
0% {
|
||||
transform: translateY(0rpx);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(-10rpx);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0rpx);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
+68
-18
@@ -9,8 +9,8 @@
|
||||
<view class="sheet-content">内容区域</view>
|
||||
</tm-sheet> -->
|
||||
<tm-sheet :shadow="6" :padding="[12, 24]" :margin="[24, 24]">
|
||||
<view class="py-12 px-24 mx-12 round-3 border-b-1 grey text">
|
||||
<text class="text-size-n text-weight-b ">布局</text>
|
||||
<view class="py-12 px-24 mx-12 round-3 grey text">
|
||||
<text class="text-size-n text-weight-b text-grey-darken-3">布局</text>
|
||||
<text class="text-grey text-size-xs px-10 ml-12">应用以及文章列表布局设置</text>
|
||||
</view>
|
||||
<view class="sheet-content">
|
||||
@@ -25,9 +25,10 @@
|
||||
<tm-input
|
||||
name="status"
|
||||
required
|
||||
title="首页布局"
|
||||
placeholder="请选择首页布局"
|
||||
title="首页文章布局"
|
||||
placeholder="请选择首页文章布局"
|
||||
disabled
|
||||
align="right"
|
||||
:value="homeLayout.selectLabel"
|
||||
right-icon="icon-angle-right"
|
||||
></tm-input>
|
||||
@@ -43,9 +44,10 @@
|
||||
<tm-input
|
||||
name="status"
|
||||
required
|
||||
title="卡片样式"
|
||||
title="文章卡片样式"
|
||||
placeholder="请选择文章卡片样式"
|
||||
disabled
|
||||
align="right"
|
||||
:value="articleCardStyle.selectLabel"
|
||||
right-icon="icon-angle-right"
|
||||
></tm-input>
|
||||
@@ -54,7 +56,7 @@
|
||||
</tm-sheet>
|
||||
|
||||
<tm-sheet v-if="false" :shadow="24" :padding="[12, 24]" :margin="[24, 24]">
|
||||
<view class="py-12 px-24 mx-12 round-3 border-b-1 grey text">
|
||||
<view class="py-12 px-24 mx-12 round-3 grey text">
|
||||
<text class="text-size-n text-weight-b ">外观</text>
|
||||
<text class="text-grey text-size-xs px-10">设置应用主题色/暗黑模式等</text>
|
||||
</view>
|
||||
@@ -65,19 +67,11 @@
|
||||
</tm-sheet>
|
||||
|
||||
<tm-sheet :shadow="6" :padding="[12, 24]" :margin="[24, 24]">
|
||||
<view class="py-12 px-24 mx-12 round-3 border-b-1 grey text">
|
||||
<text class="text-size-n text-weight-b ">功能</text>
|
||||
<view class="py-12 px-24 mx-12 round-3 grey text">
|
||||
<text class="text-size-n text-weight-b text-grey-darken-3">功能</text>
|
||||
<text class="text-grey text-size-xs px-10 ml-12">一些常用的功能性设置</text>
|
||||
</view>
|
||||
<view class="sheet-content">
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m">显示完整统计</text>
|
||||
<tm-switch v-model="appSettings.about.showAllCount" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m ">链接直接打开</text>
|
||||
<tm-switch v-model="appSettings.contact.isLinkCopy" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m ">图库瀑布流模式</text>
|
||||
<tm-switch v-model="appSettings.gallery.useWaterfull" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
@@ -86,6 +80,33 @@
|
||||
<text class="text-size-m ">友链简洁模式</text>
|
||||
<tm-switch v-model="appSettings.links.useSimple" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 mt-24 mb-0 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m">启用评论弹幕</text>
|
||||
<tm-switch v-model="appSettings.barrage.use" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<tm-pickers
|
||||
v-if="appSettings.barrage.use"
|
||||
title="评论弹幕位置"
|
||||
btn-color="light-blue"
|
||||
:default-value.sync="barrage.selectDefault"
|
||||
rang-key="name"
|
||||
:list="barrage.list"
|
||||
@confirm="fnOnBarrageConfirm"
|
||||
>
|
||||
<tm-input
|
||||
name="status"
|
||||
title="评论弹幕位置"
|
||||
placeholder="请选择评论弹幕位置"
|
||||
disabled
|
||||
align="right"
|
||||
:value="barrage.selectLabel"
|
||||
right-icon="icon-angle-right"
|
||||
></tm-input>
|
||||
</tm-pickers>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m">是否圆形头像</text>
|
||||
<tm-switch v-model="appSettings.isAvatarRadius" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m ">轮播图指示器</text>
|
||||
<tm-switch v-model="appSettings.banner.useDot" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
@@ -104,6 +125,15 @@
|
||||
></tm-radio>
|
||||
</tm-groupradio>
|
||||
</view>
|
||||
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m">显示完整统计</text>
|
||||
<tm-switch v-model="appSettings.about.showAllCount" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m ">链接直接打开</text>
|
||||
<tm-switch v-model="appSettings.contact.isLinkCopy" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
</view>
|
||||
<view class="mx-32 my-24 border-b-1 pb-24 flex-between">
|
||||
<text class="text-size-m ">显示后台入口</text>
|
||||
<tm-switch v-model="appSettings.about.showAdmin" color="light-blue" :text="['是', '否']"></tm-switch>
|
||||
@@ -168,7 +198,13 @@ export default {
|
||||
selectLabel: '左图右文',
|
||||
selectValue: 'lr_image_text'
|
||||
},
|
||||
dotPositionList: [{ name: '右边', value: 'right', checked: true }, { name: '下边', value: 'bottom', checked: false }]
|
||||
dotPositionList: [{ name: '右边', value: 'right', checked: true }, { name: '下边', value: 'bottom', checked: false }],
|
||||
barrage: {
|
||||
list: [{ name: '顶部', value: 'rightToLeft' }, { name: '左下', value: 'leftBottom' }],
|
||||
selectDefault: ['顶部'],
|
||||
selectLabel: '顶部',
|
||||
selectValue: 'rightToLeft'
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
@@ -189,7 +225,7 @@ export default {
|
||||
this.fnSetPageTitle('应用设置');
|
||||
},
|
||||
created() {
|
||||
this.appSettings = uni.$tm.vx.getters().setting.getSettings;
|
||||
this.appSettings = Object.assign({}, _DefaultAppSettings, uni.$tm.vx.getters().getSettings);
|
||||
this.fnHandleFormatSelect();
|
||||
uni.showLoading({
|
||||
title: '加载中...',
|
||||
@@ -214,6 +250,11 @@ export default {
|
||||
this.articleCardStyle.selectDefault = [_articleCardStyle.name];
|
||||
this.articleCardStyle.selectLabel = _articleCardStyle.name;
|
||||
this.articleCardStyle.selectValue = _articleCardStyle.value;
|
||||
|
||||
const _barrage = this.fnFindObjInList(this.barrage.list, 'value', this.appSettings.barrage.type);
|
||||
this.barrage.selectDefault = [_barrage.name];
|
||||
this.barrage.selectLabel = _barrage.name;
|
||||
this.barrage.selectValue = _barrage.value;
|
||||
},
|
||||
// 在集合中找匹配的对象
|
||||
fnFindObjInList(list, key, value) {
|
||||
@@ -244,6 +285,14 @@ export default {
|
||||
this.articleCardStyle.selectValue = _select.value;
|
||||
this.appSettings.layout.cardType = _select.value;
|
||||
},
|
||||
// 弹幕设置
|
||||
fnOnBarrageConfirm(e) {
|
||||
const _select = e[0].data;
|
||||
this.barrage.selectDefault = [_select.name];
|
||||
this.barrage.selectLabel = _select.name;
|
||||
this.barrage.selectValue = _select.value;
|
||||
this.appSettings.barrage.type = _select.value;
|
||||
},
|
||||
// 保存
|
||||
fnOnSave() {
|
||||
this.isSaved = true;
|
||||
@@ -271,6 +320,7 @@ export default {
|
||||
fnOnBack() {
|
||||
if (this.isSaved) {
|
||||
uni.navigateBack();
|
||||
return;
|
||||
}
|
||||
uni.$eShowModal({
|
||||
title: '提示',
|
||||
|
||||
@@ -0,0 +1,144 @@
|
||||
<template>
|
||||
<view class="app-page">
|
||||
<view v-if="loading != 'success'" class="loading-wrap">
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
<tm-skeleton model="listAvatr"></tm-skeleton>
|
||||
</view>
|
||||
<block v-else>
|
||||
<view class="empty" v-if="dataList.length == 0"><tm-empty icon="icon-shiliangzhinengduixiang-" label="该标签下暂无文章"></tm-empty></view>
|
||||
<block v-else>
|
||||
<block v-for="(article, index) in dataList" :key="article.createTime">
|
||||
<!-- 文章卡片 -->
|
||||
<tm-translate animation-name="fadeUp" :wait="(index + 1) * 50"><article-card :article="article" @on-click="fnToArticleDetail"></article-card></tm-translate>
|
||||
</block>
|
||||
<view class="load-text">{{ loadMoreText }}</view>
|
||||
</block>
|
||||
|
||||
<tm-flotbutton @click="fnToTopPage" color="light-blue" size="m" icon="icon-angle-up"></tm-flotbutton>
|
||||
</block>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import tmSkeleton from '@/tm-vuetify/components/tm-skeleton/tm-skeleton.vue';
|
||||
import tmTranslate from '@/tm-vuetify/components/tm-translate/tm-translate.vue';
|
||||
import tmFlotbutton from '@/tm-vuetify/components/tm-flotbutton/tm-flotbutton.vue';
|
||||
import tmEmpty from '@/tm-vuetify/components/tm-empty/tm-empty.vue';
|
||||
import ArticleCard from '@/components/article-card/article-card.vue';
|
||||
export default {
|
||||
components: {
|
||||
tmSkeleton,
|
||||
tmTranslate,
|
||||
tmFlotbutton,
|
||||
tmEmpty,
|
||||
ArticleCard
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loading: 'loading',
|
||||
queryParams: {
|
||||
size: 10,
|
||||
page: 0
|
||||
},
|
||||
slug: '',
|
||||
pageTitle: '加载中...',
|
||||
result: null,
|
||||
dataList: [],
|
||||
isLoadMore: false,
|
||||
loadMoreText: ''
|
||||
};
|
||||
},
|
||||
|
||||
onLoad(e) {
|
||||
this.slug = e.slug;
|
||||
this.pageTitle = e.name;
|
||||
this.fnGetData();
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.isLoadMore = false;
|
||||
this.queryParams.page = 0;
|
||||
this.fnGetData();
|
||||
},
|
||||
onReachBottom(e) {
|
||||
if (this.result.hasNext) {
|
||||
this.queryParams.page += 1;
|
||||
this.isLoadMore = true;
|
||||
this.fnGetData();
|
||||
} else {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: '没有更多数据了'
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
fnGetData() {
|
||||
uni.showLoading({
|
||||
mask: true,
|
||||
title: '加载中...'
|
||||
});
|
||||
// 设置状态为加载中
|
||||
if (!this.isLoadMore) {
|
||||
this.loading = 'loading';
|
||||
}
|
||||
this.loadMoreText = '加载中...';
|
||||
this.$httpApi
|
||||
.getTagPostsList(this.slug, this.queryParams)
|
||||
.then(res => {
|
||||
this.fnSetPageTitle(`标签:${this.pageTitle} (共${res.data.total}篇)`);
|
||||
this.result = res.data;
|
||||
if (this.isLoadMore) {
|
||||
this.dataList = this.dataList.concat(res.data.content);
|
||||
} else {
|
||||
this.dataList = res.data.content;
|
||||
}
|
||||
this.loadMoreText = res.data.hasNext ? '上拉加载更多' : '呜呜,没有更多数据啦~';
|
||||
setTimeout(() => {
|
||||
this.loading = 'success';
|
||||
}, 500);
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
this.loading = 'error';
|
||||
this.loadMoreText = '加载失败,请下拉刷新!';
|
||||
})
|
||||
.finally(() => {
|
||||
setTimeout(() => {
|
||||
uni.hideLoading();
|
||||
uni.stopPullDownRefresh();
|
||||
}, 500);
|
||||
});
|
||||
},
|
||||
//跳转文章详情
|
||||
fnToArticleDetail(article) {
|
||||
uni.navigateTo({
|
||||
url: '/pagesA/article-detail/article-detail?articleId=' + article.id,
|
||||
animationType: 'slide-in-right'
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.app-page {
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 24rpx 0;
|
||||
background-color: #fafafd;
|
||||
}
|
||||
.loading-wrap {
|
||||
padding: 0 24rpx;
|
||||
min-height: 100vh;
|
||||
}
|
||||
.empty {
|
||||
height: 60vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<view>文章标签页面</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
@@ -146,13 +146,12 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
bloggerInfo() {
|
||||
return this.$tm.vx.getters().blogger.getBlogger;
|
||||
return this.$tm.vx.getters().getBlogger;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
// this.fnGetData();
|
||||
this.fnSetPageTitle('欢迎登录工作台');
|
||||
console.log(this.bloggerInfo);
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
uni.stopPullDownRefresh();
|
||||
|
||||
@@ -540,10 +540,10 @@ export default {
|
||||
if (this.form.id) {
|
||||
this.$Router.push({
|
||||
path: '/pagesB/articles/article-setting',
|
||||
query: { postsId: this.form.id, postTitle: this.form.title, isEdit: true, from: 'edit' }
|
||||
query: { postsId: this.form.id, postTitle: this.form.title, isEdit: 1, from: 'edit' }
|
||||
});
|
||||
} else {
|
||||
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: '', postTitle: '', isEdit: false, from: 'edit' } });
|
||||
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: '', postTitle: '', isEdit: 0, from: 'edit' } });
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
@@ -60,9 +60,7 @@
|
||||
<view>
|
||||
<tm-groupcheckbox name="categoryIds">
|
||||
<tm-checkbox :dense="true" :name="item.id" v-for="(item, index) in categories" :key="index" v-model="item.checked">
|
||||
<template v-slot:default="{ checkData }">
|
||||
<tm-button :flat="true" size="s" :theme="checkData.checked ? 'light-blue' : 'grey-lighten-4'" :plan="true">{{ item.name }}</tm-button>
|
||||
</template>
|
||||
<tm-button v-slot:default :flat="true" size="s" :theme="item.checked ? 'light-blue' : 'grey-lighten-4'" :plan="true">{{ item.name }}</tm-button>
|
||||
</tm-checkbox>
|
||||
</tm-groupcheckbox>
|
||||
</view>
|
||||
@@ -76,9 +74,7 @@
|
||||
<view>
|
||||
<tm-groupcheckbox name="tagIds">
|
||||
<tm-checkbox :dense="true" :name="item.id" v-for="(item, index) in tags" :key="index" v-model="item.checked">
|
||||
<template v-slot:default="{ checkData }">
|
||||
<tm-button :flat="true" size="s" :theme="checkData.checked ? 'light-blue' : 'grey-lighten-4'" :plan="true">{{ item.name }}</tm-button>
|
||||
</template>
|
||||
<tm-button v-slot:default :flat="true" size="s" :theme="item.checked ? 'light-blue' : 'grey-lighten-4'" :plan="true">{{ item.name }}</tm-button>
|
||||
</tm-checkbox>
|
||||
</tm-groupcheckbox>
|
||||
</view>
|
||||
@@ -404,13 +400,10 @@ export default {
|
||||
const from = this.$Route.query.from;
|
||||
this.postsId = postsId;
|
||||
this.postTitle = postTitle || '';
|
||||
this.isEdit = isEdit;
|
||||
this.isEdit = isEdit == 1 ? true : false;
|
||||
this.from = from;
|
||||
this.createTime = uni.$tm.dayjs(new Date().getTime()).format('YYYY-MM-DD HH:mm:ss');
|
||||
this.fnGetSettings();
|
||||
|
||||
console.log(uni.getStorageSync('posts-content'));
|
||||
console.log(uni.getStorageSync('posts-content-source'));
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
if (this.isEdit == false) {
|
||||
@@ -591,7 +584,6 @@ export default {
|
||||
})
|
||||
.catch(err => {
|
||||
this.$tm.toast('数据加载失败,请重试!');
|
||||
console.log(err);
|
||||
this.loading = 'error';
|
||||
})
|
||||
.finally(() => {
|
||||
|
||||
@@ -306,7 +306,7 @@ export default {
|
||||
},
|
||||
// 设置文章信息
|
||||
fnOnSetArticle(article, index) {
|
||||
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: article.id, postTitle: article.title, isEdit: true, from: 'list' } });
|
||||
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: article.id, postTitle: article.title, isEdit: 1, from: 'list' } });
|
||||
},
|
||||
// 删除文章
|
||||
fnOnDelArticle(article, index) {
|
||||
|
||||
@@ -185,7 +185,7 @@ export default {
|
||||
computed: {
|
||||
// 获取博主信息
|
||||
bloggerInfo() {
|
||||
return this.$tm.vx.getters().blogger.getBlogger;
|
||||
return this.$tm.vx.getters().getBlogger;
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
@@ -193,7 +193,6 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.fnGetData();
|
||||
console.log(this.bloggerInfo);
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.isLoadMore = false;
|
||||
|
||||
@@ -177,7 +177,7 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
journalInfo() {
|
||||
return uni.$tm.vx.getters().journal.getJournalInfo;
|
||||
return uni.$tm.vx.getters().getJournalInfo;
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
@@ -85,7 +85,7 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
bloggerInfo() {
|
||||
return this.$tm.vx.getters().blogger.getBlogger;
|
||||
return this.$tm.vx.getters().getBlogger;
|
||||
},
|
||||
showCopyright() {
|
||||
return getApp().globalData.showCopyright;
|
||||
|
||||
@@ -97,7 +97,7 @@ export default {
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
this.fnSetPageTitle('我的个人信息');
|
||||
this.fnSetPageTitle('个人资料');
|
||||
},
|
||||
created() {
|
||||
this.fnGetData();
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB |
+12
-12
@@ -10,6 +10,7 @@
|
||||
* 修改时间:
|
||||
*/
|
||||
import Blogger from '@/api/blogger.js'
|
||||
import HaloConfig from '@/config/halo.config.js';
|
||||
export default {
|
||||
state: {
|
||||
blogger: {},
|
||||
@@ -25,18 +26,17 @@ export default {
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
//通过actions提交更新数据
|
||||
fnGetBlogger({
|
||||
commit
|
||||
}) {
|
||||
Blogger.getBloggerInfo().then((res) => {
|
||||
console.log('获取博主信息成功:');
|
||||
console.log(res);
|
||||
commit("setBlogger", res.data);
|
||||
}).catch((err) => {
|
||||
console.log('哈哈,获取博主信息失败啦!');
|
||||
console.log(err);
|
||||
});
|
||||
fnGetBlogger(context) {
|
||||
if (HaloConfig.author.use) {
|
||||
context.commit("setBlogger", HaloConfig.author);
|
||||
} else {
|
||||
Blogger.getBloggerInfo().then((res) => {
|
||||
context.commit("setBlogger", res.data);
|
||||
}).catch((err) => {
|
||||
// 如果失败,则加载默认配置信息
|
||||
context.commit("setBlogger", HaloConfig.author);
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
+2
-6
@@ -24,17 +24,13 @@ export default {
|
||||
mutations: {
|
||||
setSettings(state, data) {
|
||||
state.settings = data;
|
||||
console.log('设置:', data);
|
||||
setAppSettings(data)
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
// 设置默认的数据
|
||||
updateDefaultAppSettings({
|
||||
commit
|
||||
}) {
|
||||
console.log(_DefaultAppSettings);
|
||||
commit('setSettings', JSON.parse(JSON.stringify(_DefaultAppSettings)))
|
||||
updateDefaultAppSettings(context) {
|
||||
context.commit('setSettings', JSON.parse(JSON.stringify(_DefaultAppSettings)))
|
||||
},
|
||||
// 检查并设置默认的数据
|
||||
checkAndSetDefaultAppSettings(context) {
|
||||
|
||||
+4
-10
@@ -45,14 +45,11 @@ export default {
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
// 登录
|
||||
adminLogin({
|
||||
commit
|
||||
}, data) {
|
||||
adminLogin(context, data) {
|
||||
return new Promise((resolve, reject) => {
|
||||
User.login(data).then((res) => {
|
||||
if (res.status == 200) {
|
||||
commit("setAdminToken", res.data);
|
||||
context.commit("setAdminToken", res.data);
|
||||
resolve(res)
|
||||
} else {
|
||||
reject(err)
|
||||
@@ -72,11 +69,8 @@ export default {
|
||||
})
|
||||
}
|
||||
},
|
||||
// 登出
|
||||
adminLogout({
|
||||
commit
|
||||
}) {
|
||||
commit("setAdminToken", null);
|
||||
adminLogout(context) {
|
||||
context.commit("setAdminToken", null);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
## 2.0.1(2022-12-8)
|
||||
* 修复 tm-icons在小程序下可能图标与文字无法对齐
|
||||
* 优化 tm-album性能,修复可能在嵌套组件中,无法计算宽高信息.
|
||||
* 优化 tm-dragList性能
|
||||
* 优化 tm-row性能
|
||||
* 优化 tm-segTabs性能
|
||||
* 优化 tm-sheet性能
|
||||
* 优化 tm-slider,tm-sliders性能
|
||||
* 优化 tm-more性能
|
||||
* 优化 tm-propress性能,修复可能在嵌套组件中,无法计算宽高信息.
|
||||
* 优化 tm-dialog,tm-poup,动效及样式
|
||||
* 微调 tm-button
|
||||
* 美化了tm-calendar,tm-calendar-view,选中改成圆形,范围改成椭圆形。
|
||||
* 修复 tm-countdown 完成的时机逻辑有误,修改后默认为完成状态。
|
||||
* 增强 tm-upload 新增showSort属性,用于上传的文件排序功能。
|
||||
* 修复 tm-swiper圆角失效。
|
||||
* 修复 tm-weekbar日期问题。
|
||||
* 修复 tm-dragGrid 动态修改数据后的判断逻辑问题。
|
||||
* 优化 tm-grouplist 渲染性能,现在已经是秒渲染。
|
||||
* 修复$tm.vx.getters()下的属性丢失。
|
||||
## 2.0.0(2022-6-7)
|
||||
* tm-card修复点击操作按钮时返回的参数非index,而是项目标题。修复动态配置一些属性不生效的问题。
|
||||
* tm-dropDownMenu 优化,当重置项时,默认将使用你初始的选中数据来进行填充,默认选中。
|
||||
|
||||
@@ -159,7 +159,10 @@
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
await this.setInits();
|
||||
this.setInits();
|
||||
},
|
||||
updated() {
|
||||
this.setInits();
|
||||
},
|
||||
methods: {
|
||||
//处理数据,以标准化。
|
||||
@@ -186,20 +189,16 @@
|
||||
async setInits(){
|
||||
this.$nextTick(async function() {
|
||||
let t = this;
|
||||
this.$tm.sleep(150).then(async function(){
|
||||
let p = await t.$Querey('.tm-album',t).catch(e =>{});
|
||||
if (!p[0]) return;
|
||||
let grid = t.grid || 1;
|
||||
let size = (p[0].width+t.gutter)/grid;
|
||||
let gutter = t.gutter*2
|
||||
let ratio = 750/uni.upx2px(750);
|
||||
let blv = size * ratio - gutter;
|
||||
t.alb_body_size = size * ratio;
|
||||
t.alb_wk_body_size = p[0].width*ratio+t.gutter*2+(grid*2);
|
||||
t.alb_size = blv;
|
||||
})
|
||||
|
||||
|
||||
let p = await t.$Querey('.tm-album',t,0).catch(e =>{});
|
||||
if (!p[0]) return;
|
||||
let grid = t.grid || 1;
|
||||
let size = (p[0].width+t.gutter)/grid;
|
||||
let gutter = t.gutter*2
|
||||
let ratio = 750/uni.upx2px(750);
|
||||
let blv = size * ratio - gutter;
|
||||
t.alb_body_size = size * ratio;
|
||||
t.alb_wk_body_size = p[0].width*ratio+t.gutter*2+(grid*2);
|
||||
t.alb_size = blv;
|
||||
|
||||
});
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="tm-button " :class="[block ? 'd-block' : 'd-inline-block ']">
|
||||
<view class="tm-button " :class="[block ? 'd-block' : 'd-inline-block ']" hover-class="opacity-6">
|
||||
<view
|
||||
class="flex-center tm-button-btn fulled-height"
|
||||
:class="[block ? '' : customDense_puted ? '' : 'ma-10', block ? 'd-block' : 'd-inline-block', black_tmeme ? 'bk' : '', customStyleTm]"
|
||||
@@ -54,7 +54,7 @@
|
||||
<block v-if="vtype == true">
|
||||
<text
|
||||
v-if="!fab && icon"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${colors.color}` : '', black_tmeme ? 'opacity-6' : '', 'px-12']"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${colors.color}` : '', black_tmeme ? 'opacity-6' : '', 'px-12','flex-shrink']"
|
||||
:style="{
|
||||
fontSize: `${icon_size.px}px`,
|
||||
lineHeight:'normal'
|
||||
@@ -62,7 +62,7 @@
|
||||
></text>
|
||||
<text
|
||||
v-if="fab && icon && !loading && !titl"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${colors.color}` : '', black_tmeme ? 'opacity-6' : '']"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${colors.color}` : '', black_tmeme ? 'opacity-6' : '','flex-shrink']"
|
||||
:style="{
|
||||
fontSize: `${icon_size.px}px`,
|
||||
lineHeight:'normal'
|
||||
@@ -70,7 +70,7 @@
|
||||
></text>
|
||||
<text
|
||||
v-if="fab && icon && !loading && titl"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${color_tmeme}` : '', black_tmeme ? 'opacity-6' : '']"
|
||||
:class="[`${prefx_computed} ${icon}`, fontColor ? `text-${color_tmeme}` : '', black_tmeme ? 'opacity-6' : '','flex-shrink']"
|
||||
:style="{
|
||||
fontSize: `${icon_size.px}px`,
|
||||
lineHeight:'normal'
|
||||
@@ -80,7 +80,7 @@
|
||||
<block v-if="vtype == false"><tm-icons :size="icon_size.upx" :name="icon"></tm-icons></block>
|
||||
</slot>
|
||||
|
||||
<view v-if="!fab || showValue" class="d-inline-block tm-button-label flex-shrink" :style="{ fontSize: font_size }" :class="[fontColor ? `text-${colors.color}` : '']">
|
||||
<view v-if="!fab || showValue" class="d-inline-block tm-button-label flex-shrink" :style="{ fontSize: font_size }" :class="[fontColor ? `text-${colors.color}` : '',vertical ? 'full ' : '',]">
|
||||
<slot name="default" :data="label">{{ label }}</slot>
|
||||
</view>
|
||||
</button>
|
||||
@@ -556,11 +556,13 @@ export default {
|
||||
line-height: 88upx;
|
||||
height: 88upx;
|
||||
vertical-align: middle;
|
||||
|
||||
// #ifdef H5
|
||||
transition: all 0.3s;
|
||||
// #endif
|
||||
.tm-button-label {
|
||||
vertical-align: middle;
|
||||
|
||||
}
|
||||
&::after {
|
||||
border: none;
|
||||
@@ -671,6 +673,7 @@ export default {
|
||||
}
|
||||
&.showValue {
|
||||
line-height: inherit !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
&.noGutter {
|
||||
|
||||
@@ -54,13 +54,21 @@
|
||||
:key="index+'_acv'"><text class="text-size-s py-16">{{item}}</text>
|
||||
</tm-col>
|
||||
<!-- #endif -->
|
||||
<tm-col :round="(item.start||item.end||item.checked)?4:0" @click="day_danxuanclick(item,index)"
|
||||
:color="item.beginEnd?(item.checked===true||item.start||item.end?color_tmeme+(black_tmeme?' bk ':''):(item.guocheng?color_tmeme+' text opacity-7 '+(black_tmeme?'bk':''):'')):''"
|
||||
<tm-col
|
||||
@click="day_danxuanclick(item,index)"
|
||||
color=""
|
||||
:custom-class="isSelectedDateClass(item)"
|
||||
align="middle" width="14.28%" v-for="(item,index) in nowData"
|
||||
:key="index">
|
||||
|
||||
<view class="tm-calendar-col flex-center flex-col py-4" :class="[black_tmeme&&!item.beginEnd?' opacity-2 ':'']">
|
||||
justify="center" width="14.28%"
|
||||
v-for="(item,index) in nowData"
|
||||
:key="index"
|
||||
>
|
||||
<view class="tm-calendar-col flex-center flex-col "
|
||||
:style="[mode=='rang'?{width:'100%',height:'90rpx'}:{width:'90rpx',height:'90rpx',overflow: 'hidden','border-radius': '50% !important'}]"
|
||||
:class="[
|
||||
item.start?'round-l-24':'',
|
||||
item.end?'round-r-24':'',
|
||||
item.beginEnd?(item.checked===true||item.start||item.end?color_tmeme+(black_tmeme?' bk ':''):(item.guocheng?color_tmeme+' text opacity-7 '+(black_tmeme?'bk':''):'')):'',
|
||||
black_tmeme&&!item.beginEnd?' opacity-2 ':'']">
|
||||
|
||||
<text class="text-size-n "
|
||||
:class="[
|
||||
@@ -70,19 +78,14 @@
|
||||
!item.beginEnd?'text-grey-lighten-3':''
|
||||
]"
|
||||
>{{item.day}}</text>
|
||||
<!--
|
||||
!item.nowMonth&&!item.guocheng&&!item.checked&&!item.start&&!item.end?(black?'text-grey-darken-3':'text-grey-lighten-1'):'',
|
||||
item.checked||item.start||item.end?'text-white':(item.guocheng?'':'text-grey-lighten-1'),
|
||||
item.guocheng?'text-'+color:'',
|
||||
!item.beginEnd?'text-grey-lighten-3':'',
|
||||
-->
|
||||
|
||||
<view class="text-size-xs text_bl"
|
||||
>
|
||||
<block v-if="item.start">
|
||||
开始
|
||||
始
|
||||
</block>
|
||||
<block v-if="item.end">
|
||||
结束
|
||||
-止
|
||||
</block>
|
||||
|
||||
<block v-if="!item.start&&!item.end">
|
||||
@@ -134,6 +137,11 @@
|
||||
import tmRow from "@/tm-vuetify/components/tm-row/tm-row.vue"
|
||||
import tmButton from "@/tm-vuetify/components/tm-button/tm-button.vue"
|
||||
import tmPoup from "@/tm-vuetify/components/tm-poup/tm-poup.vue"
|
||||
import * as dayjs from "@/tm-vuetify/tool/function/dayjs/dayjs.min.js"
|
||||
const calendar = require("@/tm-vuetify/tool/function/dayjs/calendar.js")
|
||||
dayjs.extend(calendar)
|
||||
const DayJs = dayjs.default
|
||||
|
||||
export default {
|
||||
components:{tmIcons,tmCol,tmRow,tmButton,tmPoup},
|
||||
name: "tm-calendar",
|
||||
@@ -262,7 +270,7 @@
|
||||
if(!this.cal) return;
|
||||
// 自动更新默认的显示时间。
|
||||
if(this.mode=='day'){
|
||||
let d = new Date().toLocaleDateString().replace(/\//g,'-');
|
||||
let d = DayJs().format("YYYY/MM/DD HH:mm:ss");
|
||||
if(this.defaultValue){
|
||||
d = this.defaultValue;
|
||||
}
|
||||
@@ -343,10 +351,9 @@
|
||||
},
|
||||
methods: {
|
||||
watchRangeTime(){
|
||||
|
||||
let d = new Date().toLocaleDateString().replace(/\//g,'-');
|
||||
let d = DayJs().format("YYYY/MM/DD HH:mm:ss")
|
||||
if(this.defaultValue){
|
||||
d = this.defaultValue;
|
||||
d = DayJs(this.defaultValue).format("YYYY/MM/DD HH:mm:ss");
|
||||
}
|
||||
this.cal = new this.$tm.calendar({value:d,start:this.timeStart,end:this.timeEnd})
|
||||
if(this.txt){
|
||||
@@ -366,8 +373,8 @@
|
||||
if(this.bingStart&&this.bingEnd){
|
||||
|
||||
this.fanxuanxuanwuBydate(
|
||||
new Date(this.bingStart.replace(/-/g,'/')),
|
||||
new Date(this.bingEnd.replace(/-/g,'/')),
|
||||
DayJs(this.bingStart),
|
||||
DayJs(this.bingEnd),
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -609,13 +616,14 @@
|
||||
// 通过外围 时间默认的选中
|
||||
fanxuanxuanwuBydate(start,end){
|
||||
if(!start||!end) return;
|
||||
// .format("YYYY/MM/DD HH:mm:ss")
|
||||
|
||||
this.$nextTick(function(){
|
||||
if(start.getTime()>end.getTime()) return;
|
||||
if(start.valueOf()>end.valueOf()) return;
|
||||
// 获取开始月份的数据。
|
||||
let sobj = new this.$tm.calendar({value:start.toLocaleDateString().replace(/\//g,'-')});
|
||||
let sobj = new this.$tm.calendar({value:start.format("YYYY/MM/DD HH:mm:ss")});
|
||||
// 获取结束月份的数据。
|
||||
let eobj = new this.$tm.calendar({value:end.toLocaleDateString().replace(/\//g,'-')});
|
||||
let eobj = new this.$tm.calendar({value:end.format("YYYY/MM/DD HH:mm:ss")});
|
||||
function findItemToindex_only(obj,type){
|
||||
let item=null;
|
||||
for(let i=0;i<obj.length;i++){
|
||||
@@ -657,7 +665,7 @@
|
||||
this.start = start_obj
|
||||
this.end = end_obj
|
||||
// 如果结束和开始相等。
|
||||
if(start.getTime()==end.getTime()){
|
||||
if(start.valueOf()==end.valueOf()){
|
||||
this.start = {...this.start,start:true,end:true}
|
||||
this.end = {...this.end,start:true,end:true}
|
||||
}
|
||||
|
||||
@@ -48,12 +48,21 @@
|
||||
:key="index"><text class="text-size-s py-16">{{item}}</text>
|
||||
</tm-col>
|
||||
<!-- #endif -->
|
||||
<tm-col :round="(item.start||item.end||item.checked)?4:0" @click="day_danxuanclick(item,index)"
|
||||
:color="item.beginEnd?(item.checked===true||item.start||item.end?color_tmeme+(black_tmeme?' bk ':''):(item.guocheng?color_tmeme+' text opacity-7 '+(black_tmeme?'bk':''):'')):''"
|
||||
<tm-col
|
||||
@click="day_danxuanclick(item,index)"
|
||||
color=""
|
||||
:custom-class="isSelectedDateClass(item)"
|
||||
align="middle" width="14.28%" v-for="(item,index) in nowData"
|
||||
:key="index">
|
||||
<view class="tm-calendarView-col flex-center flex-col" :class="[black&&!item.beginEnd?' opacity-2 ':'']">
|
||||
justify="center" width="14.28%"
|
||||
v-for="(item,index) in nowData"
|
||||
:key="index"
|
||||
>
|
||||
<view class="tm-calendar-col flex-center flex-col "
|
||||
:style="[mode=='rang'?{width:'100%',height:'90rpx'}:{width:'90rpx',height:'90rpx',overflow: 'hidden','border-radius': '50% !important'}]"
|
||||
:class="[
|
||||
item.start?'round-l-24':'',
|
||||
item.end?'round-r-24':'',
|
||||
item.beginEnd?(item.checked===true||item.start||item.end?color_tmeme+(black_tmeme?' bk ':''):(item.guocheng?color_tmeme+' text opacity-7 '+(black_tmeme?'bk':''):'')):'',
|
||||
black_tmeme&&!item.beginEnd?' opacity-2 ':'']">
|
||||
<text class="text-size-n"
|
||||
:class="[
|
||||
!item.nowMonth&&!item.guocheng&&!item.checked&&!item.start&&!item.end?(black_tmeme?'text-grey-darken-3':'text-grey-lighten-1'):'',
|
||||
@@ -65,10 +74,10 @@
|
||||
<view class="text-size-xs text_bl"
|
||||
>
|
||||
<block v-if="item.start">
|
||||
开始
|
||||
始
|
||||
</block>
|
||||
<block v-if="item.end">
|
||||
结束
|
||||
-止
|
||||
</block>
|
||||
|
||||
<block v-if="!item.start&&!item.end">
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
return ps;
|
||||
},
|
||||
isfinish:function(){
|
||||
if(this.now == this.time) return true;
|
||||
if(this.now == this.time||this.now==0) return true;
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
@@ -302,19 +302,19 @@ export default {
|
||||
.tm-dialog {
|
||||
width: 100%;
|
||||
z-index: 600;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
left: 0;
|
||||
top: 0;
|
||||
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.35s;
|
||||
backdrop-filter: blur(3px);
|
||||
transition: all 0.24s;
|
||||
.success {
|
||||
animation: success 0.35s linear;
|
||||
animation: success 0.24s ease;
|
||||
|
||||
// transform: scale(1);
|
||||
}
|
||||
.clickover {
|
||||
animation: clickover 0.35s linear;
|
||||
animation: clickover 0.24s ease;
|
||||
}
|
||||
}
|
||||
@keyframes clickover {
|
||||
|
||||
@@ -253,10 +253,10 @@
|
||||
this.$emit('change',elList);
|
||||
},
|
||||
inits() {
|
||||
this.grid = this.list.length;
|
||||
if(this.grid==0) return;
|
||||
this.$nextTick(async function() {
|
||||
let p = await this.$Querey(".tm-dragGrid", this).catch(e => {})
|
||||
this.grid = this.list.length;
|
||||
this.listData = [];
|
||||
//组件的宽度
|
||||
this.w = uni.upx2px(this.width) || p[0].width || 300;
|
||||
|
||||
@@ -140,7 +140,6 @@
|
||||
jishunTopData() {
|
||||
this.$nextTick(async function() {
|
||||
this.listData = [];
|
||||
|
||||
let p = await this.$Querey(".tm-dragList", this).catch(e => {})
|
||||
this.w = uni.upx2px(this.width) || p[0].width;
|
||||
this.h = uni.upx2px(this.height)
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
@touchcancel="$emit('touchcancel', $event)"
|
||||
:open-type="openType"
|
||||
@click="click"
|
||||
:padding="[0,0]"
|
||||
:showValue="showText" vertical :label="label" :fontSize="fontSize"
|
||||
:iconSize="iconSize" :theme="color_tmeme" round="rouned" :font-color="fontColor" :bgcolor="bgcolor"
|
||||
:size="size" :width="width" :height="width" :icon="icon" fab>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<view v-if="title&&title!='true'" class="px-32 py-16 text-weight-b " :class="[`text-size-${fontSize}`,titleTheme, black_tmeme ? 'bk' : '']">
|
||||
<slot name="title" :title="title">{{ title }}</slot>
|
||||
</view>
|
||||
<view v-show="chuliWsok==true">
|
||||
<view >
|
||||
<slot></slot>
|
||||
</view>
|
||||
</view>
|
||||
@@ -77,6 +77,20 @@ export default {
|
||||
return this.$tm.vx.state().tmVuetify.black;
|
||||
}
|
||||
},
|
||||
provide(){
|
||||
let t = this;
|
||||
return {
|
||||
GroupListStyles:()=>{
|
||||
return {
|
||||
margin: [0,0],
|
||||
padding: [32,24],
|
||||
shadow: 0,
|
||||
round: 0,
|
||||
borderBottom: true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
targ:'tm-grouplist',
|
||||
@@ -99,47 +113,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
inits(){
|
||||
let t = this;
|
||||
this.$nextTick(function () {
|
||||
let ch = this.$children;
|
||||
// #ifdef H5
|
||||
ch = [];
|
||||
let cld = this.$children[0].$children
|
||||
|
||||
while(cld){
|
||||
if(cld[0].$children.length>0){
|
||||
let ods = cld[0].$children;
|
||||
ch =ods[ods.length-1].$children;
|
||||
|
||||
break;
|
||||
}else{
|
||||
cld = cld[0]?.$children
|
||||
}
|
||||
|
||||
}
|
||||
// #endif
|
||||
|
||||
|
||||
ch.forEach((item,index)=>{
|
||||
|
||||
if(item.$options.name==="tm-listitem"){
|
||||
item.setConfig({
|
||||
margin: [0,0],
|
||||
padding: [32,24],
|
||||
shadow: 0,
|
||||
round: 0,
|
||||
borderBottom: index===ch.length-1?false:t.borderBottom
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
// #ifndef H5
|
||||
setTimeout(function() {
|
||||
t.chuliWsok = true;
|
||||
}, 30);
|
||||
// #endif
|
||||
|
||||
})
|
||||
|
||||
},
|
||||
// 事件一定是子项目tm-listitem为group模式时,才会触发。
|
||||
change(vue_uid) {
|
||||
|
||||
@@ -1,187 +1,190 @@
|
||||
<template>
|
||||
<!-- 图标 -->
|
||||
<view @click="onclick" v-if="name" class="tm-icons vertical-align-top" style="display: inline-block;font-size: 0;" >
|
||||
<view class="flex-center " :style="{
|
||||
width: sizes,
|
||||
height: sizes,
|
||||
lineHeight:sizes,
|
||||
|
||||
}">
|
||||
<view @click="onclick" v-if="name" class="tm-icons " >
|
||||
<view
|
||||
class="tm-icons-item "
|
||||
:style="{
|
||||
width: sizes,
|
||||
height: sizes,
|
||||
lineHeight: sizes
|
||||
}"
|
||||
>
|
||||
<block v-if="vtype == false">
|
||||
<image :src="name" :style="{
|
||||
<image
|
||||
:src="name"
|
||||
:style="{
|
||||
width: sizes,
|
||||
height: sizes
|
||||
}" mode="scaleToFill"></image>
|
||||
}"
|
||||
mode="scaleToFill"
|
||||
></image>
|
||||
</block>
|
||||
<block v-if="vtype == true">
|
||||
<!-- #ifdef APP-NVUE -->
|
||||
<text :style="{
|
||||
<text
|
||||
:style="{
|
||||
fontSize: sizes,
|
||||
fontFamily:'iconfontTM'
|
||||
}" class="icons "
|
||||
:class="[ black_tmeme ? colors+'-bk':colors, dense ? '' : 'pa-10', black ? 'opacity-6' : '']">{{iconName}}</text>
|
||||
fontFamily: 'iconfontTM'
|
||||
}"
|
||||
class="icons "
|
||||
:class="[black_tmeme ? colors + '-bk' : colors, dense ? '' : 'pa-10', black ? 'opacity-6' : '']"
|
||||
>
|
||||
{{ iconName }}
|
||||
</text>
|
||||
<!-- #endif -->
|
||||
|
||||
<!-- #ifdef MP -->
|
||||
<text :style="{
|
||||
<!-- #ifndef APP-NVUE -->
|
||||
<text
|
||||
:style="{
|
||||
fontSize: sizes,
|
||||
}" class="icons mt--4"
|
||||
:class="[prefx_computed, black_tmeme ? 'bk' : '', iconName, colorTheme ? colors : '', dense ? '' : 'pa-10', black ? 'opacity-6' : '']"></text>
|
||||
|
||||
}"
|
||||
class="icons "
|
||||
:class="[prefx_computed, black_tmeme ? 'bk' : '', iconName, colorTheme ? colors : '', dense ? '' : 'pa-10', black ? 'opacity-6' : '']"
|
||||
></text>
|
||||
<!-- #endif -->
|
||||
<!-- #ifndef MP -->
|
||||
<text :style="{
|
||||
fontSize: sizes,
|
||||
}" class="icons "
|
||||
:class="[prefx_computed, black_tmeme ? 'bk' : '', iconName, colorTheme ? colors : '', dense ? '' : 'pa-10', black ? 'opacity-6' : '']"></text>
|
||||
<!-- #endif -->
|
||||
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/**
|
||||
* 图标组件
|
||||
* @property {Boolean} dense = [true|false] 默认false,是否去除边距
|
||||
* @property {String} prefx = [iconfont] 默认iconfont,默认图标的前缀,对自定义图标时有好处。
|
||||
* @property {String} name = [] 默认'',图标名称,注意不带前缀。
|
||||
* @property {String | Number} size = [] 默认28, 图标大小,单位是upx
|
||||
* @property {String} color = [primary] 默认primary, 图标主题颜色名
|
||||
* @property {Function} click 图标点击事件。
|
||||
* @example <tm-icons name='icon-clear'></tm-icons>
|
||||
*/
|
||||
export default {
|
||||
props: {
|
||||
dense: {
|
||||
//是否小边距
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
black: {
|
||||
type: Boolean,
|
||||
default: null
|
||||
},
|
||||
prefx: {
|
||||
type: String, //前缀
|
||||
default: 'iconfont'
|
||||
},
|
||||
name: {
|
||||
type: String, //图标名称。
|
||||
default: ''
|
||||
},
|
||||
size: {
|
||||
type: String | Number, //图标名称。
|
||||
default: 28
|
||||
},
|
||||
color: {
|
||||
type: String, //颜色名称或者颜色值。
|
||||
default: 'primary'
|
||||
},
|
||||
//强制转换图标类型,不通过内置判定,解决自己引用图片svg图标时当作字体图标的错误。
|
||||
iconType: {
|
||||
type: String,
|
||||
default: '' //img|icon
|
||||
},
|
||||
// 跟随主题色的改变而改变。
|
||||
fllowTheme: {
|
||||
type: Boolean | String,
|
||||
default: false
|
||||
/**
|
||||
* 图标组件
|
||||
* @property {Boolean} dense = [true|false] 默认false,是否去除边距
|
||||
* @property {String} prefx = [iconfont] 默认iconfont,默认图标的前缀,对自定义图标时有好处。
|
||||
* @property {String} name = [] 默认'',图标名称,注意不带前缀。
|
||||
* @property {String | Number} size = [] 默认28, 图标大小,单位是upx
|
||||
* @property {String} color = [primary] 默认primary, 图标主题颜色名
|
||||
* @property {Function} click 图标点击事件。
|
||||
* @example <tm-icons name='icon-clear'></tm-icons>
|
||||
*/
|
||||
export default {
|
||||
props: {
|
||||
dense: {
|
||||
//是否小边距
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
black: {
|
||||
type: Boolean,
|
||||
default: null
|
||||
},
|
||||
prefx: {
|
||||
type: String, //前缀
|
||||
default: 'iconfont'
|
||||
},
|
||||
name: {
|
||||
type: String, //图标名称。
|
||||
default: ''
|
||||
},
|
||||
size: {
|
||||
type: String | Number, //图标名称。
|
||||
default: 28
|
||||
},
|
||||
color: {
|
||||
type: String|null, //颜色名称或者颜色值。
|
||||
default: 'primary'
|
||||
},
|
||||
//强制转换图标类型,不通过内置判定,解决自己引用图片svg图标时当作字体图标的错误。
|
||||
iconType: {
|
||||
type: String,
|
||||
default: '' //img|icon
|
||||
},
|
||||
// 跟随主题色的改变而改变。
|
||||
fllowTheme: {
|
||||
type: Boolean | String,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
iconName: function() {
|
||||
// #ifdef APP-NVUE || APP-PLUS-NVUE
|
||||
let fontList = require('@/tm-vuetify/scss/iconfonts/iconfont.json');
|
||||
let name = this.name.replace('icon-', '');
|
||||
|
||||
// fontList.glyphs
|
||||
let itemIcon = fontList.glyphs.find((item, index) => {
|
||||
return item.font_class == name;
|
||||
});
|
||||
return eval('"\\u' + itemIcon.unicode + '"');
|
||||
// #endif
|
||||
return this.name;
|
||||
},
|
||||
prefx_computed() {
|
||||
let prefix = this.name.split('-')[0];
|
||||
if (prefix == 'icon') return 'iconfont';
|
||||
if (prefix == 'mdi') return 'mdi';
|
||||
|
||||
return prefix;
|
||||
},
|
||||
black_tmeme: function() {
|
||||
return this.$tm.vx.state().tmVuetify.black;
|
||||
},
|
||||
vtype: function() {
|
||||
if (this.name[0] == '.' || this.name[0] == '/' || this.name.substring(0, 4) == 'http' || this.name.substring(0, 5) == 'https' || this.name.substring(0, 3) == 'ftp') {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
sizes: function() {
|
||||
if (typeof this.size === 'string') {
|
||||
if (/[rpx|upx|rem|em|vx|vh|px]$/.test(this.size)) {
|
||||
return this.size;
|
||||
}
|
||||
return uni.upx2px(parseInt(this.size)) + 'px';
|
||||
}
|
||||
if (typeof this.size === 'number' && !isNaN(this.size)) {
|
||||
return uni.upx2px(this.size) + 'px';
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
iconName: function() {
|
||||
// #ifdef APP-NVUE || APP-PLUS-NVUE
|
||||
let fontList = require('@/tm-vuetify/scss/iconfonts/iconfont.json');
|
||||
let name = this.name.replace('icon-', '');
|
||||
|
||||
// fontList.glyphs
|
||||
let itemIcon = fontList.glyphs.find((item, index) => {
|
||||
return item.font_class == name;
|
||||
})
|
||||
return eval('"\\u' + itemIcon.unicode + '"');
|
||||
// #endif
|
||||
return this.name;
|
||||
},
|
||||
prefx_computed(){
|
||||
let prefix = this.name.split('-')[0];
|
||||
if(prefix=='icon') return 'iconfont';
|
||||
if(prefix=='mdi') return 'mdi';
|
||||
|
||||
return prefix;
|
||||
},
|
||||
black_tmeme: function() {
|
||||
|
||||
return this.$tm.vx.state().tmVuetify.black;
|
||||
},
|
||||
vtype: function() {
|
||||
if (this.name[0] == "." ||
|
||||
this.name[0] == "/" ||
|
||||
this.name.substring(0, 4) == 'http' ||
|
||||
this.name.substring(0, 5) == 'https' ||
|
||||
this.name.substring(0, 3) == 'ftp'
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
sizes: function() {
|
||||
if (typeof this.size === 'string') {
|
||||
if (/[rpx|upx|rem|em|vx|vh|px]$/.test(this.size)) {
|
||||
return this.size;
|
||||
}
|
||||
return uni.upx2px(parseInt(this.size)) + 'px';
|
||||
}
|
||||
if (typeof this.size === 'number' && !isNaN(this.size)) {
|
||||
return uni.upx2px(this.size) + 'px';
|
||||
}
|
||||
},
|
||||
color_tmeme: function() {
|
||||
|
||||
if (this.$tm.vx.state().tmVuetify.color !== null && this.$tm.vx.state().tmVuetify.color && this
|
||||
.fllowTheme) {
|
||||
return this.$tm.vx.state().tmVuetify.color;
|
||||
}
|
||||
return this.color;
|
||||
},
|
||||
colors: {
|
||||
get: function() {
|
||||
if (!this.color_tmeme) return 'text-primary';
|
||||
if (!this.$TestColor(this.color_tmeme)) {
|
||||
return this.color_tmeme;
|
||||
}
|
||||
return 'text-' + this.color_tmeme;
|
||||
},
|
||||
set: function() {
|
||||
if (!this.$TestColor(this.color_tmeme)) {
|
||||
this.colorTheme = false;
|
||||
return this.color_tmeme;
|
||||
}
|
||||
this.colorTheme = true;
|
||||
}
|
||||
color_tmeme: function() {
|
||||
if (this.$tm.vx.state().tmVuetify.color !== null && this.$tm.vx.state().tmVuetify.color && this.fllowTheme) {
|
||||
return this.$tm.vx.state().tmVuetify.color;
|
||||
}
|
||||
return this.color;
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
colorTheme: true
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onclick(e) {
|
||||
this.$emit('click', e);
|
||||
colors: {
|
||||
get: function() {
|
||||
if (!this.color_tmeme) return 'text-primary';
|
||||
if (!this.$TestColor(this.color_tmeme)) {
|
||||
return this.color_tmeme;
|
||||
}
|
||||
return 'text-' + this.color_tmeme;
|
||||
},
|
||||
set: function() {
|
||||
if (!this.$TestColor(this.color_tmeme)) {
|
||||
this.colorTheme = false;
|
||||
return this.color_tmeme;
|
||||
}
|
||||
this.colorTheme = true;
|
||||
}
|
||||
}
|
||||
};
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
colorTheme: true
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onclick(e) {
|
||||
this.$emit('click', e);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.tm-icons {
|
||||
vertical-align: middle;
|
||||
|
||||
.icons {
|
||||
&.black {
|
||||
color: #fff;
|
||||
}
|
||||
.tm-icons {
|
||||
display: inline-block;
|
||||
.tm-icons-item{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.icons {
|
||||
&.black {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<view v-if="title" class="d-inline-block "
|
||||
:style="{fontSize:title_size}"
|
||||
:class="[titleClass,black_tmeme?'bk text-grey-lighten-3':'']">
|
||||
<text v-if="required" class="text-red">*</text>
|
||||
<text v-if="_required" class="text-red">*</text>
|
||||
<slot name="default" :title="title">
|
||||
{{title}}
|
||||
</slot>
|
||||
@@ -368,6 +368,9 @@
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
_required(){
|
||||
return this.required
|
||||
},
|
||||
height_rpx:function(){
|
||||
return this.height;
|
||||
},
|
||||
@@ -430,7 +433,7 @@
|
||||
set:function(val){
|
||||
this.$emit('input', val)
|
||||
this.$emit('update:value', val)
|
||||
if (this.required) {
|
||||
if (this._required) {
|
||||
this.$nextTick(function(){
|
||||
this.verifyInput();
|
||||
})
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<!-- 列表项目,类似单元格。 -->
|
||||
<template>
|
||||
<view class="tm-listitem ">
|
||||
<view class="tm-listitem " :hover-class="url?'opacity-6':''">
|
||||
<view
|
||||
|
||||
@click="click"
|
||||
@@ -280,9 +280,15 @@ export default {
|
||||
return this.$tm.vx.state().tmVuetify.color;
|
||||
}
|
||||
return this.leftIconColor;
|
||||
},
|
||||
groupPublickStyle:function(){
|
||||
if(!this.GroupListStyles) return null
|
||||
return this.GroupListStyles()
|
||||
}
|
||||
},
|
||||
|
||||
inject:{
|
||||
GroupListStyles:{default:null}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
pz_theme: {
|
||||
@@ -296,13 +302,25 @@ export default {
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.pz_themeCus = {
|
||||
margin: this.margin,
|
||||
padding: this.padding,
|
||||
shadow: this.shadow,
|
||||
round: this.round,
|
||||
borderBottom: this.borderBottom
|
||||
};
|
||||
if(this.groupPublickStyle){
|
||||
this.pz_themeCus = {
|
||||
margin: this.groupPublickStyle.margin,
|
||||
padding: this.groupPublickStyle.padding,
|
||||
shadow: this.groupPublickStyle.shadow,
|
||||
round: this.groupPublickStyle.round,
|
||||
borderBottom: this.groupPublickStyle.borderBottom||this.borderBottom
|
||||
};
|
||||
}else{
|
||||
this.pz_themeCus = {
|
||||
margin: this.margin,
|
||||
padding: this.padding,
|
||||
shadow: this.shadow,
|
||||
round: this.round,
|
||||
borderBottom: this.borderBottom
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
mounted() {
|
||||
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
<text class="iconfont icon-angle-left" :class="[`text-${fontColorTheme}`]" :style="{ fontSize: '28rpx' }"></text>
|
||||
</navigator>
|
||||
</block>
|
||||
|
||||
<slot name="left" :data="{ style: widths, isTransparent: isTransparent, title: title }"></slot>
|
||||
</view>
|
||||
<view class="center flex-center text-size-g text-overflow text-align-center" :class="[`text-${fontColorTheme}`]">
|
||||
@@ -36,6 +35,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -61,6 +61,9 @@
|
||||
components: {
|
||||
tmIcons
|
||||
},
|
||||
options:{
|
||||
multipleSlots: true
|
||||
},
|
||||
name: 'tm-menubars',
|
||||
props: {
|
||||
// 是否开启暗黑模式
|
||||
|
||||
@@ -109,18 +109,12 @@ import tmIcons from "@/tm-vuetify/components/tm-icons/tm-icons.vue"
|
||||
mounted() {
|
||||
this.$nextTick(function(){
|
||||
this.downOpen = this.open;
|
||||
|
||||
let t = this;
|
||||
|
||||
t.$Querey('.tm-more-content',t).then(syninfo=>{
|
||||
if (syninfo[0].height - 40 <= t.hs) {
|
||||
t.show = false;
|
||||
}
|
||||
}).catch(e => {});
|
||||
|
||||
|
||||
this.getRect()
|
||||
})
|
||||
},
|
||||
updated() {
|
||||
this.getRect()
|
||||
},
|
||||
computed: {
|
||||
hs: function() {
|
||||
return uni.upx2px(this.maxHeight) || 100;
|
||||
@@ -131,6 +125,14 @@ import tmIcons from "@/tm-vuetify/components/tm-icons/tm-icons.vue"
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getRect(){
|
||||
let t = this;
|
||||
t.$Querey('.tm-more-content',t,0).then(syninfo=>{
|
||||
if (syninfo[0].height - 40 <= t.hs) {
|
||||
t.show = false;
|
||||
}
|
||||
}).catch(e => {});
|
||||
},
|
||||
openMore() {
|
||||
this.$emit('click');
|
||||
if (this.disabled) return;
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
this.aniData = '';
|
||||
let aniData = uni.createAnimation({
|
||||
duration:240,
|
||||
timingFunction: 'linear',
|
||||
timingFunction: 'ease',
|
||||
})
|
||||
this.aniData = aniData;
|
||||
if(pos=='bottom'){
|
||||
@@ -327,15 +327,15 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
&.blur {
|
||||
backdrop-filter: blur(10px);
|
||||
backdrop-filter: blur(3px);
|
||||
}
|
||||
|
||||
&.on {
|
||||
animation: opta 1s linear;
|
||||
animation: opta 1s ease;
|
||||
}
|
||||
|
||||
&.off {
|
||||
animation: opta_off 0.35s linear;
|
||||
animation: opta_off 0.24s ease;
|
||||
}
|
||||
.tm-poup-wk {
|
||||
position: absolute;
|
||||
@@ -393,7 +393,7 @@
|
||||
|
||||
@keyframes opta {
|
||||
from {
|
||||
opacity: 0.6;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
to {
|
||||
@@ -495,7 +495,7 @@
|
||||
@keyframes Centerleft {
|
||||
from {
|
||||
transform: scale(0.65);
|
||||
opacity: 0.65;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
to {
|
||||
@@ -512,7 +512,7 @@
|
||||
|
||||
to {
|
||||
transform: scale(0.65);
|
||||
opacity: 0.65;
|
||||
opacity: 0.3;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,19 +166,25 @@ export default {
|
||||
destroyed() {
|
||||
clearInterval(this.tmiddd)
|
||||
},
|
||||
async mounted() {
|
||||
|
||||
this.$nextTick(async function(){
|
||||
let p = await this.$Querey(".tm-propress",this).catch(e=>{})
|
||||
|
||||
this.width_upx = p[0].width+'px';
|
||||
if(this.loading){
|
||||
await this.startAni();
|
||||
}
|
||||
})
|
||||
mounted() {
|
||||
this.getRect()
|
||||
|
||||
},
|
||||
updated() {
|
||||
this.getRect()
|
||||
},
|
||||
methods: {
|
||||
getRect(){
|
||||
let t =this
|
||||
this.$Querey(".tm-propress",this,0).then((p)=>{
|
||||
if(!p) return;
|
||||
if(!p[0].width) return;
|
||||
t.width_upx = p[0].width+'px';
|
||||
if(t.loading){
|
||||
t.startAni();
|
||||
}
|
||||
}).catch(e=>{})
|
||||
},
|
||||
async startAni(){
|
||||
// clearInterval(this.tmiddd)
|
||||
let t = this;
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
<template>
|
||||
<view @click="$emit('click',$event)" :gutter="gutter" class="tm--row" :class="[preatClass]" >
|
||||
<view class="tm--row--body" :style="style" :class="[customClass]">
|
||||
<view v-show="chuliWsok==true">
|
||||
<slot></slot>
|
||||
</view>
|
||||
|
||||
<slot></slot>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -64,30 +61,34 @@
|
||||
width_px:0,
|
||||
children_num:0,
|
||||
style:'',
|
||||
chuliWsok:false,//处理完宽度计算信息再进行显示内部内容。
|
||||
};
|
||||
},
|
||||
async mounted() {
|
||||
let t = this;
|
||||
|
||||
await this.$Querey('.tm--row',this).then(preantw=>{
|
||||
t.width_px = preantw[0].width;
|
||||
// #ifndef H5
|
||||
t.children_num = t.$children.length;
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
t.children_num = t.$children[0].$children[0].$children[0].$children.length;
|
||||
// #endif
|
||||
t.style = uni.$tm.objToString({
|
||||
'justify-content':t.justify,
|
||||
'align-items':t.align,
|
||||
'width':t.width,
|
||||
'height':!t.height?'default':(uni.upx2px(t.height)+'px')
|
||||
},';');
|
||||
|
||||
t.chuliWsok = true;
|
||||
}).catch(e=>{})
|
||||
|
||||
updated() {
|
||||
this.getContinaRect()
|
||||
},
|
||||
mounted() {
|
||||
this.getContinaRect()
|
||||
},
|
||||
methods:{
|
||||
getContinaRect(){
|
||||
let t = this;
|
||||
this.$Querey('.tm--row',this).then(preantw=>{
|
||||
t.width_px = preantw[0].width;
|
||||
// #ifndef H5
|
||||
t.children_num = t.$children.length;
|
||||
// #endif
|
||||
// #ifdef H5
|
||||
t.children_num = t.$children[0].$children[0].$children[0].$children.length;
|
||||
// #endif
|
||||
t.style = uni.$tm.objToString({
|
||||
'justify-content':t.justify,
|
||||
'align-items':t.align,
|
||||
'width':t.width,
|
||||
'height':!t.height?'default':(uni.upx2px(t.height)+'px')
|
||||
},';');
|
||||
|
||||
}).catch(e=>{})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -191,10 +191,10 @@
|
||||
},
|
||||
mounted() {
|
||||
let t = this;
|
||||
uni.$tm.sleep(30).then(()=>{
|
||||
t.setInits();
|
||||
|
||||
})
|
||||
t.setInits();
|
||||
},
|
||||
updated() {
|
||||
this.setInits();
|
||||
},
|
||||
methods: {
|
||||
setInits() {
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
]"
|
||||
|
||||
>
|
||||
<view class="fulled" v-if="showSheet">
|
||||
<view class="fulled" >
|
||||
<slot name="default"></slot>
|
||||
</view>
|
||||
</view>
|
||||
@@ -151,25 +151,7 @@ export default {
|
||||
return this.$tm.vx.state().tmVuetify.black;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
showSheet:true,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
// #ifdef APP-VUE || APP-PLUS || MP
|
||||
this.showSheet = false;
|
||||
// #endif
|
||||
},
|
||||
mounted() {
|
||||
let t= this;
|
||||
|
||||
// #ifdef APP-VUE || APP-PLUS || MP
|
||||
setTimeout(function() {
|
||||
t.showSheet = true;
|
||||
}, 30);
|
||||
// #endif
|
||||
}
|
||||
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
@touchstart="touchstart"
|
||||
@touchmove.stop.prevent="touchsmove"
|
||||
@touchend="touchsend"
|
||||
|
||||
@mousedown="touchstart"
|
||||
@mousemove.stop.prevent="touchsmove"
|
||||
@mouseup="touchsend"
|
||||
|
||||
@@ -244,6 +244,17 @@
|
||||
this.barLeft = rdl >= this.sliderWidth || rdl < 0 ? this.sliderWidth : rdl;
|
||||
});
|
||||
},
|
||||
async updated() {
|
||||
this.$nextTick(async function() {
|
||||
await this.getwidth();
|
||||
if (Math.abs(this.value) > Math.abs(this.max)) {
|
||||
this.isError = true;
|
||||
return;
|
||||
}
|
||||
let rdl = this.sliderWidth * (Math.abs(this.value) / Math.abs(this.max));
|
||||
this.barLeft = rdl >= this.sliderWidth || rdl < 0 ? this.sliderWidth : rdl;
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
barStart(e) {
|
||||
|
||||
@@ -306,7 +317,7 @@
|
||||
|
||||
},
|
||||
async getwidth() {
|
||||
let res = await this.$Querey('.tm-slider-id', this).catch(e=>{});
|
||||
let res = await this.$Querey('.tm-slider-id', this,0).catch(e=>{});
|
||||
res[0].width = res[0].width||uni.upx2px(this.width);
|
||||
res[0].height = res[0].height||uni.upx2px(this.height);
|
||||
if (this.showLeft === false && this.showRight === false) {
|
||||
|
||||
@@ -297,6 +297,20 @@
|
||||
this.barLeft_1 = rdl_1 >= this.sliderWidth || rdl_1 < 0 ? this.sliderWidth : rdl_1;
|
||||
});
|
||||
},
|
||||
updated() {
|
||||
this.$nextTick(async function() {
|
||||
await this.getwidth();
|
||||
|
||||
if (Math.abs(this.value[1]) > Math.abs(this.max)) {
|
||||
this.isError = true;
|
||||
return;
|
||||
}
|
||||
let rdl = this.sliderWidth * (Math.abs(this.value[0]) / Math.abs(this.max));
|
||||
this.barLeft = rdl >= this.sliderWidth || rdl < 0 ? this.sliderWidth : rdl;
|
||||
let rdl_1 = this.sliderWidth * (Math.abs(this.value[1]) / Math.abs(this.max));
|
||||
this.barLeft_1 = rdl_1 >= this.sliderWidth || rdl_1 < 0 ? this.sliderWidth : rdl_1;
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
barStart(e) {
|
||||
if (this.disabled || this.isError) return;
|
||||
@@ -407,7 +421,7 @@
|
||||
},
|
||||
|
||||
async getwidth() {
|
||||
let res = await this.$Querey('.tm-slider-id', this).catch(e=>{});
|
||||
let res = await this.$Querey('.tm-slider-id', this,0).catch(e=>{});
|
||||
res[0].width = res[0].width||uni.upx2px(this.width);
|
||||
res[0].height = res[0].height||uni.upx2px(this.height);
|
||||
|
||||
|
||||
@@ -1,83 +1,43 @@
|
||||
<template>
|
||||
<view class="tm-swiper " :class="[inline ? 'd-inline-block' : '']">
|
||||
<swiper
|
||||
:previous-margin="`${ani3d}rpx`"
|
||||
:next-margin="`${ani3d}rpx`"
|
||||
:style="{
|
||||
<swiper :previous-margin="`${ani3d}rpx`" :next-margin="`${ani3d}rpx`" :style="{
|
||||
width: w_s + 'rpx',
|
||||
height: h_s + 'rpx'
|
||||
}"
|
||||
:vertical="vertical"
|
||||
:autoplay="autoplay && !isPlayVedio"
|
||||
:circular="circular"
|
||||
:interval="interval"
|
||||
:duration="duration"
|
||||
:indicator-active-color="color_tmeme"
|
||||
:current="nowIndex"
|
||||
@change="change"
|
||||
>
|
||||
}" :vertical="vertical" :autoplay="autoplay&&!isPlayVedio" :circular="circular" :interval="interval" :duration="duration"
|
||||
:indicator-active-color="color_tmeme" :current="nowIndex" @change="change" :class="[round_num > 0 ? ` round-${round_num} overflow` : '']">
|
||||
<block v-for="(item, index) in dataList" :key="index">
|
||||
<swiper-item
|
||||
:style="{
|
||||
<swiper-item :style="{
|
||||
width: w_s + 'rpx',
|
||||
height: h_s + 'rpx'
|
||||
}"
|
||||
class="shadow-24"
|
||||
:class="[round_num > 0 ? ` round-${round_num} overflow` : '']"
|
||||
>
|
||||
}" class="shadow-24" :class="[round_num > 0 ? ` round-${round_num} overflow` : '']">
|
||||
<view
|
||||
:class="[
|
||||
nowIndex !== index && ani3d > 0 ? 'a3d' : '',
|
||||
round_num > 0 ? ` round-${round_num} overflow` : '',
|
||||
nowIndex < index && ani3d > 0 ? 'a3dL' : '',
|
||||
nowIndex > index && ani3d > 0 ? 'a3dR' : ''
|
||||
]"
|
||||
class="tm-swiper-ik fulled fulled-height"
|
||||
:key="index"
|
||||
>
|
||||
:class="[nowIndex !== index&&ani3d>0?'a3d':'',round_num > 0 ? ` round-${round_num} overflow` : '',nowIndex<index&&ani3d>0?'a3dL':'',nowIndex>index&&ani3d>0?'a3dR':'']"
|
||||
class="tm-swiper-ik fulled fulled-height" :key="index">
|
||||
<view class="actvieMarginDh">
|
||||
<view class="actvieMarginDh-item" :class="[round_num > 0 ? ` round-${round_num} overflow` : '']">
|
||||
<image
|
||||
v-if="item.dtype != 'video'"
|
||||
@click="itemClick(item)"
|
||||
:style="{
|
||||
<view class="actvieMarginDh-item"
|
||||
:class="[round_num > 0 ? ` round-${round_num} overflow` : '']">
|
||||
<image v-if="item.dtype!='video'" @click="itemClick(item)" :style="{
|
||||
height: h_s + 'rpx',
|
||||
width: w_s - margin_px + 'rpx'
|
||||
}"
|
||||
@load="imgload($event, index)"
|
||||
:src="item.url"
|
||||
:class="[round_num > 0 ? ` round-${round_num} overflow` : '']"
|
||||
></image>
|
||||
<video
|
||||
@play="isPlayVedio = true"
|
||||
@pause="isPlayVedio = false"
|
||||
@ended="isPlayVedio = false"
|
||||
:autoplay="nowIndex == index ? true : false"
|
||||
:style="{
|
||||
width: (w_s - margin_px) + 'rpx'
|
||||
}" @load="imgload($event, index)" :src="item.url"
|
||||
:class="[round_num > 0 ? ` round-${round_num} overflow` : '']"></image>
|
||||
<video @play="isPlayVedio = true" @pause="isPlayVedio=false" @ended="isPlayVedio=false" :autoplay="nowIndex == index?true:false" :style="{
|
||||
height: h_s + 'rpx',
|
||||
width: w_s - margin_px + 'rpx'
|
||||
}"
|
||||
v-if="item.dtype == 'video'"
|
||||
:src="item.url"
|
||||
></video>
|
||||
width: (w_s - margin_px) + 'rpx'
|
||||
}" v-if="item.dtype=='video'" :src="item.url"></video>
|
||||
|
||||
<view
|
||||
v-if="item.title"
|
||||
:style="{
|
||||
width: w_s - margin_px + 'rpx'
|
||||
}"
|
||||
class="flex-start relative "
|
||||
>
|
||||
<view v-if="item.title" :style="{
|
||||
width: (w_s - margin_px) + 'rpx'
|
||||
}" class="flex-start relative ">
|
||||
<view
|
||||
class="text-size-s px-16 absolute b-0 l-0 zIndex-14 flex-start text-overflow text-white"
|
||||
:style="{
|
||||
height: '66rpx',
|
||||
width: w_s - margin_px - 32 + 'rpx',
|
||||
lineHeight: '66rpx',
|
||||
background: 'rgba(0,0,0,0.4)'
|
||||
}"
|
||||
>
|
||||
{{ item.title }}
|
||||
height: '66rpx',
|
||||
width: (w_s - margin_px-32) + 'rpx',
|
||||
lineHeight:'66rpx',
|
||||
background:'rgba(0,0,0,0.4)'
|
||||
}">
|
||||
{{item.title}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -86,24 +46,19 @@
|
||||
</swiper-item>
|
||||
</block>
|
||||
</swiper>
|
||||
<view class="tm-swiper-dot" v-if="indicatorDots && nowshowDot" :class="[dotDirection]">
|
||||
<view class="tm-swiper-dot" v-if="indicatorDots&&nowshowDot" :class="[dotDirection]">
|
||||
|
||||
<block v-if="dotModel != 'round'">
|
||||
<view
|
||||
@click="nowIndex = index"
|
||||
v-for="(item, index) in dataList"
|
||||
:key="index"
|
||||
<view @click="nowIndex = index" v-for="(item, index) in dataList" :key="index"
|
||||
class="tm-swiper-dot-item flex-center mx-8"
|
||||
:class="[nowIndex == index ? color_tmeme : 'unactive', dotModel]"
|
||||
>
|
||||
:class="[nowIndex == index ? color_tmeme : 'unactive', dotModel]">
|
||||
<text v-if="dotModel === 'number'" class="text-size-xs">{{ index + 1 }}</text>
|
||||
</view>
|
||||
</block>
|
||||
<block v-if="dotModel == 'round'">
|
||||
<view
|
||||
:class="[dotModel]"
|
||||
<view :class="[dotModel]"
|
||||
class="text-size-xs balck text-white round-24 px-24 tm-swiper-dot-item flex-center flex-shrink"
|
||||
:style="{ height: '40rpx', minWidth: '60rpx' }"
|
||||
>
|
||||
:style="{ height: '40rpx', minWidth: '60rpx' }">
|
||||
{{ nowIndex + 1 + '/' + dataList.length }}
|
||||
</view>
|
||||
</block>
|
||||
@@ -112,353 +67,357 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/**
|
||||
* 图片轮播
|
||||
* @description 很参数与原官方相同。
|
||||
* @property {Number} width = [] 默认:0,轮播宽度,0为自己计算。
|
||||
* @property {Number} height = [] 默认:0,轮播高度,0为自己计算。
|
||||
* @property {Array} list = [] 默认:[],图片列表,可以是string数组或者object数组。
|
||||
* @property {String} rang-key = [] 默认:[],图片列表object数组时,需要提供图片地址 的键值。
|
||||
* @property {Boolean} inline = [] 默认:false,是否内联,方便一排放多个轮播组件。
|
||||
* @property {Boolean} previmage = [] 默认:true,是否预览图片,点击图片时,放大预览。
|
||||
* @property {Boolean} vertical = [] 默认:false,是否竖向滚动。
|
||||
* @property {Boolean} circular = [] 默认:false,是否采用衔接滑动,即播放到末尾后重新回到开头
|
||||
* @property {Boolean} autoplay = [] 默认:false,是否自动切换
|
||||
* @property {Number} interval = [] 默认:3000,自动切换时间间隔
|
||||
* @property {Number} duration = [] 默认:500,滑动动画时长
|
||||
* @property {Number} ani3d = [] 默认:0,开启3d缩放动画
|
||||
* @property {Boolean} indicator-dots = [] 默认:true,是否显示指示
|
||||
* @property {String} color = [] 默认:primary,指示点的主题色。
|
||||
* @property {Number} current = [] 默认:0,如果需要双向绑定请使用current.sync.
|
||||
* @property {String} dot-model = [dot|number|rect|round] 默认:dot,指示点的类型。
|
||||
* @property {String} dot-direction = [left|center|right] 默认:center,指示点的位置。
|
||||
* @property {Number} round = [] 默认:0,圆角,单位rpx
|
||||
* @property {Number} margin = [] 默认:0,单位rpx
|
||||
* @property {Function} change 轮播切换时触发。参数返回当前播放位置。
|
||||
* @property {Function} click 轮播项目被点击时触发发,返回项目数据
|
||||
* @example <tm-swiper :list="['https://picsum.photos/300?jv=3','https://picsum.photos/300?jv=3']" ></tm-swiper>
|
||||
*/
|
||||
export default {
|
||||
name: 'tm-swiper',
|
||||
props: {
|
||||
width: {
|
||||
type: Number | String,
|
||||
default: 0
|
||||
},
|
||||
// 自定高度。
|
||||
height: {
|
||||
type: Number | String,
|
||||
default: 0
|
||||
},
|
||||
list: {
|
||||
type: Array,
|
||||
default: () => {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
rangKey: {
|
||||
type: String,
|
||||
default: 'src'
|
||||
},
|
||||
// 是否内联。
|
||||
inline: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
// 是否开启预览模式,即点击图片可以预览。
|
||||
previmage: {
|
||||
type: Boolean | String,
|
||||
default: true
|
||||
},
|
||||
vertical: false,
|
||||
circular: false,
|
||||
autoplay: false,
|
||||
interval: {
|
||||
type: Number,
|
||||
default: 3000
|
||||
},
|
||||
duration: {
|
||||
type: Number,
|
||||
default: 500
|
||||
},
|
||||
// 是否显示指示
|
||||
indicatorDots: false,
|
||||
//指示点的主题色。
|
||||
color: {
|
||||
type: String,
|
||||
default: 'primary'
|
||||
},
|
||||
// 当前位置。
|
||||
current: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ani3d: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
// 指示点的类型。
|
||||
dotModel: {
|
||||
type: String,
|
||||
default: 'dot' //dot|number|rect
|
||||
},
|
||||
// 指示点的位置 。
|
||||
dotDirection: {
|
||||
type: String,
|
||||
default: 'center' //left|center|right
|
||||
},
|
||||
round: {
|
||||
type: Boolean | Number,
|
||||
default: 0
|
||||
},
|
||||
margin: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
// 跟随主题色的改变而改变。
|
||||
fllowTheme: {
|
||||
type: Boolean | String,
|
||||
default: true
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
current: function(newval) {
|
||||
// if (newval >= this.dataList.length) {
|
||||
// this.nowIndex = 0;
|
||||
// return;
|
||||
// }
|
||||
// this.nowIndex = newval;
|
||||
},
|
||||
list: {
|
||||
deep: true,
|
||||
handler() {
|
||||
this.chulidata();
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
color_tmeme: function() {
|
||||
if (this.$tm.vx.state().tmVuetify.color !== null && this.$tm.vx.state().tmVuetify.color && this.fllowTheme) {
|
||||
return this.$tm.vx.state().tmVuetify.color;
|
||||
}
|
||||
return this.color;
|
||||
},
|
||||
round_num: function() {
|
||||
if (typeof this.round === 'boolean') return 0;
|
||||
return this.round;
|
||||
},
|
||||
nowIndex: {
|
||||
get: function() {
|
||||
return this.dotIndex;
|
||||
/**
|
||||
* 图片轮播
|
||||
* @description 很参数与原官方相同。
|
||||
* @property {Number} width = [] 默认:0,轮播宽度,0为自己计算。
|
||||
* @property {Number} height = [] 默认:0,轮播高度,0为自己计算。
|
||||
* @property {Array} list = [] 默认:[],图片列表,可以是string数组或者object数组。
|
||||
* @property {String} rang-key = [] 默认:[],图片列表object数组时,需要提供图片地址 的键值。
|
||||
* @property {Boolean} inline = [] 默认:false,是否内联,方便一排放多个轮播组件。
|
||||
* @property {Boolean} previmage = [] 默认:true,是否预览图片,点击图片时,放大预览。
|
||||
* @property {Boolean} vertical = [] 默认:false,是否竖向滚动。
|
||||
* @property {Boolean} circular = [] 默认:false,是否采用衔接滑动,即播放到末尾后重新回到开头
|
||||
* @property {Boolean} autoplay = [] 默认:false,是否自动切换
|
||||
* @property {Number} interval = [] 默认:3000,自动切换时间间隔
|
||||
* @property {Number} duration = [] 默认:500,滑动动画时长
|
||||
* @property {Number} ani3d = [] 默认:0,开启3d缩放动画
|
||||
* @property {Boolean} indicator-dots = [] 默认:true,是否显示指示
|
||||
* @property {String} color = [] 默认:primary,指示点的主题色。
|
||||
* @property {Number} current = [] 默认:0,如果需要双向绑定请使用current.sync.
|
||||
* @property {String} dot-model = [dot|number|rect|round] 默认:dot,指示点的类型。
|
||||
* @property {String} dot-direction = [left|center|right] 默认:center,指示点的位置。
|
||||
* @property {Number} round = [] 默认:0,圆角,单位rpx
|
||||
* @property {Number} margin = [] 默认:0,单位rpx
|
||||
* @property {Function} change 轮播切换时触发。参数返回当前播放位置。
|
||||
* @property {Function} click 轮播项目被点击时触发发,返回项目数据
|
||||
* @example <tm-swiper :list="['https://picsum.photos/300?jv=3','https://picsum.photos/300?jv=3']" ></tm-swiper>
|
||||
*/
|
||||
export default {
|
||||
name: 'tm-swiper',
|
||||
props: {
|
||||
width: {
|
||||
type: Number | String,
|
||||
default: 0
|
||||
},
|
||||
set: function(val) {
|
||||
this.dotIndex = val;
|
||||
this.$emit('update:current', val);
|
||||
this.$emit('change', val);
|
||||
}
|
||||
},
|
||||
nowshowDot: function() {
|
||||
return this.showdot();
|
||||
},
|
||||
w_s: {
|
||||
get: function() {
|
||||
return this.w_w;
|
||||
// 自定高度。
|
||||
height: {
|
||||
type: Number | String,
|
||||
default: 0
|
||||
},
|
||||
set: function(val) {
|
||||
this.w_w = val;
|
||||
}
|
||||
},
|
||||
h_s: {
|
||||
get: function() {
|
||||
return this.h_h;
|
||||
list: {
|
||||
type: Array,
|
||||
default: () => {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
set: function(val) {
|
||||
this.h_h = val;
|
||||
rangKey: {
|
||||
type: String,
|
||||
default: 'src'
|
||||
},
|
||||
// 是否内联。
|
||||
inline: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
// 是否开启预览模式,即点击图片可以预览。
|
||||
previmage: {
|
||||
type: Boolean | String,
|
||||
default: true
|
||||
},
|
||||
vertical: false,
|
||||
circular: false,
|
||||
autoplay: false,
|
||||
interval: {
|
||||
type: Number,
|
||||
default: 3000
|
||||
},
|
||||
duration: {
|
||||
type: Number,
|
||||
default: 500
|
||||
},
|
||||
// 是否显示指示
|
||||
indicatorDots: false,
|
||||
//指示点的主题色。
|
||||
color: {
|
||||
type: String,
|
||||
default: 'primary'
|
||||
},
|
||||
// 当前位置。
|
||||
current: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
ani3d: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
// 指示点的类型。
|
||||
dotModel: {
|
||||
type: String,
|
||||
default: 'dot' //dot|number|rect
|
||||
},
|
||||
// 指示点的位置 。
|
||||
dotDirection: {
|
||||
type: String,
|
||||
default: 'center' //left|center|right
|
||||
},
|
||||
round: {
|
||||
type: Boolean | Number,
|
||||
default: 0
|
||||
},
|
||||
margin: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
// 跟随主题色的改变而改变。
|
||||
fllowTheme: {
|
||||
type: Boolean | String,
|
||||
default: true
|
||||
}
|
||||
},
|
||||
margin_px: function() {
|
||||
return this.margin * 2;
|
||||
}
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
w_w: 0,
|
||||
h_h: 0,
|
||||
dataList: [],
|
||||
dotIndex: 0,
|
||||
isPlayVedio: false
|
||||
};
|
||||
},
|
||||
async mounted() {
|
||||
// this.nowIndex = this.current;
|
||||
|
||||
let w = this.width;
|
||||
if (String(w).indexOf('px') > -1 && typeof w == 'string') {
|
||||
let p = parseInt(h);
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
w = p * sy;
|
||||
}
|
||||
if (typeof w == 'string') {
|
||||
w = parseInt(w);
|
||||
}
|
||||
this.w_w = w;
|
||||
|
||||
let h = this.height;
|
||||
if (String(h).indexOf('px') > -1 && typeof h == 'string') {
|
||||
let p = parseInt(h);
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
h = p * sy;
|
||||
}
|
||||
if (typeof h == 'string') {
|
||||
h = parseInt(h);
|
||||
}
|
||||
|
||||
this.h_h = h;
|
||||
|
||||
this.$nextTick(async function() {
|
||||
await this.chulidata();
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
showdot() {
|
||||
if (typeof this.dataList[this.nowIndex] == 'string') return true;
|
||||
if (typeof this.dataList[this.nowIndex] == 'object') {
|
||||
if (this.dataList[this.nowIndex].dtype == 'video') return false;
|
||||
watch: {
|
||||
current: function(newval) {
|
||||
if (newval >= this.dataList.length) {
|
||||
this.nowIndex = 0;
|
||||
return;
|
||||
}
|
||||
this.nowIndex = newval;
|
||||
},
|
||||
list: {
|
||||
deep: true,
|
||||
handler() {
|
||||
this.chulidata();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
},
|
||||
async chulidata() {
|
||||
let t = this;
|
||||
let tb = await this.$Querey('.tm-swiper', this).catch(ev => {});
|
||||
//console.log(uni.getSystemInfoSync());
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
let upxw = tb[0].width * sy;
|
||||
let sw = this.w_s > 0 ? this.w_s : upxw > 0 ? upxw : 100;
|
||||
this.w_s = sw;
|
||||
let sh = this.h_s > 0 ? this.h_s : tb[0].height > 0 ? tb[0].height : 300;
|
||||
this.h_s = sh;
|
||||
let d = [];
|
||||
this.list.forEach(item => {
|
||||
if (typeof item === 'string') {
|
||||
d.push({
|
||||
width: sw,
|
||||
height: sh,
|
||||
url: item,
|
||||
title: '',
|
||||
dtype: '',
|
||||
data: item
|
||||
});
|
||||
} else if (typeof item === 'object') {
|
||||
d.push({
|
||||
width: sw,
|
||||
height: sh,
|
||||
url: item[t.rangKey],
|
||||
title: item['title'] || '',
|
||||
dtype: item['type'] || '',
|
||||
data: item
|
||||
computed: {
|
||||
color_tmeme: function() {
|
||||
if (this.$tm.vx.state().tmVuetify.color !== null && this.$tm.vx.state().tmVuetify.color && this
|
||||
.fllowTheme) {
|
||||
return this.$tm.vx.state().tmVuetify.color;
|
||||
}
|
||||
return this.color;
|
||||
},
|
||||
round_num: function() {
|
||||
if (typeof this.round === 'boolean') return 0;
|
||||
return this.round;
|
||||
},
|
||||
nowIndex: {
|
||||
get: function() {
|
||||
return this.dotIndex;
|
||||
},
|
||||
set: function(val) {
|
||||
this.dotIndex = val;
|
||||
this.$emit('update:current', val);
|
||||
this.$emit('change', val);
|
||||
}
|
||||
},
|
||||
nowshowDot:function(){
|
||||
return this.showdot();
|
||||
|
||||
},
|
||||
w_s: {
|
||||
get: function() {
|
||||
return this.w_w;
|
||||
},
|
||||
set: function(val) {
|
||||
this.w_w = val;
|
||||
}
|
||||
},
|
||||
h_s: {
|
||||
get: function() {
|
||||
return this.h_h;
|
||||
},
|
||||
set: function(val) {
|
||||
this.h_h = val;
|
||||
}
|
||||
},
|
||||
margin_px: function() {
|
||||
return this.margin * 2;
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
w_w: 0,
|
||||
h_h: 0,
|
||||
dataList: [],
|
||||
dotIndex: 0,
|
||||
isPlayVedio:false,
|
||||
};
|
||||
},
|
||||
async mounted() {
|
||||
this.nowIndex = this.current;
|
||||
|
||||
let w = this.width;
|
||||
if (String(w).indexOf('px') > -1 && typeof w == 'string') {
|
||||
let p = parseInt(h);
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
w = p * sy;
|
||||
}
|
||||
if (typeof w == 'string') {
|
||||
w = parseInt(w);
|
||||
}
|
||||
this.w_w = w;
|
||||
|
||||
let h = this.height;
|
||||
if (String(h).indexOf('px') > -1 && typeof h == 'string') {
|
||||
let p = parseInt(h);
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
h = p * sy;
|
||||
}
|
||||
if (typeof h == 'string') {
|
||||
h = parseInt(h);
|
||||
}
|
||||
|
||||
this.h_h = h;
|
||||
|
||||
this.$nextTick(async function() {
|
||||
await this.chulidata();
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
|
||||
showdot(){
|
||||
if(typeof this.dataList[this.nowIndex]=='string') return true;
|
||||
if(typeof this.dataList[this.nowIndex]=='object'){
|
||||
if(this.dataList[this.nowIndex].dtype=='video') return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
async chulidata() {
|
||||
let t = this;
|
||||
let tb = await this.$Querey('.tm-swiper', this).catch(ev => {});
|
||||
//console.log(uni.getSystemInfoSync());
|
||||
let sy = 750 / uni.getSystemInfoSync().windowWidth;
|
||||
let upxw = tb[0].width * sy;
|
||||
let sw = this.w_s > 0 ? this.w_s : upxw > 0 ? upxw : 100;
|
||||
this.w_s = sw;
|
||||
let sh = this.h_s > 0 ? this.h_s : tb[0].height > 0 ? tb[0].height : 300;
|
||||
this.h_s = sh;
|
||||
let d = [];
|
||||
this.list.forEach(item => {
|
||||
if (typeof item === 'string') {
|
||||
d.push({
|
||||
width: sw,
|
||||
height: sh,
|
||||
url: item,
|
||||
title: '',
|
||||
dtype: '',
|
||||
data: item
|
||||
});
|
||||
} else if (typeof item === 'object') {
|
||||
d.push({
|
||||
width: sw,
|
||||
height: sh,
|
||||
url: item[t.rangKey],
|
||||
title: item['title'] || '',
|
||||
dtype: item['type'] || '',
|
||||
data: item
|
||||
});
|
||||
}
|
||||
});
|
||||
this.dataList = d;
|
||||
},
|
||||
imgload(e, index) {},
|
||||
change(event) {
|
||||
this.nowIndex = event.detail.current;
|
||||
},
|
||||
itemClick(e) {
|
||||
if (this.previmage) {
|
||||
uni.previewImage({
|
||||
current: e.url,
|
||||
urls: [e.url]
|
||||
});
|
||||
}
|
||||
});
|
||||
this.dataList = d;
|
||||
},
|
||||
imgload(e, index) {},
|
||||
change(event) {
|
||||
this.nowIndex = event.detail.current;
|
||||
},
|
||||
itemClick(e) {
|
||||
if (this.previmage) {
|
||||
uni.previewImage({
|
||||
current: e.url,
|
||||
urls: [e.url]
|
||||
});
|
||||
this.$emit('click', e);
|
||||
}
|
||||
this.$emit('click', e);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
</script>
|
||||
<style></style>
|
||||
<style lang="scss" scoped>
|
||||
.tm-swiper {
|
||||
position: relative;
|
||||
.tm-swiper {
|
||||
position: relative;
|
||||
|
||||
.tm-swiper-ik {
|
||||
transition: all 1s;
|
||||
}
|
||||
|
||||
.a3d {
|
||||
transform: scale(0.76);
|
||||
}
|
||||
|
||||
.a3dL {
|
||||
transform: scale(0.76) translateX(-24rpx);
|
||||
}
|
||||
|
||||
.a3dR {
|
||||
transform: scale(0.76) translateX(24rpx);
|
||||
}
|
||||
|
||||
.actvieMarginDh {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
.actvieMarginDh-item {
|
||||
overflow: hidden;
|
||||
line-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tm-swiper-dot {
|
||||
.tm-swiper-dot-item {
|
||||
width: 16upx;
|
||||
height: 16upx;
|
||||
border-radius: 50%;
|
||||
|
||||
&.unactive {
|
||||
background-color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
&.number {
|
||||
width: 34upx;
|
||||
height: 34upx;
|
||||
}
|
||||
|
||||
&.rect {
|
||||
width: 24upx;
|
||||
height: 6upx;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
&.round {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
.tm-swiper-ik {
|
||||
transition: all 1s;
|
||||
}
|
||||
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
display: flex;
|
||||
bottom: 20upx;
|
||||
.a3d {
|
||||
transform: scale(0.76);
|
||||
}
|
||||
|
||||
&.center {
|
||||
.a3dL {
|
||||
transform: scale(0.76) translateX(-24rpx)
|
||||
}
|
||||
|
||||
.a3dR {
|
||||
transform: scale(0.76) translateX(24rpx)
|
||||
}
|
||||
|
||||
.actvieMarginDh {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
.actvieMarginDh-item {
|
||||
overflow: hidden;
|
||||
line-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.left {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
padding-left: 20upx;
|
||||
width: calc(100% - 20upx);
|
||||
}
|
||||
.tm-swiper-dot {
|
||||
.tm-swiper-dot-item {
|
||||
width: 16upx;
|
||||
height: 16upx;
|
||||
border-radius: 50%;
|
||||
|
||||
&.right {
|
||||
&.unactive {
|
||||
background-color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
&.number {
|
||||
width: 34upx;
|
||||
height: 34upx;
|
||||
}
|
||||
|
||||
&.rect {
|
||||
width: 24upx;
|
||||
height: 6upx;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
&.round {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
}
|
||||
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding-right: 20upx;
|
||||
width: calc(100% - 20upx);
|
||||
bottom: 20upx;
|
||||
|
||||
&.center {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
&.left {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
padding-left: 20upx;
|
||||
width: calc(100% - 20upx);
|
||||
}
|
||||
|
||||
&.right {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding-right: 20upx;
|
||||
width: calc(100% - 20upx);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
* @property {Number} wait 延时
|
||||
* @property {String} animation-name = [fadeUp|fadeDown|fadeLeft|fadeRight|zoomIn|zoomOut|fadeIn|fadeOut] 动画效果名称.
|
||||
* @property {String|Boolean} auto = [true|false] 默认:true,是否自动播放动画.
|
||||
* @example <tm-translate wait="500" animation-name="fadeUp"><tm-upload></tm-upload></tm-translate>
|
||||
* @example <tm-translate wait="500" animation-name="fadeDown"><tm-upload></tm-upload></tm-translate>
|
||||
*/
|
||||
export default {
|
||||
name:"tm-translate",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="tm-upload flex-start " id="tm-upload">
|
||||
<view class="tm-upload flex-start relative" id="tm-upload">
|
||||
<view v-for="(item,index) in list" :key="index" class="tm-upload-item " :class="[grid!=1?'ma-4':'']" :style="{
|
||||
width:itemWidth+'px',
|
||||
height:itemHeight+'px'
|
||||
@@ -31,9 +31,18 @@
|
||||
<!-- 上传的进度。 -->
|
||||
<view v-if="item.progress>0&&item.progress!=100&&!disabled" class="tm-upload-pro green"
|
||||
:style="{width:item.progress+'%'}"></view>
|
||||
<!-- 上传的排序。 -->
|
||||
<view v-if="showSort" class="absolute l-0 fulled flex-between" :class="[disabled?'b-0':'b-40']" :style="{height:'46rpx'}">
|
||||
<view @click.stop="prevSort(item,index,'prev')" class="round-r-24 flex-center px-16 py-6" :class="[index==0?'opacity-0':'']" style="background-color: rgba(0, 0, 0, 0.3);">
|
||||
<tm-icons name="icon-angle-left" size="24" :color="color_tmeme"></tm-icons>
|
||||
</view>
|
||||
<view @click.stop="prevSort(item,index,'next')" class="round-l-24 flex-center px-16 py-6" :class="[index==list.length-1?'opacity-0':'']" style="background-color: rgba(0, 0, 0, 0.3);">
|
||||
<tm-icons name="icon-angle-right" size="24" :color="color_tmeme"></tm-icons>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view @click="addfile" v-if="list.length<max&&!disabled&&showSheet" class="tm-upload-item ma-4 grey-lighten-4 " :class="[`round-${round}`]" :style="{
|
||||
<view @click="addfile" v-if="list.length<max&&!disabled" class="tm-upload-item ma-4 grey-lighten-4 " :class="[`round-${round}`]" :style="{
|
||||
width:itemWidth+'px',
|
||||
height:itemHeight+'px'
|
||||
}">
|
||||
@@ -79,6 +88,10 @@
|
||||
components:{tmIcons},
|
||||
name: "tm-upload",
|
||||
props: {
|
||||
showSort:{
|
||||
type:Boolean|String,
|
||||
default:false
|
||||
},
|
||||
model:{
|
||||
type:String,
|
||||
default:'scaleToFill'
|
||||
@@ -216,8 +229,7 @@
|
||||
itemWidth: 0,
|
||||
itemHeight: 0,
|
||||
list: [],
|
||||
//兼容app使用.
|
||||
showSheet:true,
|
||||
|
||||
upObje:null,
|
||||
};
|
||||
},
|
||||
@@ -228,13 +240,51 @@
|
||||
},
|
||||
async mounted() {
|
||||
let t = this;
|
||||
if (typeof t.filelist === 'object' && Array.isArray(t.filelist)) {
|
||||
let plist = [...t.filelist];
|
||||
plist.forEach((item, index) => {
|
||||
let url = "";
|
||||
if (typeof item === 'string') {
|
||||
url = item;
|
||||
} else if (typeof item === 'object') {
|
||||
url = item[t.urlKey]
|
||||
}
|
||||
t.list.push({
|
||||
url: url,
|
||||
status: "上传成功",
|
||||
progress: 100,
|
||||
fileId: t.$tm.guid(),
|
||||
statusCode: 3,
|
||||
data: item,
|
||||
})
|
||||
})
|
||||
|
||||
this.$nextTick(async function(){
|
||||
}
|
||||
this.getRect()
|
||||
|
||||
this.$Querey('.tm-upload', this,30).then(o=>{
|
||||
// #ifdef APP-VUE || APP-PLUS || MP
|
||||
t.showSheet = true;
|
||||
// #endif
|
||||
|
||||
},
|
||||
updated() {
|
||||
this.getRect()
|
||||
},
|
||||
methods: {
|
||||
prevSort(item,index,type){
|
||||
if((index==0&&type=='prev')||(index==this.list.length-1&&type=='next')){
|
||||
return;
|
||||
}
|
||||
let nowindex = type=='prev'?index-1:index+1
|
||||
let nowItem = this.list[index];
|
||||
let newnowItem = this.list[nowindex];
|
||||
let nowfilelist= [...this.list]
|
||||
nowfilelist.splice(index,1,newnowItem)
|
||||
nowfilelist.splice(nowindex,1,nowItem)
|
||||
this.list = [...nowfilelist]
|
||||
this.$emit('update:filelist', nowfilelist);
|
||||
},
|
||||
getRect(){
|
||||
let t = this;
|
||||
this.$Querey('.tm-upload', this,0).then(o=>{
|
||||
if(!o[0].width&&t.maxWidth) return;
|
||||
t.maxWidth = o[0].width||t.width;
|
||||
let itemWidth = (t.maxWidth - (parseInt(t.grid) - 1) * uni.upx2px(12)) / parseInt(t.grid);
|
||||
t.itemWidth = itemWidth;
|
||||
@@ -242,33 +292,8 @@
|
||||
if (t.imgHeight > 0) {
|
||||
t.itemHeight = parseInt(uni.upx2px(t.imgHeight));
|
||||
}
|
||||
|
||||
if (typeof t.filelist === 'object' && Array.isArray(t.filelist)) {
|
||||
let plist = [...t.filelist];
|
||||
plist.forEach((item, index) => {
|
||||
let url = "";
|
||||
if (typeof item === 'string') {
|
||||
url = item;
|
||||
} else if (typeof item === 'object') {
|
||||
url = item[t.urlKey]
|
||||
}
|
||||
t.list.push({
|
||||
url: url,
|
||||
status: "上传成功",
|
||||
progress: 100,
|
||||
fileId: t.$tm.guid(),
|
||||
statusCode: 3,
|
||||
data: item,
|
||||
})
|
||||
})
|
||||
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
errorFile(item,index){
|
||||
let id = item;
|
||||
id['loaderror'] = true;
|
||||
|
||||
@@ -134,8 +134,10 @@
|
||||
let day = nwod.getDate();
|
||||
let week = nwod.getDay();
|
||||
let new_weekDay = [nwod];
|
||||
|
||||
let timcha = Math.abs(week-7);
|
||||
let zcha = Math.abs(7-timcha);
|
||||
|
||||
let weekCn=["周日","周一","周二","周三","周四","周五","周六"];
|
||||
for(let i=1;i<zcha;i++){
|
||||
let d = new Date(year,month,day-i);
|
||||
@@ -157,9 +159,17 @@
|
||||
}
|
||||
weekDay.push(sc);
|
||||
}
|
||||
|
||||
weekDay.sort(function(a, b){return a.week - b.week});
|
||||
|
||||
weekDay.push(weekDay[0])
|
||||
weekDay.splice(0,1)
|
||||
if(weekDay.length==8){
|
||||
weekDay.splice(0,1)
|
||||
weekDay.unshift(weekDay[weekDay.length-1])
|
||||
weekDay.splice(weekDay.length-1,1)
|
||||
}
|
||||
|
||||
let t= this;
|
||||
this.timeList = [];
|
||||
this.$nextTick(function(){
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "tm-vuetify",
|
||||
"displayName": "tmUI-vuetify",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"description": "tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI",
|
||||
"keywords": [
|
||||
"tmUI-vuetify",
|
||||
|
||||
@@ -9,20 +9,20 @@
|
||||
/**用户自定主题,默认主题,不可删除,可通过工具生成覆盖**/
|
||||
@import "./theme/amber.css";
|
||||
@import "./theme/blue.css";
|
||||
@import "./theme/brown.css";
|
||||
/* @import "./theme/brown.css"; */
|
||||
@import "./theme/cyan.css";
|
||||
@import "./theme/green.css";
|
||||
@import "./theme/indigo.css";
|
||||
@import "./theme/lime.css";
|
||||
/* @import "./theme/indigo.css"; */
|
||||
/* @import "./theme/lime.css"; */
|
||||
@import "./theme/orange.css";
|
||||
@import "./theme/pink.css";
|
||||
@import "./theme/purple.css";
|
||||
/* @import "./theme/pink.css"; */
|
||||
/* @import "./theme/purple.css"; */
|
||||
@import "./theme/red.css";
|
||||
/**组件库,必要的主题,不可删除**/
|
||||
@import "./theme/teal.css";
|
||||
/* @import "./theme/teal.css"; */
|
||||
@import "./theme/yellow.css";
|
||||
@import "./theme/blue-grey.css";
|
||||
@import "./theme/deep-orange.css";
|
||||
@import "./theme/deep-purple.css";
|
||||
/*@import "./theme/deep-purple.css";*/
|
||||
@import "./theme/light-blue.css";
|
||||
@import "./theme/light-green.css";
|
||||
/*@import "./theme/light-green.css"; */
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_calendar=t()}(this,(function(){"use strict";return function(e,t,a){var n="h:mm A",d={lastDay:"[Yesterday at] "+n,sameDay:"[Today at] "+n,nextDay:"[Tomorrow at] "+n,nextWeek:"dddd [at] "+n,lastWeek:"[Last] dddd [at] "+n,sameElse:"MM/DD/YYYY"};t.prototype.calendar=function(e,t){var n=t||this.$locale().calendar||d,o=a(e||void 0).startOf("d"),s=this.diff(o,"d",!0),i="sameElse",f=s<-6?i:s<-1?"lastWeek":s<0?"lastDay":s<1?"sameDay":s<2?"nextDay":s<7?"nextWeek":i,l=n[f]||d[f];return"function"==typeof l?l.call(this,a()):this.format(l)}}}));
|
||||
+1
-1
@@ -4,4 +4,4 @@
|
||||
*
|
||||
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
|
||||
*/
|
||||
!function(e,_){"object"==typeof exports&&"undefined"!=typeof module?module.exports=_(require("./dayjs.min")):"function"==typeof define&&define.amd?define(["dayjs"],_):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_locale_zh_cn=_(e.dayjs)}(this,(function(e){"use strict";function _(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var t=_(e),d={name:"zh-cn",weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),ordinal:function(e,_){switch(_){case"W":return e+"周";default:return e+"日"}},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},relativeTime:{future:"%s后",past:"%s前",s:"几秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},meridiem:function(e,_){var t=100*e+_;return t<600?"凌晨":t<900?"早上":t<1100?"上午":t<1300?"中午":t<1800?"下午":"晚上"}};return t.default.locale(d,null,!0),d}));
|
||||
!function(e,_){"object"==typeof exports&&"undefined"!=typeof module?module.exports=_(require("./dayjs.min")):"function"==typeof define&&define.amd?define(["./dayjs.min"],_):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_locale_zh_cn=_(e.dayjs)}(this,(function(e){"use strict";function _(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var t=_(e),d={name:"zh-cn",weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),ordinal:function(e,_){switch(_){case"W":return e+"周";default:return e+"日"}},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},relativeTime:{future:"%s后",past:"%s前",s:"几秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},meridiem:function(e,_){var t=100*e+_;return t<600?"凌晨":t<900?"早上":t<1100?"上午":t<1300?"中午":t<1800?"下午":"晚上"}};return t.default.locale(d,null,!0),d}));
|
||||
@@ -5,6 +5,7 @@
|
||||
*/
|
||||
function sleep(wait=500){
|
||||
let timid = null;
|
||||
if(wait==0) return Promise.resolve(true)
|
||||
clearTimeout(timid);
|
||||
return new Promise((res,rej)=>{
|
||||
timid = setTimeout(function() {
|
||||
|
||||
@@ -197,4 +197,5 @@ export default {
|
||||
chinaPost,
|
||||
password,
|
||||
password2,
|
||||
bankCard
|
||||
}
|
||||
|
||||
@@ -19,16 +19,16 @@ class vuex {
|
||||
let t = this;
|
||||
const g = this.store.getters
|
||||
let keys = Object.keys(g);
|
||||
|
||||
console.log(keys)
|
||||
let k = keys.map((el,index)=>{
|
||||
let f = el.split('/');
|
||||
let tst = {}
|
||||
if(f.length==1){
|
||||
tst[el]=g[el]
|
||||
}else{
|
||||
|
||||
tst[f[0]]={}
|
||||
tst[f[0]][f[1]] = g[el]
|
||||
tst[f[1]]=g[el]
|
||||
// tst[f[0]+'_'+f[1]]=g[el]
|
||||
// tst[f[0]][f[1]] = g[el]
|
||||
|
||||
}
|
||||
return tst
|
||||
|
||||
@@ -55,6 +55,7 @@ const store = new Vuex.Store({
|
||||
// $tm:state=>{
|
||||
// return $tm;
|
||||
// }
|
||||
|
||||
},
|
||||
mutations: {
|
||||
setTmVuetifyColor(state, color) {
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
## 2.3.3(2022-07-14)
|
||||
1.添加空数据图点击事件回调。
|
||||
2.修复在nvue中偶现的下拉刷新回弹跳动的问题。
|
||||
3.修复在nvue中偶现的slot="top"挡住下拉刷新view的问题。
|
||||
4.禁止在h5中滚动到底部时上拉手势冒泡,以避免由此引发的列表被短暂锁住无法滚动的问题。
|
||||
@@ -1,34 +0,0 @@
|
||||
<!-- z-paging -->
|
||||
<!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
|
||||
<!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
|
||||
<!-- 反馈QQ群:790460711 -->
|
||||
|
||||
<!-- z-paging-cell,用于在nvue中使用cell包裹,vue中使用view包裹 -->
|
||||
<template>
|
||||
<!-- #ifdef APP-NVUE -->
|
||||
<cell :style="[cellStyle]">
|
||||
<slot />
|
||||
</cell>
|
||||
<!-- #endif -->
|
||||
<!-- #ifndef APP-NVUE -->
|
||||
<view :style="[cellStyle]">
|
||||
<slot />
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "z-paging-cell",
|
||||
props: {
|
||||
//cellStyle
|
||||
cellStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
<!-- z-paging -->
|
||||
<!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
|
||||
<!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
|
||||
<!-- 反馈QQ群:790460711 -->
|
||||
|
||||
<!-- 空数据占位view,此组件支持easycom规范,可以在项目中直接引用 -->
|
||||
<template>
|
||||
<view :class="{'zp-container':true,'zp-container-fixed':emptyViewFixed}" :style="[finalEmptyViewStyle]" @click="emptyViewClick">
|
||||
<view class="zp-main">
|
||||
<image v-if="!emptyViewImg.length" class="zp-main-image" :style="[emptyViewImgStyle]" :src="emptyImg" />
|
||||
<image v-else class="zp-main-image" mode="aspectFit" :style="[emptyViewImgStyle]" :src="emptyViewImg" />
|
||||
<text class="zp-main-title" :style="[emptyViewTitleStyle]">{{emptyViewText}}</text>
|
||||
<text v-if="showEmptyViewReload" class="zp-main-error-btn" :style="[emptyViewReloadStyle]" @click.stop="reloadClick">{{emptyViewReloadText}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import zStatic from '../z-paging/js/z-paging-static'
|
||||
export default {
|
||||
name: "z-paging-empty-view",
|
||||
data() {
|
||||
return {
|
||||
base64Empty: zStatic.base64Empty,
|
||||
base64Error: zStatic.base64Error
|
||||
};
|
||||
},
|
||||
props: {
|
||||
//空数据描述文字
|
||||
emptyViewText: {
|
||||
type: String,
|
||||
default: '没有数据哦~'
|
||||
},
|
||||
//空数据图片
|
||||
emptyViewImg: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//是否显示空数据图重新加载按钮
|
||||
showEmptyViewReload: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//空数据点击重新加载文字
|
||||
emptyViewReloadText: {
|
||||
type: String,
|
||||
default: '重新加载'
|
||||
},
|
||||
//是否是加载失败
|
||||
isLoadFailed: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//空数据图样式
|
||||
emptyViewStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
//空数据图img样式
|
||||
emptyViewImgStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
//空数据图描述文字样式
|
||||
emptyViewTitleStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
//空数据图重新加载按钮样式
|
||||
emptyViewReloadStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
//空数据图z-index
|
||||
emptyViewZIndex: {
|
||||
type: Number,
|
||||
default: 9
|
||||
},
|
||||
//空数据图片是否使用fixed布局并铺满z-paging
|
||||
emptyViewFixed: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
emptyImg() {
|
||||
return this.isLoadFailed ? this.base64Error : this.base64Empty;
|
||||
},
|
||||
finalEmptyViewStyle(){
|
||||
this.emptyViewStyle['z-index'] = this.emptyViewZIndex;
|
||||
return this.emptyViewStyle;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
reloadClick() {
|
||||
this.$emit('reload');
|
||||
},
|
||||
emptyViewClick() {
|
||||
this.$emit('viewClick');
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.zp-container{
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.zp-container-fixed {
|
||||
/* #ifndef APP-NVUE */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
flex: 1;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-main{
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 50rpx 0rpx;
|
||||
}
|
||||
|
||||
.zp-main-image {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
|
||||
.zp-main-title {
|
||||
font-size: 26rpx;
|
||||
color: #aaaaaa;
|
||||
text-align: center;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
|
||||
.zp-main-error-btn {
|
||||
font-size: 26rpx;
|
||||
padding: 8rpx 24rpx;
|
||||
border: solid 1px #dddddd;
|
||||
border-radius: 6rpx;
|
||||
color: #aaaaaa;
|
||||
margin-top: 50rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -1,145 +0,0 @@
|
||||
<!-- z-paging -->
|
||||
<!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
|
||||
<!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
|
||||
<!-- 反馈QQ群:790460711 -->
|
||||
|
||||
<!-- 滑动切换选项卡swiper-item,此组件支持easycom规范,可以在项目中直接引用 -->
|
||||
<template>
|
||||
<view class="zp-swiper-item-container">
|
||||
<z-paging ref="paging" :fixed="false"
|
||||
:useVirtualList="useVirtualList" :useInnerList="useInnerList" :cellKeyName="cellKeyName" :innerListStyle="innerListStyle"
|
||||
:preloadPage="preloadPage" :cellHeightMode="cellHeightMode" :virtualScrollFps="virtualScrollFps" :virtualListCol="virtualListCol"
|
||||
@query="_queryList" @listChange="_updateList" :mounted-auto-call-reload="false" style="height: 100%;">
|
||||
<slot />
|
||||
<template v-slot:header>
|
||||
<slot name="header"/>
|
||||
</template>
|
||||
<template v-slot:cell="{item,index}">
|
||||
<slot name="cell" :item="item" :index="index"/>
|
||||
</template>
|
||||
<template v-slot:footer>
|
||||
<slot name="footer"/>
|
||||
</template>
|
||||
</z-paging>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import zPaging from '../z-paging/z-paging'
|
||||
export default {
|
||||
name: "z-paging-swiper-item",
|
||||
components: {
|
||||
zPaging
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
firstLoaded: false
|
||||
}
|
||||
},
|
||||
props: {
|
||||
//当前组件的index,也就是当前组件是swiper中的第几个
|
||||
tabIndex: {
|
||||
type: Number,
|
||||
default: function() {
|
||||
return 0
|
||||
}
|
||||
},
|
||||
//当前swiper切换到第几个index
|
||||
currentIndex: {
|
||||
type: Number,
|
||||
default: function() {
|
||||
return 0
|
||||
}
|
||||
},
|
||||
//是否使用虚拟列表,默认为否
|
||||
useVirtualList: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//是否在z-paging内部循环渲染列表(内置列表),默认为否。若use-virtual-list为true,则此项恒为true
|
||||
useInnerList: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//内置列表cell的key名称,仅nvue有效,在nvue中开启use-inner-list时必须填此项
|
||||
cellKeyName: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//innerList样式
|
||||
innerListStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {};
|
||||
}
|
||||
},
|
||||
//预加载的列表可视范围(列表高度)页数,默认为7,即预加载当前页及上下各7页的cell。此数值越大,则虚拟列表中加载的dom越多,内存消耗越大(会维持在一个稳定值),但增加预加载页面数量可缓解快速滚动短暂白屏问题
|
||||
preloadPage: {
|
||||
type: [Number, String],
|
||||
default: 7
|
||||
},
|
||||
//虚拟列表cell高度模式,默认为fixed,也就是每个cell高度完全相同,将以第一个cell高度为准进行计算。可选值【dynamic】,即代表高度是动态非固定的,【dynamic】性能低于【fixed】。
|
||||
cellHeightMode: {
|
||||
type: String,
|
||||
default: 'fixed'
|
||||
},
|
||||
//虚拟列表列数,默认为1。常用于每行有多列的情况,例如每行有2列数据,需要将此值设置为2
|
||||
virtualListCol: {
|
||||
type: [Number, String],
|
||||
default: 1
|
||||
},
|
||||
//虚拟列表scroll取样帧率,默认为60,过高可能出现卡顿等问题
|
||||
virtualScrollFps: {
|
||||
type: [Number, String],
|
||||
default: 60
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
currentIndex: {
|
||||
handler(newVal, oldVal) {
|
||||
if (newVal === this.tabIndex) {
|
||||
//懒加载,当滑动到当前的item时,才去加载
|
||||
if (!this.firstLoaded) {
|
||||
this.$nextTick(()=>{
|
||||
let delay = 5;
|
||||
// #ifdef MP-TOUTIAO
|
||||
delay = 100;
|
||||
// #endif
|
||||
setTimeout(() => {
|
||||
this.$refs.paging.reload();
|
||||
}, delay);
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
reload(data) {
|
||||
this.$refs.paging.reload(data);
|
||||
},
|
||||
complete(data) {
|
||||
this.firstLoaded = true;
|
||||
this.$refs.paging.complete(data);
|
||||
},
|
||||
_queryList(pageNo, pageSize, from) {
|
||||
this.$emit('query', pageNo, pageSize, from);
|
||||
},
|
||||
_updateList(list) {
|
||||
this.$emit('updateList', list);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.zp-swiper-item-container {
|
||||
/* #ifndef APP-NVUE */
|
||||
height: 100%;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
flex: 1;
|
||||
/* #endif */
|
||||
}
|
||||
</style>
|
||||
@@ -1,227 +0,0 @@
|
||||
<!-- z-paging -->
|
||||
<!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
|
||||
<!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
|
||||
<!-- 反馈QQ群:790460711 -->
|
||||
|
||||
<!-- 滑动切换选项卡swiper,此组件支持easycom规范,可以在项目中直接引用 -->
|
||||
<template>
|
||||
<view :class="fixed?'zp-swiper-container zp-swiper-container-fixed':'zp-swiper-container'" :style="[finalSwiperStyle]">
|
||||
<!-- #ifndef APP-PLUS -->
|
||||
<view v-if="cssSafeAreaInsetBottom===-1" class="zp-safe-area-inset-bottom"></view>
|
||||
<!-- #endif -->
|
||||
<slot v-if="$slots.top" name="top" />
|
||||
<view class="zp-swiper-super">
|
||||
<view v-if="$slots.left" :class="{'zp-swiper-left':true,'zp-absoulte':isOldWebView}">
|
||||
<slot name="left" />
|
||||
</view>
|
||||
<view :class="{'zp-swiper':true,'zp-absoulte':isOldWebView}" :style="[swiperContentStyle]">
|
||||
<slot />
|
||||
</view>
|
||||
<view v-if="$slots.right" :class="{'zp-swiper-right':true,'zp-absoulte zp-right':isOldWebView}">
|
||||
<slot name="right" />
|
||||
</view>
|
||||
</view>
|
||||
<slot v-if="$slots.bottom" name="bottom" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "z-paging-swiper",
|
||||
data() {
|
||||
return {
|
||||
systemInfo: null,
|
||||
cssSafeAreaInsetBottom: -1,
|
||||
swiperContentStyle: {}
|
||||
};
|
||||
},
|
||||
props: {
|
||||
//是否使用fixed布局,默认为是
|
||||
fixed: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
//是否开启底部安全区域适配
|
||||
safeAreaInsetBottom: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//z-paging-swiper样式
|
||||
swiperStyle: {
|
||||
type: Object,
|
||||
default: function() {
|
||||
return {};
|
||||
},
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.$nextTick(() => {
|
||||
this.systemInfo = uni.getSystemInfoSync();
|
||||
})
|
||||
// #ifndef APP-PLUS
|
||||
this._getCssSafeAreaInsetBottom();
|
||||
// #endif
|
||||
this._updateLeftAndRightWidth();
|
||||
|
||||
this.swiperContentStyle = {'flex': '1'};
|
||||
// #ifndef APP-NVUE
|
||||
this.swiperContentStyle = {width: '100%',height: '100%'};
|
||||
// #endif
|
||||
},
|
||||
computed: {
|
||||
finalSwiperStyle() {
|
||||
let swiperStyle = this.swiperStyle;
|
||||
if (!this.systemInfo) return swiperStyle;
|
||||
let windowTop = this.systemInfo.windowTop;
|
||||
//暂时修复vue3中隐藏系统导航栏后windowTop获取不正确的问题,具体bug详见https://ask.dcloud.net.cn/question/141634
|
||||
//感谢litangyu!!https://github.com/SmileZXLee/uni-z-paging/issues/25
|
||||
// #ifdef VUE3 && H5
|
||||
const pageHeadNode = document.getElementsByTagName("uni-page-head");
|
||||
if (!pageHeadNode.length) windowTop = 0;
|
||||
// #endif
|
||||
const windowBottom = this.systemInfo.windowBottom;
|
||||
if (this.fixed) {
|
||||
if (windowTop && !swiperStyle.top) {
|
||||
swiperStyle.top = windowTop + 'px';
|
||||
}
|
||||
if (!swiperStyle.bottom) {
|
||||
let bottom = windowBottom ? windowBottom : 0;
|
||||
if (this.safeAreaInsetBottom) {
|
||||
bottom += this.safeAreaBottom;
|
||||
}
|
||||
if(bottom > 0){
|
||||
swiperStyle.bottom = bottom + 'px';
|
||||
}
|
||||
}
|
||||
}
|
||||
return swiperStyle;
|
||||
},
|
||||
safeAreaBottom() {
|
||||
if(!this.systemInfo){
|
||||
return 0;
|
||||
}
|
||||
let safeAreaBottom = 0;
|
||||
// #ifdef APP-PLUS
|
||||
safeAreaBottom = this.systemInfo.safeAreaInsets.bottom || 0;
|
||||
// #endif
|
||||
// #ifndef APP-PLUS
|
||||
safeAreaBottom = this.cssSafeAreaInsetBottom === -1 ? 0 : this.cssSafeAreaInsetBottom;
|
||||
// #endif
|
||||
return safeAreaBottom;
|
||||
},
|
||||
isOldWebView() {
|
||||
// #ifndef APP-NVUE
|
||||
try {
|
||||
const systemInfos = uni.getSystemInfoSync().system.split(' ');
|
||||
const deviceType = systemInfos[0];
|
||||
const version = parseInt(systemInfos[1].slice(0,1));
|
||||
if ((deviceType === 'iOS' && version <= 10) || (deviceType === 'Android' && version <= 6)) {
|
||||
return true;
|
||||
}
|
||||
} catch(e){
|
||||
return false;
|
||||
}
|
||||
// #endif
|
||||
return false;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
//通过获取css设置的底部安全区域占位view高度设置bottom距离
|
||||
_getCssSafeAreaInsetBottom(){
|
||||
const query = uni.createSelectorQuery().in(this);
|
||||
query.select('.zp-safe-area-inset-bottom').boundingClientRect(res => {
|
||||
if (res) {
|
||||
this.cssSafeAreaInsetBottom = res.height;
|
||||
}
|
||||
}).exec();
|
||||
},
|
||||
//获取slot="left"和slot="right"宽度并且更新布局
|
||||
_updateLeftAndRightWidth(){
|
||||
if (!this.isOldWebView) return;
|
||||
this.$nextTick(() => {
|
||||
let delayTime = 0;
|
||||
// #ifdef MP-BAIDU
|
||||
delayTime = 10;
|
||||
// #endif
|
||||
setTimeout(() => {
|
||||
const query = uni.createSelectorQuery().in(this);
|
||||
query.select('.zp-swiper-left').boundingClientRect(res => {
|
||||
this.swiperContentStyle['left'] = res ? res.width + 'px' : 0;
|
||||
}).exec();
|
||||
query.select('.zp-swiper-right').boundingClientRect(res => {
|
||||
this.swiperContentStyle['right'] = res ? res.width + 'px' : 0;
|
||||
}).exec();
|
||||
}, delayTime)
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.zp-swiper-container {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.zp-swiper-container-fixed {
|
||||
position: fixed;
|
||||
/* #ifndef APP-NVUE */
|
||||
height: auto;
|
||||
width: auto;
|
||||
/* #endif */
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.zp-safe-area-inset-bottom {
|
||||
position: absolute;
|
||||
/* #ifndef APP-PLUS */
|
||||
height: env(safe-area-inset-bottom);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-swiper-super {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.zp-swiper-left,.zp-swiper-right{
|
||||
/* #ifndef APP-NVUE */
|
||||
height: 100%;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-swiper {
|
||||
flex: 1;
|
||||
/* #ifndef APP-NVUE */
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-absoulte {
|
||||
/* #ifndef APP-NVUE */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: auto;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-right{
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.zp-swiper-item {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
@@ -1,152 +0,0 @@
|
||||
<!-- [z-paging]上拉加载更多view -->
|
||||
|
||||
<template>
|
||||
<view class="zp-l-container" :style="[zConfig.customStyle]" @click="doClick">
|
||||
<template v-if="!zConfig.hideContent">
|
||||
<text v-if="zConfig.showNoMoreLine&&finalStatus===2" :class="zConfig.defaultThemeStyle==='white'?'zp-l-line zp-l-line-white':'zp-l-line zp-l-line-black'"
|
||||
:style="[zConfig.noMoreLineCustomStyle]" />
|
||||
<!-- #ifndef APP-NVUE -->
|
||||
<image v-if="finalStatus===1&&zConfig.loadingIconCustomImage.length"
|
||||
:src="zConfig.loadingIconCustomImage" :style="[zConfig.iconCustomStyle]" :class="{'zp-l-line-loading-custom-image':true,'zp-l-line-loading-custom-image-animated':zConfig.loadingAnimated}" />
|
||||
<image v-if="finalStatus===1&&zConfig.loadingIconType==='flower'&&!zConfig.loadingIconCustomImage.length"
|
||||
class="zp-line-loading-image" :style="[zConfig.iconCustomStyle]" :src="zConfig.defaultThemeStyle==='white'?base64FlowerWhite:base64Flower" />
|
||||
<!-- #endif -->
|
||||
<!-- #ifdef APP-NVUE -->
|
||||
<view>
|
||||
<loading-indicator v-if="finalStatus===1&&zConfig.loadingIconType!=='circle'" class="zp-line-loading-image" :style="[{color:zConfig.defaultThemeStyle==='white'?'white':'#777777'}]" animating />
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
<text v-if="finalStatus===1&&zConfig.loadingIconType==='circle'&&!zConfig.loadingIconCustomImage.length"
|
||||
:class="zConfig.defaultThemeStyle==='white'?'zp-l-line-loading-view zp-l-line-loading-view-white':'zp-l-line-loading-view zp-l-line-loading-view-black'" :style="[zConfig.iconCustomStyle]" />
|
||||
<text :class="zConfig.defaultThemeStyle==='white'?'zp-l-text zp-l-text-white':'zp-l-text zp-l-text-black'" :style="[zConfig.titleCustomStyle]">{{ownLoadingMoreText}}</text>
|
||||
<text v-if="zConfig.showNoMoreLine&&finalStatus===2" :class="zConfig.defaultThemeStyle==='white'?'zp-l-line zp-l-line-white':'zp-l-line zp-l-line-black'" :style="[zConfig.noMoreLineCustomStyle]" />
|
||||
</template>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import zStatic from '../js/z-paging-static'
|
||||
export default {
|
||||
name: 'z-paging-load-more',
|
||||
data() {
|
||||
return {
|
||||
base64Arrow: zStatic.base64Arrow,
|
||||
base64Flower: zStatic.base64Flower,
|
||||
base64FlowerWhite: zStatic.base64FlowerWhite,
|
||||
};
|
||||
},
|
||||
props: ['zConfig'],
|
||||
computed: {
|
||||
ownLoadingMoreText() {
|
||||
return this.statusTextArr[this.finalStatus];
|
||||
},
|
||||
statusTextArr() {
|
||||
return [this.zConfig.defaultText,this.zConfig.loadingText,this.zConfig.noMoreText,this.zConfig.failText];
|
||||
},
|
||||
finalStatus() {
|
||||
if (this.zConfig.defaultAsLoading && this.zConfig.status === 0) return 1;
|
||||
return this.zConfig.status;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
doClick() {
|
||||
this.$emit('doClick');
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import "../css/z-paging-static.css";
|
||||
|
||||
.zp-l-container {
|
||||
height: 80rpx;
|
||||
font-size: 27rpx;
|
||||
/* #ifndef APP-NVUE */
|
||||
clear: both;
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.zp-l-line-loading-custom-image {
|
||||
color: #a4a4a4;
|
||||
margin-right: 8rpx;
|
||||
width: 28rpx;
|
||||
height: 28rpx;
|
||||
}
|
||||
|
||||
.zp-l-line-loading-custom-image-animated{
|
||||
/* #ifndef APP-NVUE */
|
||||
animation: loading-circle 1s linear infinite;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-l-line-loading-view {
|
||||
margin-right: 8rpx;
|
||||
width: 23rpx;
|
||||
height: 23rpx;
|
||||
border: 3rpx solid #dddddd;
|
||||
border-radius: 50%;
|
||||
/* #ifndef APP-NVUE */
|
||||
animation: loading-circle 1s linear infinite;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-l-line-loading-view-black {
|
||||
border-color: #c8c8c8;
|
||||
border-top-color: #444444;
|
||||
}
|
||||
|
||||
.zp-l-line-loading-view-white {
|
||||
border-color: #aaaaaa;
|
||||
border-top-color: #ffffff;
|
||||
}
|
||||
|
||||
.zp-l-text {
|
||||
/* #ifdef APP-NVUE */
|
||||
font-size: 30rpx;
|
||||
margin: 0rpx 10rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-l-text-black {
|
||||
color: #a4a4a4;
|
||||
}
|
||||
|
||||
.zp-l-text-white {
|
||||
color: #efefef;
|
||||
}
|
||||
|
||||
.zp-l-line {
|
||||
height: 1px;
|
||||
width: 100rpx;
|
||||
margin: 0rpx 10rpx;
|
||||
}
|
||||
|
||||
.zp-l-line-black {
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
|
||||
.zp-l-line-white {
|
||||
background-color: #efefef;
|
||||
}
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
@keyframes loading-circle {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
/* #endif */
|
||||
</style>
|
||||
@@ -1,273 +0,0 @@
|
||||
<!-- [z-paging]下拉刷新view -->
|
||||
|
||||
<template>
|
||||
<view style="height: 100%;">
|
||||
<view :class="showUpdateTime?'zp-r-container zp-r-container-padding':'zp-r-container'">
|
||||
<view class="zp-r-left">
|
||||
<image v-if="status!==2" :class="leftImageClass"
|
||||
:style="[{width: showUpdateTime?'36rpx':'30rpx',height: showUpdateTime?'36rpx':'30rpx','margin-right': showUpdateTime?'20rpx':'9rpx'},imgStyle]"
|
||||
:src="defaultThemeStyle==='white'?(status===3?base64SuccessWhite:base64ArrowWhite):(status===3?base64Success:base64Arrow)" />
|
||||
<!-- #ifndef APP-NVUE -->
|
||||
<image v-else class="zp-line-loading-image zp-r-left-image"
|
||||
:style="[{width: showUpdateTime?'36rpx':'30rpx',height: showUpdateTime?'36rpx':'30rpx','margin-right': showUpdateTime?'20rpx':'9rpx'},imgStyle]"
|
||||
:src="defaultThemeStyle==='white'?base64FlowerWhite:base64Flower" />
|
||||
<!-- #endif -->
|
||||
<!-- #ifdef APP-NVUE -->
|
||||
<view v-else :style="[{'margin-right':showUpdateTime?'18rpx':'12rpx'}]">
|
||||
<loading-indicator :class="systemInfo.platform==='ios'?'zp-loading-image-ios':'zp-loading-image-android'"
|
||||
:style="[{color:defaultThemeStyle==='white'?'white':'#777777'},imgStyle]" animating />
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
</view>
|
||||
<view class="zp-r-right">
|
||||
<text class="zp-r-right-text"
|
||||
:style="[rightTextStyle,titleStyle]">{{statusTextArr[status]||defaultText}}
|
||||
</text>
|
||||
<text v-if="showUpdateTime&&refresherTimeText.length" class="zp-r-right-text zp-r-right-time-text" :style="[rightTextStyle,updateTimeStyle]">{{refresherTimeText}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
const systemInfo = uni.getSystemInfoSync();
|
||||
import zStatic from '../js/z-paging-static'
|
||||
import u from '../js/z-paging-utils'
|
||||
export default {
|
||||
name: 'z-paging-refresh',
|
||||
data() {
|
||||
return {
|
||||
systemInfo: systemInfo,
|
||||
base64Arrow: zStatic.base64Arrow,
|
||||
base64ArrowWhite: zStatic.base64ArrowWhite,
|
||||
base64Flower: zStatic.base64Flower,
|
||||
base64FlowerWhite: zStatic.base64FlowerWhite,
|
||||
base64Success: zStatic.base64Success,
|
||||
base64SuccessWhite: zStatic.base64SuccessWhite,
|
||||
refresherTimeText: '',
|
||||
leftImageLoaded: false
|
||||
};
|
||||
},
|
||||
props: {
|
||||
'status': {
|
||||
default: 0
|
||||
},
|
||||
'defaultThemeStyle': {},
|
||||
'defaultText': '',
|
||||
'pullingText': '',
|
||||
'refreshingText': '',
|
||||
'completeText': '',
|
||||
'showUpdateTime': {
|
||||
default: false
|
||||
},
|
||||
'updateTimeKey': '',
|
||||
'imgStyle': {
|
||||
default: {}
|
||||
},
|
||||
'titleStyle': {
|
||||
default: {}
|
||||
},
|
||||
'updateTimeStyle': {
|
||||
default: {}
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
statusTextArr() {
|
||||
this.updateTime(this.updateTimeKey);
|
||||
return [this.defaultText,this.pullingText,this.refreshingText,this.completeText];
|
||||
},
|
||||
leftImageClass() {
|
||||
if(this.status === 3){
|
||||
return 'zp-r-left-image-no-transform .zp-r-left-image-pre-size';
|
||||
}
|
||||
let cls = 'zp-r-left-image ';
|
||||
if (this.status === 0) {
|
||||
if (this.leftImageLoaded) {
|
||||
cls += 'zp-r-arrow-down';
|
||||
} else {
|
||||
this.leftImageLoaded = true;
|
||||
cls += 'zp-r-arrow-down-no-duration';
|
||||
}
|
||||
} else {
|
||||
cls += 'zp-r-arrow-top';
|
||||
}
|
||||
return cls + ' zp-r-left-image-pre-size';
|
||||
},
|
||||
rightTextStyle() {
|
||||
let stl = {};
|
||||
let color = '#555555';
|
||||
if (this.defaultThemeStyle === 'white') {
|
||||
color = '#efefef';
|
||||
}
|
||||
// #ifdef APP-NVUE
|
||||
if (this.showUpdateTime) {
|
||||
stl = {
|
||||
'height': '40rpx',
|
||||
'line-height': '40rpx'
|
||||
};
|
||||
} else {
|
||||
stl = {
|
||||
'height': '80rpx',
|
||||
'line-height': '80rpx'
|
||||
};
|
||||
}
|
||||
// #endif
|
||||
stl['color'] = color;
|
||||
return stl;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
updateTime(updateTimeKey) {
|
||||
if (!updateTimeKey) {
|
||||
updateTimeKey = this.updateTimeKey;
|
||||
}
|
||||
if (this.showUpdateTime) {
|
||||
this.refresherTimeText = u.getRefesrherFormatTimeByKey(updateTimeKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import "../css/z-paging-static.css";
|
||||
|
||||
.zp-r-container {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
height: 100%;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.zp-r-container-padding {
|
||||
/* #ifdef APP-NVUE */
|
||||
padding: 15rpx 0rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-left {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
/* #ifdef MP-ALIPAY */
|
||||
margin-top: -4rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-left-image {
|
||||
/* #ifndef APP-NVUE */
|
||||
transform: rotate(180deg);
|
||||
margin-top: 2rpx;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transition-duration: .2s;
|
||||
transition-property: transform;
|
||||
color: #666666;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-left-image-no-transform {
|
||||
/* #ifndef APP-NVUE */
|
||||
margin-top: 2rpx;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transition-duration: .2s;
|
||||
transition-property: transform;
|
||||
color: #666666;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-left-image-pre-size{
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
overflow: hidden;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-arrow-top {
|
||||
/* #ifndef APP-NVUE */
|
||||
animation: refresher-arrow-top .2s linear;
|
||||
-webkit-animation: refresher-arrow-top .2s linear;
|
||||
animation-fill-mode: forwards;
|
||||
-webkit-animation-fill-mode: forwards;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: rotate(0deg);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-arrow-down {
|
||||
/* #ifndef APP-NVUE */
|
||||
animation: refresher-arrow-down .2s linear;
|
||||
-webkit-animation: refresher-arrow-down .2s linear;
|
||||
animation-fill-mode: forwards;
|
||||
-webkit-animation-fill-mode: forwards;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: rotate(180deg);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-arrow-down-no-duration {
|
||||
/* #ifndef APP-NVUE */
|
||||
animation: refresher-arrow-down 0s linear;
|
||||
-webkit-animation: refresher-arrow-down 0s linear;
|
||||
animation-fill-mode: forwards;
|
||||
-webkit-animation-fill-mode: forwards;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: rotate(180deg);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-right {
|
||||
font-size: 27rpx;
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.zp-r-right-text {
|
||||
/* #ifdef APP-NVUE */
|
||||
font-size: 28rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.zp-r-right-time-text {
|
||||
margin-top: 10rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
@keyframes refresher-arrow-top {
|
||||
0% {
|
||||
-webkit-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes refresher-arrow-down {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
/* #endif */
|
||||
</style>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user