Based on WeChat Classroom Reservation Mini Program Graduation Design Finished Works (10) News Information Functional Interface

Introduction to the blogger: 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 implement a classroom reservation system based on WeChat applets. Front-end users use applets, and background management uses PHP+MySql-based B/S architecture; through the background, classroom information is added, user information is managed, and management Appointment information; front-end users log in through the applet, view classroom information, and initiate an appointment.

Significance: The WeChat Mini Program Classroom Reservation System is the product of the combination of computer technology and classroom management. Through the WeChat Mini Program Classroom Reservation System, the efficient management of classroom use is realized. With the continuous improvement of computer technology, computers have penetrated into every corner of social life. On the premise that the staff have certain computer operation skills, this WeChat small program classroom reservation system software is specially compiled to improve classroom management efficiency.

image.png

Database Table

Information classification table: zixun_fenlei

field name

type

Remark

id

Int(11)

Auto-increment; the id (primary key) of the menu, empty is not allowed

caidan_mingcheng

varchar(50)

menu name, empty is allowed

paixu_id

int(11)

Sort the numbers, the bigger numbers come first, empty is allowed

Information sheet: zixun

field name

type

Remark

id

Int(11)

Auto-increment; the id (primary key) of the menu, empty is not allowed

xinxi_lxid1

int(11)

Foreign key: the id of the information level 1 type, refer to the id of the information type table

xinxi_biaoti

varchar(250)

information title

xinxi_riqi

date

message date

xinxi_neirong

text

content:

add_riqi

date

Write database date

add_shijian

datetime

write database time

daemon

ht/zixun

Information

caidan_1ji.php

Information classification management

zixun_add.php

Information entry page

zixun_add_act.php

Information entry database program

zixun_list.php

information list

zixun_xiugai.php

Information modification page

zixun_xiugai_act.php

Information modification procedure

zixun_del.php

Information Deletion Procedure

applet interface

information

wx_news_list_byid.php

Get information list

wx_news_info.php 

Get information Details

Get all information interface

address

1

http://localhost:500/wx_news_list_byid.php

Parameters: none

return data

1

2

3

4

5

6

7

8

9

    { "myid" : 31, "mybiaoti" : "教室预约使用说明", "myshijian" : "12-12", "yeshu" : 2 } ,

    { "myid" : 30, "mybiaoti" : "测试公告信息16", "myshijian" : "12-12", "yeshu" : 2 } , 

    { "myid" : 29, "mybiaoti" : "测试公告信息15", "myshijian" : "12-12", "yeshu" : 2 } , 

    { "myid" : 28, "mybiaoti" : "测试公告信息14", "myshijian" : "12-12", "yeshu" : 2 } , 

    { "myid" : 27, "mybiaoti" : "测试公告信息13", "myshijian" : "12-12", "yeshu" : 2 } , 

    ...............

    { "myid" : 16, "mybiaoti" : "测试公告信息02", "myshijian" : "12-12", "yeshu" : 2 } 

]

API for obtaining information details

address

1

http://localhost:500/wx_news_info.php

Parameter: cs_xxid The id of the specific information

interface sample

1

http://localhost:500/wx_news_info.php?cs_xxid=31

return data:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

    "biaoti":"教室预约使用说明", 

    "neirong":"

    用户首次登陆系统需要注册一个用户或直接使用微信作为账号,用户在登录平台后,可以进行平台的操作。主要模块包括以下几点:

    (1)登录功能:注册普通账号登录;也可以直接使用微信登录;登录后可以修改用户的基本信息,也可以退出。

    (2)资讯功能:后台录入资讯,在微信小程序电影院订票选座系统的资讯模板展示,用户可以任意浏览资讯列表和详细信息   

    (3)教室列表:点击预约,我们在顶部可以查询对外开放能预约的教室列表。

    (4)预约规则: 需要提前一天预约;也就是只能预约明天的。

    (5)发起预约:在预约列表;查看还能预约的教室,查找还能预约的哪节课,点击右侧的“预约”,跳转到预约页面。

    (6)填写预约:根据预约时间、教室、哪节;填写预约信息。

    (7)我的预约:已经发起预约,包含预约信息,状态

    (8)取消申请:在我的预约列表,如果后台管理员还没审核通过,可以点击“取消申请”发起取消操作,已经审核过的不能取消。

    (9)用户信息:填写姓名、qq、邮箱、备注等信息

    

}

Reference source: https://www.hzyaoyi.cn/pc_jiaocheng_tushu_index.php?/39/1483.html

Guess you like

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