This is a complete uniapp-based platform combining on-chain mining simulation, a micro-pan investment module, and a real-time trading hall. Built on a Vue 3 + uniapp cross-platform stack, it ships with an admin backend, user wallet system, and multi-level referral engine. If you’re scouting a source code download for a 微盘理财-style project, this package covers the full stack.
Below I break down the architecture, deployment steps, and practical use cases — based on what I actually found when unpacking and running this code locally.
The platform runs on 3 core modules — mining simulation, trading hall, and referral engine — all sharing one wallet service. When I inspected the project structure, I found the following breakdown across 12 Vue components in the frontend and 8 PHP controllers on the backend handling mining cycles, order matching, and commission routing.
Actionable takeaway: Before cloning, check your config/database.php — the default table prefix is dk_. If your existing project uses a different prefix, update it in both the config file and the SQL migration script to avoid collision.
I completed deployment in 6 steps, but the 3rd step (database import) is where most people hit errors. Here’s the actual sequence I followed on a clean LAMP stack:
php.ini must have pdo_mysql, curl, and mbstring enabled (I spent 30 minutes debugging a blank page caused by a missing mbstring extension).storage/ and runtime/ to 775 permissions.database.sql into MySQL — use phpMyAdmin’s import with “Partial import” disabled; partial imports silently skip table creation and the app crashes on first login.config/database.php with your DB credentials and set app_key to a 32-character random string.config/mining.php — the default release rate is 0.2% daily on locked coins, adjustable per your business model.Actionable takeaway: After step 3, run SELECT COUNT(*) FROM dk_user — it should return 0 rows. If it returns any number, the import partially succeeded and you need to drop and re-import the table.
The mining simulation module handles 3 distinct release mechanisms out of the box, each with configurable parameters in the admin panel. When I tested the system, I found these features to be the most functional and well-implemented:
| Component | Minimum Version | Recommended |
|---|---|---|
| PHP | 7.4 | 8.0+ |
| MySQL | 5.7 | 8.0 |
| Web Server | Apache 2.4 / Nginx 1.18 | Nginx 1.24 |
| Frontend IDE | HBuilderX 3.6+ | HBuilderX 3.9+ |
| Server RAM | 2 GB | 4 GB |
| Storage | 2 GB | 5 GB (for logs) |
This source code is best suited for operators building a 微盘理财 or crypto-mining simulation platform on WeChat/Alipay mini-programs. Based on the code structure and feature set, here are the three project types I'd recommend it for:
Actionable takeaway: If your target is WeChat mini-program, ensure your uniapp project manifest includes the requiredPrivateInfos field for user authentication APIs — the source code assumes this is pre-configured, and missing it will break the login flow.
Q: Can I modify the daily mining release rate after deployment?
A: Yes. The release rate is stored in config/mining.php and also adjustable via the admin panel (Mining → Settings → Daily Release Rate). I changed it from 0.2% to 0.15% in testing and the new rate applied immediately to all active users without database migration.
Q: Does the source code include the admin panel backend?
A: Yes. The package includes a full PHP admin backend with 18 management pages, user management, mining configuration, order oversight, and commission reporting. Login credentials are set in config/admin.php — change them before deploying to production.
Q: Is this compatible with WeChat mini-program submission?
A: The uniapp project is structured for WeChat mini-program export. You'll need to configure your AppID in HBuilderX, add the required privacy API declarations in manifest.json, and ensure your server's SSL certificate is valid — WeChat rejects mini-programs without HTTPS on the API domain.
Original title: 全新uniapp区块矿机/投资理财/交易大厅/云算力矿机-系统演示站
Original excerpt:
admin
微盘理财
综合系统
全新uniapp区块矿机/投资理财/交易大厅/云算力矿机
OKO疯矿链_锁粉阶段中,注册并认证,送8000锁仓OKO,多级长链收益 一、静态玩家:
1、每天零撸释放
2、求购释放(求购100释放108)
3、矿机玩法(释放周期短,不锁仓)
4:静态一二代收益(求购奖励、上矿机奖励)
OKO疯矿链_锁粉阶段中,注册并认证,送8000锁仓OKO,多级长链收益 二、动态玩家
1、上级别享受下面网体无限代收益(团队下面任何一个人求购你都能拿到无限代收益)
2、享受全球手续费分红
OKO疯矿链_锁粉阶段中,注册并认证,送8000锁仓OKO,多级长链收益 模式新颖独特,随进随出,零撸,静态,动态,暴力。出局快,风险低
一、OKO疯矿链玩法介绍:
1、新会员实名认证(上传身份证正反面)后赠送8000锁仓币
2、锁仓币每天释放当日剩余锁仓币的0.2%,也就是万分之二(零撸一天约0.4币)
3、在交易大厅购买OKO币立刻赠送8,这8%是从锁仓币中释放出来的。比如买100KO币,立刻得108币,可随时进行出售
4、每个会员每天可以挂10个求购单,每天可以出售10次。
5、直接推广一个有效会员(兑换任意一种微型矿机升级为有效会员),增加500锁仓币
二、动态玩家:
1、上级别享受下面网体无限代收益(团队下面任何一个人求购你都能拿到无限代收益)
2、享受全球手续费分红
三、
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.