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

32 lines
1.2 KiB
HTML

<style>
#modalCharModal { z-index:1050; }
</style>
<!-- 演员编辑弹窗 -->
<div class="modal-overlay" id="modalCharModal">
<div class="modal">
<h3 id="modalCharTitle">添加演员</h3>
<div class="form-group">
<label>演员名 <span style="color:#e44;">*</span></label>
<input type="text" id="modalCharName" placeholder="请输入演员名">
</div>
<div class="form-group">
<label>演员描述 <span style="color:#e44;">*</span></label>
<input type="text" id="modalCharDesc" placeholder="请输入演员描述">
</div>
<div class="form-group">
<label>声音文件 <span style="color:#e44;">*</span></label>
<input type="file" id="modalCharVoice" accept="audio/*">
</div>
<div class="form-group">
<label>人物形象 <span style="color:#e44;">*</span></label>
<input type="file" id="modalCharPortrait" accept="image/*">
</div>
<input type="hidden" id="editModalCharIdx" value="-1">
<div class="modal-actions">
<button class="btn btn-outline" onclick="hideModalCharForm()">取消</button>
<button class="btn btn-primary" onclick="saveChar(this)">保存</button>
</div>
</div>
</div>