✏️ 正在编辑: index.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/indicador/index.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Indicadores</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form id="f_corretor" method="post"> <table summary="Corretores" class="selecionar"> <thead> <tr class="top_list"> <th>ID</th> <th>Nome</th> <th>Celular</th> <th>CPF</th> <th>UF</th> <th>Cidade</th> <th>Rota</th> <th>E-mail</th> <th>Apelido</th> <th>Grupo Comissão</th> <th colspan="4"></th> <th class="check_control"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tfoot> <tr> <td colspan="16">Quantidade: <?php echo count($this->paginator); ?></td> </tr> </tfoot> <tbody> <?php if( count($this->paginator) <= 0 ): ?> <tr> <td colspan="16">Nenhum indicador encontrado.</td> </tr> <?php else: foreach ( $this->paginator as $corretor ): ?> <tr class="<?php echo $corretor['corretor_desativado'] ? "desativado" : ""; ?>"> <td><?php echo $corretor['id'] ?></td> <td><?php echo $this->escape($corretor['nome']) ?></td> <td><?php echo isset($corretor['celular']) ? $corretor['celular'] : ""; ?></td> <td><?php echo $this->escape($corretor['cpf']); ?></td> <td><?php echo $this->escape($corretor['uf']); ?></td> <td><?php echo $this->escape($corretor['cidade']); ?></td> <td><?php echo $this->escape($corretor['rota']) ?></td> <td><div title="<?php echo $this->escape($corretor['email']); ?>" style="width:200px;overflow:hidden;"><?php echo $this->escape($corretor['email']); ?></div></td> <td><?php echo $this->escape($corretor['apelido']) ?></td> <td><?php echo $corretor['grupo_comissao_descricao']; ?></td> <td align="center"><a href="javascript://" onclick="resetGauth('<?php echo $this->url(['action' => 'reset-gauth']) ?>', <?php echo $corretor['id']; ?>)" class="link_reset"></a></td> <td align="center"><a href="<?php echo $this->url(['action' => 'save', 'id' => $corretor['id']]) ?>" class="link_edit" title="Editar"></a></td> <td align="center"><a href="<?php echo $this->url(['action' => 'delete', 'id' => $corretor['id']]) ?>" class="link_remove"></a></td> <td style="text-align: center !important;"> <span style="cursor: pointer" class='glyphicon-reg glyphicon-reg-notes_2 historico' title="Historico do Indicador" id="<?php echo $corretor['id']; ?>" onclick="getHistoricoCorretor(this, 'historico-indicador')"></span> </td> <td align="center"><input type="checkbox" name="corretores[]" id="checks[]" value="<?php echo $corretor['id'] ?>" /></td> </tr> <?php endforeach; endif ?> </tbody> <tfoot> <!-- <tr> <td colspan="13"> <select id="acao" style="width: 145px;"> <option value="editar-corretores">Alterar selecionados</option> </select> <input type="submit" value="OK" /> </td> </tr> --> </tfoot> </table> </form> </div> <?php if( $this->paginator ): ?> <div id="modal"> <?php echo $this->formUpdateCorretor; ?> </div> <?php endif; ?> <div id="historico-indicador" style="display: none;"> <div id="modal-historico"> <div class="clear"></div> </div> </div>
💾 保存文件
← 返回文件管理器