1.diy---图片魔方

This commit is contained in:
sws
2024-09-18 16:36:49 +08:00
parent 3a20339270
commit 4e5991030f
2 changed files with 5 additions and 2 deletions

View File

@ -52,11 +52,13 @@
},
// 图片加载完成 获取宽高
on_load_img(e) {
console.log('123');
const query = uni.createSelectorQuery();
// 选择我们想要的元素
query
.select('.container')
.boundingClientRect((res) => {
console.log('1:' + res);
if ((res || null) != null) {
// data包含元素的宽度、高度等信息
this.setData({
@ -70,6 +72,7 @@
query
.select('.hot')
.boundingClientRect((res) => {
console.log('2:' + res);
if ((res || null) != null) {
// data包含元素的宽度、高度等信息
this.setData({

View File

@ -38,7 +38,7 @@
<template v-else>
<view :style="title_style" class="padding-horizontal-sm border-radius-sm">{{ form.content.title || '公告' }}</view>
</template>
<view v-if="form.content.is_right_button == '1'" class="text-size-xs flex-row" :style="`color: ${form.style.button_color || '#999'}`" :data-value="form.content.more_link.page" @tap="url_event">
<view v-if="form.content.is_right_button == '1'" class="text-size-xs flex-row" :style="'color: ' + form.style.button_color" :data-value="form.content.more_link.page" @tap="url_event">
更多
<view class="pr top-xs">
<iconfont name="icon-arrow-right" :color="form.style.button_color || '#999'"></iconfont>
@ -47,7 +47,7 @@
</view>
<view v-for="(item, index) in notice_list" :key="index" class="flex-row" :style="content_title_style" :data-value="item.notice_link.page" @tap="url_event">
<view class="num" :class="'one' + (index + 1)">{{ index + 1 }}</view>
<view class="break" :style="`color: ${form.style.news_color}`">{{ item.notice_title }}</view>
<view class="break" :style="'color:' + form.style.news_color">{{ item.notice_title }}</view>
</view>
</view>
</template>