This commit is contained in:
2020-11-27 01:14:08 +00:00
parent d60d6356fc
commit 67d5baff0e
5 changed files with 14 additions and 13 deletions

View File

@@ -458,7 +458,7 @@ export default {
case window.$gz.type.UnitMeterReading: case window.$gz.type.UnitMeterReading:
return "$ayiWeight"; return "$ayiWeight";
case window.$gz.type.CustomerServiceRequest: case window.$gz.type.CustomerServiceRequest:
return "$ayiChild"; return "$ayiConciergeBell";
case window.$gz.type.ServiceBank: case window.$gz.type.ServiceBank:
return "$ayiCarBattery"; return "$ayiCarBattery";
case window.$gz.type.OpsNotificationSettings: case window.$gz.type.OpsNotificationSettings:

View File

@@ -64,7 +64,7 @@ function initNavPanel() {
//CSR LIST subitem //CSR LIST subitem
sub.push({ sub.push({
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
icon: "$ayiChild", icon: "$ayiConciergeBell",
route: "/customer-csr-list", route: "/customer-csr-list",
key: key++ key: key++
}); });
@@ -463,7 +463,7 @@ function initNavPanel() {
) { ) {
sub.push({ sub.push({
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
icon: "$ayiChild", icon: "$ayiConciergeBell",
route: "/svc-csr-list", route: "/svc-csr-list",
key: key++ key: key++
}); });

View File

@@ -45,7 +45,6 @@ import {
faChevronDown, faChevronDown,
faChevronLeft, faChevronLeft,
faChevronRight, faChevronRight,
faChild,
faClipboard, faClipboard,
faClock, faClock,
faClone, faClone,
@@ -53,6 +52,7 @@ import {
faCogs, faCogs,
faColumns, faColumns,
faCommentAlt, faCommentAlt,
faConciergeBell,
faCopy, faCopy,
faDiceD20, faDiceD20,
faDolly, faDolly,
@@ -204,7 +204,6 @@ library.add(
faChevronDown, faChevronDown,
faChevronLeft, faChevronLeft,
faChevronRight, faChevronRight,
faChild,
faClipboard, faClipboard,
farCircle, farCircle,
faClock, faClock,
@@ -213,6 +212,7 @@ library.add(
faCogs, faCogs,
faColumns, faColumns,
faCommentAlt, faCommentAlt,
faConciergeBell,
faCopy, faCopy,
faDiceD20, faDiceD20,
faDolly, faDolly,
@@ -454,12 +454,7 @@ const CUSTOM_ICONS = {
icon: ["fas", "check-square"] icon: ["fas", "check-square"]
} }
}, },
ayiChild: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "child"]
}
},
ayiClipboard: { ayiClipboard: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {
@@ -502,6 +497,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "comment-alt"] icon: ["fas", "comment-alt"]
} }
}, },
ayiConciergeBell: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "concierge-bell"]
}
},
ayiCopy: { ayiCopy: {
component: FontAwesomeIcon, component: FontAwesomeIcon,
props: { props: {

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() { beforeCreate() {
window.$gz.eventBus.$emit("menu-change", { window.$gz.eventBus.$emit("menu-change", {
isMain: true, isMain: true,
icon: "$ayiChild", icon: "$ayiConciergeBell",
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
helpUrl: "form-customer-csr-list" helpUrl: "form-customer-csr-list"
}); });

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() { beforeCreate() {
window.$gz.eventBus.$emit("menu-change", { window.$gz.eventBus.$emit("menu-change", {
isMain: true, isMain: true,
icon: "$ayiChild", icon: "$ayiConciergeBell",
title: "CustomerServiceRequestList", title: "CustomerServiceRequestList",
helpUrl: "form-svc-csr-list" helpUrl: "form-svc-csr-list"
}); });