Przeglądaj źródła

产权交易

RongCheng
庞东旭 2 lat temu
rodzic
commit
7595cbbc37
7 zmienionych plików z 879 dodań i 4 usunięć
  1. +7
    -0
      static/js/api/items.js
  2. +7
    -1
      static/js/common/main.js
  3. +41
    -0
      static/js/common/tools.js
  4. +210
    -0
      static/js/lib/jq-signature/WritingPad.js
  5. +235
    -0
      static/js/lib/jq-signature/jq-signature.js
  6. +44
    -1
      static/js/project/listingItems/bond.js
  7. +335
    -2
      view/listingItems/bond.html

+ 7
- 0
static/js/api/items.js Wyświetl plik

@@ -84,6 +84,13 @@ var biddingSubmit = '/transaction/bidding/add'//出价
*/ */
var base64Upload = '/common/base64Attach'//上传凭证 var base64Upload = '/common/base64Attach'//上传凭证


/*
@purl /common/base64Attach
@param
id: 主键ID
*/
var sign = '/open/attachment/sign'//上传凭证

/* /*
@purl /transaction/website/needProject/ @purl /transaction/website/needProject/
@param @param


+ 7
- 1
static/js/common/main.js Wyświetl plik

@@ -20,6 +20,8 @@ requirejs.config({
paging:'lib/paging/page_common',//分页插件 paging:'lib/paging/page_common',//分页插件
cupload:'lib/cupload/cupload',//上传图片插件 cupload:'lib/cupload/cupload',//上传图片插件
dateTime:'lib/dateTime/dateTime.min',//时间选择器 dateTime:'lib/dateTime/dateTime.min',//时间选择器
signature:'lib/jq-signature/jq-signature',
WritingPad:'lib/jq-signature/WritingPad',


//自己写的路径配置 //自己写的路径配置
Tools: 'common/tools', Tools: 'common/tools',
@@ -76,7 +78,11 @@ requirejs.config({
jsencrypt: { jsencrypt: {
deps: ['jquery'], deps: ['jquery'],
exports: 'jsencrypt' exports: 'jsencrypt'
}
},
// WritingPad: {
// deps: ['jquery','signature'],
// exports: 'WritingPad'
// },
} }
}); });




+ 41
- 0
static/js/common/tools.js Wyświetl plik

@@ -59,6 +59,47 @@ define(['jquery', 'dialog','jsencrypt'], function ($, dialog,JSEncrypt) {
} }
}); });
}, },
doPostSign: function (url, data, cb, Bearer) {
var _this = this;
// data.deptId = 100 ;
// console.log(data)
var headAttribute = '';
if (Bearer && Bearer == true || _this.getCookie('Admin-Token') == '') {
headAttribute = function (xhr) {
xhr.setRequestHeader("Content-Type", 'application/json;charset=utf-8');
}
} else {
headAttribute = function (xhr) {
xhr.setRequestHeader("Content-Type", 'application/json;charset=utf-8');
xhr.setRequestHeader('Authorization', 'Bearer ' + _this.getCookie('Admin-Token'))
}
}
$.ajax({
url: ajaxJsUrl + url + '?=' + Math.random(),
type: 'POST',
data: data,
dataType: 'json',
contentType: false,
processData: false, // jQuery不要去处理发送的数据
success: function (data) {
var code = data.code;
var msg = data.msg;
if (code === 401) {
_this.removeAllCookie();
_this.initDialog('系统提示', '登录状态已过期,您可以继续留在该页面,或者重新登录', function () {
_this.skip('/view/login/login.html')
}, '重新登录', function () { }, "取消")
} else if (code === 500) {
_this.initError(msg)
cb(data);
} else if (code != 200) {
_this.initError(msg)
} else {
cb(data);
}
}
});
},
/** /**
* ajax post * ajax post
* @param url (String) * @param url (String)


+ 210
- 0
static/js/lib/jq-signature/WritingPad.js Wyświetl plik

@@ -0,0 +1,210 @@
/**
* 功能:签名canvas面板初始化,为WritingPad.js手写面板js服务。
* 作者:黄金锋 (549387177@qq.com)
* 日期:2015-11-15 15:51:01
* 版本:version 1.0
*/

(function (window, document, $) {
'use strict';

// Get a regular interval for drawing to the screen
window.requestAnimFrame = (function (callback) {
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimaitonFrame ||
function (callback) {
window.setTimeout(callback, 1000 / 60);
};
})();

/*
* Plugin Constructor
*/

var pluginName = 'jqSignature',
defaults = {
lineColor: '#222222',
lineWidth: 1,
border: '1px dashed #CCFF99',
background: '#FFFFFF',
width: 500,
height: 200,
autoFit: false
},
canvasFixture = '<canvas></canvas>';

function Signature(element, options) {
// DOM elements/objects
this.element = element;
this.$element = $(this.element);
this.canvas = false;
this.$canvas = false;
this.ctx = false;
// Drawing state
this.drawing = false;
this.currentPos = {
x: 0,
y: 0
};
this.lastPos = this.currentPos;
// Determine plugin settings
this._data = this.$element.data();
this.settings = $.extend({}, defaults, options, this._data);
// Initialize the plugin
this.init();
}

Signature.prototype = {
// Initialize the signature canvas
init: function () {
// Set up the canvas
this.$canvas = $(canvasFixture).appendTo(this.$element);
this.$canvas.attr({
width: this.settings.width,
height: this.settings.height
});
this.$canvas.css({
boxSizing: 'border-box',
width: this.settings.width + 'px',
height: this.settings.height + 'px',
border: this.settings.border,
background: this.settings.background,
cursor: 'crosshair'
});
// Fit canvas to width of parent
if (this.settings.autoFit === true) {
this._resizeCanvas();
}
this.canvas = this.$canvas[0];
this._resetCanvas();
// Set up mouse events
this.$canvas.on('mousedown touchstart', $.proxy(function (e) {
this.drawing = true;
this.lastPos = this.currentPos = this._getPosition(e);
}, this));
this.$canvas.on('mousemove touchmove', $.proxy(function (e) {
this.currentPos = this._getPosition(e);
}, this));
this.$canvas.on('mouseup touchend', $.proxy(function (e) {
this.drawing = false;
// Trigger a change event
var changedEvent = $.Event('jq.signature.changed');
this.$element.trigger(changedEvent);
}, this));
// Prevent document scrolling when touching canvas
$(document).on('touchstart touchmove touchend', $.proxy(function (e) {
if (e.target === this.canvas) {
e.preventDefault();
}
}, this));
// Start drawing
var that = this;
(function drawLoop() {
window.requestAnimFrame(drawLoop);
that._renderCanvas();
})();
},
// Clear the canvas
clearCanvas: function () {
this.canvas.width = this.canvas.width;
this._resetCanvas();
},
// Get the content of the canvas as a base64 data URL
getDataURL: function () {
return this.canvas.toDataURL();
},

reLoadData: function () {
this.$canvas.remove();
this._data = this.$element.data();

//for (var i in this.settings) {
// alert(i+":"+this.settings[i]);
//}

//this.settings = $.extend({}, defaults, this._data);
this.init();
},
// Get the position of the mouse/touch
_getPosition: function (event) {
var xPos, yPos, rect;
rect = this.canvas.getBoundingClientRect();
event = event.originalEvent;
// Touch event
if (event.type.indexOf('touch') !== -1) { // event.constructor === TouchEvent
xPos = event.touches[0].clientX - rect.left;
yPos = event.touches[0].clientY - rect.top;
}
// Mouse event
else {
xPos = event.clientX - rect.left;
yPos = event.clientY - rect.top;
}
return {
x: xPos,
y: yPos
};
},
// Render the signature to the canvas
_renderCanvas: function () {
if (this.drawing) {
this.ctx.moveTo(this.lastPos.x, this.lastPos.y);
this.ctx.lineTo(this.currentPos.x, this.currentPos.y);
this.ctx.stroke();
this.lastPos = this.currentPos;
}
},
// Reset the canvas context
_resetCanvas: function () {
this.ctx = this.canvas.getContext("2d");
this.ctx.strokeStyle = this.settings.lineColor;
this.ctx.lineWidth = this.settings.lineWidth;
},
// Resize the canvas element
_resizeCanvas: function () {
var width = this.$element.outerWidth();
this.$canvas.attr('width', width);
this.$canvas.css('width', width + 'px');
}
};

/*
* Plugin wrapper and initialization
*/

$.fn[pluginName] = function (options) {
var args = arguments;
if (options === undefined || typeof options === 'object') {
return this.each(function () {
if (!$.data(this, 'plugin_' + pluginName)) {
$.data(this, 'plugin_' + pluginName, new Signature(this, options));
}
});
}
else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') {
var returns;
this.each(function () {
var instance = $.data(this, 'plugin_' + pluginName);
if (instance instanceof Signature && typeof instance[options] === 'function') {
var myArr = Array.prototype.slice.call(args, 1);
returns = instance[options].apply(instance, myArr);
}
if (options === 'destroy') {
$.data(this, 'plugin_' + pluginName, null);
}
//if (options === 'reLoadData') {
// //this.$canvas.remove();
// $.data(this, 'plugin_' + pluginName, null);
// this._data = this.$element.data();
// this.settings = $.extend({}, defaults, options, this._data);
// this.init();
//}
});
return returns !== undefined ? returns : this;
}
};

})(window, document, jQuery);

+ 235
- 0
static/js/lib/jq-signature/jq-signature.js Wyświetl plik

@@ -0,0 +1,235 @@

var WritingPad = function () {

var current = null;

$(function () {

initHtml();

initTable();

initSignature();
//if ($(".modal")) {
// $(".modal").modal("toggle");
//} else {
// alert("没用手写面板");
//}
$(document).on("click", "#myClose,.close", null, function () {
$('#mymodal').modal('hide');
$("#mymodal").remove();

});
$(document).on("click", "#mySave", null, function () {
var myImg = $('#myImg').empty();
var dataUrl = $('.js-signature').jqSignature('getDataURL');
var img = $('<img>').attr('src', dataUrl);
$(myImg).append($('<p>').text("图片保存在这里"));
$(myImg).append(img);

});

$(document).on("click", "#myEmpty", null, function () {
$('.js-signature').jqSignature('clearCanvas');

});

$(document).on("click", "#myBackColor", null, function () {

$('#colorpanel').css('left', '95px').css('top', '45px').css("display", "block").fadeIn();
//$("canvas").css("background", "#EEEEEE");
$("#btnSave").data("sender", "#myBackColor");
});

$(document).on("click", "#myColor", null, function () {
$('#colorpanel').css('left', '205px').css('top', '45px').css("display", "block").fadeIn();
$("#btnSave").data("sender", "#myColor");
});

$(document).on("mouseover", "#myTable", null, function () {

if ((event.srcElement.tagName == "TD") && (current != event.srcElement)) {
if (current != null) { current.style.backgroundColor = current._background }
event.srcElement._background = event.srcElement.style.backgroundColor;
//$("input[name=DisColor]").css("background-color", event.srcElement.style.backgroundColor);
//var color = event.srcElement.style.backgroundColor;
//var strArr = color.substring(4, color.length - 1).split(',');
//var num = showRGB(strArr);
//$("input[name=HexColor]").val(num);
current = event.srcElement;
}

});

$(document).on("mouseout", "#myTable", null, function () {

if (current != null) current.style.backgroundColor = current._background

});

$(document).on("click", "#myTable", null, function () {

if (event.srcElement.tagName == "TD") {
var color = event.srcElement._background;
if (color) {
$("input[name=DisColor]").css("background-color", color);
var strArr = color.substring(4, color.length - 1).split(',');
var num = showRGB(strArr);
$("input[name=HexColor]").val(num);
}
}

});

$(document).on("click", "#btnSave", null, function () {

$('#colorpanel').css("display", "none");
var typeData = $("#btnSave").data("sender");
var HexColor = $("input[name=HexColor]").val();
var data = $(".js-signature").data();
if (typeData == "#myColor") {
data["plugin_jqSignature"]["settings"]["lineColor"] = HexColor;
$('.js-signature').jqSignature('reLoadData');
}
if (typeData == "#myBackColor") {

data["plugin_jqSignature"]["settings"]["background"] = HexColor;
$('.js-signature').jqSignature('reLoadData');
}
});

$("#mymodal").on('hide.bs.modal', function () {
$("#colorpanel").remove();
$("#mymodal").remove();
$("#myTable").remove();
});

});

function initHtml() {

var html = '<div class="modal" id="mymodal">' +
'<div class="modal-dialog">' +
'<div class="modal-content">' +
'<div class="modal-header">' +
'' +
'<h4 class="modal-title">手写面板</h4>' +
'</div>' +
'<div class="modal-body">' +
'<div class="js-signature" id="mySignature">' +
'</div>' +
'<div>' +
'<button type="button" class="btn btn-default" id="myEmpty">清空面板</button>' +
'<button type="button" class="btn btn-default" id="myBackColor">设置背景颜色</button>' +
//'<div style="position:absolute;relative">' +
'<button type="button" class="btn btn-default" id="myColor">设置字体颜色</button>' +
'<div id="colorpanel" style="position:absolute;z-index:99;display:none"></div>' +
//'</div>'+
'</div>' +
'</div>' +
'<div class="modal-footer">' +

'<button type="button" class="btn btn-default" id="myClose">关闭</button>' +
'<button type="button" class="btn btn-primary" id="mySave" onclick="savaimg();" >保存</button>' +
'<div id="myImg">' +
'<div>' +

'</div>' +
'</div>' +
'</div>' +
'</div>';

$('body').append(html);
}

function initTable() {
var colorTable = "";
var ColorHex = new Array('00', '33', '66', '99', 'CC', 'FF');
var SpColorHex = new Array('FF0000', '00FF00', '0000FF', 'FFFF00', '00FFFF', 'FF00FF');
for (var i = 0; i < 2; i++) {
for (var j = 0; j < 6; j++) {
colorTable = colorTable + '<tr height=12>';
colorTable = colorTable + '<td width=11 style="background-color:#000000"></td>';

if (i == 0) {
colorTable = colorTable + '<td width=11 style="background-color:#' + ColorHex[j] + ColorHex[j] + ColorHex[j] + '"></td>';
}
else {
colorTable = colorTable + '<td width=11 style="background-color:#' + SpColorHex[j] + '"></td>';
}

//colorTable = colorTable + '<td width=11 style="background-color:#000000"></td>';

for (var k = 0; k < 3; k++) {
for (l = 0; l < 6; l++) {
colorTable = colorTable + '<td width=11 style="background-color:#' + ColorHex[k + i * 3] + ColorHex[l] + ColorHex[j] + '"></td>';
}
}
colorTable = colorTable + '</tr>';


}
}
colorTable =
'<table border="1" id="myTable" cellspacing="0" cellpadding="0" style="border-collapse: collapse;cursor:pointer;" bordercolor="000000">'
+ colorTable + '</table>' +
'<table width=225 border="0" cellspacing="0" cellpadding="0" style="border:1px #000000 solid;border-collapse: collapse;background-color:#000000">' +
'<tr style="height:30px">' +
'<td colspan=21 bgcolor=#cccccc>' +

'<table cellpadding="0" cellspacing="1" border="0" style="border-collapse: collapse">' +
'<tr>' +
'<td width="3"><input type="text" name="DisColor" size="6" disabled style="border:solid 1px #000000;background-color:#ffff00"></td>' +
'<td width="3"><input type="text" name="HexColor" size="7" style="border:inset 1px;font-family:Arial;" value="#000000"></td>' +
'<td width="3"><button type="button" class="btn btn-primary btn-sm" id="btnSave">确认</button></td>' +
'</tr>' +
'</table>' +

'</td>' +
'</tr>' +
'</table>';
$("#colorpanel").append(colorTable);
}

function initSignature() {
// debugger;
if (window.requestAnimFrame) {
var signature = $("#mySignature");
signature.jqSignature({ width: 500, height: 200, border: '1px solid red', background: '#16A085', lineColor: '#ABCDEF', lineWidth: 2, autoFit: false });
//{ width: 600, height: 200, border: '1px solid red', background: '#16A085', lineColor: '#ABCDEF', lineWidth: 2, autoFit: true }
} else {
alert("请加载jq-signature.js");
return;
}
}

function showRGB(arr) {
hexcode = "#";
for (x = 0; x < 3; x++) {
var n = arr[x];
if (n == "") n = "0";
if (parseInt(n) != n)
return alert("RGB颜色值不是数字!");
if (n > 255)
return alert("RGB颜色数字必须在0-255之间!");
var c = "0123456789ABCDEF", b = "", a = n % 16;
b = c.substr(a, 1); a = (n - a) / 16;
hexcode += c.substr(a, 1) + b
}
return hexcode;
}

function init() {


}

return {
init: function () {
init();
}
};
}

+ 44
- 1
static/js/project/listingItems/bond.js Wyświetl plik

@@ -12,7 +12,11 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function
}; };
var tools = new Tools(); var tools = new Tools();


// var wp = new WritingPad();


module.init = function (page) {//底部友情链接 module.init = function (page) {//底部友情链接
// var wp = new WritingPad();
//获取焦点图信息 //获取焦点图信息
tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true);
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true);
@@ -33,6 +37,8 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function
tools.getWebConfig(); tools.getWebConfig();


tools.doGet(webConfig, {}, module.webConfig, true) tools.doGet(webConfig, {}, module.webConfig, true)


}; };


//底部友情链接 //底部友情链接
@@ -167,10 +173,46 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function
ele: '#cupload-3', ele: '#cupload-3',
num: 5, num: 5,
}); });
var cupload4 = new Cupload ({
ele: '#cupload-4',
num: 1,
});
} }
} }


submit = function(){
module.upLoadOver2 = function(data){
if (data.code == 200) {
submit(data.fileUrl)
}
}

submitFirst = function(){
$('#cupload-4').find('input').each(function() {
if($(this).val()!=''){
let wj = dataURLtoBlob($(this).val());
let param = new FormData() // 创建form对象
param.append('file', wj) // 通过append向form对象添加数据
param.append('isAngle', 'true') // 通过append向form对象添加数据
console.log(param)
tools.doPostSign(sign, param, module.upLoadOver2);
}
});
}
dataURLtoBlob = function (dataurl, filename = 'file') {
let arr = dataurl.split(',')
let mime = arr[0].match(/:(.*?);/)[1]
let suffix = mime.split('/')[1]
let bstr = atob(arr[1])
let n = bstr.length
let u8arr = new Uint8Array(n)
while (n--) {
u8arr[n] = bstr.charCodeAt(n)
}
return new File([u8arr], `${filename}.${suffix}`, {
type: mime
})
}
submit = function(signUrl){
if(module.onCheck()){ if(module.onCheck()){
var data = {}; var data = {};
var realName = $('#realName').val(); var realName = $('#realName').val();
@@ -195,6 +237,7 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function
data['payeePaymentLines'] = payeePaymentLines; data['payeePaymentLines'] = payeePaymentLines;
data['bankType'] = bankType; data['bankType'] = bankType;
data['accountType'] = accountType; data['accountType'] = accountType;
data['signPic'] = signUrl;
data['status'] = 'N'; data['status'] = 'N';


tools.doPost(signupSubmit, data, module.upLoadAction); tools.doPost(signupSubmit, data, module.upLoadAction);


+ 335
- 2
view/listingItems/bond.html Wyświetl plik

@@ -12,6 +12,8 @@
<link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
<link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> <link href="../../static/css/index.css" rel="stylesheet" type="text/css" />
<link href="../../static/css/listingItems/items.css" rel="stylesheet" type="text/css"/> <link href="../../static/css/listingItems/items.css" rel="stylesheet" type="text/css"/>
<!-- <script type="text/javascript" src="../../static/js/lib/jq-signature/jq-signature.js"></script>-->
<!-- <script type="text/javascript" src="../../static/js/lib/jq-signature/WritingPad.js"></script>-->
</head> </head>


<body> <body>
@@ -204,9 +206,340 @@
<td><span></span>缴款凭证:</td> <td><span></span>缴款凭证:</td>
<td colspan="3"><div id="cupload-3" class="m-l-10"></div></td> <td colspan="3"><div id="cupload-3" class="m-l-10"></div></td>
</tr> </tr>
<tr>
<td><span>*</span>电子签名:</td>
<td colspan="3"><div id="cupload-4" class="m-l-10"></div></td>
<!-- <td colspan="3">-->
<!-- <div class="modal" id="mymodal">-->

<!-- <div class="modal-dialog">-->

<!-- <div class="modal-content">-->

<!-- <div class="modal-header">-->
<!-- <h4 class="modal-title">手写面板</h4></div>-->
<!-- <div class="modal-body">-->
<!-- <div class="js-signature" id="mySignature">-->
<!-- <canvas width="500" height="200"-->
<!-- style="box-sizing: border-box; width: 500px; height: 200px; border: 1px solid red; background: rgb(22, 160, 133); cursor: crosshair;"></canvas>-->
<!-- </div>-->
<!-- <div>-->
<!-- <button type="button" class="btn btn-default" id="myEmpty">清空面板</button>-->
<!-- <button type="button" class="btn btn-default" id="myBackColor">设置背景颜色</button>-->
<!-- <button type="button" class="btn btn-default" id="myColor">设置字体颜色</button>-->
<!-- <div id="colorpanel" style="position:absolute;z-index:99;display:none">-->
<!-- <table border="1" id="myTable" cellspacing="0" cellpadding="0"-->
<!-- style="border-collapse: collapse;cursor:pointer;" bordercolor="000000">-->
<!-- <tbody>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#003300"></td>-->
<!-- <td width="11" style="background-color:#006600"></td>-->
<!-- <td width="11" style="background-color:#009900"></td>-->
<!-- <td width="11" style="background-color:#00CC00"></td>-->
<!-- <td width="11" style="background-color:#00FF00"></td>-->
<!-- <td width="11" style="background-color:#330000"></td>-->
<!-- <td width="11" style="background-color:#333300"></td>-->
<!-- <td width="11" style="background-color:#336600"></td>-->
<!-- <td width="11" style="background-color:#339900"></td>-->
<!-- <td width="11" style="background-color:#33CC00"></td>-->
<!-- <td width="11" style="background-color:#33FF00"></td>-->
<!-- <td width="11" style="background-color:#660000"></td>-->
<!-- <td width="11" style="background-color:#663300"></td>-->
<!-- <td width="11" style="background-color:#666600"></td>-->
<!-- <td width="11" style="background-color:#669900"></td>-->
<!-- <td width="11" style="background-color:#66CC00"></td>-->
<!-- <td width="11" style="background-color:#66FF00"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#333333"></td>-->
<!-- <td width="11" style="background-color:#000033"></td>-->
<!-- <td width="11" style="background-color:#003333"></td>-->
<!-- <td width="11" style="background-color:#006633"></td>-->
<!-- <td width="11" style="background-color:#009933"></td>-->
<!-- <td width="11" style="background-color:#00CC33"></td>-->
<!-- <td width="11" style="background-color:#00FF33"></td>-->
<!-- <td width="11" style="background-color:#330033"></td>-->
<!-- <td width="11" style="background-color:#333333"></td>-->
<!-- <td width="11" style="background-color:#336633"></td>-->
<!-- <td width="11" style="background-color:#339933"></td>-->
<!-- <td width="11" style="background-color:#33CC33"></td>-->
<!-- <td width="11" style="background-color:#33FF33"></td>-->
<!-- <td width="11" style="background-color:#660033"></td>-->
<!-- <td width="11" style="background-color:#663333"></td>-->
<!-- <td width="11" style="background-color:#666633"></td>-->
<!-- <td width="11" style="background-color:#669933"></td>-->
<!-- <td width="11" style="background-color:#66CC33"></td>-->
<!-- <td width="11" style="background-color:#66FF33"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#666666"></td>-->
<!-- <td width="11" style="background-color:#000066"></td>-->
<!-- <td width="11" style="background-color:#003366"></td>-->
<!-- <td width="11" style="background-color:#006666"></td>-->
<!-- <td width="11" style="background-color:#009966"></td>-->
<!-- <td width="11" style="background-color:#00CC66"></td>-->
<!-- <td width="11" style="background-color:#00FF66"></td>-->
<!-- <td width="11" style="background-color:#330066"></td>-->
<!-- <td width="11" style="background-color:#333366"></td>-->
<!-- <td width="11" style="background-color:#336666"></td>-->
<!-- <td width="11" style="background-color:#339966"></td>-->
<!-- <td width="11" style="background-color:#33CC66"></td>-->
<!-- <td width="11" style="background-color:#33FF66"></td>-->
<!-- <td width="11" style="background-color:#660066"></td>-->
<!-- <td width="11" style="background-color:#663366"></td>-->
<!-- <td width="11" style="background-color:#666666"></td>-->
<!-- <td width="11" style="background-color:#669966"></td>-->
<!-- <td width="11" style="background-color:#66CC66"></td>-->
<!-- <td width="11" style="background-color:#66FF66"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#999999"></td>-->
<!-- <td width="11" style="background-color:#000099"></td>-->
<!-- <td width="11" style="background-color:#003399"></td>-->
<!-- <td width="11" style="background-color:#006699"></td>-->
<!-- <td width="11" style="background-color:#009999"></td>-->
<!-- <td width="11" style="background-color:#00CC99"></td>-->
<!-- <td width="11" style="background-color:#00FF99"></td>-->
<!-- <td width="11" style="background-color:#330099"></td>-->
<!-- <td width="11" style="background-color:#333399"></td>-->
<!-- <td width="11" style="background-color:#336699"></td>-->
<!-- <td width="11" style="background-color:#339999"></td>-->
<!-- <td width="11" style="background-color:#33CC99"></td>-->
<!-- <td width="11" style="background-color:#33FF99"></td>-->
<!-- <td width="11" style="background-color:#660099"></td>-->
<!-- <td width="11" style="background-color:#663399"></td>-->
<!-- <td width="11" style="background-color:#666699"></td>-->
<!-- <td width="11" style="background-color:#669999"></td>-->
<!-- <td width="11" style="background-color:#66CC99"></td>-->
<!-- <td width="11" style="background-color:#66FF99"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#CCCCCC"></td>-->
<!-- <td width="11" style="background-color:#0000CC"></td>-->
<!-- <td width="11" style="background-color:#0033CC"></td>-->
<!-- <td width="11" style="background-color:#0066CC"></td>-->
<!-- <td width="11" style="background-color:#0099CC"></td>-->
<!-- <td width="11" style="background-color:#00CCCC"></td>-->
<!-- <td width="11" style="background-color:#00FFCC"></td>-->
<!-- <td width="11" style="background-color:#3300CC"></td>-->
<!-- <td width="11" style="background-color:#3333CC"></td>-->
<!-- <td width="11" style="background-color:#3366CC"></td>-->
<!-- <td width="11" style="background-color:#3399CC"></td>-->
<!-- <td width="11" style="background-color:#33CCCC"></td>-->
<!-- <td width="11" style="background-color:#33FFCC"></td>-->
<!-- <td width="11" style="background-color:#6600CC"></td>-->
<!-- <td width="11" style="background-color:#6633CC"></td>-->
<!-- <td width="11" style="background-color:#6666CC"></td>-->
<!-- <td width="11" style="background-color:#6699CC"></td>-->
<!-- <td width="11" style="background-color:#66CCCC"></td>-->
<!-- <td width="11" style="background-color:#66FFCC"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#FFFFFF"></td>-->
<!-- <td width="11" style="background-color:#0000FF"></td>-->
<!-- <td width="11" style="background-color:#0033FF"></td>-->
<!-- <td width="11" style="background-color:#0066FF"></td>-->
<!-- <td width="11" style="background-color:#0099FF"></td>-->
<!-- <td width="11" style="background-color:#00CCFF"></td>-->
<!-- <td width="11" style="background-color:#00FFFF"></td>-->
<!-- <td width="11" style="background-color:#3300FF"></td>-->
<!-- <td width="11" style="background-color:#3333FF"></td>-->
<!-- <td width="11" style="background-color:#3366FF"></td>-->
<!-- <td width="11" style="background-color:#3399FF"></td>-->
<!-- <td width="11" style="background-color:#33CCFF"></td>-->
<!-- <td width="11" style="background-color:#33FFFF"></td>-->
<!-- <td width="11" style="background-color:#6600FF"></td>-->
<!-- <td width="11" style="background-color:#6633FF"></td>-->
<!-- <td width="11" style="background-color:#6666FF"></td>-->
<!-- <td width="11" style="background-color:#6699FF"></td>-->
<!-- <td width="11" style="background-color:#66CCFF"></td>-->
<!-- <td width="11" style="background-color:#66FFFF"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#FF0000"></td>-->
<!-- <td width="11" style="background-color:#990000"></td>-->
<!-- <td width="11" style="background-color:#993300"></td>-->
<!-- <td width="11" style="background-color:#996600"></td>-->
<!-- <td width="11" style="background-color:#999900"></td>-->
<!-- <td width="11" style="background-color:#99CC00"></td>-->
<!-- <td width="11" style="background-color:#99FF00"></td>-->
<!-- <td width="11" style="background-color:#CC0000"></td>-->
<!-- <td width="11" style="background-color:#CC3300"></td>-->
<!-- <td width="11" style="background-color:#CC6600"></td>-->
<!-- <td width="11" style="background-color:#CC9900"></td>-->
<!-- <td width="11" style="background-color:#CCCC00"></td>-->
<!-- <td width="11" style="background-color:#CCFF00"></td>-->
<!-- <td width="11" style="background-color:#FF0000"></td>-->
<!-- <td width="11" style="background-color:#FF3300"></td>-->
<!-- <td width="11" style="background-color:#FF6600"></td>-->
<!-- <td width="11" style="background-color:#FF9900"></td>-->
<!-- <td width="11" style="background-color:#FFCC00"></td>-->
<!-- <td width="11" style="background-color:#FFFF00"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#00FF00"></td>-->
<!-- <td width="11" style="background-color:#990033"></td>-->
<!-- <td width="11" style="background-color:#993333"></td>-->
<!-- <td width="11" style="background-color:#996633"></td>-->
<!-- <td width="11" style="background-color:#999933"></td>-->
<!-- <td width="11" style="background-color:#99CC33"></td>-->
<!-- <td width="11" style="background-color:#99FF33"></td>-->
<!-- <td width="11" style="background-color:#CC0033"></td>-->
<!-- <td width="11" style="background-color:#CC3333"></td>-->
<!-- <td width="11" style="background-color:#CC6633"></td>-->
<!-- <td width="11" style="background-color:#CC9933"></td>-->
<!-- <td width="11" style="background-color:#CCCC33"></td>-->
<!-- <td width="11" style="background-color:#CCFF33"></td>-->
<!-- <td width="11" style="background-color:#FF0033"></td>-->
<!-- <td width="11" style="background-color:#FF3333"></td>-->
<!-- <td width="11" style="background-color:#FF6633"></td>-->
<!-- <td width="11" style="background-color:#FF9933"></td>-->
<!-- <td width="11" style="background-color:#FFCC33"></td>-->
<!-- <td width="11" style="background-color:#FFFF33"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#0000FF"></td>-->
<!-- <td width="11" style="background-color:#990066"></td>-->
<!-- <td width="11" style="background-color:#993366"></td>-->
<!-- <td width="11" style="background-color:#996666"></td>-->
<!-- <td width="11" style="background-color:#999966"></td>-->
<!-- <td width="11" style="background-color:#99CC66"></td>-->
<!-- <td width="11" style="background-color:#99FF66"></td>-->
<!-- <td width="11" style="background-color:#CC0066"></td>-->
<!-- <td width="11" style="background-color:#CC3366"></td>-->
<!-- <td width="11" style="background-color:#CC6666"></td>-->
<!-- <td width="11" style="background-color:#CC9966"></td>-->
<!-- <td width="11" style="background-color:#CCCC66"></td>-->
<!-- <td width="11" style="background-color:#CCFF66"></td>-->
<!-- <td width="11" style="background-color:#FF0066"></td>-->
<!-- <td width="11" style="background-color:#FF3366"></td>-->
<!-- <td width="11" style="background-color:#FF6666"></td>-->
<!-- <td width="11" style="background-color:#FF9966"></td>-->
<!-- <td width="11" style="background-color:#FFCC66"></td>-->
<!-- <td width="11" style="background-color:#FFFF66"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#FFFF00"></td>-->
<!-- <td width="11" style="background-color:#990099"></td>-->
<!-- <td width="11" style="background-color:#993399"></td>-->
<!-- <td width="11" style="background-color:#996699"></td>-->
<!-- <td width="11" style="background-color:#999999"></td>-->
<!-- <td width="11" style="background-color:#99CC99"></td>-->
<!-- <td width="11" style="background-color:#99FF99"></td>-->
<!-- <td width="11" style="background-color:#CC0099"></td>-->
<!-- <td width="11" style="background-color:#CC3399"></td>-->
<!-- <td width="11" style="background-color:#CC6699"></td>-->
<!-- <td width="11" style="background-color:#CC9999"></td>-->
<!-- <td width="11" style="background-color:#CCCC99"></td>-->
<!-- <td width="11" style="background-color:#CCFF99"></td>-->
<!-- <td width="11" style="background-color:#FF0099"></td>-->
<!-- <td width="11" style="background-color:#FF3399"></td>-->
<!-- <td width="11" style="background-color:#FF6699"></td>-->
<!-- <td width="11" style="background-color:#FF9999"></td>-->
<!-- <td width="11" style="background-color:#FFCC99"></td>-->
<!-- <td width="11" style="background-color:#FFFF99"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#00FFFF"></td>-->
<!-- <td width="11" style="background-color:#9900CC"></td>-->
<!-- <td width="11" style="background-color:#9933CC"></td>-->
<!-- <td width="11" style="background-color:#9966CC"></td>-->
<!-- <td width="11" style="background-color:#9999CC"></td>-->
<!-- <td width="11" style="background-color:#99CCCC"></td>-->
<!-- <td width="11" style="background-color:#99FFCC"></td>-->
<!-- <td width="11" style="background-color:#CC00CC"></td>-->
<!-- <td width="11" style="background-color:#CC33CC"></td>-->
<!-- <td width="11" style="background-color:#CC66CC"></td>-->
<!-- <td width="11" style="background-color:#CC99CC"></td>-->
<!-- <td width="11" style="background-color:#CCCCCC"></td>-->
<!-- <td width="11" style="background-color:#CCFFCC"></td>-->
<!-- <td width="11" style="background-color:#FF00CC"></td>-->
<!-- <td width="11" style="background-color:#FF33CC"></td>-->
<!-- <td width="11" style="background-color:#FF66CC"></td>-->
<!-- <td width="11" style="background-color:#FF99CC"></td>-->
<!-- <td width="11" style="background-color:#FFCCCC"></td>-->
<!-- <td width="11" style="background-color:#FFFFCC"></td>-->
<!-- </tr>-->
<!-- <tr height="12">-->
<!-- <td width="11" style="background-color:#000000"></td>-->
<!-- <td width="11" style="background-color:#FF00FF"></td>-->
<!-- <td width="11" style="background-color:#9900FF"></td>-->
<!-- <td width="11" style="background-color:#9933FF"></td>-->
<!-- <td width="11" style="background-color:#9966FF"></td>-->
<!-- <td width="11" style="background-color:#9999FF"></td>-->
<!-- <td width="11" style="background-color:#99CCFF"></td>-->
<!-- <td width="11" style="background-color:#99FFFF"></td>-->
<!-- <td width="11" style="background-color:#CC00FF"></td>-->
<!-- <td width="11" style="background-color:#CC33FF"></td>-->
<!-- <td width="11" style="background-color:#CC66FF"></td>-->
<!-- <td width="11" style="background-color:#CC99FF"></td>-->
<!-- <td width="11" style="background-color:#CCCCFF"></td>-->
<!-- <td width="11" style="background-color:#CCFFFF"></td>-->
<!-- <td width="11" style="background-color:#FF00FF"></td>-->
<!-- <td width="11" style="background-color:#FF33FF"></td>-->
<!-- <td width="11" style="background-color:#FF66FF"></td>-->
<!-- <td width="11" style="background-color:#FF99FF"></td>-->
<!-- <td width="11" style="background-color:#FFCCFF"></td>-->
<!-- <td width="11" style="background-color:#FFFFFF"></td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- <table width="225" border="0" cellspacing="0" cellpadding="0"-->
<!-- style="border:1px #000000 solid;border-collapse: collapse;background-color:#000000">-->
<!-- <tbody>-->
<!-- <tr style="height:30px">-->
<!-- <td colspan="21" bgcolor="#cccccc">-->
<!-- <table cellpadding="0" cellspacing="1" border="0" style="border-collapse: collapse">-->
<!-- <tbody>-->
<!-- <tr>-->
<!-- <td width="3"><input type="text" name="DisColor" size="6" disabled=""-->
<!-- style="border:solid 1px #000000;background-color:#ffff00">-->
<!-- </td>-->
<!-- <td width="3"><input type="text" name="HexColor" size="7"-->
<!-- style="border:inset 1px;font-family:Arial;"-->
<!-- value="#000000"></td>-->
<!-- <td width="3">-->
<!-- <button type="button" class="btn btn-primary btn-sm" id="btnSave">确认-->
<!-- </button>-->
<!-- </td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- </td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="modal-footer">-->
<!-- <button type="button" class="btn btn-default" id="myClose">关闭</button>-->
<!-- <button type="button" class="btn btn-primary" id="mySave" onclick="savaimg();">保存</button>-->
<!-- <div id="myImg">-->
<!-- <div></div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </td>-->
</tr>
<tr> <tr>
<td></td> <td></td>
<td><input type="button" value="保存" onclick="submit()" class="preservation"/></td>
<td><input type="button" value="保存" onclick="submitFirst()" class="preservation"/></td>
</tr> </tr>


</table> </table>
@@ -286,7 +619,7 @@
</div> </div>


</div> </div>
<script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page"
<script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=102" id="require-page"
target-module="../../static/js/project/listingItems/bond.js" defer type="text/javascript"></script> target-module="../../static/js/project/listingItems/bond.js" defer type="text/javascript"></script>
</body> </body>
</html> </html>

Ładowanie…
Anuluj
Zapisz