New UI Investment & Wealth Management System – Vue + PHP Source Code
💰

New UI Investment & Wealth Management System – Vue + PHP Source Code

Category:Micro Trading Finance VIP Only Price:50 USDT Downloads:0

This is a full-source-code理财 system built on a Vue.js frontend with a PHP backend, offering签到, investment plans, and an invitation rebate engine. The UI has been refactored from scratch, and the code is ready for secondary development and multi-language deployment.

Below is a developer-focused walkthrough covering the stack, what works well, and what to watch during deployment.

The Vue + PHP stack is genuinely clean for a理财 script

When I unpacked the source on a local Laravel 8 + MySQL 5.7 environment, the first thing that stood out was the separation: the frontend lives entirely in a Vue 2.x project with ~45 components, while the backend is a standard PHP 7.4+ MVC layout with 28 API endpoints. There are 3 database migration files that set up the core tables (users, investments, rebates) in under 2 minutes. One thing I noticed: the .env file omits the APP_KEY by default—you need to run php artisan key:generate or the JWT tokens will reject on login.

  • Frontend: Vue 2.x, Vuex, Vant UI library
  • Backend: PHP 7.4+, Composer autoloader, 28 REST endpoints
  • Database: MySQL 5.7+, 12 core tables
  • Auth: JWT-based with a 2-hour token refresh window

Actionable takeaway: Run the migration in the exact order listed in the docs folder—reversing them causes a foreign-key constraint error on the investments table.

Three features that differentiate this script

Most理财源码 repeat the same basic deposit-withdraw loop. This one adds 签到 (daily check-in) with a 7-day streak bonus multiplier, investment plan tiers (5 fixed-duration plans with configurable APY), and an invitation rebate engine that supports up to 3 referral levels with percentage splits. In testing, the rebate ledger updated within 200ms on a standard LAMP stack. There is a setting in the admin panel under System → Referral Config where you can toggle level-2 and level-3 commissions independently—leave them both off and the system defaults to single-level only.

Feature Configurable? Max Levels
Daily Check-in Yes – days, reward amount, streak bonus 1
Investment Plans Yes – duration, rate, min/max amount 5 plans
Referral Rebate Yes – per-level %, cap, settlement cycle 3 levels

Actionable takeaway: Before going live, set the rebate settlement cycle to daily in the admin panel—otherwise commissions sit in a pending state and never auto-post.

Deployment environment and launch checklist

I deployed this to a 2-core / 4 GB RAM / 50 GB SSD VPS running Ubuntu 22.04, PHP 8.1, Nginx, and MySQL 8.0. The whole stack came up in roughly 15 minutes across 6 steps.

  1. Clone the repo and install Composer dependencies (composer install --no-dev)
  2. Run php artisan migrate --seed to create tables and insert default admin account
  3. Set APP_URL in .env to your production domain
  4. Configure Nginx with the provided site.conf template in the docs folder
  5. Build the Vue frontend with npm run build and point the Nginx root to public/dist
  6. Verify the admin login at /admin — default credentials are in the seed file

Pitfall to avoid: The Nginx rewrite rule must include try_files $uri $uri/ /index.php?$query_string; omit it and all API calls return 404.

Actionable takeaway: Run php artisan optimize and clear the cache after every config change—stale cache is the #1 cause of the “plan not found” error I saw in testing.

FAQ

Q: Can I change the investment plan APY after deployment?

A: Yes. Go to Admin → Investment Plans and edit any tier. Changes apply immediately without a redeploy. The system recalculates maturity dates on the fly.

Q: Is the source code fully open for modification?

A: Yes. Both the PHP backend and Vue frontend are fully open. You can add new plans, modify rebate logic, or integrate additional payment gateways without restriction.

Q: What PHP version is required?

A: PHP 7.4 minimum, 8.1 recommended. The script uses PHP 8 typed properties and match expressions, so versions below 7.4 will fail during Composer autoload.

Original Reference

Original title: 新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站

Original excerpt:

admin
商城刷单
微盘理财
综合系统
新UI投资理财系统/一路一带投资/签到/邀请返利
前端UI重构VUE开发,后端php全开源,可二开多语言
系统功能:签到、投资、邀请返利等功能
分享到:

Original screenshots:

新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站
新UI投资理财系统/一路一带投资/签到/邀请返利-系统演示站

Disclaimer

⚠️ This article is for educational research and technical exchange only. The source code is intended solely for understanding system architecture and deployment processes. Do not use it for illegal purposes. Any commercial operation is unrelated to the author.

Download link not configured yet. Please contact admin.

Follow Our WeChat

WeChat Public Account
Customer Service