结算系统代码

TonyY 1893043c77 first commit 3 年 前
.vscode 1893043c77 first commit 3 年 前
backend 1893043c77 first commit 3 年 前
backendApi 1893043c77 first commit 3 年 前
backendEle 1893043c77 first commit 3 年 前
common 1893043c77 first commit 3 年 前
console 1893043c77 first commit 3 年 前
docs 1893043c77 first commit 3 年 前
environments 1893043c77 first commit 3 年 前
frontend 1893043c77 first commit 3 年 前
frontendApi 1893043c77 first commit 3 年 前
frontendEle 1893043c77 first commit 3 年 前
sql 1893043c77 first commit 3 年 前
vagrant 1893043c77 first commit 3 年 前
vendor 1893043c77 first commit 3 年 前
.gitignore 1893043c77 first commit 3 年 前
LICENSE.md 1893043c77 first commit 3 年 前
README.md 1893043c77 first commit 3 年 前
REGION_insert.sql 1893043c77 first commit 3 年 前
Vagrantfile 1893043c77 first commit 3 年 前
codeception.yml 1893043c77 first commit 3 年 前
composer.json 1893043c77 first commit 3 年 前
composer.lock 1893043c77 first commit 3 年 前
init 1893043c77 first commit 3 年 前
init.bat 1893043c77 first commit 3 年 前
log_db.sql 1893043c77 first commit 3 年 前
mysql_db_yyj.sql 1893043c77 first commit 3 年 前
requirements.php 1893043c77 first commit 3 年 前
shop_db.sql 1893043c77 first commit 3 年 前
yii 1893043c77 first commit 3 年 前
yii.bat 1893043c77 first commit 3 年 前
yii_test 1893043c77 first commit 3 年 前
yii_test.bat 1893043c77 first commit 3 年 前

README.md

Yii 2 Advanced Project Template


Yii 2 Advanced Project Template is a skeleton Yii 2 application best for developing complex Web applications with multiple tiers.

The template includes three tiers: front end, back end, and console, each of which is a separate Yii application.

The template is designed to work in a team development environment. It supports deploying the application in different environments.

Documentation is at docs/guide/README.md.

Latest Stable Version Total Downloads Build Status

DIRECTORY STRUCTURE

common
    config/              contains shared configurations
    mail/                contains view files for e-mails
    models/              contains model classes used in both backend and frontend
    tests/               contains tests for common classes    
console
    config/              contains console configurations
    controllers/         contains console controllers (commands)
    migrations/          contains database migrations
    models/              contains console-specific model classes
    runtime/             contains files generated during runtime
backend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains backend configurations
    controllers/         contains Web controller classes
    models/              contains backend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for backend application    
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
frontend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains frontend configurations
    controllers/         contains Web controller classes
    models/              contains frontend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for frontend application
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
    widgets/             contains frontend widgets
vendor/                  contains dependent 3rd-party packages
environments/            contains environment-based overrides

注意事项

  1. 后台新增功能需考虑permission,有权限的才显示
  2. 增删字段要同时修改相应的导出功能