Commit 82bd60e4 by 朱继来

调整支付时间显示

parent 9414ab18
Showing with 5 additions and 1 deletions
......@@ -284,7 +284,11 @@
if ($v['order_pay_time'] != 0) {
echo date('Y-m-d H:i:s', $v['order_pay_time']);
} else {
echo date('Y-m-d H:i:s', $v['advance_pay_time']);
if ($v['advance_pay_time'] != 0) {
echo date('Y-m-d H:i:s', $v['advance_pay_time']);
} else {
echo '';
}
}
?>
</td>
......
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 sign in to comment