|
@@ -714,6 +714,12 @@ router.route('/selectRoom').all((req, res, next) => {
|
|
var json = queryString(req.url);
|
|
var json = queryString(req.url);
|
|
getmysql(req, res, "selectRoom", json['uid']);
|
|
getmysql(req, res, "selectRoom", json['uid']);
|
|
});
|
|
});
|
|
|
|
+//思维网格 根据房间号或者用户id查询房间信息
|
|
|
|
+router.route('/getRoom').all((req, res, next) => {
|
|
|
|
+ var json = queryString(req.url);
|
|
|
|
+ getmysql(req, res, "select_room", json['fid']);
|
|
|
|
+});
|
|
|
|
+
|
|
//协同编辑 根据房间号或者用户id查询房间信息
|
|
//协同编辑 根据房间号或者用户id查询房间信息
|
|
router.route('/selectRoomByFile').all((req, res, next) => {
|
|
router.route('/selectRoomByFile').all((req, res, next) => {
|
|
var json = queryString(req.url);
|
|
var json = queryString(req.url);
|