Files
video-factory/shortdrama/view/modal-scene-form.html
T
2026-07-03 11:38:30 +08:00

28 lines
1.0 KiB
HTML

<style>
#modalSceneModal { z-index:1050; }
</style>
<!-- 场景编辑弹窗 -->
<div class="modal-overlay" id="modalSceneModal">
<div class="modal">
<h3 id="modalSceneTitle">添加场景</h3>
<div class="form-group">
<label>场景名 <span style="color:#e44;">*</span></label>
<input type="text" id="modalSceneName" placeholder="请输入场景名">
</div>
<div class="form-group">
<label>场景描述 <span style="color:#e44;">*</span></label>
<input type="text" id="modalSceneDesc" placeholder="请输入场景描述">
</div>
<div class="form-group">
<label>场景图片 <span style="color:#e44;">*</span></label>
<input type="file" id="modalSceneImage" accept="image/*">
</div>
<input type="hidden" id="editModalSceneIdx" value="-1">
<div class="modal-actions">
<button class="btn btn-outline" onclick="hideModalSceneForm()">取消</button>
<button class="btn btn-primary" onclick="saveScene(this)">保存</button>
</div>
</div>
</div>