|
|
@@ -87,6 +87,10 @@ public class imdialog extends Controller {
|
|
|
timdialogSQL.addParameter("siteid", siteid);
|
|
|
timdialogSQL.addParameter("timdialogid", content.getString("timdialogid"));
|
|
|
Rows rows = dbConnect.runSqlQuery(timdialogSQL.getSQL());
|
|
|
+ for (Row row : rows) {
|
|
|
+ String fmessageobj = row.getString("fmessageobj");
|
|
|
+ row.put("fmessageobj", JSONObject.parseObject(fmessageobj));
|
|
|
+ }
|
|
|
return getSucReturnObject().setDataByPaging(rows).toString();
|
|
|
}
|
|
|
|