キャッシュデータの作成

This commit is contained in:
2026-04-27 14:22:56 +09:00
parent 1bc9e594e2
commit 5b1a9c51bf
8 changed files with 198 additions and 127 deletions

View File

@@ -0,0 +1,30 @@
{@ include(common/header) @}
検索<br />
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
<th>名前</th>
<th>会社名</th>
<th>メールアドレス</th>
<th>ハンドル</th>
<th>メモ</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getcustomer/{{ $d['handle'] }}">{{ $d['name']['full_name'] }}</a></td>
<td>{{ $d['company_name'] }}</td>
<td>{{ $d['email'] }}</td>
<td>{{ $d['handle'] }}</td>
<td></td>
</tr>
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}
{@ include(common/footer) @}