Commit ce16bf2f by suyuchen

feat(notification): 添加站内通知页面并移除工单列表中的待客户状态

- 添加全新的通知页面通知.html,包含完整的UI组件和样式 - 从工单列表中移除批量操作按钮 - 移除工单筛选器中的待客户标签 - 将工单状态从待客户改为处理中 - 移除统计逻辑中的待客户状态计数 - 从图表配置中移除待客户服务指标 - 从状态映射中移除待客户选项
parent 147a9c87
...@@ -1407,7 +1407,7 @@ ...@@ -1407,7 +1407,7 @@
</svg> </svg>
导出 导出
</button> </button>
<button class="btn btn-secondary">批量操作</button> <!-- <button class="btn btn-secondary">批量操作</button>-->
</div> </div>
</div> </div>
...@@ -1426,7 +1426,7 @@ ...@@ -1426,7 +1426,7 @@
<span class="filter-tag active">全部</span> <span class="filter-tag active">全部</span>
<span class="filter-tag">待响应</span> <span class="filter-tag">待响应</span>
<span class="filter-tag">处理中</span> <span class="filter-tag">处理中</span>
<span class="filter-tag">待客户</span> <!-- <span class="filter-tag">待客户</span>-->
<span class="filter-tag">已关闭</span> <span class="filter-tag">已关闭</span>
<span class="filter-tag">SLA 预警</span> <span class="filter-tag">SLA 预警</span>
<span class="filter-tag">已逾期</span> <span class="filter-tag">已逾期</span>
...@@ -1527,7 +1527,7 @@ ...@@ -1527,7 +1527,7 @@
</span> </span>
</td> </td>
<td>李四</td> <td>李四</td>
<td><span class="status-badge status-waiting">待客户</span></td> <td><span class="status-badge status-processing">处理中</span></td>
<td>软件问题 / 数据库</td> <td>软件问题 / 数据库</td>
<td> <td>
<span class="source-badge source-email">邮件</span> <span class="source-badge source-email">邮件</span>
...@@ -2244,7 +2244,7 @@ ...@@ -2244,7 +2244,7 @@
const s = t.status || ''; const s = t.status || '';
if (s.includes('待响应')) stats.waiting++; if (s.includes('待响应')) stats.waiting++;
if (s.includes('处理中')) stats.processing++; if (s.includes('处理中')) stats.processing++;
if (s.includes('待客户')) stats.customer++; // if (s.includes('待客户')) stats.customer++;
if (s.includes('已关闭')) stats.closed++; if (s.includes('已关闭')) stats.closed++;
if (s.includes('预警')) stats.warn++; if (s.includes('预警')) stats.warn++;
if (s.includes('逾期')) stats.overdue++; if (s.includes('逾期')) stats.overdue++;
...@@ -2253,7 +2253,7 @@ ...@@ -2253,7 +2253,7 @@
{ label:'全部工单', value:stats.total, icon:`<circle cx="10" cy="10" r="7"></circle><path d="M10 5v5h4"></path>` }, { label:'全部工单', value:stats.total, icon:`<circle cx="10" cy="10" r="7"></circle><path d="M10 5v5h4"></path>` },
{ label:'待响应', value:stats.waiting, icon:`<path d="M10 3v6l4 2"></path>` }, { label:'待响应', value:stats.waiting, icon:`<path d="M10 3v6l4 2"></path>` },
{ label:'处理中', value:stats.processing, icon:`<path d="M4 10h12M10 4v12"></path>` }, { label:'处理中', value:stats.processing, icon:`<path d="M4 10h12M10 4v12"></path>` },
{ label:'待客户', value:stats.customer, icon:`<path d="M6 8l4 4 4-4"></path>` }, // { label:'待客户', value:stats.customer, icon:`<path d="M6 8l4 4 4-4"></path>` },
{ label:'已关闭', value:stats.closed, icon:`<path d="M6 6l8 8M14 6l-8 8"></path>` }, { label:'已关闭', value:stats.closed, icon:`<path d="M6 6l8 8M14 6l-8 8"></path>` },
{ label:'SLA 预警', value:stats.warn, icon:`<path d="M10 4l6 10H4L10 4z"></path><path d="M10 8v3m0 2h.01"></path>` }, { label:'SLA 预警', value:stats.warn, icon:`<path d="M10 4l6 10H4L10 4z"></path><path d="M10 8v3m0 2h.01"></path>` },
{ label:'已逾期', value:stats.overdue, icon:`<circle cx="10" cy="10" r="7"></circle><path d="M10 6v4l2.5 2.5"></path>` } { label:'已逾期', value:stats.overdue, icon:`<circle cx="10" cy="10" r="7"></circle><path d="M10 6v4l2.5 2.5"></path>` }
...@@ -2279,7 +2279,7 @@ ...@@ -2279,7 +2279,7 @@
'全部': '', '全部': '',
'待响应': '待响应', '待响应': '待响应',
'处理中': '处理中', '处理中': '处理中',
'待客户': '待客户', // '待客户': '待客户',
'已关闭': '已关闭', '已关闭': '已关闭',
'SLA 预警': '预警', 'SLA 预警': '预警',
'已逾期': '逾期' '已逾期': '逾期'
......
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment