web-xiangsonghua/dwt-circuit/webpack-circuit/src/pages/draw/template/creat-diagram-dialog/tmp.js
2024-12-23 15:13:57 +08:00

19 lines
796 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

let creatDialogTmp = `
<ul class="creat-diagram-dialog">
<li class="pr-list">
<span>所属配电室:</span>
<span id="creat-diagram-prlist"></span>
</li>
<li>
<label><span>画布名:</span> <input type="text" class="name" placeholder="请输入画布名"/></label>
</li>
<li>
<span>画布大小:</span> <input type="text" class="width" placeholder="请输入宽度" value="1920"/> × <input type="text" class="height" placeholder="请输入高度" value="1080"/> (单位:像素)
</li>
<li>
<span>画布背景色:</span> <input type="text" class="color-inp" placeholder="请输入颜色,如:#60a3a4" value="#60a3a4"/> <input type="color" class="color-sel" value="#60a3a4">
</li>
</ul>
`
export { creatDialogTmp }