{!! $tpl->displayNotification() !!}
{!! __('link.new_project') !!}
{{-- 视图切换:甘特图 / 列表 --}}
{{-- 甘特图视图(默认显示,页面加载即初始化) --}}
{{-- 列表视图(默认隐藏) --}}
| {!! __('label.project_name') !!} |
{!! __('label.client_product') !!} |
{!! __('label.project_type') !!} |
{!! __('label.project_state') !!} |
{!! __('label.hourly_budget') !!} |
{!! __('label.budget_cost') !!} |
|
@foreach ($allProjects as $row)
|
{{ $row['name'] }}
|
{{ $row['clientName'] }}
|
{{ $row['type'] }} |
@if ($row['state'] == -1)
{!! __('label.closed') !!}
@else
{!! __('label.open') !!}
@endif
|
{{ $row['hourBudget'] }} |
{{ $row['dollarBudget'] }} |
|
关联主数据
@if (empty($row['linkedMasters']))
暂无关联主数据
@else
| 类型 | 编号 | 名称 | 操作 |
@foreach ($row['linkedMasters'] as $m)
| {{ $m['typeName'] }} |
{{ $m['bomNo'] ?? '' }} |
{{ $m['productName'] ?? '' }} |
查看 |
@endforeach
@endif
|
@endforeach
{{-- /#listView --}}