Commit ae817539 authored by 朱璇's avatar 朱璇

添加埋点

parent abc54df5
......@@ -11,6 +11,8 @@ import 'package:gm_flutter/commonModel/base/BaseComponent.dart';
import 'package:gm_flutter/ClueModel/page/DiscussLowPrice/DiscussLowPriceModel.dart';
import 'package:gm_flutter/commonModel/bean/Pair.dart';
import 'package:gm_flutter/commonModel/util/DartUtil.dart';
import 'package:gm_flutter/commonModel/base/BaseUtil.dart';
import 'package:gm_flutter/main.mark.dart';
class DiscussLowPricePopView {
static void showPopView(BuildContext content) {
......@@ -38,6 +40,7 @@ class _PopView implements ICenterPicker {
if (data.data.second == null || data.data.first == FAIL) {
return errorItem(contentWidth, 308.5, () {});
}
RouterCenterImpl().findMainRouter().buriedEvent("popup_view", {});
return Opacity(
opacity: alp / 255.0,
child: Container(
......@@ -57,6 +60,9 @@ class _PopView implements ICenterPicker {
height: 13.5,
child: GestureDetector(
onTap: () {
RouterCenterImpl()
.findMainRouter()
.buriedEvent("popup_view", {});
dismissCallback();
},
child: Image.asset(
......
......@@ -3,6 +3,7 @@
* @date 2020/6/28
**/
import 'package:flutter_common/Annotations/anno/Get.dart';
import 'package:flutter_common/Annotations/anno/Post.dart';
import 'package:flutter_common/Annotations/anno/Query.dart';
import 'package:flutter_common/Annotations/anno/ServiceCenter.dart';
import 'package:gm_flutter/ClueModel/server/entity/LevelOneFeedList.dart';
......@@ -56,7 +57,7 @@ abstract class ClueApi {
@Query("doctor_id") String doctorId,
);
@Get("api/janus/plans/agree_phone_authorize")
@Post("api/janus/plans/agree_phone_authorize")
DiscussLowPriceAuthBean givePhoneAuth(
@Query("lead_phone_request_id") int leadPhoneRequestId);
......
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