index.html
6.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<include file="public@header"/>
</head>
<body>
<!--<script type="text/html" id="photos-item-tpl">-->
<!--<li id="saved-image{id}">-->
<!--<input id="photo-{id}" type="hidden" name="environment[]" value="{filepath}">-->
<!--<img id="photo-{id}-preview" src="{url}" style="height:36px;width: 36px;"-->
<!--onclick="imagePreviewDialog(this.src);">-->
<!--<a href="javascript:uploadOneImage('图片上传','#photo-{id}');">替换</a>-->
<!--<a href="javascript:(function(){$('#saved-image{id}').remove();})();">移除</a>-->
<!--</li>-->
<!--</script>-->
<script type="text/html" id="photos-item-tpl">
<li id="saved-image{id}">
<input id="photo-{id}" type="hidden" name="images[]" value="{filepath}">
<img id="photo-{id}-preview" src="{url}" style="height:36px;width: 36px;"
onclick="imagePreviewDialog(this.src);">
<a href="javascript:uploadOneImage('图片上传','#photo-{id}');">替换</a>
<a href="javascript:(function(){$('#saved-image{id}').remove();})();">移除</a>
</li>
</script>
<!--<script type="text/html" id="video-item-tpl">-->
<!--<li id="saved-video{id}">-->
<!--<input id="video-{id}" type="hidden" name="video" value="{filepath}">-->
<!--<a id="video-{id}-preview" href="{:cmf_get_image_url('')}{filepath}" target="_blank">查看</a>-->
<!--<a href="javascript:uploadOne('视频上传','#video-{id}','video');">替换</a>-->
<!--<a href="javascript:(function(){$('#saved-video{id}').remove();})();">移除</a>-->
<!--</li>-->
<!--</script>-->
<div class="wrap js-check-wrap">
<form action="{:url('project/index')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<!--<tr class="video">-->
<!--<th>视频<span class="form-required">*</span></th>-->
<!--<td>-->
<!--<ul id="video" class="pic-list list-unstyled form-inline">-->
<!--<notempty name="$data.video">-->
<!--<li id="saved-video{$data.id}">-->
<!--<input id="video-{$data.id}" type="hidden" name="video" value="{$data.video}">-->
<!--<a id="video-{$data.id}-preview" href="{:cmf_get_image_url($data.video)}" target="_blank">查看</a>-->
<!--<a href="javascript:uploadOne('视频上传','#video-{$data.id}','video');">替换</a>-->
<!--<a href="javascript:(function(){$('#saved-video{$data.id}').remove();})();">移除</a>-->
<!--</li>-->
<!--</notempty>-->
<!--</ul>-->
<!--<a href="javascript:uploadMultiFile('视频文件上传','#video','video-item-tpl','video');"-->
<!--class="btn btn-sm btn-default">选择视频文件</a>-->
<!--</td>-->
<!--</tr>-->
<tr>
<th width="100">产品方案<span class="form-required">*</span></th>
<td>
<script type="text/plain" id="content" name="content">{:cmf_replace_content_file_url(htmlspecialchars_decode($data.content))}</script>
</td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary js-ajax-submit">更新</button>
<!--<a class="btn btn-default" href="javascript:history.back(-1);">{:lang('BACK')}</a>-->
</div>
</div>
</div>
<!--<div class="col-md-3">-->
<!--<table class="table table-bordered">-->
<!--<tr>-->
<!--<th>视频封面</th>-->
<!--</tr>-->
<!--<tr>-->
<!--<td>-->
<!--<div style="text-align: center;">-->
<!--<input type="hidden" name="video_thumbnail" id="video_thumbnail"-->
<!--value="{$data.video_thumbnail|default=''}">-->
<!--<a href="javascript:uploadOneImage('image upload','#video_thumbnail');">-->
<!--<if condition="empty($data['video_thumbnail'])">-->
<!--<img src="__TMPL__/public/assets/images/default-thumbnail.png"-->
<!--id="video_thumbnail-preview"-->
<!--width="135" style="cursor: pointer"/>-->
<!--<else/>-->
<!--<img src="{:cmf_get_image_url($data.video_thumbnail)}"-->
<!--id="video_thumbnail-preview"-->
<!--width="135" style="cursor: pointer"/>-->
<!--</if>-->
<!--</a>-->
<!--<input type="button" class="btn btn-sm btn-cancel-video_thumbnail"-->
<!--value="取消图片">-->
<!--</div>-->
<!--</td>-->
<!--</tr>-->
<!--</table>-->
<!--</div>-->
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript">
//编辑器路径定义
var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript">
$(function () {
editorcontent = new baidu.editor.ui.Editor();
editorcontent.render('content');
try {
editorcontent.sync();
} catch (err) {
}
$('.btn-cancel-thumbnail').click(function () {
$('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail').val('');
});
$('.btn-cancel-video_thumbnail').click(function () {
$('#video_thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#video_thumbnail').val('');
});
});
</script>
</body>
</html>