Based on WeChat e-book novel reading applet graduation design finished works (10) News information function 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 project is to design and implement an online e-book reading system based on WeChat applets. Front-end users use applets, and background management uses PHP+MySql-based B/S architecture; enter e-book information and book catalogs through the background Information, the user logs in through the applet, checks the book list, checks the book information, checks the book catalog, and reads.

Significance: The WeChat mini-program online e-book reading system is the product of the combination of computer technology and books. The WeChat mini-program online e-book reading system realizes the efficient management of e-books. With the continuous improvement of computer technology, computers have penetrated into every corner of social life.

involving database

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

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

background management file

ht/zixun

Information

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

API for obtaining information list

interface program

1

wx_news_list_byid.php

Parameters: none

interface sample

1

http://localhost:500/wx_news_list_byid.php

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

25

26

27

[     

    {

        "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" : 18,

        "mybiaoti" : "测试公告信息04",

        "myshijian" : "12-12",

        "yeshu" : 2    }

]

API for obtaining information details

interface program

parameter

1

cs_xxid:资讯id

interface sample

1

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

return data

1

2

3

4

{

    "biaoti":"微信小程序在线电子书阅读系统",

    "neirong":"<p>用户首次登陆系统需要注册一个用户或直接使用微信作为账号,用户在登录平台后,可以进行平台的操作。主要模块包括以下几点:</p><p>(1)登录功能:注册普通账号登录;也可以直接使用微信登录;登录后可以修改用户的基本信息,也可以退出。</p><p>(2)资讯功能:后台录入资讯,在微信小程序在线电子书阅读系统的资讯模板展示,用户可以任意浏览资讯列表和详细信息&nbsp; &nbsp;</p><p>(3)图书列表:后台录入图书的相关信息,点击主菜单“图书”可以查看所有图书。</p><p>(4)图书分类:为了管理图书,在后台设置了图书的相关的分类;在后台录入图书信息的时候会选择属于哪个分类;在前台小程序可以通过点击“分类”来筛选所需要的图书。</p><p>(5)图书查询:在首页或者图书列表的顶部,可以输入要查询的图书关键字,然后点击“查询”按钮,查询所要查找的图书名称。</p><p>(6)图书信息: 点击到图书详情页面,可以查看图书的介绍,图书的详细章节目录。</p><p>(7)收藏操作:在图书信息详情,下方点击“收藏”,进行收藏</p><p>(8)图书阅读:点击你要阅读的章节右侧的“阅读”,进入详细阅读。在顶部可以点击“阅读上一节”,在顶部可以点击“阅读下一节”</p><p>(9)我的收藏:收藏的电子书列表</p><p>(10)用户信息:填写姓名、qq、邮箱、备注等信息</p>"

}

Reference source: https://www.hzyaoyi.cn/pc_jiaocheng_tushu_index.php?/40/1506.html

Guess you like

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