wepy - 与原生有什么不同(x.wpy)使用实例

 

 

源码

  1 <template>
  2   <view class='mark' wx:if="{{showMark}}">
  3     <view animation="{{animationData}}" class="animCat">
  4       <image src="http://osk1hpe2y.bkt.clouddn.com/18-5-30/34559443.jpg"></image>
  5     </view>
  6     <button open-type="getUserInfo" lang="zh_CN" @getuserinfo="onGotUserInfo" class="css-button">开始吧!</button>
  7   </view>
  8   <!-- test-tab -->
  9   <view>
 10     <scroll-view scroll-x="true" class="tab-h" scroll-left="{{scrollLeft}}">
 11       <view class="tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="swichNav">快递</view>
 12       <view class="tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="swichNav">身份证</view>
 13       <view class="tab-item {{currentTab==2?'active':''}}" data-current="2" bindtap="swichNav">银行卡号</view>
 14       <view class="tab-item {{currentTab==3?'active':''}}" data-current="3" bindtap="swichNav">手机号码</view>
 15       <view class="tab-item {{currentTab==4?'active':''}}" data-current="4" bindtap="swichNav">身材计算</view>
 16     </scroll-view>
 17     <swiper class="tab-content" current="{{currentTab}}" duration="300" bindchange="switchTab" style="height:{{winHeight}}rpx">
 18       <!-- 快递查询 -->
 19       <swiper-item wx:for="{{[0,1,2,3,4]}}" wx:key="*this">
 20         <scroll-view scroll-y="true" class="scoll-h" wx:if="{{index==0}}">
 21           <ForexpressItem :history.sync='history'></ForexpressItem>
 22         </scroll-view>
 23         <scroll-view scroll-y="true" class="scoll-h" wx:elif="{{index==1}}">
 24           <PeoPleCard></PeoPleCard>
 25         </scroll-view>
 26         <scroll-view scroll-y="true" class="scoll-h" wx:elif="{{index==2}}">
 27           <IdCard></IdCard>
 28         </scroll-view>
 29         <scroll-view scroll-y="true" class="scoll-h" wx:elif="{{index==3}}">
 30           <MobileHome></MobileHome>
 31         </scroll-view>
 32         <scroll-view scroll-y="true" class="scoll-h" wx:elif="{{index==4}}">
 33           <Figure></Figure>
 34         </scroll-view>
 35       </swiper-item>
 36     </swiper>
 37   </view>
 38 </template>
 39 
 40 <script>
 41   import wepy from 'wepy';
 42   import ForexpressItem from '@/components/express/index';
 43   import IdCard from '@/components/querys/idCard';
 44   import Figure from '@/components/querys/figure';
 45   import MobileHome from '@/components/querys/mobileHome';
 46   import PeoPleCard from '@/components/querys/peoPleCard';
 47   import {
 48     formatTime
 49   } from '@/utils/util';
 50   export default class Forexpress extends wepy.page {
 51     config = {
 52       navigationBarTitleText: '快递查询'
 53     };
 54     components = {
 55       ForexpressItem,
 56       IdCard,
 57       Figure,
 58       MobileHome,
 59       PeoPleCard
 60     };
 61     data = {
 62       showMark: false,
 63       winHeight: '', //窗口高度
 64       currentTab: 0, //预设当前项的值
 65       scrollLeft: 0, //tab标题的滚动条位置,
 66       searchArr: ['快递', '身份证', '银行卡号', '手机号码', '身材'],
 67       history: []
 68     };
 69     methods = {
 70       switchTab: function(e) {
 71         let title = `${this.searchArr[e.detail.current]}查询`;
 72         wx.setNavigationBarTitle({
 73           title: title
 74         });
 75         this.currentTab = e.detail.current;
 76         this.$apply();
 77         this.methods.checkCor.call(this);
 78       },
 79       // 点击标题切换当前页时改变样式
 80       swichNav: function(e) {
 81         let title = `${this.searchArr[e.detail.current]}查询`;
 82         wx.setNavigationBarTitle({
 83           title: title
 84         });
 85         var cur = e.target.dataset.current;
 86         if (this.data.currentTaB == cur) {
 87           return false;
 88         } else {
 89           this.currentTab = cur;
 90         }
 91       },
 92       //判断当前滚动超过一屏时,设置tab标题滚动条。
 93       checkCor: function() {
 94         if (this.data.currentTab > 3) {
 95           this.scrollLeft = 300;
 96         } else {
 97           this.scrollLeft = 0;
 98         }
 99       },
100       onShareAppMessage() {
101         return {
102           title: '武侯的猫-打造最简小工具',
103           path: 'pages/forexpress',
104           success(res) {
105             console.log(res);
106           },
107           fail(res) {
108             console.log(res);
109           }
110         };
111       },
112       onGotUserInfo(e) {
113         if (e.detail.userInfo) {
114           this.showMark = false;
115           wx.setStorage({
116             key: 'user',
117             data: e.detail.userInfo
118           });
119         }
120       }
121     };
122     onLoad() {
123       let that = this;
124       //动画
125       var animation = wx.createAnimation({
126         duration: 1200,
127         timingFunction: 'linear'
128       });
129       this.animation = animation;
130       // animation.scale(2, 2).rotate(45).step()
131       this.setData({
132         animationData: animation.export()
133       });
134       try {
135         var res = wx.getSystemInfoSync();
136         //start
137         var clientHeight = res.windowHeight,
138           clientWidth = res.windowWidth,
139           rpxR = 750 / clientWidth;
140         var calc = (clientHeight - (1 / rpxR) * 80) * rpxR;
141         console.log(calc);
142         this.winHeight = calc;
143         //end
144       } catch (e) {
145         console.log('获取设备信息失败' + e);
146       }
147     }
148     onShow() {
149       let self = this;
150       try {
151         var res = wx.getStorageSync('user');
152         console.log(res);
153         if (res) this.showMark = false;
154         if (!res) this.showMark = true;
155         self.$apply();
156       } catch (e) {
157         this.showMark = true;
158       }
159       //快递历史
160       this.history = wx.getStorageSync('saveList');
161       this.$apply();
162     }
163   }
164 </script>
165 
166 <style lang="less" scoped>
167   .save {
168     position: fixed;
169     top: 20rpx;
170     left: 20rpx;
171     border: 2rpx solid #43cd80;
172     border-radius: 8rpx;
173     font-size: 26rpx;
174     text-align: center;
175     line-height: 30rpx;
176     padding: 8rpx;
177     background-color: #43cd80;
178     z-index: 9999;
179     color: #fff;
180     box-shadow: 2rpx 2rpx 1rpx 0 grey;
181   }
182   .animCat {
183     height: 50px;
184     width: 50px;
185     image {
186       height: 50px;
187       width: 50px;
188     }
189   }
190   .css-button {
191     width: 150px;
192     margin: 50% auto;
193     background: #138cff;
194     color: #fff;
195   }
196   .scan-code {
197     margin-right: 20rpx;
198     width: 80rpx;
199     height: 80rpx;
200     text-align: center;
201     line-height: 55rpx;
202     color: #138cff;
203     font-size: 24px;
204   }
205   .iconfont {
206     color: #4cc0e9;
207   }
208   page {
209     background-color: #fff; //background-image: linear-gradient(#7FC06E, #fff, #fff);
210   }
211   .express-img-wrap {
212     height: 200rpx; //   background-image: linear-gradient(#138cff, #fff);
213   }
214   .express-img {
215     width: 100%; //   height: 200rpx;
216     position: absolute;
217     top: 10%;
218     left: 50%;
219     transform: translateX(-50%);
220   }
221   .express-input-wrap {
222     position: relative;
223     display: flex;
224     align-items: center;
225     justify-content: center; //margin-top: 210rpx;
226     //background-image: linear-gradient(#7FC06E, #fff);
227     height: 100rpx; //border-bottom: 4rpx solid #7FC06E;
228     .express-input {
229       width: 60%;
230       height: 80rpx;
231       line-height: 80rpx;
232       font-size: 35rpx;
233       padding: 0 40rpx; //padding-left: rpx;
234       border: 3rpx solid #4cc0e9;
235       border-radius: 10rpx;
236       color: #666;
237     }
238   }
239   .express-input-wrap::before {
240     transform: translatex(40rpx); //line-height: 60rpx;
241     color: #999;
242   }
243   .express-input-wrap .icon-saoma {
244     height: 80rpx;
245     position: relative;
246     font-size: 80rpx;
247     line-height: 80rpx;
248     margin-left: 10rpx;
249   }
250   .del {
251     animation: dl 1s forwards; //margin: 0;
252   }
253   @keyframes dl {
254     0% {
255       transform: translate(0, 0);
256     }
257     10% {
258       transform: translate(-100rpx, 0);
259     }
260     100% {
261       transform: translate(1000rpx, -50rpx);
262       opacity: 0;
263     }
264   }
265   .history {
266     padding: 20rpx 10rpx;
267     box-sizing: border-box; //background-color: #f00;
268     //width: 100%;
269     height: auto;
270     margin: 0rpx 10rpx;
271     margin-bottom: 20rpx;
272     overflow: hidden;
273     position: relative;
274     display: flex;
275     align-items: center;
276     border: 1rpx solid #138cff;
277     border-radius: 20rpx;
278     box-shadow: 4rpx -2rpx 4rpx #ccc;
279     background: rgba(255, 255, 255, 0.8);
280     .info-wrap {
281       display: flex;
282       width: 180rpx;
283       flex-direction: column;
284       text-align: left;
285       margin-right: 8rpx;
286       .company {
287         font-size: 30rpx;
288       }
289       .number {
290         font-size: 24rpx;
291       }
292     }
293     .last-info-wrap {
294       font-size: 24rpx;
295       color: #666;
296     }
297     .phone {
298       font-size: 40rpx; //transform: translateY(-10rpx);
299     }
300     .delete {
301       width: 40rpx;
302       height: 40rpx;
303       position: absolute;
304       top: 5rpx;
305       right: 20rpx;
306       border: 1rpx solid #ccc;
307       border-radius: 10rpx;
308       padding: 5rpx 5rpx 5rpx 12rpx;
309       background: #63b8ff;
310       color: #cd5555;
311       font-size: 16px;
312     }
313   }
314   .time {
315     padding: 8rpx 0 0;
316   }
317   .mark {
318     width: 100%;
319     height: 100%;
320     position: fixed;
321     background: rgba(0, 0, 0, 0.8);
322     top: 0;
323     z-index: 100;
324     overflow: hidden;
325   }
326   // .container .icon-sousuo-copy {
327   //   color: #138cff;
328   // }
329   //test-tab start
330   .tab-h {
331     height: 80rpx;
332     width: 100%;
333     box-sizing: border-box;
334     overflow: hidden;
335     line-height: 80rpx;
336     background: #f7f7f7;
337     font-size: 16px;
338     white-space: nowrap;
339     position: fixed;
340     top: 0;
341     left: 0;
342     z-index: 99;
343   }
344   .tab-item {
345     margin: 0 36rpx;
346     display: inline-block;
347   }
348   .tab-item.active {
349     color: #4675f9;
350     position: relative;
351   }
352   .tab-item.active:after {
353     content: '';
354     display: block;
355     height: 8rpx;
356     width: 100%;
357     background: #4675f9;
358     position: absolute;
359     bottom: 0;
360     left: 5rpx;
361     border-radius: 16rpx;
362   }
363   .item-ans {
364     width: 100%;
365     display: flex;
366     flex-grow: row no-wrap;
367     justify-content: space-between;
368     padding: 30rpx;
369     box-sizing: border-box;
370     height: 180rpx;
371     align-items: center;
372     border-bottom: 1px solid #f2f2f2;
373   }
374   .avatar {
375     width: 100rpx;
376     height: 100rpx;
377     position: relative;
378     padding-right: 30rpx;
379   }
380   .avatar .img {
381     width: 100%;
382     height: 100%;
383   }
384   .avatar .doyen {
385     width: 40rpx;
386     height: 40rpx;
387     position: absolute;
388     bottom: -2px;
389     right: 20rpx;
390   }
391   .expertInfo {
392     font-size: 12px;
393     flex-grow: 2;
394     color: #b0b0b0;
395     line-height: 1.5em;
396   }
397   .expertInfo .name {
398     font-size: 16px;
399     color: #000;
400     margin-bottom: 6px;
401   }
402   .askBtn {
403     width: 120rpx;
404     height: 60rpx;
405     line-height: 60rpx;
406     text-align: center;
407     font-size: 14px;
408     border-radius: 60rpx;
409     border: 1px solid #4675f9;
410     color: #4675f9;
411   }
412   .tab-content {
413     margin-top: 80rpx;
414   }
415   .scoll-h {
416     height: 100%;
417   }
418 </style>
View Code

 

页面模板

<style>
</style><template><view>监听值:{{num}}</view>
</template><script>
import wepy from 'wepy';let _page,_this;export default class ep extends wepy.page {data = {num: 1};// 新的,引入了例如监听watch,还有组件通讯等新概念...watch = {num(newValue, oldValue) {console.log(`num value: ${oldValue} -> ${newValue}`);}};onLoad() {console.log('页面加载');}onShow(){console.log('页面显示!');}onHide(){console.log('页面隐藏');}onUnload(){console.log('页面卸载');}
}
</script>

 

 

引入了组件化导入(相比小程序原生来说,强大很多) -> 源码在上,演示如下

 

 

 

 

转载于:https://www.cnblogs.com/cisum/p/9880068.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/249109.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CSS实现div梯形分割

原理 使用的border边框属性结合svg 转换 详见代码 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>css实现div边框斜角</title><style type"text/css"> .labels {display: i…

算法学习——决策单调性优化DP

update in 2019.1.21 优化了一下文中年代久远的代码 的格式…… 什么是决策单调性&#xff1f; 在满足决策单调性的情况下&#xff0c;通常决策点会形如1111112222224444445555588888..... 即不可能会出现后面点的决策点小于前面点的决策点这种情况。 那么这个性质应该如何使用…

SVG画一个箭头

参考菜鸟手册&#xff1a; https://www.runoob.com/svg/svg-tutorial.html 打开菜鸟中的在线工具 在可视化截图拖拉元素绘制箭头 点击command U 查看源码 将源码拷入html代码中&#xff0c;查看效果 最后&#xff0c;贴出源码供大家参考 <!DOCTYPE html> <…

数字签名与HTTPS详解

因为HTTP协议本身存在着明文传输、不能很好的验证通信方的身份和无法验证报文的完整性等一些安全方面的确点&#xff0c;所以才有了HTTPS的缺陷。HTTPS确切的的说不是一种协议&#xff0c;而是HTTP SSL (TSL)的结合体。HTTP报文经过SSL层加密后交付给TCP层进行传输。SSL(安全套…

WPF效果(GIS三维续篇)

去年这个时候简单的摸索了一下三维的GIS相关的东西,也就是仅仅玩耍了一把,这次来点真正用的上的干货效果效果&#xff1a; 1、加载自定义百度样式的瓦片效果 2、加载自定义百度样式的缩放效果 3、快速手动进去咱的大帝都 4、加载海量Mark效果 5、加载海量Mark和简单模型效果 6、…

[19/04/23-星期二] GOF23_创建型模式(工厂模式、抽象工厂模式)

一、工厂模式(分为&#xff1a;简单工厂模式、工厂方法模式、抽象工厂模式) 实现了创建者和调用者的分离 核心本质&#xff1a;1、实例化对象&#xff0c;用工厂方法代替new操作&#xff1b;2、将选择实现类、创建对象统一管理和控制&#xff0c;从而将调用者跟实现类解耦。 简…

Chrome浏览器12px问题-webkit-text-size-adjust: none 已失效的解决方案

对于早期的chrome, 如果要想显示12px以下的字体&#xff0c;一般通用的方案都是在对应的元素中添加 div {-webkit-text-size-adjust: none; }但是我今天遇到的需求&#xff0c;添加了之后没有反应&#xff0c;而且浏览就根本不支持这种写法。 在网上看到了博客《Chrome浏览器…

深入理解vue中的slot与slot-scope

写在前面 vue中关于插槽的文档说明很短&#xff0c;语言又写的很凝练&#xff0c;再加上其和methods&#xff0c;data&#xff0c;computed等常用选项在使用频率、使用先后上的差别&#xff0c;这就有可能造成初次接触插槽的开发者容易产生“算了吧&#xff0c;回头再学&#…

关于Java抽象类,接口与实现接口及派生类继承基类

1. 抽象类 抽象类就是有一个或多个方法只被声明而未被实现。 抽象方法的声明以分号结束&#xff0c;并且用关键字abstract来说明它以标识它为抽象方法。 格式&#xff1a; public abstract class 类名{ 定义变量// 抽象方法// } 2. 接口是抽象类的一种&#xff0c;之包含常量…

Luogu P1471 方差

题目传送门 开了十倍空间才过是什么鬼&#xff1f;该不会我线段树炸了吧……细思极恐 平均数都会求&#xff0c;维护区间和&#xff0c;到时候除一下就好了。 方差的求法如下(用的Luogu的图片) 因为要维护一个平方&#xff0c;我们可以考虑使用van♂完全平方公式将它拆开&#…

Android SDK 2.3/3.0/4.0/4.2 下载与安装教程

Eclipse下搭建Android开发环境教程&#xff1a;http://dev.son1c.com/show/1253.html Google已经发布了Android SDK 4.2版本.下面给朋友们介绍一下安装 Android 模拟器 Emulator模拟器的方法: 1、首先确定安装了Java JDK&#xff0c;如果没有&#xff0c;可以去http://www.ora…

浏览器渲染原理与过程

一、浏览器如何渲染网页 要了解浏览器渲染页面的过程&#xff0c;首先得知道一个名词——关键路径渲染。关键渲染路径&#xff08;Critical Rendering Path&#xff09;是指与当前用户操作有关的内容。例如用户在浏览器中打开一个页面&#xff0c;其中页面所显示的东西就是当前…

深入理解CSS盒模型 - 程序猿的程 - 博客园

深入理解CSS盒模型 本文是学习中传思客在慕课网开的课程《前端跳槽面试必备技巧》的学习笔记。课程地址&#xff1a;https://coding.imooc.com/class/evaluation/129.html#Anchor。 如果你在面试的时候面试官让你谈谈对盒模型的理解&#xff0c;你是不是不知从何谈起。这种看似…

线程死锁问题

1 package com.demo.bingfa;2 3 /**4 * java并发编程中&#xff0c;死锁的概念5 *6 * 我们启用了两个线程&#xff0c;分别抢占2个资源&#xff0c;但这两个资源又分别被不同的对象&#xff08;字符串&#xff09;锁住了。7 * 当第一个线程调用 resource1 方法&#xff0c;…

使用PM2搭建在线vue.js开发环境(以守护进程方式热启动)

项目以vue.jslayUI的作为前端开发技术栈&#xff0c;需要有一个在线的环境供项目成员实时查看效果&#xff0c;总不能每次都webpack打包发布后才能看到效果吧&#xff01;刚开始就简单使用npm run dev命令热启动&#xff0c;但是shell命令窗口退出后&#xff0c;热启动也就失效…

zabbix实现mysql数据库的监控

先来介绍zabbix中几个常用的术语&#xff1a; 主机&#xff08;host&#xff09;&#xff1a; 要监控的网络设备&#xff0c;可由ip或DNS名称指定。 主机组&#xff08;host group&#xff09;&#xff1a; 主机的逻辑容器&#xff0c;可以包含主机和模板&#xff…

VSCode配合eslint进行JavaScript质量检查

写在开始前&#xff1a;如有不准确的地方希望大家提出&#xff0c;文章可以改知识不能错。 创建一个项目 这里已node项目为例 npm init 根据提示填写相关信息 安装eslint npm install eslint --save也可以全局安装 npm install eslint -g初始化 eslint文件 eslint --init执行命…

未找到导入的项目,请确认 Import 声明中的路径正确

VS2017打开以前vs版本开发的项目 <Import Project"$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project"$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v12.0\WebApplications\Microsoft.WebApplication.targets" /> 修改V12…

bzoj [Usaco2009 Hol]Cattle Bruisers 杀手游戏

Description Input 第1行输入N&#xff0c;R&#xff0c;BX&#xff0c;BY, BVX&#xff0c;BVY&#xff0c;之后N行每行输入四个整数Xi&#xff0c;Yi&#xff0c;VXi&#xff0c;VYi&#xff0e; Output 一个整数&#xff0c;表示在逃脱过程中&#xff0c;某一个时刻最多有这…

Visual Studio Code 使用 ESLint 增强代码风格检查 - gyzhao - 博客园

前言 在团队协作开发中&#xff0c;为了统一代码风格&#xff0c;避免一些低级错误&#xff0c;应该设有团队成员统一遵守的编码规范。很多语言都提供了Lint工具来实现这样的功能&#xff0c;JavaScript也有类似的工具&#xff1a;ESLint。除了可以集成到构建工具中(如&#x…