Based on the code description of the home page of the WeChat company's small program system graduation design work (10)

Blogger introduction: The author of "Vue.js Introduction and Mall Development" and "WeChat Mini Program Mall Development", CSDN blog expert, online education expert, CSDN diamond lecturer; focusing on graduation design education and counseling for college students.

All projects come with basic knowledge video courses from beginners to masters, free of charge

The project is equipped with corresponding development documents, opening reports, task books, PPT, paper templates, etc.

Contact information is available at the end of the article

Purpose: The main goal of this topic is to design and realize a company website system based on WeChat applets. Front-end users use applets, background management uses PHP-based development, and storage uses Mysql database; add company information, information, products, etc. through the background. Users log in through the applet to view company information, news, products, cases, etc.

01-Homepage.jpg

The core interface is as follows:

front page

wx_api_getbanner.php

Get the top carousel image array (multiple images)

wx_api_gsJianJie.php

Get company profile

wx_api_CpList_top4.php

Get the latest products 4

wx_api_AnLi_top4.php

Get latest case 4

wx_api_News_top3.php

Get the latest information 3 items

carousel interface

Interface address: http://localhost:500/wx_api_getbanner.php

1

2

3

4

5

[

"http://localhost:913/up/tupian/202304270845420000005725.jpg",

"http://localhost:913/up/tupian/201911181502430000005097.jpg",

"http://localhost:913/up/tupian/201911181502460000001220.jpg"

]

Get company profile interface

Interface address: http://localhost:500/wx_api_gsJianJie.php

1

中国的公司是指依照《中华人民共和国公司法》在中国境内设立的以营利为目的社团法人,包括有限责任公司和股份有限公司。后台设置

Get the latest product interface

Interface address: http://localhost:500/wx_api_CpList_top4.php

1

2

3

4

5

6

{ "id" : 61, "title" : "111111111", "shijian" : "2023-05-08", "shuoming" : "", "img" : "http://localhost:913/up/tupian/202305081016380000009006.jpg" } ,

{ "id" : 45, "title" : "测试产品19", "shijian" : "2023-12-12", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271027100000002810.jpg" } , 

{ "id" : 44, "title" : "测试产品18", "shijian" : "2023-12-12", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271026510000001145.jpg" } , 

{ "id" : 43, "title" : "测试产品17", "shijian" : "2023-12-12", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271026300000005568.jpg" } 

]

Get the latest case interface

Interface address: http://localhost:500/wx_api_AnLi_top4.php

1

2

3

4

5

6

 { "id" : 25, "title" : "案例产品4", "shijian" : "2023-04-27", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271025380000004068.jpg" } , 

 { "id" : 24, "title" : "案例产品3", "shijian" : "2023-04-27", "shuoming" : "产品分类2", "img" : "http://localhost:913/up/tupian/201909271026010000005206.jpg" } , 

 { "id" : 23, "title" : "案例产品2", "shijian" : "2023-04-27", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271026300000005568.jpg" } ,

 { "id" : 22, "title" : "案例产品1", "shijian" : "2023-04-27", "shuoming" : "产品分类1", "img" : "http://localhost:913/up/tupian/201909271026510000001145.jpg" } 

]

Get the latest information interface

Interface address: http://localhost:500/wx_api_News_top3.php 

1

2

3

4

5

{ "id" : 31, "xinxi_riqi" : "2023-12-23", "xinxi_biaoti" : "1111111111" } , 

{ "id" : 28, "xinxi_riqi" : "2023-12-12", "xinxi_biaoti" : "公司测试最新资讯" } , 

{ "id" : 27, "xinxi_riqi" : "2023-12-12", "xinxi_biaoti" : "公司小程序测试资讯" } 

]

Reference source: https://www.hzyaoyi.cn/pc_jiaocheng_tushu_index.php?/37/1438.html

Guess you like

Origin blog.csdn.net/u013818205/article/details/132647232