Tencent low-code platform actual combat experience

Low code platform introduction

The low-code platform, as a relatively hot technology field recently, allows programmers to write very little code to complete application preparation. The platform provides you with predefined components, and completes application development by modifying the attributes and styles of the components. The low-code platform can realize the rapid construction of small programs, H5, and web applications. I think it is especially suitable for individual developers. Backed by technologically advanced cloud vendors, they can quickly realize their product ideas and provide customers with a good experience. The future is here, hurry up and join the creation of low-code platforms.

Actual content introduction

The actual content of this battle is an online appointment mini program that the author made last year by writing code. The mini program is divided into homepage, master remittance, and quick appointment functions. The homepage mainly introduces the purpose of platform establishment and the method of transaction. Browse teacher information by course category. For teachers who are interested, you can submit an appointment application in the quick appointment function. After receiving the application, the platform operator will actively contact the parents.

Home page building

Open low-code platform: low-code platform
Create your own application after logging in. If it is the first time to create a pay-as-you-go environment, you can directly select the created environment in the future.
Insert picture description here
By default, a home page will be created.
Insert picture description here
Just drag and drop the control. This time I re-implemented the home page of my applet. The overall function of the home page is to introduce the platform. It is divided into several parts: overview, teacher qualifications, operating mechanism, tuition standards and contacts, so I chose The scrollview component is used as the outer container, because if the page content is too long, it can slide down to browse, and then drag the title and text components to the scrollview component in turn. The title component is similar to the h1~h6 tags in html, text It is equivalent to the p tag, and it is OK to put the content in it in turn. In addition to the page, I also dragged a TabBar component as the navigation of the page.
After the page is built, it can be published. Click the preview release button at the top, and we choose to build in the cloud.
Insert picture description here
After the construction is completed, scan the QR code and you can browse it on the phone.
Insert picture description here
The effect after the preview is
Insert picture description here
simple drag and drop to complete the page development. Isn't it a bit bullish?

Guess you like

Origin blog.csdn.net/u012877217/article/details/112659001