地址路径修改
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
// 货运人员模块 - 专门处理货运人员相关功能
|
||||
import { showToast } from '../../utils/helpers';
|
||||
|
||||
import { DataModule } from './dataModule';
|
||||
|
||||
export class DeliveryPersonModule {
|
||||
private pageContext: any;
|
||||
|
||||
private dataModule: DataModule;
|
||||
|
||||
constructor(pageContext: any, dataModule: DataModule) {
|
||||
this.pageContext = pageContext;
|
||||
constructor(_pageContext: any, dataModule: DataModule) {
|
||||
this.dataModule = dataModule;
|
||||
}
|
||||
|
||||
@@ -24,7 +23,7 @@ export class DeliveryPersonModule {
|
||||
/**
|
||||
* 显示货运人员详情面板
|
||||
*/
|
||||
private showDeliveryPersonPanel(deliveryPerson: any, position: { x: number, y: number }): void {
|
||||
private showDeliveryPersonPanel(deliveryPerson: any, _position: { x: number, y: number }): void {
|
||||
console.log('显示货运人员详情面板:', deliveryPerson);
|
||||
|
||||
// 设置当前货运人员
|
||||
|
||||
Reference in New Issue
Block a user