Commit 558d358a by wuyang.zou

fix:

1、支付宝+微信 支付成功+退款成功 后的对话框界面下方的 确定 按钮隐藏
parent 6fdd1e87
......@@ -554,8 +554,11 @@ void HostWidget::ShowWiteMGS(ReqType type, bool flag, QString message)
ui->label_pay_time_load->setVisible(false);
ui->label_pay_money->setVisible(true);
ui->label_pay_money->setText(message);
ui->btn_pay_exit->setVisible(true);
//星巴克业务需求->支付成功无需显示确认按钮,减少店员点击动作;
//ui->btn_pay_exit->setVisible(true);
ui->btn_pay_exit->setText(QString::fromLocal8Bit("确认"));
ui->btn_pay_exit->setVisible(false);
if(flag) {
ui->label_pay_msg_time->setVisible(true);
......@@ -581,8 +584,10 @@ void HostWidget::ShowWiteMGS(ReqType type, bool flag, QString message)
ui->label_pay_time_load->setVisible(false);
ui->label_pay_money->setVisible(true);
ui->label_pay_money->setText(message);
ui->btn_pay_exit->setVisible(true);
//星巴克业务需求->支付成功无需显示确认按钮,减少店员点击动作;
//ui->btn_pay_exit->setVisible(true);
ui->btn_pay_exit->setText(QString::fromLocal8Bit("确认"));
ui->btn_pay_exit->setVisible(false);
if(flag) {
ui->label_pay_msg_time->setVisible(true);
......
#ifndef _VERSION_H_
#define _VERSION_H_
#define VER_MAJOR 0
#define VER_MAJOR 1
#define VER_MINOR 2
#define VER_REVISION 7
......
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