Commit 66b89aa6 authored by 李增强's avatar 李增强

m

parent f6646e11
......@@ -70,7 +70,7 @@ class QMTJ {
/// APP 不可见
static void appDisappear() {
_db.db.update("app_tj", {"disappear_time": _getDateNow()},
where: "id = ?", whereArgs: [_appStartUpId]);
where: "id = ? and appear_time =0", whereArgs: [_appStartUpId]);
}
/// PAGE 可见
......@@ -104,7 +104,7 @@ class QMTJ {
{
"disappear_time": _getDateNow(),
},
where: "id = ? ",
where: "id = ? and appear_time =0",
whereArgs: [id]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment