作者 lihongjuan

修改

正在显示 100 个修改的文件 包含 64 行增加24 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

... ... @@ -8,4 +8,8 @@
left: 0;
right: 0;
z-index: 5;
}
.wxParse-p image{
display:block;
max-width:100%!important;
}
\ No newline at end of file
... ...
// pages/companyintro/companyintro.js
var WxParse = require('../../wxParse/wxParse.js');
const app = getApp();
Page({
... ... @@ -19,6 +20,8 @@ Page({
image: res.image,
content:res.content
})
WxParse.wxParse('article', 'html', res.content, t, 5);
})
},
/**
... ...
<import src="../../wxParse/wxParse.wxml" />
<view class="top">
<image src="/img/headimg.png"></image>
<view class="topimg">
... ... @@ -6,5 +8,6 @@
</view>
<view class="textbox">
<rich-text class="textboxword" nodes="{{content}}"></rich-text>
<template is="wxParse" data="{{wxParseData:article.nodes}}"/>
<!-- <rich-text class="textboxword" nodes="{{content}}"></rich-text> -->
</view>
\ No newline at end of file
... ...
... ... @@ -8,8 +8,8 @@ Page({
data: {
imgUrls: [],
indicatorDots: false,
autoplay: false,
interval: 2000,
autoplay: true,
interval: 3000,
duration: 1000,
currentSwiper: 0,
currentpage:1,
... ...
<view class="headimg">
<image src="/img/headimg.png"></image>
<!-- <image src="/img/headimg.png"></image> -->
<view class="logo">
<image src="/img/logo.png"></image>
... ... @@ -108,9 +108,9 @@
</view>
<view class="bottomimg">
<!-- <view class="bottomimg">
<image src="/img/bottom.png"></image>
</view>
</view> -->
<!-- 是否预约 -->
<!-- 弹窗 -->
<view class="register" wx:if="{{yuyuecancel}}">
... ...
page {
background: #ececec;
background: url('https://areial.w.broing.cn/uploads/20191120/20200307212228.png') no-repeat center;
background-size: 100% 100%;
position: relative
}
.headimg {
... ... @@ -102,7 +106,7 @@ image {
.headwhite {
width: 750rpx;
height: 228rpx;
background: #fff;
}
.swiperdot {
... ... @@ -121,20 +125,20 @@ image {
.topboxleft {
width: 412rpx;
height: 244rpx;
height: 295rpx;
font-size: 0;
position: relative
}
/* 服务介绍 */
.topboxright_t{
width:244rpx;
height:244rpx;
width:254rpx;
height:295rpx;
font-size:0;
position: relative
}
.topboxright{
width:214rpx;
height:214rpx;
height:241rpx;
font-size:0;
position: relative
}
... ...
... ... @@ -38,6 +38,7 @@ Page({
let url = "/api/index/experienceDetail";
app.post(url)
.then(res => {
console.log(res)
t.setData({
content: res.content
})
... ...
<view class="experiencetop">
<image src="/img/experience.png"></image>
<image src="{{item}}" mode="widthFix" wx:for="{{content}}" wx:key=""></image>
<view class="share">
<button open-type='share'></button>
<image class="shareimg" src="/img/share.png"></image>
</view>
<view class="servicetext">
<!-- <view class="servicetext">
<rich-text nodes="{{content}}"></rich-text>
</view>
</view> -->
</view>
<view class="servicebox">
<view class="servicebox">
<view class="serviceboxtext">预约免费清洁除螨服务</view>
<view class="servicelsit">
... ... @@ -59,5 +62,4 @@
<view class="queren" bindtap='submit' wx:if="{{isConfirm}}">确认</view>
<view class="queren" wx:else>已预约</view>
</view>
</view>
</view>
\ No newline at end of file
</view>
\ No newline at end of file
... ...
.experiencetop {
width: 750rpx;
height: 492rpx;
font-size: 0;
height: 100%;
}
image {
width: 100%;
height: 100%;
/* height: 100%; */
}
.share {
... ... @@ -49,9 +49,12 @@ image {
background: rgba(255, 255, 255, 1);
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
opacity: 1;
position: absolute;
margin:32rpx auto 35rpx;
box-sizing: border-box;
/* position: absolute;
bottom: 65rpx;
left: 32rpx;
left: 32rpx; */
}
.servicelsit {
... ... @@ -73,7 +76,14 @@ image {
height: 56rpx;
font-size: 0;
}
.servicelsitleft image{
width:100%;
height:100%;
}
.share image{
width:100%;
height:100%;
}
.servicelistright {
width: 389rpx;
color: #bdc4ce;
... ... @@ -102,6 +112,10 @@ image {
height: 15rpx;
font-size: 0;
}
.rightrow image{
width:100%;
height:100%;
}
.queren {
width: 516rpx;
... ...
// pages/serviceintro/serviceintro.js
var WxParse = require('../../wxParse/wxParse.js');
const app = getApp();
Page({
... ... @@ -27,6 +29,7 @@ Page({
image: res.image,
content: res.content
})
WxParse.wxParse('article', 'html', res.content, t, 5);
})
},
/**
... ...
<import src="../../wxParse/wxParse.wxml" />
<view class="top">
<image src="/img/headimg.png"></image>
<view class="topimg">
... ... @@ -6,5 +7,6 @@
</view>
<view class="textbox">
<rich-text class="textboxword" nodes="{{content}}"></rich-text>
<!-- <rich-text class="textboxword" nodes="{{content}}"></rich-text> -->
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
</view>
\ No newline at end of file
... ...
... ... @@ -32,4 +32,8 @@ image{
font-size: 0;
margin:32rpx auto 0;
}
.wxParse-div image{
display:block;
width:100%!important;
}
\ No newline at end of file
... ...