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

28 lines
1023 B
HTML

<style>
#modalPropModal { z-index:1050; }
</style>
<!-- 道具编辑弹窗 -->
<div class="modal-overlay" id="modalPropModal">
<div class="modal">
<h3 id="modalPropTitle">添加道具</h3>
<div class="form-group">
<label>道具名 <span style="color:#e44;">*</span></label>
<input type="text" id="modalPropName" placeholder="请输入道具名">
</div>
<div class="form-group">
<label>道具描述 <span style="color:#e44;">*</span></label>
<input type="text" id="modalPropDesc" placeholder="请输入道具描述">
</div>
<div class="form-group">
<label>道具图片 <span style="color:#e44;">*</span></label>
<input type="file" id="modalPropImage" accept="image/*">
</div>
<input type="hidden" id="editModalPropIdx" value="-1">
<div class="modal-actions">
<button class="btn btn-outline" onclick="hideModalPropForm()">取消</button>
<button class="btn btn-primary" onclick="saveProp(this)">保存</button>
</div>
</div>
</div>