步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
725 B

using BBWY.Controls;
using System.Collections.Generic;
using System.Windows;
namespace BBWY.Client.Views.Order
{
/// <summary>
/// SkuRecentSalesConfirmWindow.xaml 的交互逻辑
/// </summary>
public partial class SkuRecentSalesConfirmWindow : BWindow
{
public SkuRecentSalesConfirmWindow(IList<string> skuIds)
{
InitializeComponent();
txtContent.Text = $"SKU {string.Join(',', skuIds)} 最近30天一件代发已超过5件, 建议批量采购入仓,权重更高,推广费用更便宜";
}
private void BButton_Click(object sender, RoutedEventArgs e)
{
this.DialogResult = true;
this.Close();
}
}
}