feat: remove console
parent
c233dbcab3
commit
3548ba004c
|
@ -53,7 +53,6 @@ export function getDictOpts(dictType: string) {
|
||||||
export function getDictOptions(dictType: string, valueType?: 'string' | 'number' | 'boolean') {
|
export function getDictOptions(dictType: string, valueType?: 'string' | 'number' | 'boolean') {
|
||||||
const dictOption: DictDataType[] = []
|
const dictOption: DictDataType[] = []
|
||||||
const dictOptions: DictDataType[] = getDictDatas(dictType)
|
const dictOptions: DictDataType[] = getDictDatas(dictType)
|
||||||
console.log(dictOptions)
|
|
||||||
if (dictOptions && dictOptions.length > 0) {
|
if (dictOptions && dictOptions.length > 0) {
|
||||||
dictOptions.forEach((dict: DictDataType) => {
|
dictOptions.forEach((dict: DictDataType) => {
|
||||||
dictOption.push({
|
dictOption.push({
|
||||||
|
|
|
@ -117,7 +117,6 @@ async function handleUpdateAll() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleInfo = (record: any) => {
|
const handleInfo = (record: any) => {
|
||||||
console.log(JSON.stringify(record, Object.keys(record), 2))
|
|
||||||
openModal(true, record)
|
openModal(true, record)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -85,7 +85,6 @@ function handleEdit(record: Recordable) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleSend(record: Recordable) {
|
function handleSend(record: Recordable) {
|
||||||
console.log(JSON.stringify(record, [...Object.keys(record)], 2))
|
|
||||||
openSendModal(true, record)
|
openSendModal(true, record)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue