fix: bug#11270
This commit is contained in:
parent
6a05668cb5
commit
077ad8abe8
|
@ -163,7 +163,7 @@ const changeType = (val: SelectValue) => {
|
|||
_value.value.fileType = _value.value.fileType || 'url'
|
||||
}
|
||||
if (['date'].includes(val as string)) {
|
||||
_value.value.format = _value.value.format || 'yyyy-MM-DD HH:mm:ss'
|
||||
_value.value.format = _value.value.format || 'yyyy-MM-dd HH:mm:ss'
|
||||
}
|
||||
emit('changeType', val as string)
|
||||
}
|
||||
|
|
|
@ -169,7 +169,7 @@ const handleOk = () => {
|
|||
if (resp.status === 200) {
|
||||
if (resp.result === '失败') {
|
||||
message.error('缴费失败')
|
||||
} else if(resp.result) {
|
||||
} else if(!resp.result) {
|
||||
onlyMessage('操作过于频繁,请稍后再试!', 'warning')
|
||||
} else {
|
||||
window.open(resp.result);
|
||||
|
|
Loading…
Reference in New Issue