
thinkphp6-cms multi-WeChat management system source code, the backend is based on Thinkph6 framework, and the front-end is based on X-admin 2.2 and layui2.5.x. It is a backend system that is "truly permanently free, commercially available, and can go to the front desk copyright]
System highlights:
Do not use the WeChat open platform to realize multiple Weixin Official Accounts management and Weixin Pay to corresponding corporate merchants
The framework is easy to expand functions, maintain code, and facilitate secondary development. It helps developers reduce secondary development costs simply and efficiently, and meets the needs of focused in-depth business development. The functions include rights authentication, attachment management, Weixin Official Accounts management, one-click CURD and other functions, simplifying the development process and is a background management system that helps developers improve development efficiency
Installation tutorial:
PHP version: php >= 7.1 Database: MySQL >= 5.6
Step 1: Download the source code archive and decompress it to your project root directory
Step 2: The public directory bound to the project is the run directory
Step 3: Modify the database configuration (in the source code root directory/config/database.php)
Step 4: Import the thinkphp6.sql file from the root directory into the database
Step 5: Backstage entrance http://Your domain name/admin default account password (Super Administrator: admin 123456)
Instructions for use:
1. All controllers in the background are inherited from app\\common\\controller\\AdminController.php;ps (CURD base class)
2. All models in the background inherit app\\common\\model\\Base.php;
3. Secondary development only needs to use background functions to create controllers and models to achieve basic CURD functions. If you need a validator, you can write a rule reference yourself; for all usage methods, refer to app\\admin\\\controller\\Ucenter\\User.php
CURD Description
add: Render the add page (if the front and back ends are separated, this method is not needed)
create: Add save
read: Edit the rendered page (if the front and back ends are separated, json data can be returned directly without rendering)
modify: edit and save
state: state modification; usage method is written in the comment
order: Sort method
del: Delete method
Comments0