var res = await PddApi.GetGoodsComments(goodId,"");
if (res.StatusCode != System.Net.HttpStatusCode.OK)
{
ShowErrorNotifier("采集失败");
return;
}
this.comment.Text = "";
string path = AppDomain.CurrentDomain.BaseDirectory + "订单好评";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
path = AppDomain.CurrentDomain.BaseDirectory + "订单好评\\" + goodId;
if (!Directory.Exists(path))