// sales-server/db.js const mysql = require('mysql2/promise'); // 配置你的MySQL信息 const dbConfig = { host: 'localhost', user: 'root', password: '你的密码', database: 'sales_platform' }; // 创建连接池 const pool = mysql.createPool(dbConfig); module.exports = pool;