Authored by zhaoqing

限定详情页增加图片间空格

@@ -184,15 +184,14 @@ @@ -184,15 +184,14 @@
184 <button class="btn btn-info mr5" id="textDialog">文本</button> 184 <button class="btn btn-info mr5" id="textDialog">文本</button>
185 <button class="btn btn-info mr5" id="picDialog">图片</button> 185 <button class="btn btn-info mr5" id="picDialog">图片</button>
186 <button class="btn btn-info mr5" id="videoDialog">视频</button> 186 <button class="btn btn-info mr5" id="videoDialog">视频</button>
  187 + <button class="btn btn-info mr5" id="blankDialog">新图片</button>
187 </div> 188 </div>
188 </div> 189 </div>
189 </div> 190 </div>
190 -  
191 -  
192 <div class="pannel"> 191 <div class="pannel">
193 <div class="col-md-10"></div> 192 <div class="col-md-10"></div>
194 <div class="col-md-2"> 193 <div class="col-md-2">
195 - <input id="limit-add-btn" class="btn btn-success limit-add-btn" type="button" value="保存"></input> 194 + <input id="limit-add-btn" class="btn btn-success limit-add-btn" type="button" value="保存"></input>
196 </div> 195 </div>
197 </div> 196 </div>
198 </div> 197 </div>
@@ -8,7 +8,8 @@ var ENMA = { @@ -8,7 +8,8 @@ var ENMA = {
8 attachType: { 8 attachType: {
9 1: "图片", 9 1: "图片",
10 2: "视频", 10 2: "视频",
11 - 3: "文本" 11 + 3: "文本",
  12 + 4: "新图片"
12 }, 13 },
13 dia:{ 14 dia:{
14 1:"img", 15 1:"img",
@@ -43,7 +44,10 @@ var g = new common.grid({ @@ -43,7 +44,10 @@ var g = new common.grid({
43 return "<img src='" + item.attachUrl + "' style='width:120px;height:80px' />"; 44 return "<img src='" + item.attachUrl + "' style='width:120px;height:80px' />";
44 } else if (item.attachType == 2) { 45 } else if (item.attachType == 2) {
45 return "<video src='" + item.attachUrl + "' controls></video>"; 46 return "<video src='" + item.attachUrl + "' controls></video>";
46 - } else { 47 + } else if (item.attachType == 4) {
  48 + return "<img src='" + item.attachUrl + "' style='width:120px;height:80px'/>";
  49 + }
  50 + else {
47 return item.intro; 51 return item.intro;
48 } 52 }
49 } 53 }
@@ -388,13 +392,8 @@ e.on("validate", function() { @@ -388,13 +392,8 @@ e.on("validate", function() {
388 } 392 }
389 }) 393 })
390 394
391 -  
392 -  
393 -  
394 e.init(); 395 e.init();
395 396
396 -  
397 -  
398 //添加修改 397 //添加修改
399 $('.limit-add-btn').click(function(option) { 398 $('.limit-add-btn').click(function(option) {
400 isSave = true; 399 isSave = true;
@@ -481,6 +480,36 @@ var Bll = { @@ -481,6 +480,36 @@ var Bll = {
481 }); 480 });
482 a.init(); 481 a.init();
483 }, 482 },
  483 + imgBlank: function(title, item, index) {
  484 + common.dialog.confirm(title, common.util.__template($("#picDialogTemp").html(), item), function() {
  485 + var _html = $.trim($("#imgText").val());
  486 +
  487 + if (_html) {
  488 + if (item.attachType) {
  489 + //修改
  490 + g.__rows[index].attachUrl = _html;
  491 + } else {
  492 + //添加
  493 + g.__rows.push({
  494 + "attachType":4,
  495 + "attachUrl": _html,
  496 + "isDefault": 0,
  497 + "attachName": $("#attachName").val()
  498 + });
  499 + }
  500 +
  501 + g.reload();
  502 + e1.init();
  503 + }
  504 + });
  505 + var a = new common.edit("#upload-wrapper",ENMA.bucket);
  506 + a.on("callback", function(obj) {
  507 + if (obj.key == "file_onComplete_imgfile") {
  508 + $("#imgText").val(obj.data);
  509 + }
  510 + });
  511 + a.init();
  512 + },
484 video:function(title, item, index){ 513 video:function(title, item, index){
485 common.dialog.confirm(title, common.util.__template($("#vidioDialogTemp").html(), item), function() { 514 common.dialog.confirm(title, common.util.__template($("#vidioDialogTemp").html(), item), function() {
486 var _html = $.trim($("#videoText").val()); 515 var _html = $.trim($("#videoText").val());
@@ -547,6 +576,7 @@ var Bll = { @@ -547,6 +576,7 @@ var Bll = {
547 }); 576 });
548 // $('#text-editor').wysihtml5(); 577 // $('#text-editor').wysihtml5();
549 } 578 }
  579 +
550 } 580 }
551 581
552 //添加文字 582 //添加文字
@@ -554,6 +584,11 @@ $('body').on('click', '#textDialog', function() { @@ -554,6 +584,11 @@ $('body').on('click', '#textDialog', function() {
554 Bll.wenZi("添加文字", {}); 584 Bll.wenZi("添加文字", {});
555 return false; 585 return false;
556 }); 586 });
  587 +//添加空格
  588 +$('body').on('click', '#blankDialog', function() {
  589 + Bll.imgBlank("添加新图片",{});
  590 + return false;
  591 +});
557 $('body').on('click', '#picDialog', function() { 592 $('body').on('click', '#picDialog', function() {
558 Bll.img("添加图片",{}); 593 Bll.img("添加图片",{});
559 return false; 594 return false;