|
|
@@ -6,6 +6,7 @@ using System;
|
|
6
|
6
|
using System.Collections.Generic;
|
|
7
|
7
|
using System.Data;
|
|
8
|
8
|
using System.Linq;
|
|
|
9
|
+using System.Text;
|
|
9
|
10
|
using System.Web;
|
|
10
|
11
|
using System.Web.Mvc;
|
|
11
|
12
|
|
|
|
@@ -548,7 +549,8 @@ namespace CallCenterApi.Interface.Controllers.tel
|
|
548
|
549
|
//工单类型
|
|
549
|
550
|
model.TypeClass = gdlx;
|
|
550
|
551
|
//反馈内容
|
|
551
|
|
- model.Detail = fkcont;
|
|
|
552
|
+ var detailutf8 = System.Web.HttpUtility.UrlDecode(fkcont, System.Text.Encoding.UTF8);
|
|
|
553
|
+ model.Detail = detailutf8;
|
|
552
|
554
|
//快递信息
|
|
553
|
555
|
model.Files = sendmsg;
|
|
554
|
556
|
//备注一
|