search
HomeWeChat AppletMini Program DevelopmentWeChat applet editing business card page development

There are two paths for editing business cards, which are divided into the process of adding a business card and the process of modifying the business card.

The user manually fills in the process of adding a new business card:

微信小程序编辑名片页面开发 微信小程序编辑名片页面开发

First jump to our new business card page 1 and need to pass the user's Current userId, wx.navigateTo jumps with value. Manual is true to set the user to take the new route.

微信小程序编辑名片页面开发

Add business card page 1 The basic layout is as follows:

微信小程序编辑名片页面开发

Get the userId.

微信小程序编辑名片页面开发

It is also very easy to use the input component verification that comes with WeChat. For example, the maxLength attribute can limit the length of user input. For example, the length of my name is a maximum of 5 digits. I can directly The number 5 will do.

微信小程序编辑名片页面开发

You can also customize some verification effects. Specifically, you can perform some verification configurations according to your needs, get the values ​​entered by the user, and perform operations.

微信小程序编辑名片页面开发

The built-in modal box prompt component is bound here.

微信小程序编辑名片页面开发

where modalHidden2 is the modal box switch.

In addition proptText is the content that needs to be prompted.

Even many input boxes support dynamic changes in data, which is very convenient.

微信小程序编辑名片页面开发

The actual effect is very fast. It saves a lot of things than before. Writing small programs, I found that the biggest advantage may be that we don’t have to consider a series of compatibility issues.

微信小程序编辑名片页面开发

Finally, there is an avatar to upload pictures. After testing, there are still some problems uploading to the backend server. It should be caused by the incomplete beta version.

微信小程序编辑名片页面开发

The background image is set directly.

微信小程序编辑名片页面开发

Submit the form and jump.

To submit the form, you use the built-in bindsubmit event component. Just add formType="submit" to the button component. Another thing to note is that when using the form submission function, the input needs to add the name attribute. This The delivery method is in the form of key-value pairs.

微信小程序编辑名片页面开发

At this time, jump to edit page 2. This page identifies the matching company based on the mobile phone number filled in by the user. The page is very simple, just a data loop. The marquee may need to be beautified in the future.

微信小程序编辑名片页面开发

are also some data binding and verification effects.

微信小程序编辑名片页面开发

The actual rendering effect can be seen.

微信小程序编辑名片页面开发

The logic of this is basically the same as that of the first edit page. For some basic verification and submission, here we will just cover the first two steps. The same is true for edit page 3. , no more verbosity here.

Modify the business card process renderings and requirements. Modifying the business card is to render all the previously filled in personal information at once for the user to change:

微信小程序编辑名片页面开发

Business card In the picture module, there are still some problems uploading pictures. Here is a jump component imitated. It is recommended to use wx.navigateTo to control the page that needs to be jumped. wx.navigateTo provides us with 3 different jump routes. The encapsulation is very good, and many jump pages involve value passing and the like. It can achieve unified management and avoid some invisible bugs. In short, it should be determined according to business needs:

微信小程序编辑名片页面开发

Name and mobile phone required module:

微信小程序编辑名片页面开发

Personal information module, directly cycle (block) out:

微信小程序编辑名片页面开发 ## When

#Onload we request required and optional data:

  • requiredGroup required Chinese information

  • notRequiredGroup selected topic Chinese information

  • requiredGroupEn Required English information

  • notRequiredGroupEn English information for topic selection

  • //请求名片对应的公司的中文信息的属性组数据,分为必填和选填//选题项变量以no开头       
     requester.getOfflineCardInfoGroupFields(userId, cardId,
                function (res) {               
                //debugger
                    var userName = res.card.userName;
                    var mobile = res.card.mobile;
                    var requiredGroup = res.requiredGroupCh;
                    var notRequiredGroup = res.notRequiredGroupCh;
                    var requiredGroupEn = res.requiredGroupEn;
                    var notRequiredGroupEn = res.notRequiredGroupEn;
                    var reqLen = requiredGroup.fields.length;
                    var nreqLen = notRequiredGroup.fields.length;
                    var reqLenEn = requiredGroupEn.fields.length;
                    var nreqLenEn = notRequiredGroupEn.fields.length;              
                   self.setData({                    
                   userName: userName,                    
                   mobile: mobile,                    
                   requireFields: requiredGroup.fields,                    
                   notRequireFields: notRequiredGroup.fields,                    
                   requireFieldsEn: requiredGroupEn.fields,                    
                   notRequireFieldsEn: notRequiredGroupEn.fields,                    
                   l1: reqLen,                    
                   l2: nreqLen + reqLen,                    
                   l3: reqLenEn + nreqLen + reqLen
                    });
                    self.forceUpdate();
                }, function (code, msg) {
                    console.info("code=" + code + "&msg=" + msg);
                });
Chinese and English information required Fill in and optional rendering:

微信小程序编辑名片页面开发

The form submission data conversion here is a bit complicated (you can do it according to business needs, you don’t have to spend time studying the methods here), what is obtained is an array, Convert and pass it according to the data format required by the background.

微信小程序编辑名片页面开发

Today I will go back and figure out how to implement the fixed-point jump function of homepage A, B, and C.

微信小程序编辑名片页面开发

The first is the small index layout on the right and data binding. Data binding is the same as the letters on the business card folder list. If there is a business card under the letter, it will be rendered, if not, it will not. It needs to be rendered. The id is also the same as the current letter and the content displayed on the right:

微信小程序编辑名片页面开发

Data sort, the same as the group.name data:

微信小程序编辑名片页面开发

This is because # does not support setting it to id (that is, id="#"), so a conversion was performed.

微信小程序编辑名片页面开发

Click event: Get the current ID, and bind the data toView to the current ID.

微信小程序编辑名片页面开发

First of all, the business card list and the letter index on the business card are all in the scroll-view. This scroll-view must be set to a fixed height. Setting it to 100% and 100vh is invalid, y When the scroll switch of the axis is turned on, scroll-into-view needs to jump to the id of its child element.

微信小程序编辑名片页面开发

You can take a look:

微信小程序编辑名片页面开发

This group.name==sortmsg is equal to A==A,B ==B Same reason.

微信小程序编辑名片页面开发 微信小程序编辑名片页面开发

If there is a menu bar at the top, you have to pay attention to the layout, otherwise the height of the menu bar will be offset downwards. In fact, you This problem can be avoided as long as it is at the same level as the alphabetical index (the top menu here is separated from the template. When separating the template, you need to pay attention to it. Some data that needs to be bound to the template here will become invalid. I will not continue to study it in depth. ).

微信小程序编辑名片页面开发

The jump function is basically implemented (ohter is # bottom).

微信小程序编辑名片页面开发

Okay, today’s update is here. In the next article, we will talk about “WeChat mini program grouping function development and other small function improvements”.

For more WeChat applet editing business card page development and related articles, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
微信小程序架构原理基础详解微信小程序架构原理基础详解Oct 11, 2022 pm 02:13 PM

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于基础架构原理的相关内容,其中包括了宿主环境、执行环境、小程序整体架构、运行机制、更新机制、数据通信机制等等内容,下面一起来看一下,希望对大家有帮助。

微信小程序云服务配置详解微信小程序云服务配置详解May 27, 2022 am 11:53 AM

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于云服务的配置详解,包括了创建使用云开发项目、搭建云环境、测试云服务等等内容,下面一起来看一下,希望对大家有帮助。

微信小程序常用API(总结分享)微信小程序常用API(总结分享)Dec 01, 2022 pm 04:08 PM

本篇文章给大家带来了关于微信小程序的相关知识,其中主要总结了一些常用的API,下面一起来看一下,希望对大家有帮助。

浅析微信小程序中自定义组件的方法浅析微信小程序中自定义组件的方法Mar 25, 2022 am 11:33 AM

微信小程序中怎么自定义组件?下面本篇文章给大家介绍一下微信小程序中自定义组件的方法,希望对大家有所帮助!

微信小程序实战项目之富文本编辑器实现微信小程序实战项目之富文本编辑器实现Oct 08, 2022 pm 05:51 PM

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于富文本编辑器的实战示例,包括了创建发布页面、实现基本布局、实现编辑区操作栏的功能等内容,下面一起来看一下,希望对大家有帮助。

西安坐地铁用什么小程序西安坐地铁用什么小程序Nov 17, 2022 am 11:37 AM

西安坐地铁用的小程序为“乘车码”。使用方法:1、打开手机微信客户端,点击“发现”中的“小程序”;2、在搜索栏中输入“乘车码”进行搜索;3、直接定位城市西安,或者搜索西安,点击“西安地铁乘车码”选项的“去乘车”按钮;4、根据腾讯官方提示进行授权,开通“乘车码”业务即可利用该小程序提供的二维码来支付乘车了。

简单介绍:实现小程序授权登录功能简单介绍:实现小程序授权登录功能Nov 07, 2022 pm 05:32 PM

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了怎么实现小程序授权登录功能的相关内容,下面一起来看一下,希望对大家有帮助。

微信小程序开发工具介绍微信小程序开发工具介绍Oct 08, 2022 pm 04:47 PM

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于开发工具介绍的相关内容,包括了下载开发工具以及编辑器总结等内容,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.