[fix]
[订单距离、自动探查]
This commit is contained in:
yangyakun
2024-07-11 17:39:07 +08:00
parent 8fd0816dff
commit 05512619e3
44 changed files with 233 additions and 45 deletions

View File

@@ -30,7 +30,7 @@ import com.mogo.eagle.core.utilcode.util.ThreadUtils
* 自动探查
* 鹰眼6.5.0需求
*/
class AutomaticExplorationView @JvmOverloads constructor(
open class AutomaticExplorationView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0

View File

@@ -15,7 +15,7 @@ import java.util.Random
* 行程总结View
* 鹰眼6.5.0需求
*/
class ItinerarySummaryDialog(context: Context, isDriver: Boolean, theme: Int) :
open class ItinerarySummaryDialog(context: Context, isDriver: Boolean, theme: Int) :
Dialog(context, theme) {
private val mContext: Context
@@ -108,4 +108,8 @@ class ItinerarySummaryDialog(context: Context, isDriver: Boolean, theme: Int) :
}
fun setOrderMileage(mileage: Float) {
TODO("Not yet implemented")
}
}