797b20979d
承运商 HTML 按收货市下发;textarea 回车在 C 端转成换行。含门店去掉分享按钮与小程序企微客服。 Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
import { Controller, Get, Query } from '@nestjs/common';
|
|
import { FulfillmentProviderService } from './fulfillment-provider.service';
|
|
|
|
@Controller('catalog')
|
|
export class LocalDeliveriesController {
|
|
constructor(private readonly providers: FulfillmentProviderService) {}
|
|
|
|
@Get('local-deliveries')
|
|
list(@Query('cityCode') cityCode?: string, @Query('cityName') cityName?: string) {
|
|
return this.providers.listLocalDeliveries({ cityCode, cityName });
|
|
}
|
|
}
|