Commit 9e181ecf authored by chenqikuai's avatar chenqikuai

fix

parent ee968b2a
......@@ -208,12 +208,44 @@
</div>
<sy-common-dialog
showMask
v-if="PromptShow"
:visible="PromptShow"
@closePopup="PromptShow = false"
type="element"
:elementDialogProps="{
title: '提示',
width: '600px',
}"
:btnConfig="{
type: 'noBorder',
btns: [{
name: '取消',
disabled: false,
loading: false,
type: 'default' as const,
},
{
name: '确定',
disabled: false,
loading: false,
type: 'primary' as const,
}
],
btnFunctions: [{
name: '取消',
async click(){
return true;
},
}, {
name: '确定',
click: async() =>{
$refs.notify.checkForm()
return true;
},
}]
}"
>
<syPrompt
:width="600"
:height="368"
ref="notify"
tip="您的账户还很充足奥~请剩余少量余额时在进行充值"
@close="PromptShow = false"
@confirm="PromptShow = false"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment