结算系统代码

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

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. 增删字段要同时修改相应的导出功能