|
@@ -67,6 +67,7 @@ class ProfileController extends BaseController {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
clickOnChangeKeyboard(KeyboardInfo keyboardInfo) {
|
|
clickOnChangeKeyboard(KeyboardInfo keyboardInfo) {
|
|
|
|
|
+ EventHandler.report(EventId.event_06004);
|
|
|
AtmobLog.d(tag, 'clickOnChangeKeyboard: ${keyboardInfo.toJson()}');
|
|
AtmobLog.d(tag, 'clickOnChangeKeyboard: ${keyboardInfo.toJson()}');
|
|
|
|
|
|
|
|
_currentCustomKeyboardInfo.value = keyboardInfo;
|
|
_currentCustomKeyboardInfo.value = keyboardInfo;
|
|
@@ -78,6 +79,7 @@ class ProfileController extends BaseController {
|
|
|
|
|
|
|
|
clickAddButton() async {
|
|
clickAddButton() async {
|
|
|
AtmobLog.d(tag, "clickAddButton");
|
|
AtmobLog.d(tag, "clickAddButton");
|
|
|
|
|
+ EventHandler.report(EventId.event_06002);
|
|
|
var result = await ProfileEditPage.start();
|
|
var result = await ProfileEditPage.start();
|
|
|
if (result == true) {
|
|
if (result == true) {
|
|
|
await getCustomKeyboard();
|
|
await getCustomKeyboard();
|
|
@@ -86,6 +88,7 @@ class ProfileController extends BaseController {
|
|
|
|
|
|
|
|
clickSaveButton() async {
|
|
clickSaveButton() async {
|
|
|
AtmobLog.d(tag, "clickSaveButton");
|
|
AtmobLog.d(tag, "clickSaveButton");
|
|
|
|
|
+ EventHandler.report(EventId.event_06003);
|
|
|
final keyboardInfo = _currentCustomKeyboardInfo.value;
|
|
final keyboardInfo = _currentCustomKeyboardInfo.value;
|
|
|
// if (_currentCustomKeyboardInfo.value.isChoose == true) {
|
|
// if (_currentCustomKeyboardInfo.value.isChoose == true) {
|
|
|
// ToastUtil.show("当前键盘已选择");
|
|
// ToastUtil.show("当前键盘已选择");
|
|
@@ -108,7 +111,7 @@ class ProfileController extends BaseController {
|
|
|
AtmobLog.d(tag, " $error");
|
|
AtmobLog.d(tag, " $error");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- }else {
|
|
|
|
|
|
|
+ } else {
|
|
|
ToastUtil.show("请选择档案~");
|
|
ToastUtil.show("请选择档案~");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|