perf: remove console
parent
1e1208b466
commit
35c8e137e0
|
@ -129,7 +129,6 @@ export class VAxios {
|
|||
})
|
||||
// res = await Promise.all([this.axiosInstance(config)])[0]
|
||||
} catch (e) {
|
||||
console.info(e)
|
||||
requestList.forEach((cb: any) => {
|
||||
cb()
|
||||
})
|
||||
|
|
|
@ -43,7 +43,6 @@ const [registerForm, { setFieldsValue, resetFields }] = useForm({
|
|||
const [registerModal, { setModalProps }] = useModalInner(async (data) => {
|
||||
resetFields()
|
||||
setModalProps({ confirmLoading: false })
|
||||
console.info(data.record)
|
||||
const res = await getKeyList(data.record)
|
||||
listData.value = res
|
||||
})
|
||||
|
|
|
@ -59,8 +59,7 @@ export const baseInfoSchema: DescItem[] = [
|
|||
{
|
||||
label: '网络入口/出口',
|
||||
field: 'instantaneous_input_kbps',
|
||||
render: (val, data) => {
|
||||
console.info(val)
|
||||
render: (_val, data) => {
|
||||
return data.instantaneous_input_kbps + 'kps / ' + data.instantaneous_output_kbps + 'kps'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue