|
@@ -50,7 +50,7 @@
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<!-- /.box-header -->
|
|
- <div class="box-body">
|
|
|
|
|
|
+ <div class="box-body" id="print">
|
|
{{--content--}}
|
|
{{--content--}}
|
|
<div class="row" style="text-align: center">
|
|
<div class="row" style="text-align: center">
|
|
<h3>海勃湾区房屋征收提前搬迁奖励单</h3><br>
|
|
<h3>海勃湾区房屋征收提前搬迁奖励单</h3><br>
|
|
@@ -117,8 +117,10 @@
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td rowspan="2">征收实施单位<textarea name="zc" style="width: 90%;height: 200px;">{{ $table->zc }}</textarea></td>
|
|
<td rowspan="2">征收实施单位<textarea name="zc" style="width: 90%;height: 200px;">{{ $table->zc }}</textarea></td>
|
|
- <td colspan="2">被征收人<input name="bzc" value="{{ $table->bzc }}" class="form-control" type="text" placeholder=""></td>
|
|
|
|
- <td colspan="2">代理人<input name="daili" value="{{ $table->daili }}" class="form-control" type="text" placeholder=""></td>
|
|
|
|
|
|
+ <td>被征收人</td>
|
|
|
|
+ <td><input name="bzc" value="{{ $table->bzc }}" class="form-control" type="text" placeholder=""></td>
|
|
|
|
+ <td>代理人</td>
|
|
|
|
+ <td><input name="daili" value="{{ $table->daili }}" class="form-control" type="text" placeholder=""></td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td>签约时间</td>
|
|
<td>签约时间</td>
|
|
@@ -126,9 +128,9 @@
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td><p>发证单位审核意见</p></td>
|
|
<td><p>发证单位审核意见</p></td>
|
|
- <td colspan="3"><p style="margin-top: 50%;text-align: center"> 年 月 日</p></td>
|
|
|
|
|
|
+ <td colspan="2"><p style="margin-top: 30%;text-align: center"> 年 月 日</p></td>
|
|
<td><p>征收实施单位审批意见</p></td>
|
|
<td><p>征收实施单位审批意见</p></td>
|
|
- <td colspan="3"><p style="margin-top: 50%;text-align: center"> 年 月 日</p></td>
|
|
|
|
|
|
+ <td colspan="3"><p style="margin-top: 30%;text-align: center"> 年 月 日</p></td>
|
|
</tr>
|
|
</tr>
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
@@ -138,28 +140,6 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="row">
|
|
|
|
- <div class="col-sm-8"></div>
|
|
|
|
- <div class="col-sm-4">
|
|
|
|
- @if($table->status == null || $table->status<3)
|
|
|
|
- @if($user->role == 0 && $table->status == 0)
|
|
|
|
- <button id="sub" type="submit" onclick="javascript:this.form.action='{{ url('/table/save/'.$table_id.'/update') }}'" class="btn btn-success">
|
|
|
|
- 保存</button>
|
|
|
|
- @endif
|
|
|
|
- @if($user->role == $table->status)
|
|
|
|
- @if($table->status == 0)
|
|
|
|
- <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">提交</button>
|
|
|
|
- @else
|
|
|
|
- <button id="sub" type="submit" onclick="javascript:this.form.action='{{ url('/table/sub/'.$table_id) }}'" class="btn btn-primary">
|
|
|
|
- 提交</button>
|
|
|
|
- @endif
|
|
|
|
- @endif
|
|
|
|
- <a href="{{ url('/on_table') }}" class="btn btn-info">返回</a>
|
|
|
|
- @else
|
|
|
|
- <a href="{{ url('/') }}" class="btn btn-info">返回</a>
|
|
|
|
- @endif
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{--model--}}
|
|
{{--model--}}
|
|
@@ -219,11 +199,45 @@
|
|
}).on('changeDate',function(){
|
|
}).on('changeDate',function(){
|
|
$(".datetimepicker").hide();
|
|
$(".datetimepicker").hide();
|
|
});
|
|
});
|
|
|
|
+ function printed(printpage)
|
|
|
|
+ {
|
|
|
|
+ var headstr = "<html><head><title></title></head><body>";
|
|
|
|
+ var footstr = "</body>";
|
|
|
|
+ var newstr = document.all.item(printpage).innerHTML;
|
|
|
|
+ var oldstr = document.body.innerHTML;
|
|
|
|
+ document.body.innerHTML = headstr+newstr+footstr;
|
|
|
|
+ window.print();
|
|
|
|
+ document.body.innerHTML = oldstr;
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
</script>
|
|
</script>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
<!-- /.box-body -->
|
|
</div>
|
|
</div>
|
|
<!-- /.box -->
|
|
<!-- /.box -->
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-sm-8"></div>
|
|
|
|
+ <div class="col-sm-4">
|
|
|
|
+ @if($table->status == null || $table->status<3)
|
|
|
|
+ @if($user->role == 0 && $table->status == 0)
|
|
|
|
+ <button id="sub" type="submit" onclick="javascript:this.form.action='{{ url('/table/save/'.$table_id.'/update') }}'" class="btn btn-success">
|
|
|
|
+ 保存</button>
|
|
|
|
+ @endif
|
|
|
|
+ @if($user->role == $table->status)
|
|
|
|
+ @if($table->status == 0)
|
|
|
|
+ <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">提交</button>
|
|
|
|
+ @else
|
|
|
|
+ <button id="sub" type="submit" onclick="javascript:this.form.action='{{ url('/table/sub/'.$table_id) }}'" class="btn btn-primary">
|
|
|
|
+ 提交</button>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ <a href="{{ url('/on_table') }}" class="btn btn-info">返回</a>
|
|
|
|
+ @else
|
|
|
|
+ <a href="{{ url('/') }}" class="btn btn-info">返回</a>
|
|
|
|
+ <a onclick="printed('print')" class="btn btn-success">打印</a>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
|
|
</section>
|
|
</section>
|
|
<!-- /.content -->
|
|
<!-- /.content -->
|