You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
973 B
PHP
22 lines
973 B
PHP
<div class="col-xs-24">
|
|
<div class="col-xs-24 btn-lg"></div>
|
|
<h4 class="text-center"><a style="font-size:20px;" target="_blank" href="/css/images/step.png?v=20150716">外联填写值班记录步骤说明</a></h4>
|
|
</div>
|
|
<?php foreach ($typelist[0] as $p) { ?>
|
|
<div class="col-xs-24">
|
|
<div class="col-xs-24 btn-lg"></div>
|
|
<h4><?php echo $p->wt_name; ?></h4>
|
|
<div class="row">
|
|
<?php
|
|
if(isset($typelist[$p->wt_sn]) && !empty($typelist[$p->wt_sn])){
|
|
foreach ($typelist[$p->wt_sn] as $t) { ?>
|
|
<div class="col-sm-4 col-xs-10">
|
|
<a class="col-xs-24 type-item" href="<?php echo site_url('apps/workflow/index/add_work/'.$t->wt_sn); ?>">
|
|
<?php echo $t->wt_name; ?>
|
|
<p class="text-muted small" style="padding-top:0px;"><?php echo $t->wt_description; ?></p>
|
|
</a>
|
|
</div>
|
|
<?php }} ?>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|