You've already forked lubo_comment_query
							
							
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <html lang="zh">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>录播节目点播信息修改</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <link href="{{ mix('/css/app.css') }}" rel="stylesheet"/>
 | |
|     <script src="{{ mix('/js/manifest.js') }}" rel="script"></script>
 | |
|     <link href="{{ asset('/css/vendor/picomplete/picomplete.css') }}" rel="stylesheet"/>
 | |
| </head>
 | |
| <body>
 | |
| @include("common.header")
 | |
| <form class="w-full lg:w-1/2 lg:ml-6 border-2" action="" method="post" enctype="multipart/form-data">
 | |
|     @if($program)
 | |
|         <label class="block my-2">
 | |
|             结束图像
 | |
|             @if(count($program->video_pivots) > 0 && $program->video_pivots->last()->stop_image)
 | |
|                 <img src="{{$program->video_pivots->last()->stop_image}}" alt="结束图片">
 | |
|             @else
 | |
|                 <div>
 | |
|                     <a href="{{route("program.construct.video.list", ["program"=>$program->id])}}"
 | |
|                        class="block px-6 py-2 inline-block rounded-full bg-cyan-600 text-white">
 | |
|                         去建设
 | |
|                     </a>
 | |
|                 </div>
 | |
|             @endif
 | |
|         </label>
 | |
|     @endif
 | |
|     <div>
 | |
|         复制的常驻留言,请选择:
 | |
|         <br>
 | |
|         @foreach($broadcastList as $broadcast)
 | |
|             <label>
 | |
|                 <input type="checkbox" name="ids[]" value="{{$broadcast->id}}">
 | |
|                 【{{$broadcast->from}}】:{{$broadcast->name}}
 | |
|             </label>
 | |
|             <br>
 | |
|         @endforeach
 | |
|     </div>
 | |
|     @include("common.form_error")
 | |
|     @if(sizeof($broadcastList) <= 0)
 | |
|         <div class="block my-2 text-center">
 | |
|             无可复制内容
 | |
|         </div>
 | |
|     @else
 | |
|     <div class="block my-2 text-center">
 | |
|         <input class="px-6 py-2 inline-block rounded-full bg-cyan-600 text-white" type="submit">
 | |
|     </div>
 | |
|     @endempty
 | |
| </form>
 | |
| @include("common.footer")
 | |
| </body>
 | |
| </html>
 |