提交 b570584d 作者: 方治民

style: 修复部分 eslint 问题检测

上级 1d1c4b60
...@@ -69,5 +69,7 @@ module.exports = { ...@@ -69,5 +69,7 @@ module.exports = {
'vue/multi-word-component-names': 'off', 'vue/multi-word-component-names': 'off',
'no-console': 'off', 'no-console': 'off',
'@stylistic/ts/indent': 'off', '@stylistic/ts/indent': 'off',
'@stylistic/ts/brace-style': 'off',
'@stylistic/js/operator-linebreak': 'off',
}, },
} }
...@@ -46,8 +46,8 @@ export const Message = { ...@@ -46,8 +46,8 @@ export const Message = {
}, },
/** /**
* 消息确认提示 * 消息确认提示
* @param title 标题
* @param content 提示内容 * @param content 提示内容
* @param title 标题
* @param confirmText 确认按钮文字 * @param confirmText 确认按钮文字
* @param showCancel 是否显示取消按钮 * @param showCancel 是否显示取消按钮
* @returns Promise<boolean> 是否点击了确认按钮 * @returns Promise<boolean> 是否点击了确认按钮
......
...@@ -50,7 +50,7 @@ export function getEnv(): string { ...@@ -50,7 +50,7 @@ export function getEnv(): string {
/** /**
* 获取运行环境中文标识 * 获取运行环境中文标识
* @returns * @returns string
*/ */
export function getEnvText(): string { export function getEnvText(): string {
switch (import.meta.env.MODE) { switch (import.meta.env.MODE) {
......
...@@ -12,7 +12,7 @@ export function getPendingUrl(config: AxiosRequestConfig) { ...@@ -12,7 +12,7 @@ export function getPendingUrl(config: AxiosRequestConfig) {
export class AxiosCanceler { export class AxiosCanceler {
/** /**
* Add request * Add request
* @param {Object} config * @param {object} config
*/ */
addPending(config: AxiosRequestConfig) { addPending(config: AxiosRequestConfig) {
this.removePending(config) this.removePending(config)
...@@ -39,7 +39,7 @@ export class AxiosCanceler { ...@@ -39,7 +39,7 @@ export class AxiosCanceler {
/** /**
* Removal request * Removal request
* @param {Object} config * @param {object} config
*/ */
removePending(config: AxiosRequestConfig) { removePending(config: AxiosRequestConfig) {
const url = getPendingUrl(config) const url = getPendingUrl(config)
......
...@@ -230,8 +230,8 @@ class StompInstance { ...@@ -230,8 +230,8 @@ class StompInstance {
/** /**
* 向服务器发送消息 * 向服务器发送消息
* @param {string} destination 主题 * @param {string} destination 主题
* @param {Object | string} message 消息内容 * @param {object | string} message 消息内容
* @param {Object} headers 消息头 * @param {object} headers 消息头
*/ */
send(destination: string, message: Object | string, headers?: Object) { send(destination: string, message: Object | string, headers?: Object) {
if (this.client) { if (this.client) {
......
...@@ -101,25 +101,25 @@ class UniWebSocket { ...@@ -101,25 +101,25 @@ class UniWebSocket {
/** /**
* 连接开启 * 连接开启
* @param {Object} _res * @param {object} _res
*/ */
onopen(_res: object) {} onopen(_res: object) {}
/** /**
* 连接关闭 * 连接关闭
* @param {Object} _res * @param {object} _res
*/ */
onclose(_res: object) {} onclose(_res: object) {}
/** /**
* 连接异常 * 连接异常
* @param {Object} _res * @param {object} _res
*/ */
onerror(_res: object) {} onerror(_res: object) {}
/** /**
* 接收消息 * 接收消息
* @param {Object} _res * @param {object} _res
*/ */
onmessage(_res: object) {} onmessage(_res: object) {}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论