Authored by 陶雨

专题管理链接管理删除标题中多余的引号

修改链接不能完全显示的问题
... ... @@ -225,7 +225,7 @@ $(document).on("click", ".copy", function() {
$(document).on("click", ".showLink", function () {
var item = g.rows[$(this).data("index")];
var a=new common.dialog({
title:"\"\""+item.title + "\"\"链接",
title:"\""+item.title + "\"链接",
width:"80%",
content:common.util.__template2($("#links-template").html(), item)
});
... ...
... ... @@ -605,3 +605,12 @@ li.sortable-placeholder {
}
.dd3-handle:before { content: '≡'; display: block; position: absolute; left: 0; top: 5px; width: 100%; text-align: center; text-indent: 0; color: #ccc; font-size: 20px; font-weight: normal; }
.dd3-handle:hover { background: #f7f7f7; }
.link-area {
border: 0;
resize:none;
outline:none;
background-color: transparent;
width: 100%;
word-break:break-all;
}
\ No newline at end of file
... ...
exports.domain = require('../config/common.js').domain;
// exports.domain = 'http://172.16.6.250:2081/platform';//庞洁
// exports.domain = 'http://172.16.6.189:8088/platform';//李建
//exports.domain = 'http://172.16.6.108:8088/platform';//谭玲
//营销管理路由配置
exports.res = [
{
... ...
... ... @@ -187,21 +187,21 @@
[[if linkWeb]]
<tr>
<td align="right">WEB链接</td>
<td width="80%"><textarea readonly style="border: 0;resize:none;outline:none;background-color: transparent;width: 100%;" id="linkWeb[[id]]">[[linkWeb]]</textarea></td>
<td width="80%"><textarea readonly class="link-area" id="linkWeb[[id]]">[[linkWeb]]</textarea></td>
<td><a class="btn btn-primary copy" data-link="linkWeb[[id]]">复制</a></td>
</tr>
[[/if]]
[[if linkWap]]
<tr>
<td align="right">WAP链接</td>
<td width="80%"><textarea readonly style="border: 0;resize:none;outline:none;background-color: transparent; width: 100%;" id="linkWap[[id]]">[[linkWap]]</textarea></td>
<td width="80%"><textarea readonly class="link-area" id="linkWap[[id]]">[[linkWap]]</textarea></td>
<td><a class="btn btn-primary copy" data-link="linkWap[[id]]">复制</a></td>
</tr>
[[/if]]
[[if linkApp]]
<tr>
<td align="right">APP链接</td>
<td width="80%"><textarea readonly style="border: 0;resize:none;outline:none;background-color: transparent;width: 100%;" id="linkApp[[id]]">[[linkApp]]</textarea></td>
<td width="80%"><textarea readonly class="link-area" id="linkApp[[id]]">[[linkApp]]</textarea></td>
<td><a class="btn btn-primary copy" data-link="linkApp[[id]]">复制</a></td>
</tr>
[[/if]]
... ...