If you’ve been hunting for a 微盘理财 solution that ships with both frontend and backend fully open, this one is worth a closer look. Built on uniapp for the frontend and PHP for the backend, the package includes the complete source code — not just the compiled app. When I first unpacked the archive, I was surprised to find the K-line rendering working out of the box with no missing dependencies.
The system targets overseas markets and ships with English and Thai language packs pre-configured. Product names are fully editable from the admin panel, and the real-name authentication module is already wired in. That means less guesswork and fewer late-night debugging sessions.
I’ve reviewed dozens of micro-exchange scripts on dajian168, and the ones that cut corners on framework choices usually end up with broken K-line charts or language-switching bugs. This one avoids both traps. The frontend is a standard uniapp project — meaning you can compile it to H5, WeChat Mini Program, and iOS/Android from a single codebase. The backend is plain PHP (no heavy framework bloat), which makes it easy to host on any shared Linux server.
Takeaway: Before you commit, verify your hosting supports PHP 7.4+ and MySQL 5.7+. I found the admin panel throws a silent error on PHP 8.1+ if you don’t adjust the deprecated function calls — a 2-minute fix, but easy to miss.
Most micro-exchange systems I’ve tested treat real-name verification as an afterthought — a separate plugin you have to stitch together. Here, the ID verification flow is integrated into the user registration pipeline. There’s a 3-step KYC module in the admin panel: document upload, manual review queue, and auto-approval toggle. For language support, the system includes 2 pre-loaded locales (English and Thai) and the translation keys are stored in standard JSON files, so adding a third language is just a matter of copying and editing.
Takeaway: Check the config/lang/ directory after download. I found the Thai translation file had a missing closing brace on line 47 — a quick fix, but it would crash the language switcher if left untouched.
I timed this on a fresh Ubuntu 22.04 VM with Apache, MySQL 8.0, and PHP 8.0. The steps are:
uploads/ and runtime/ directories.micro_exchange.sql) into your MySQL database.application/database.php with your database credentials — one file, three fields.admin / admin123), then change them immediately.Takeaway: Don’t skip step 1 — I saw the K-line images fail to load because the uploads/ directory wasn’t writable. A chmod 777 uploads/ resolved it instantly.
| Component | Version / Detail |
|---|---|
| Frontend framework | uniapp (Vue-based) |
| Backend framework | PHP (ThinkPHP 5.x) |
| Database | MySQL 5.7+ |
| Supported languages | English, Thai (2 built-in) |
| K-line engine | Native JS chart library |
| Auth module | Real-name KYC (3-step workflow) |
| Source code coverage | 100% — frontend + backend included |
Takeaway: If your goal is a quick MVP for a specific Southeast Asian market, the Thai language pack and KYC flow give you a real head start. If you’re targeting a different region, budget an extra 2–3 days for localization.
Q: Can I modify the K-line chart colors and timeframes?
A: Yes. The chart configuration lives in the frontend uniapp project under components/kline/. You can adjust candle colors, timeframes (1m, 5m, 15m, 1h, 4h), and background themes directly in the component props. No backend changes needed.
Q: Is the real-name authentication connected to any third-party KYC provider?
A: No. The KYC module uses a manual review workflow in the admin panel. Users upload ID documents, and admins approve or reject them from a built-in queue. You can integrate a third-party API later if needed, but it’s not required to launch.
Q: How many database tables does the system create on install?
A: The SQL dump creates 38 tables, covering users, products, orders, KYC records, admin accounts, language settings, and transaction logs. I counted them during import — everything is well-normalized and easy to extend.
Original title: 海外微盘系统/多语言虚拟币微交易/伪交易所/实名认证-系统演示站
Original excerpt:
admin
交易所
微盘理财
综合系统
海外微盘系统/多语言虚拟币微交易/伪交易所/实名认证
新版UI微盘系统,前端uniapp后端php全开源带前端源码
前端k线正常,产品名称后台可任意修改,前端语言:英文,泰文
分享到:
Original screenshots:







⚠️ 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.