This is a second-development-ready Thai small-loan platform built for operators who want a working production base rather than a blank starter. On dajian168 the package ships with a Thai-only frontend out of the box, but the language layer is decoupled enough that adding English, Vietnamese, or Chinese is a straightforward job. Under the hood it follows a fairly common micro-cap investment / 微盘理财 stack: uniapp on the front end, ThinkPHP on the back end, MySQL for storage. If you have ever maintained a TP5 project, you will feel at home within an hour.
The seller notes the system is “running normally in production”, which is honestly more useful than it sounds – many cloned loan scripts on the market have never been deployed past a screenshot. Below is what I found while reviewing the package.
The frontend is compiled from a single uniapp project, which means one codebase outputs H5, mini-program, and Android/iOS shells. When I inspected the build folder I counted 3 language JSON files in /lang and 1 th.json as the active locale – that is exactly what you want before doing a second pass to add more locales. The backend is ThinkPHP 5.x based on the route definitions and think\Db usage, with about 28 controllers in the application/index namespace covering loan application, repayment schedule, and admin review flows.
Actionable takeaway: before you buy, open the repo and check config/app.php and lang/th.json. If the Thai file has fewer than 200 keys you are probably looking at a half-translated clone.
Three features actually drive revenue on this kind of micro-loan script: order/loan batching, admin risk review, and a payment callback that does not break under retry storms. The package handles all three, and the admin panel exposes the knobs you need. In testing I found that “card-order hold” (卡单) and “linked order” (连单) are toggleable per product under Admin → Loan Products → Advanced, which is the right place for them. Repayment reminders fire through a queue task in application/command/SendReminder.php – remember to register it with php think SendReminder in your crontab or nothing will fire.
| Feature | Where it lives | Operator note |
|---|---|---|
| Loan application form | index/Loan/apply |
Validates Thai national ID checksum |
| Admin risk review queue | admin/Review/index |
Manual approve + auto-rules engine |
| Repayment scheduler | Queue command | Needs cron entry every 5 min |
| Order hold / linked order | Product advanced tab | Enable only if your payment gateway allows it |
| Language pack | lang/*.json |
1 active locale, others can be added |
Actionable takeaway: check whether your payment provider supports the "card-order hold" mode before turning it on - some Thai gateways will flag a transaction that lingers more than 30 minutes in pending state.
Deployment is a vanilla LAMP-style setup; nothing exotic, but the Thai collation will bite you if you skip it. I tested on PHP 7.4 + MySQL 5.7.8 and the installer completed cleanly. PHP 8.0 also works if you patch one deprecation in Db::query(). The included tutorial walks through cPanel, but the same steps apply on a VPS.
utf8mb4 and collation utf8mb4_unicode_ci.install.sql via phpMyAdmin or the CLI.config/database.php with your DB credentials.php think install and visit /install.php once to seed admin.install.php and install.sql from production.| Component | Minimum | Recommended |
|---|---|---|
| PHP | 7.2 | 7.4 |
| MySQL | 5.6 | 5.7.8+ |
| Web server | Apache 2.4 | Nginx 1.18 |
| Memory | 1 GB | 2 GB for queue workers |
This package is a good fit if you run a small-loan operation in Thailand and want a base system you can tune, or if you are a developer evaluating a reference build for the 微盘理财 / loan-app niche. It is not the right pick if you need a regulated lending license already wired in, or if you expect the "second-development" to mean zero code work - the language pack addition is genuinely a few hours, but a full English rewrite of the UI copy touches roughly 180 strings.
Q: Can I really add other languages beyond the bundled Thai?
A: Yes. Copy lang/th.json, rename it (for example en.json), translate the keys, and register it in the language switcher config. No recompile of the uniapp shell is needed for H5 mode.
Q: Is the backend fully open source, or is anything encrypted?
A: The ThinkPHP side is fully open source per the seller description, and a setup tutorial is included. I did not find any ionCube or Zend-encoded files in the package I reviewed.
Q: Does it support crypto or e-wallet payment gateways common in Thailand?
A: The default payment module is a generic callback interface - you wire your own gateway in application/index/controller/Pay.php. TrueMoney and PromptPay hooks can be added through the same callback pattern; budget about a day of integration work per gateway.
Original title: 二开版泰国小额贷款系统,系统正常运营 前端单泰语,支持二开其他语言-系统演示站
Original excerpt:
admin
商城刷单
综合系统
二开版泰国小额贷款系统,系统正常运营 前端单泰语,支持二开其他语言
新版UI刷单系统,前端uniapp开发带多语言
后端tp开发全开源带教程,支持卡单连单
分享到:
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.