|
|
@@ -164,6 +164,10 @@ abstract class BasePhotoController extends BaseController {
|
|
|
|
|
|
// 点击删除
|
|
|
void clickDelete() async {
|
|
|
+ if (selectedPhotosIds.isEmpty) {
|
|
|
+ ToastUtil.show('Please select the picture');
|
|
|
+ return;
|
|
|
+ }
|
|
|
EventHandler.report(EventId.event_03008,
|
|
|
params: {EventId.type: getPhotosType().name});
|
|
|
print('BasePhotoController getPhotosType().toString() ${getPhotosType().toString()}');
|