24 lines
953 B
HTML
24 lines
953 B
HTML
<style>
|
|
#epModal { z-index:1050; }
|
|
</style>
|
|
|
|
<!-- 剧集编辑弹窗 -->
|
|
<div class="modal-overlay" id="epModal">
|
|
<div class="modal modal-wide">
|
|
<h3 id="epModalTitle">添加剧集</h3>
|
|
<div class="form-group">
|
|
<label>剧集标题 <span style="color:#e44;">*</span></label>
|
|
<input type="text" id="epTitle" placeholder="请输入剧集标题">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>剧集描述</label>
|
|
<textarea id="epScript" placeholder="请输入剧集描述" rows="4" style="width:100%;padding:8px 10px;border:1px solid #d9d9d9;border-radius:6px;font-size:13px;outline:none;font-family:inherit;resize:vertical"></textarea>
|
|
</div>
|
|
<input type="hidden" id="editEpId" value="">
|
|
<div class="modal-actions">
|
|
<button class="btn btn-outline" onclick="hideEpModal()">取消</button>
|
|
<button class="btn btn-primary" id="saveEpBtn" onclick="saveEp()">保存</button>
|
|
</div>
|
|
</div>
|
|
</div>
|