...
|
...
|
@@ -379,7 +379,7 @@ class IndexController extends AbstractAction |
|
|
'invoiceNotice' => '发票须知',
|
|
|
'phone' => $mobile ? substr_replace($mobile, '****', 3, 4) : '',
|
|
|
'completeTel' => $mobile,
|
|
|
'isCompany' => $invoice_Top ? false : true,
|
|
|
'isCompany' => $invoice_Top =='单位' ? false : true,
|
|
|
'companyName' => $invoices_title,
|
|
|
'invoicesType' => array(
|
|
|
array(
|
...
|
...
|
@@ -396,11 +396,11 @@ class IndexController extends AbstractAction |
|
|
'invoiceTitle' => array(
|
|
|
array(
|
|
|
'type' => '个人',
|
|
|
'choosed' => !isset($invoices_title) ? true : false,
|
|
|
'choosed' =>$invoice_Top == '个人'? true : false,
|
|
|
),
|
|
|
array(
|
|
|
'type' => '单位',
|
|
|
'choosed' => isset($invoices_title) ? true : false,
|
|
|
'choosed' => $invoice_Top == '单位' ? true : false,
|
|
|
)
|
|
|
),
|
|
|
'content' => array(
|
...
|
...
|
|