Commit 5fa1493f by 朱继来

Merge branch 'zjl_adjust_20181026'

parents 3a1520bf adef431e
Showing with 8 additions and 2 deletions
...@@ -152,8 +152,14 @@ ...@@ -152,8 +152,14 @@
@if (strpos($k, '.') !== false) @if (strpos($k, '.') !== false)
<p> <p>
<?php <?php
$sid = explode('.', $k)[1]; $sid = explode('.', $k);
echo App\Http\Controllers\getSupplierName($sid); // echo App\Http\Controllers\getSupplierName($sid);
if ($sid[0] == 17) { // 联营供应商
echo $sid[1];
} else {
echo $v['supplier_name'];
}
?> ?>
</p> </p>
@else @else
......
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