* @description html高亮文本 * @param text * @returns
(text)
| 2051 | * @returns |
| 2052 | */ |
| 2053 | function getHighlightHTML(text) { |
| 2054 | // html |
| 2055 | const highlightHTML = `<span style="color: #1890ff">${text}</span>`; |
| 2056 | return highlightHTML; |
| 2057 | } |
| 2058 | /** |
| 2059 | * @description 二维码 |
| 2060 | * @param src |
no outgoing calls
no test coverage detected