💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] aspx中引入js ~~~ <%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="JydOrder.aspx.cs" Inherits="NetWing.BPM.Admin.JydOrder.JydOrder" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <!-- 也可以在页面中直接加入按钮 <div class="toolbar"> <a id="a_add" href="#" plain="true" class="easyui-linkbutton" icon="icon-add1" title="添加">添加</a> <a id="a_edit" href="#" plain="true" class="easyui-linkbutton" icon="icon-edit1" title="修改">修改</a> <a id="a_delete" href="#" plain="true" class="easyui-linkbutton" icon="icon-delete16" title="删除">删除</a> <a id="a_search" href="#" plain="true" class="easyui-linkbutton" icon="icon-search" title="搜索">搜索</a> <a id="a_reload" href="#" plain="true" class="easyui-linkbutton" icon="icon-reload" title="刷新">刷新</a> </div> --> <!-- 工具栏按钮 --> <div id="toolbar"> <%//= base.BuildToolbar()%> <a id="a_add" href="#" plain="true" class="easyui-linkbutton" icon="icon-add" title="开单">开单</a> <a id="a_edit" href="#" plain="true" class="easyui-linkbutton" icon="icon-edit" title="接件单">接件单</a> <a id="a_editlcd" href="#" plain="true" class="easyui-linkbutton" icon="icon-clock" title="流程单">流程单</a> <a id="a_edit" href="#" plain="true" class="easyui-linkbutton" icon="icon-car" title="送货签收单">送货签收单</a> <a href="#" plain="true" class="easyui-linkbutton" title="部门">部门</a><input id="orderdeptid" name="orderdeptid" style="width: 80px;" /> <a href="#" plain="true" class="easyui-linkbutton" title="订单类型">类型</a><input id="orderstatus" name="orderstatus" style="width: 80px;" /> <a href="#" plain="true" class="easyui-linkbutton" title="客户名称/单号">客户名称/单号</a><input id="khmcdh" class="easyui-textbox" style="width: 80px"> <a href="#" plain="true" class="easyui-linkbutton" title="印刷品名称">印刷品名称</a><input id="khmcdh" class="easyui-textbox" style="width: 80px"> <a href="#" plain="true" class="easyui-linkbutton" title="下单日期从">从</a><input id="datestar" class="easyui-datebox" style="width: 100px"> <a href="#" plain="true" class="easyui-linkbutton" title="下单日期到">到</a><input id="dateend" class="easyui-datebox" style="width: 100px"> <a id="mysearch" href="#" plain="true" class="easyui-linkbutton" icon="icon-search" title="搜索">搜索</a> </div> <!-- datagrid 列表 --> <table id="list"></table> <!--Uploader--> <!--上传组件皮肤已经在公共样式里--> <script src="../../scripts/webuploader/webuploader.min.js"></script> <!-- 引入多功能查询js --> <script src="../../scripts/Business/Search.js"></script> <!--导出Excel--> <script src="../../scripts/Export.js"></script> <!--导入Excel--> <script src="../../scripts/Inport.js"></script> <!-- 引入js文件 --> <script src="js/JydOrder.js"></script> <!--打印--> <script src="../scripts/lhgdialog/lhgdialog.js?skin=idialog"></script> </asp:Content> ~~~ 页面中传值 ~~~ var actionURL = '/JydOrder/ashx/JydOrderHandler.ashx'; var formurl = '/JydOrder/html/JydOrder.html'; $(function () { //为避免数据字典加载不完整。这段在后面加载 //autoResize({ dataGrid: '#list', gridType: 'datagrid', callback: grid.bind, height: 0 }); $('#a_add').click(CRUD.add); $('#a_edit').click(CRUD.edit); $("#a_editlcd").click(CRUD.editlcd);//流程单 $('#a_delete').click(CRUD.del); //高级查询 $('#a_search').click(function () { search.go('list'); }); $('#a_refresh').click(grid.reload);//刷新 $('#a_getSearch').click(function () {//自定义搜索框 mySearch(); }); /*导出EXCEL*/ $('#a_export').click(function () { var ee = new ExportExcel('list', actionURL); ee.go(); }); /*导入EXCEL*/ $('#a_inport').click(function () { var ii = new ImportExcel('list', actionURL); ii.go(); }); //批量删除 $("#a_alldel").click(function () { var ids = []; var rows = $('#list').datagrid('getSelections'); for (var i = 0; i < rows.length; i++) { ids.push(rows[i].KeyId); } var allid = ids.join(',');//所有的id var o = {}; o.action = "alldel"; o.KeyIds = allid; var param = "json=" + JSON.stringify(o); if (confirm('确认要执行批量删除操作吗?')) { jQuery.ajaxjson(actionURL, param, function (d) { if (parseInt(d) > 0) { msg.ok('批量删除成功!'); grid.reload(); } else { MessageOrRedirect(d); } }); } }); }); //这段后加载,避免数据字典加载不完整的问题 window.onload = function () { autoResize({ dataGrid: '#list', gridType: 'datagrid', callback: grid.bind, height: 0 }); }; //editor:'datetimebox' 日期及时间选择框 editor:'datebox' 日期选择框 editor:'numberspinner' 数字调节器 editor:{type: 'numberspinner',options:{value:0,required:true}} //定义一个$JQ为$. 以后在js 中就可以用${JQ}AJAX了在前台这样写(定义)://通用数据字典start var getDic = { jsonData: function (dicID) { $.getJSON('/sys/ashx/dichandler.ashx?categoryId=' + dicID + '', function (data) { var newData = JSON.stringify(data).replace(/KeyId/g, "id").replace(/Title/g, "text"); //alert(newData); $('body').data('data' + dicID + '', newData); //意思是得到数据并赋值给body }); }, jsonParentData: function (dicID) { $.getJSON('/sys/ashx/dichandler.ashx?action=parent&parentid=' + dicID + '', function (data) { var newData = JSON.stringify(data).replace(/KeyId/g, "id").replace(/Title/g, "text"); $('body').data('data' + dicID + '', newData); //意思是得到数据并赋值给body }); }, } //通用数据字典end //调用数据字典和使用数据字典 如果不需要请不要打开否则会导致系统速度慢 //getDic.jsonData(9);//取得性别数据字典 //在onLoad:的地方如下使用 //top.$('#txt_user_sex').combobox({ data: eval($('body').data('data9')), valueField: 'text', textField: 'text', editable: false, required: true, missingMessage: '请选择性别', disabled: false }); var grid = { bind: function (winSize) { $('#list').datagrid({ url: actionURL, toolbar: '#toolbar', title: "订单列表", iconCls: 'icon icon-list', width: winSize.width, height: winSize.height, nowrap: false, //折行 rownumbers: true, //行号 striped: true, //隔行变色 idField: 'KeyId',//主键 singleSelect: true, //单选 frozenColumns: [[]], columns: [[//应为宽度不是很需要所以注释了宽度 { title: '选择', field: 'ck', checkbox: true },//后加进去全选字段数据库里是没有的 //{ title: '系统编号', field: 'KeyId', sortable: true, width: '', hidden: false }, //{ title: '服务类型', field: 'ServiceType', sortable: true, width: '', hidden: false }, //{ title: '订单年份', field: 'OrderYear', sortable: true, width: '', hidden: false }, //{ title: '子订单个数', field: 'OrderInt', sortable: true, width: '', hidden: false }, { title: '订单号', field: 'OrderID', sortable: true, width: '', hidden: false }, //{ title: '用户名', field: 'username', sortable: true, width: '', hidden: false }, { title: '客户名称/印刷品名称', field: 'khmcANDyspmc', sortable: false, width: '300', hidden: false }, //{ title: '单位ID', field: 'comnameid', sortable: true, width: '', hidden: false }, //{ title: '单位简拼码', field: 'jpm', sortable: true, width: '', hidden: false }, //{ title: '联系人姓名', field: 'name', sortable: true, width: '', hidden: false }, { title: '联系电话', field: 'tel', sortable: true, width: '', hidden: false }, //{ title: '地址', field: 'address', sortable: true, width: '', hidden: false }, //{ title: '备注', field: 'explain', sortable: true, width: '', hidden: false }, { title: '下单日期', field: 'adddate', sortable: true, width: '', hidden: false }, { title: '交货日期', field: 'deliveryDate', sortable: true, width: '', hidden: false }, //{ title: '交货', field: 'delivery', sortable: true, width: '', hidden: false }, //{ title: 'fk', field: 'fk', sortable: true, width: '', hidden: false }, //{ title: 'yf', field: 'yf', sortable: true, width: '', hidden: false }, //{ title: 'qt', field: 'qt', sortable: true, width: '', hidden: false }, //{ title: '总金额', field: 'totalprice', sortable: true, width: '', hidden: false }, //{ title: 'cfzt', field: 'cfzt', sortable: true, width: '', hidden: false }, //{ title: '接件员', field: 'jjy', sortable: true, width: '', hidden: false }, //{ title: '腹膜A', field: 'fumoa', sortable: true, width: '', hidden: false }, //{ title: '腹膜B', field: 'fumob', sortable: true, width: '', hidden: false }, //{ title: '压A', field: 'yaa', sortable: true, width: '', hidden: false }, //{ title: '压B', field: 'yab', sortable: true, width: '', hidden: false }, //{ title: '烫A', field: 'tana', sortable: true, width: '', hidden: false }, //{ title: '烫B', field: 'tanb', sortable: true, width: '', hidden: false }, //{ title: '折页', field: 'zheye', sortable: true, width: '', hidden: false }, //{ title: 'UVA', field: 'uva', sortable: true, width: '', hidden: false }, //{ title: 'UVB', field: 'uvb', sortable: true, width: '', hidden: false }, //{ title: '装订', field: 'zd', sortable: true, width: '', hidden: false }, //{ title: '刀版', field: 'db', sortable: true, width: '', hidden: false }, //{ title: '裱盒', field: 'bh', sortable: true, width: '', hidden: false }, //{ title: '送货', field: 'sh', sortable: true, width: '', hidden: false }, //{ title: 'sk', field: 'sk', sortable: true, width: '', hidden: false }, //{ title: '货发', field: 'huofa', sortable: true, width: '', hidden: false }, //{ title: '发货人', field: 'fahuoren', sortable: true, width: '', hidden: false }, //{ title: 'ys', field: 'ys', sortable: true, width: '', hidden: false }, //{ title: 'fy', field: 'fy', sortable: true, width: '', hidden: false }, //{ title: 'dha', field: 'dha', sortable: true, width: '', hidden: false }, //{ title: 'dhb', field: 'dhb', sortable: true, width: '', hidden: false }, //{ title: '状态', field: 'status', sortable: true, width: '', hidden: false }, //{ title: '金额', field: 'jexx', sortable: true, width: '', hidden: false }, //{ title: '金额大写', field: 'jedx', sortable: true, width: '', hidden: false }, //{ title: '预付款', field: 'yufuk', sortable: true, width: '', hidden: false }, //{ title: '预付款A', field: 'yufukuana', sortable: true, width: '', hidden: false }, //{ title: 'sckd', field: 'sckd', sortable: true, width: '', hidden: false }, //{ title: 'sjwcsj', field: 'sjwcsj', sortable: true, width: '', hidden: false }, //{ title: 'cpwcsj', field: 'cpwcsj', sortable: true, width: '', hidden: false }, //{ title: 'ctpsj', field: 'ctpsj', sortable: true, width: '', hidden: false }, //{ title: 'sbwcsj', field: 'sbwcsj', sortable: true, width: '', hidden: false }, //{ title: 'qslsj', field: 'qslsj', sortable: true, width: '', hidden: false }, //{ title: 'yswcsj', field: 'yswcsj', sortable: true, width: '', hidden: false }, //{ title: 'hjgkssj', field: 'hjgkssj', sortable: true, width: '', hidden: false }, //{ title: 'hjgwcsj', field: 'hjgwcsj', sortable: true, width: '', hidden: false }, //{ title: 'wjgjcsj', field: 'wjgjcsj', sortable: true, width: '', hidden: false }, //{ title: 'qcpsj', field: 'qcpsj', sortable: true, width: '', hidden: false }, //{ title: 'zdkssj', field: 'zdkssj', sortable: true, width: '', hidden: false }, //{ title: 'dzwcsj', field: 'dzwcsj', sortable: true, width: '', hidden: false }, //{ title: 'shryccsj', field: 'shryccsj', sortable: true, width: '', hidden: false }, //{ title: 'shryhcsj', field: 'shryhcsj', sortable: true, width: '', hidden: false }, //{ title: 'dbsj', field: 'dbsj', sortable: true, width: '', hidden: false }, //{ title: 'szp', field: 'szp', sortable: true, width: '', hidden: false }, //{ title: 'sxj', field: 'sxj', sortable: true, width: '', hidden: false }, //{ title: 'skje', field: 'skje', sortable: true, width: '', hidden: false }, //{ title: 'zph', field: 'zph', sortable: true, width: '', hidden: false }, //{ title: 'kkyy', field: 'kkyy', sortable: true, width: '', hidden: false }, //{ title: 'zrr', field: 'zrr', sortable: true, width: '', hidden: false }, //{ title: 'rksj', field: 'rksj', sortable: true, width: '', hidden: false }, //{ title: 'cksj', field: 'cksj', sortable: true, width: '', hidden: false }, //{ title: 'myws', field: 'myws', sortable: true, width: '', hidden: false }, //{ title: 'myysf', field: 'myysf', sortable: true, width: '', hidden: false }, //{ title: 'O_myhjg1', field: 'O_myhjg1', sortable: true, width: '', hidden: false }, //{ title: 'jgzysx', field: 'jgzysx', sortable: true, width: '', hidden: false }, //{ title: '联系人', field: 'connman', sortable: true, width: '', hidden: false }, { title: '订单状态', field: 'mystatus', sortable: true, width: '', formatter: function (value, row, index) { switch (row.mystatus) { case 0: return "<font color=0000ff>未走上流程</font>"; break; case 1: return "<font color=CC00CC>正在生产中</font>"; break; case 2: return "<font color=ff0000>已送货签单</font>"; break; case 3: return "<font color=008800>全单收款</font>"; break; case 4: return "<font color=ff0000>(已作废)</font>"; break; default: return "未知"; break; } }, hidden: false }, //{ title: 'kkkje', field: 'kkkje', sortable: true, width: '', hidden: false }, //{ title: 'ds', field: 'ds', sortable: true, width: '', hidden: false }, //{ title: '印刷品名称', field: 'allyspmc', sortable: true, width: '', hidden: false }, { title: '订单来源', field: 'dept', sortable: true, width: '', hidden: false }, { title: '操作', field: 'KeyId', sortable: true, width: '138', hidden: false, formatter: function (value, rows) { var strp = '<a href="javascript:print_printdy(' + value + ',\'' + rows.OrderID + '\');" plain="true" class="easyui-linkbutton l-btn l-btn-small l-btn-plain" icon="icon-application_form_magnify" title="查看" group=""><span class="l-btn-left l-btn-icon-left"><span class="l-btn-text">&nbsp;</span><span class="l-btn-icon icon-application_form_magnify">&nbsp;</span></span></a>'; return '<span style="color:#red;"></span>' + strp; }, }, ]], onEndEdit: onEndEdit,//结束编辑时函数 这里为了简洁 该函数写在下面 onUnselect: onUnselect, onLoadSuccess: function (data) { //alert($('body').data('data70')); //alert($('body').data('data69')); }, onCancelEdit: onCancelEdit,//在用户取消编辑一行的时候触发 onSelect: onSelect,//在用户选择一行的时候触发 onClickRow: onClickRow,//在用户点击一行的时候触发 //onAfterEdit: onAfterEdit,//在用户完成编辑一行的时候触发 onDblClickCell: onDblClickCell,//为了程序逻辑清楚函数写在外面 onHeaderContextMenu: function (e, field) {//列菜单实现动态隐藏列 e.preventDefault(); if (!cmenu) { createColumnMenu(); } cmenu.menu('show', { left: e.pageX, top: e.pageY }); }, pagination: true, pageSize: PAGESIZE, pageList: [20, 40, 50, 100, 200] }); }, getSelectedRow: function () { return $('#list').datagrid('getSelected'); }, reload: function () { $('#list').datagrid('clearSelections').datagrid('reload', { filter: '' }); } }; function createParam(action, keyid) { var o = {}; var query = top.$('#uiform').serializeArray(); query = convertArray(query); o.jsonEntity = JSON.stringify(query); o.action = action; o.keyid = keyid; return "json=" + JSON.stringify(o); } function allmoney() { var je = 0; top.$(".mymy").find('.je').each(function () { var dje = top.$(this).numberbox("getValue"); je = je + parseFloat(dje); console.log("计算总金额:" + je); }); top.$("#jexx").numberbox("setValue", je);//设置总金额 top.$("#jedx").textbox("setValue", cmycurd(je));//设置金额大写 } function initbody() { //初始化预付款 top.$("#yufuk").numberbox({ onChange: function (newValue, oldValue) { top.$("#yufukuana").textbox("setValue", cmycurd(newValue)); } }); top.$(".mymy:last").find('.dddd').textbox({ multiline: true, }); top.$(".mymy:last").find('.yspmc,.danwei_m,.cpcc,.zzf,.ym,.sj,.yspmcb,.danwei_mb,.cpccb,.zzfb,.ymb,.sjb').textbox({}); top.$(".mymy:last").find('.nysl').numberbox({ min: 0, //precision: 2, value: 0, required: true, //validType: 'email' }); //初始化数量 top.$(".mymy:last").find('.sl').numberbox({ min: 0, //precision: 2, value: 0, required: true, //validType: 'email' onChange: function (newValue, oldValue) { var dj = top.$(this).closest(".mymy").find(".dj").numberbox("getValue"); var je = dj * newValue;//得到金额 top.$(this).closest(".mymy").find(".je").numberbox("setValue", je); allmoney();//计算总金额 } }); //初始化单价 top.$(".mymy:last").find('.dj').numberbox({ min: 0, precision: 3, value: 0, required: true, //validType: 'money', //validType: 'email' onChange: function (newValue, oldValue) { var sl = top.$(this).closest(".mymy").find(".sl").numberbox("getValue"); var je = sl * newValue;//得到金额 top.$(this).closest(".mymy").find(".je").numberbox("setValue", je); allmoney();//计算总金额 } }); //初始化金额 top.$(".mymy:last").find('.je').numberbox({ min: 0, precision: 3, value: 0, required: true, //validType: 'money', onChange: function (newValue, oldValue) { var sl = top.$(this).closest(".mymy").find(".sl").numberbox("getValue"); var dj = newValue / sl;//得到单价 top.$(this).closest(".mymy").find(".dj").numberbox("setValue", dj); allmoney();//计算总金额 } //validType: 'email' }); //jquery选择多个元素 top.$(".mymy:last").find('.uva,.tana,.fumoa,.yaa').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=85', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //腹膜 top.$(".mymy:last").find('.fumob').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=88', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //折页 top.$(".mymy:last").find('.zheye').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=94', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //装订 top.$(".mymy:last").find('.zd').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=95', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //快捷备注1 top.$(".mymy:last").find('.dddda').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=98', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //快捷备注2 top.$(".mymy:last").find('.ddddb').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=99', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //裱盒 top.$(".mymy:last").find('.bh').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=96', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //付款要求 top.$(".mymy:last").find('.sk').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=97', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //烫B top.$(".mymy:last").find('.tanb').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=89', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //压 top.$(".mymy:last").find('.yab').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=93', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //uvb top.$(".mymy:last").find('.uvb').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=92', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //刀版 top.$(".mymy:last").find('.db').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=91', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //送货 top.$(".mymy:last").find('.sh').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=90', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', }); //工艺开关 top.$(".mymy:last").find('.myswigongyi').switchbutton({ onText: '显示', offText: '隐藏', onChange: function (checked) { console.log("开关状态是:" + checked); if (checked) { //原理是先找到父元素.mymy 然后再找子元素.myshowgongyi top.$(this).closest(".mymy").find('.myshowgongyi').show(); } else { top.$(this).closest(".mymy").find('.myshowgongyi').hide(); } } }); //工艺开关-内页 top.$(".mymy:last").find('.myswigongyiny').switchbutton({ onText: '显示', offText: '隐藏', onChange: function (checked) { console.log("开关状态是:" + checked); if (checked) { //原理是先找到父元素.mymy 然后再找子元素.myshowgongyi top.$(this).closest(".mymy").find('.myshowgongyiny').show(); } else { top.$(this).closest(".mymy").find('.myshowgongyiny').hide(); } } }); //只渲染最后一个PrintType top.$(".mymy:last").find('.PrintType').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=85', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 required: true, valueField: 'Title', textField: 'Title', onSelect: function (r) { console.log("选择的值是:" + r.Title); if (r.Title == '画册') { var f = top.$(this).closest(".mymy");//找到最近的mymy父元素 console.log("找到的父元素是:" + f); var c = top.$(f).children(".myhc");//找到最近的这个子元素 top.$(c).show(); } else {//如果不是画册 var f = top.$(this).closest(".mymy");//找到最近的mymy父元素 console.log("找到的父元素是:" + f); var c = top.$(f).children(".myhc");//找到最近的这个子元素 top.$(c).hide(); } } }); } function init() { //初始化时克隆模板过来 var t = top.$(".mymytemp").html();//得到不带样式的模板 注意修改时也要修改模板 //alert(top.$(".mymy:last").html()); if (top.$(".mymy:last").html() == "") {//如果mymy里面为空则追加进去,否则 top.$(".mymy").append(t);//把模板追加到mymy } else {//如果有多个 top.$(".mymy:last").after('<tbody class="mymy">' + t + '</tbody>');//把模板追加到mymy } top.$("#jedx").textbox({});//金额大写 //获得当前时间 作为接件时间 //得到接件员名字 top.$.ajax({ type: "POST", url: '/JydOrder/ashx/JydOrderHandler.ashx?json={"action":"jjy"}', data: {}, dataType: "json", beforeSend: function () { }, complete: function () { }, success: function (d) { console.log("得到的结果是:" + d.jjy); top.$("#jjy").textbox("setValue", d.jjy); top.$("#adddate").datetimebox("setValue", d.dt); top.$("#jjy").textbox({//设置为只读 readonly: true, }); //alert("发送结果:" + JSON.stringify(d)); } }); //初始化总金额 top.$(".jexx").numberbox({ min: 0, precision: 2, value: 0, required: true, validType: 'money', onChange: function (newValue, oldValue) { } //validType: 'email' }); top.$("#comname").combogrid({ delay: 500, //自动完成功能实现搜索 mode: 'remote',//开启后系统会自动传一个参数q到后台 panelWidth: 350, required: true, //value:'fullname', editable: true, idField: 'comname', textField: 'comname', url: '/JydUser/ashx/JydUserHandler.ashx', columns: [[ { field: 'KeyId', title: 'KeyId', width: 50 }, { field: 'comname', title: '客户', width: 120 }, { field: 'tell', title: '电话', width: 120 }, ]], limitToList: true,//只能从下拉中选择值 //reversed: true,//定义在失去焦点的时候是否恢复原始值。 onHidePanel: function () { var t = top.$(this).combogrid('getValue');//获取combogrid的值 var g = top.$(this).combogrid('grid'); // 获取数据表格对象 var r = g.datagrid('getSelected'); // 获取选择的行 console.log("选择的行是:" + r + "选择的值是:" + t); if (r == null || t != r.comname) {//没有选择或者选项不相等时清除内容 top.$.messager.alert('警告', '请选择,不要直接输入!'); top.$(this).combogrid('setValue', ''); } else { //do something... } }, onSelect: function (rowIndex, rowData) { console.log("设置的值是:" + rowData.KeyId); //$("#contactid").val(rowData.KeyId);//给经手人设置ID top.$("#comname").combogrid('setValue', rowData.comname);//客户 top.$("#connman").textbox('setValue', rowData.realname);//经手人 top.$("#tel").textbox('setValue', rowData.tell) //alert(rowData.TrueName); } }); top.$("#jzrs").numberspinner({ editable: false, onSpinUp: function () {//鼠标向上点 top.$(".mymy:last").after('<tbody class="mymy">' + t + '</tbody>');//把模板追加到mymy //insertjzr();//插入居住人 //在最后一个后面克隆一个元素包含事件 console.log("克隆页面"); //mymy 和mymy1有父子关系 mymy1默认不显示 //var temp = top.$(".mymy:last").html();//保存渲染前的模板 ////console.log("得到的模板是:" + temp); //var mod = top.$(".mymy:last").clone();//克隆得到模板 //top.$(".mymy:last").after(mod);//克隆后插入 //top.$(".mymy:last").find(".myPrintType").empty();//找到印刷品类型并清空easyui渲染过的印刷品类型 //top.$(".mymy:last").find(".myPrintType").append('<input name="PrintType" style="width:80px;" value="" class="PrintType" />'); ////移除easyui工艺渲染新的easyui工艺 //top.$(".mymy:last").find('.mygongyi').empty(); //top.$(".mymy:last").find(".mygongyi").append('<input class="myswigongyi">'); initbody();//克隆完毕重新渲染-只渲染body里面的内容 }, onSpinDown: function () {//鼠标向下点 //var v = top.$("#jzrsdiv").children("li").length; var v = top.$(".mymy").length; if (v == 1) {//只有一个时不能删除 top.$.messager.alert("注意", "至少接一件!!!"); //$.messager.alert('警告', '表单还有信息没有填完整!'); } else { top.$(".mymy:last").remove();//移除最后一个 } } }); console.log("加载印刷类型"); //运输 top.$('#ys').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=86', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 required: true, valueField: 'Title', textField: 'Title' }); //费用 top.$('#fy').combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=87', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 required: true, valueField: 'Title', textField: 'Title' }); initbody();//渲染body里面的内容 } function initlc() { top.$(".sjlc").click(function () { var h = top.$(this).closest(".mymy").find(".mytimetable").parent().html(); alert(top.$(h).html()); var hDialog = top.jQuery.hDialog({ title: '测试窗口', width: 1000, height: 600, iconCls: 'icon-add', content: h, onLoad: function () { top.$('.kindeditor').kindeditor();//初始化kingdeditor编辑器 init();//渲染 }, onSubmit: function () { } }); }); } var CRUD = { add: function () { var hDialog = top.jQuery.hDialog({ title: '接件开单', width: 1300, height: 700, href: formurl, iconCls: 'icon-add', onLoad: function () { top.$('.kindeditor').kindeditor();//初始化kingdeditor编辑器 init();//渲染 }, submit: function () { //alert(top.$("#uiform").form('enableValidation').form('validate')); //alert(top.$("#uiform").form('validate')); //原来用的是这种方法 alert(top.$('#uiform').validate().form()); if (top.$("#uiform").form('validate')) { var query = createParam('add', '0'); //console.log(query); var temp = top.$(".mymy :input").serializeArray();//serializeArray 要么选择form 要么 $(".mymy :input") 这样选择 //先循环mymy下所有html元素 var mymylenth = top.$(".mymy").length;//得到有几个.mymy alert(mymylenth); var detailjson = "["; var j = 1; top.$(".mymy").each(function () { var temp2 = top.$(this).find(":input").serializeArray(); var jsonstr = JSON.stringify(convertArrayNew(temp2)); console.log("序列化后得到的jsonstr:" + jsonstr); if (j < mymylenth) { detailjson = detailjson + '{"d":' + jsonstr + '},'; } else { detailjson = detailjson + '{"d":' + jsonstr + '}'; } //alert(top.$(this).html()) j = j + 1; //alert("转化后是:"+JSON.stringify(convertArray(temp2))); }); detailjson = detailjson + ']'; console.log("得到的json数据是:" + detailjson); //console.log("没有经过转化前:" + temp); //alert(temp); //console.log("序列化后是:" + JSON.stringify(convertArray(temp)));//转化 //alert(JSON.stringify(convertArray(temp))); //return false; jQuery.ajaxjson(actionURL, query + "&d=" + detailjson + "", function (d) { if (parseInt(d) > 0) { msg.ok('添加成功!'); hDialog.dialog('close'); grid.reload(); } else { MessageOrRedirect(d); } }); } //msg.warning('请填写必填项!'); return false; } }); top.$('#uiform').validate(); }, edit: function () { var row = grid.getSelectedRow(); if (row) { var hDialog = top.jQuery.hDialog({ title: '修改接件单', width: 1300, height: 700, href: formurl, iconCls: 'icon-save', onLoad: function () { //init();//初始化 top.$('#uiform').form('load', row); top.$.ajax({ type: "POST", url: '/JydOrderDetail/ashx/JydOrderDetailHandler.ashx?filter={"groupOp":"AND","rules":[{"field":"orderid","op":"eq","data":"' + row.OrderID + '"}],"groups":[]}', data: {}, dataType: "json", beforeSend: function () { }, complete: function () { }, success: function (d) { console.log("加载字表数据:" + JSON.stringify(d)); console.log("字表个数:" + d.rows.length); for (var i = 1; i <= d.rows.length; i++) { //console.log("渲染次数:" + i + "值是:" + JSON.stringify(d.rows[i])); //top.$('.mymy').form('load', d.rows[i]); init();//渲染完成 //top.$('.mymy').eq(i).form('load', d.rows[i]); } for (var i = 0; i < d.rows.length; i++) { top.$('.KeyId').eq(i).val(d.rows[i].KeyId); top.$('.orderid').eq(i).textbox('setValue', d.rows[i].orderid); top.$('.omainid').eq(i).textbox('setValue', d.rows[i].omainid); top.$('.yspmc').eq(i).textbox('setValue', d.rows[i].yspmc); top.$('.PrintType').eq(i).textbox('setValue', d.rows[i].PrintType); top.$('.cpcc').eq(i).textbox('setValue', d.rows[i].cpcc); top.$('.zzf').eq(i).textbox('setValue', d.rows[i].zzf); top.$('.zzn').eq(i).textbox('setValue', d.rows[i].zzn); top.$('.ym').eq(i).textbox('setValue', d.rows[i].ym); top.$('.sj').eq(i).textbox('setValue', d.rows[i].sj); //top.$('.rj').eq(i).textbox('setValue', d.rows[i].rj); //top.$('.jp').eq(i).textbox('setValue', d.rows[i].jp); top.$('.zz').eq(i).val(d.rows[i].zz); if (d.rows[i].zz == "自带") { top.$('.zz').eq(i).attr("checked", true); //console.log("判断纸张自带!"); } if (d.rows[i].jp == "自带") { top.$('.jp').eq(i).attr("checked", true); //console.log("判断纸张自带!"); } if (d.rows[i].rj == "自带") { top.$('.rj').eq(i).attr("checked", true); //console.log("判断纸张自带!"); } top.$('.sl').eq(i).textbox('setValue', d.rows[i].sl); top.$('.cc').eq(i).textbox('setValue', d.rows[i].cc); top.$('.dj').eq(i).textbox('setValue', d.rows[i].dj); top.$('.je').eq(i).textbox('setValue', d.rows[i].je); top.$('.note').eq(i).textbox('setValue', d.rows[i].note); top.$('.kzcc').eq(i).textbox('setValue', d.rows[i].kzcc); top.$('.zs').eq(i).textbox('setValue', d.rows[i].zs); top.$('.fs').eq(i).textbox('setValue', d.rows[i].fs); top.$('.pss').eq(i).textbox('setValue', d.rows[i].pss); top.$('.pst').eq(i).textbox('setValue', d.rows[i].pst); top.$('.fbyq').eq(i).textbox('setValue', d.rows[i].fbyq); top.$('.jx').eq(i).textbox('setValue', d.rows[i].jx); top.$('.fumoa').eq(i).textbox('setValue', d.rows[i].fumoa); top.$('.fumob').eq(i).textbox('setValue', d.rows[i].fumob); top.$('.yaa').eq(i).textbox('setValue', d.rows[i].yaa); top.$('.yab').eq(i).textbox('setValue', d.rows[i].yab); top.$('.tana').eq(i).textbox('setValue', d.rows[i].tana); top.$('.tanb').eq(i).textbox('setValue', d.rows[i].tanb); top.$('.zheye').eq(i).textbox('setValue', d.rows[i].zheye); top.$('.uva').eq(i).textbox('setValue', d.rows[i].uva); top.$('.uvb').eq(i).textbox('setValue', d.rows[i].uvb); top.$('.zd').eq(i).textbox('setValue', d.rows[i].zd); top.$('.db').eq(i).textbox('setValue', d.rows[i].db); top.$('.bh').eq(i).textbox('setValue', d.rows[i].bh); top.$('.sh').eq(i).textbox('setValue', d.rows[i].sh); top.$('.sk').eq(i).textbox('setValue', d.rows[i].sk); top.$('.sjwcsj').eq(i).textbox('setValue', d.rows[i].sjwcsj); top.$('.cpwcsj').eq(i).textbox('setValue', d.rows[i].cpwcsj); top.$('.ctpsj').eq(i).textbox('setValue', d.rows[i].ctpsj); top.$('.sbwcsj').eq(i).textbox('setValue', d.rows[i].sbwcsj); top.$('.qslsj').eq(i).textbox('setValue', d.rows[i].qslsj); top.$('.yswcsj').eq(i).textbox('setValue', d.rows[i].yswcsj); top.$('.hjgkssj').eq(i).textbox('setValue', d.rows[i].hjgkssj); top.$('.hjgwcsj').eq(i).textbox('setValue', d.rows[i].hjgwcsj); top.$('.wjgjcsj').eq(i).textbox('setValue', d.rows[i].wjgjcsj); top.$('.qcpsj').eq(i).textbox('setValue', d.rows[i].qcpsj); top.$('.zdkssj').eq(i).textbox('setValue', d.rows[i].zdkssj); top.$('.dzwcsj').eq(i).textbox('setValue', d.rows[i].dzwcsj); top.$('.shryccsj').eq(i).textbox('setValue', d.rows[i].shryccsj); top.$('.shryhcsj').eq(i).textbox('setValue', d.rows[i].shryhcsj); top.$('.dbsj').eq(i).textbox('setValue', d.rows[i].dbsj); top.$('.rksj').eq(i).textbox('setValue', d.rows[i].rksj); top.$('.cksj').eq(i).textbox('setValue', d.rows[i].cksj); top.$('.zrr').eq(i).textbox('setValue', d.rows[i].zrr); top.$('.kkyy').eq(i).textbox('setValue', d.rows[i].kkyy); top.$('.sxj').eq(i).textbox('setValue', d.rows[i].sxj); top.$('.szp').eq(i).textbox('setValue', d.rows[i].szp); top.$('.zph').eq(i).textbox('setValue', d.rows[i].zph); top.$('.myws').eq(i).textbox('setValue', d.rows[i].myws); top.$('.myysf').eq(i).textbox('setValue', d.rows[i].myysf); top.$('.O_myhjg').eq(i).textbox('setValue', d.rows[i].O_myhjg); top.$('.qianshou').eq(i).textbox('setValue', d.rows[i].qianshou); top.$('.skje').eq(i).textbox('setValue', d.rows[i].skje); top.$('.wsjgbz').eq(i).textbox('setValue', d.rows[i].wsjgbz); top.$('.dddd').eq(i).textbox('setValue', d.rows[i].dddd); top.$('.kkkje').eq(i).textbox('setValue', d.rows[i].kkkje); top.$('.yspmcb').eq(i).textbox('setValue', d.rows[i].yspmcb); top.$('.FileTypeb').eq(i).textbox('setValue', d.rows[i].FileTypeb); top.$('.mianb').eq(i).textbox('setValue', d.rows[i].mianb); top.$('.munb').eq(i).textbox('setValue', d.rows[i].munb); top.$('.colorb').eq(i).textbox('setValue', d.rows[i].colorb); top.$('.pagerb').eq(i).textbox('setValue', d.rows[i].pagerb); top.$('.O_my_jpb').eq(i).textbox('setValue', d.rows[i].O_my_jpb); top.$('.O_my_zzb').eq(i).textbox('setValue', d.rows[i].O_my_zzb); top.$('.ddddb').eq(i).textbox('setValue', d.rows[i].ddddb); top.$('.zznb').eq(i).textbox('setValue', d.rows[i].zznb); top.$('.ymb').eq(i).textbox('setValue', d.rows[i].ymb); top.$('.sjb').eq(i).textbox('setValue', d.rows[i].sjb); top.$('.rjb').eq(i).textbox('setValue', d.rows[i].rjb); top.$('.jpb').eq(i).textbox('setValue', d.rows[i].jpb); top.$('.zzb').eq(i).textbox('setValue', d.rows[i].zzb); top.$('.fumoab').eq(i).textbox('setValue', d.rows[i].fumoab); top.$('.fumobb').eq(i).textbox('setValue', d.rows[i].fumobb); top.$('.yaab').eq(i).textbox('setValue', d.rows[i].yaab); top.$('.yabb').eq(i).textbox('setValue', d.rows[i].yabb); top.$('.tanab').eq(i).textbox('setValue', d.rows[i].tanab); top.$('.tanbb').eq(i).textbox('setValue', d.rows[i].tanbb); top.$('.zheyeb').eq(i).textbox('setValue', d.rows[i].zheyeb); top.$('.uvab').eq(i).textbox('setValue', d.rows[i].uvab); top.$('.uvbb').eq(i).textbox('setValue', d.rows[i].uvbb); top.$('.zdb').eq(i).textbox('setValue', d.rows[i].zdb); top.$('.dbb').eq(i).textbox('setValue', d.rows[i].dbb); top.$('.bhb').eq(i).textbox('setValue', d.rows[i].bhb); top.$('.shb').eq(i).textbox('setValue', d.rows[i].shb); top.$('.skb').eq(i).textbox('setValue', d.rows[i].skb); top.$('.PrintTypeb').eq(i).textbox('setValue', d.rows[i].PrintTypeb); top.$('.zzfb').eq(i).textbox('setValue', d.rows[i].zzfb); top.$('.noteb').eq(i).textbox('setValue', d.rows[i].noteb); top.$('.cpccb').eq(i).textbox('setValue', d.rows[i].cpccb); top.$('.printyes').eq(i).textbox('setValue', d.rows[i].printyes); top.$('.kzccb').eq(i).textbox('setValue', d.rows[i].kzccb); top.$('.zsb').eq(i).textbox('setValue', d.rows[i].zsb); top.$('.fsb').eq(i).textbox('setValue', d.rows[i].fsb); top.$('.pssb').eq(i).textbox('setValue', d.rows[i].pssb); top.$('.pstb').eq(i).textbox('setValue', d.rows[i].pstb); top.$('.fbyqb').eq(i).textbox('setValue', d.rows[i].fbyqb); top.$('.jxb').eq(i).textbox('setValue', d.rows[i].jxb); top.$('.kkkjeb').eq(i).textbox('setValue', d.rows[i].kkkjeb); top.$('.nysl').eq(i).textbox('setValue', d.rows[i].nysl); top.$('.ctpa').eq(i).textbox('setValue', d.rows[i].ctpa); top.$('.ctpb').eq(i).textbox('setValue', d.rows[i].ctpb); top.$('.zhizhangbb').eq(i).textbox('setValue', d.rows[i].zhizhangbb); top.$('.songhuo').eq(i).textbox('setValue', d.rows[i].songhuo); top.$('.xiaoyang').eq(i).textbox('setValue', d.rows[i].xiaoyang); top.$('.danwei_m').eq(i).textbox('setValue', d.rows[i].danwei_m); top.$('.danwei_mb').eq(i).textbox('setValue', d.rows[i].danwei_mb); top.$('.bz_hx').eq(i).textbox('setValue', d.rows[i].bz_hx); top.$('.bz_wbz_cc').eq(i).textbox('setValue', d.rows[i].bz_wbz_cc); top.$('.bz_wbz_gy').eq(i).textbox('setValue', d.rows[i].bz_wbz_gy); top.$('.bz_nbz_zz').eq(i).textbox('setValue', d.rows[i].bz_nbz_zz); top.$('.bz_nbz_cc').eq(i).textbox('setValue', d.rows[i].bz_nbz_cc); top.$('.bz_nbz_gy').eq(i).textbox('setValue', d.rows[i].bz_nbz_gy); top.$('.bz_wkz_zz').eq(i).textbox('setValue', d.rows[i].bz_wkz_zz); top.$('.bz_wkz_cc').eq(i).textbox('setValue', d.rows[i].bz_wkz_cc); top.$('.bz_wkz_gy').eq(i).textbox('setValue', d.rows[i].bz_wkz_gy); top.$('.bz_bc_yl').eq(i).textbox('setValue', d.rows[i].bz_bc_yl); top.$('.bz_bc_sl').eq(i).textbox('setValue', d.rows[i].bz_bc_sl); top.$('.bz_bc_mx').eq(i).textbox('setValue', d.rows[i].bz_bc_mx); top.$('.bz_nt').eq(i).textbox('setValue', d.rows[i].bz_nt); top.$('.bz_nt_cc').eq(i).textbox('setValue', d.rows[i].bz_nt_cc); top.$('.bz_nt_mx').eq(i).textbox('setValue', d.rows[i].bz_nt_mx); top.$('.bz_wbz').eq(i).textbox('setValue', d.rows[i].bz_wbz); } } }); //top.$('.mymy').form('load', {comname:'北京'}); //top.$('#txt_KeyId').numberspinner('setValue', row.KeyId); //top.$('#txt_ServiceType').numberspinner('setValue', row.ServiceType); //top.$('#txt_OrderYear').textbox('setValue', row.OrderYear); //top.$('#txt_OrderInt').numberspinner('setValue', row.OrderInt); //top.$('#txt_OrderID').textbox('setValue', row.OrderID); //top.$('#txt_username').textbox('setValue', row.username); //top.$('#txt_comname').textbox('setValue', row.comname); //top.$('#txt_comnameid').numberspinner('setValue', row.comnameid); //top.$('#txt_jpm').textbox('setValue', row.jpm); //top.$('#txt_name').textbox('setValue', row.name); //top.$('#txt_tel').textbox('setValue', row.tel); //top.$('#txt_address').textbox('setValue', row.address); //top.$('#txt_explain').textbox('setValue', row.explain); //top.$('#txt_deliveryDate').datetimebox('setValue', row.deliveryDate); //top.$('#txt_delivery').textbox('setValue', row.delivery); //top.$('#txt_adddate').datetimebox('setValue', row.adddate); //top.$('#txt_fk').numberspinner('setValue', row.fk); //top.$('#txt_yf').numberspinner('setValue', row.yf); //top.$('#txt_qt').numberspinner('setValue', row.qt); //top.$('#txt_totalprice').numberspinner('setValue', row.totalprice); //top.$('#txt_cfzt').textbox('setValue', row.cfzt); //top.$('#txt_jjy').textbox('setValue', row.jjy); //top.$('#txt_fumoa').textbox('setValue', row.fumoa); //top.$('#txt_fumob').textbox('setValue', row.fumob); //top.$('#txt_yaa').textbox('setValue', row.yaa); //top.$('#txt_yab').textbox('setValue', row.yab); //top.$('#txt_tana').textbox('setValue', row.tana); //top.$('#txt_tanb').textbox('setValue', row.tanb); //top.$('#txt_zheye').textbox('setValue', row.zheye); //top.$('#txt_uva').textbox('setValue', row.uva); //top.$('#txt_uvb').textbox('setValue', row.uvb); //top.$('#txt_zd').textbox('setValue', row.zd); //top.$('#txt_db').textbox('setValue', row.db); //top.$('#txt_bh').textbox('setValue', row.bh); //top.$('#txt_sh').textbox('setValue', row.sh); //top.$('#txt_sk').textbox('setValue', row.sk); //top.$('#txt_huofa').textbox('setValue', row.huofa); //top.$('#txt_fahuoren').textbox('setValue', row.fahuoren); //top.$('#txt_ys').textbox('setValue', row.ys); //top.$('#txt_fy').textbox('setValue', row.fy); //top.$('#txt_dha').textbox('setValue', row.dha); //top.$('#txt_dhb').textbox('setValue', row.dhb); //top.$('#txt_status').textbox('setValue', row.status); //top.$('#txt_jexx').textbox('setValue', row.jexx); //top.$('#txt_jedx').textbox('setValue', row.jedx); //top.$('#txt_yufuk').numberspinner('setValue', row.yufuk); //top.$('#txt_yufukuana').textbox('setValue', row.yufukuana); //top.$('#txt_sckd').textbox('setValue', row.sckd); //top.$('#txt_sjwcsj').textbox('setValue', row.sjwcsj); //top.$('#txt_cpwcsj').textbox('setValue', row.cpwcsj); //top.$('#txt_ctpsj').textbox('setValue', row.ctpsj); //top.$('#txt_sbwcsj').textbox('setValue', row.sbwcsj); //top.$('#txt_qslsj').textbox('setValue', row.qslsj); //top.$('#txt_yswcsj').textbox('setValue', row.yswcsj); //top.$('#txt_hjgkssj').textbox('setValue', row.hjgkssj); //top.$('#txt_hjgwcsj').textbox('setValue', row.hjgwcsj); //top.$('#txt_wjgjcsj').textbox('setValue', row.wjgjcsj); //top.$('#txt_qcpsj').textbox('setValue', row.qcpsj); //top.$('#txt_zdkssj').textbox('setValue', row.zdkssj); //top.$('#txt_dzwcsj').textbox('setValue', row.dzwcsj); //top.$('#txt_shryccsj').textbox('setValue', row.shryccsj); //top.$('#txt_shryhcsj').textbox('setValue', row.shryhcsj); //top.$('#txt_dbsj').textbox('setValue', row.dbsj); //top.$('#txt_szp').textbox('setValue', row.szp); //top.$('#txt_sxj').textbox('setValue', row.sxj); //top.$('#txt_skje').numberspinner('setValue', row.skje); //top.$('#txt_zph').textbox('setValue', row.zph); //top.$('#txt_kkyy').textbox('setValue', row.kkyy); //top.$('#txt_zrr').textbox('setValue', row.zrr); //top.$('#txt_rksj').textbox('setValue', row.rksj); //top.$('#txt_cksj').textbox('setValue', row.cksj); //top.$('#txt_myws').textbox('setValue', row.myws); //top.$('#txt_myysf').textbox('setValue', row.myysf); //top.$('#txt_O_myhjg1').textbox('setValue', row.O_myhjg1); //top.$('#txt_jgzysx').textbox('setValue', row.jgzysx); //top.$('#txt_connman').textbox('setValue', row.connman); //top.$('#txt_mystatus').numberspinner('setValue', row.mystatus); //top.$('#txt_kkkje').numberspinner('setValue', row.kkkje); //top.$('#txt_ds').numberspinner('setValue', row.ds); //top.$('#txt_allyspmc').textbox('setValue', row.allyspmc); //top.$('#txt_$item.colAttribute').val(row.$item.colAttribute);//$item.coltitle //top.$('.kindeditor').kindeditor();//初始化kingdeditor编辑器 //注意 如果控件被EasyUI初始化过,赋值的方法有所改变 下面提供几个例子。程序员根据情况改动一下 //$('#nn').numberbox('setValue', 206.12); //$('#nn').textbox('setValue',1); //$('#cc').combobox('setValues', ['001','002']); //$('#dt').datetimebox('setValue', '6/1/2012 12:30:56'); }, submit: function () { //alert(top.$("#uiform").form('enableValidation').form('validate')); //alert(top.$("#uiform").form('validate')); //原来用的是这种方法 alert(top.$('#uiform').validate().form()); if (top.$("#uiform").form('validate')) { var query = createParam('edit', row.KeyId); console.log("编辑时query:" + query); //alert(query); var temp = top.$(".mymy :input").serializeArray();//serializeArray 要么选择form 要么 $(".mymy :input") 这样选择 //先循环mymy下所有html元素 var mymylenth = top.$(".mymy").length;//得到有几个.mymy //alert(mymylenth); var detailjson = "["; var j = 1; top.$(".mymy").each(function () { var temp2 = top.$(this).find(":input").serializeArray(); var jsonstr = JSON.stringify(convertArrayNew(temp2)); if (j < mymylenth) { detailjson = detailjson + '{"d":' + jsonstr + '},'; } else { detailjson = detailjson + '{"d":' + jsonstr + '}'; } //alert(top.$(this).html()) j = j + 1; //alert("转化后是:"+JSON.stringify(convertArray(temp2))); }); detailjson = detailjson + ']'; console.log("得到的json数据是:" + detailjson); jQuery.ajaxjson(actionURL, query + "&d=" + detailjson, function (d) { if (parseInt(d) > 0) { msg.ok('修改成功!'); hDialog.dialog('close'); grid.reload(); } else { MessageOrRedirect(d); } }); } //msg.warning('请填写必填项!'); return false; } }); } else { msg.warning('请选择要修改的行。'); } }, editlcd: function () { var row = grid.getSelectedRow(); if (row) { var hDialog = top.jQuery.hDialog({ title: '流程单', width: 1300, height: 700, href: '/JydOrder/html/JydOrderlcd.html', iconCls: 'icon-save', onLoad: function () { //init();//初始化 top.$('#uiform').form('load', row); top.$.ajax({ type: "POST", url: '/JydOrderDetail/ashx/JydOrderDetailHandler.ashx?filter={"groupOp":"AND","rules":[{"field":"orderid","op":"eq","data":"' + row.OrderID + '"}],"groups":[]}', data: {}, dataType: "json", beforeSend: function () { }, complete: function () { }, success: function (d) { //console.log("加载字表数据:" + JSON.stringify(d)); //console.log("字表个数:" + d.rows.length); for (var i = 1; i <= d.rows.length; i++) { //console.log("渲染次数:" + i + "值是:" + JSON.stringify(d.rows[i])); //top.$('.mymy').form('load', d.rows[i]); init();//渲染完成 //top.$('.mymy').eq(i).form('load', d.rows[i]); } for (var i = 0; i < d.rows.length; i++) { top.$('.KeyId').eq(i).val(d.rows[i].KeyId); top.$('.orderid').eq(i).textbox('setValue', d.rows[i].orderid); top.$('.omainid').eq(i).textbox('setValue', d.rows[i].omainid); //top.$('.yspmc').eq(i).textbox('setValue', d.rows[i].yspmc); top.$('.yspmcshow').eq(i).text(d.rows[i].yspmc); //top.$('.PrintType').eq(i).textbox('setValue', d.rows[i].PrintType); top.$('.PrintTypeshow').eq(i).text(d.rows[i].PrintType);//印刷品类型 //top.$('.cpcc').eq(i).textbox('setValue', d.rows[i].cpcc); top.$('.cpccshow').eq(i).text(d.rows[i].cpcc);//成品尺寸 //top.$('.zzf').eq(i).textbox('setValue', d.rows[i].zzf); top.$('.zzfshow').eq(i).text(d.rows[i].zzf);//纸张 top.$('.zzn').eq(i).textbox('setValue', d.rows[i].zzn); //top.$('.ym').eq(i).textbox('setValue', d.rows[i].ym); top.$('.ymshow').eq(i).text(d.rows[i].ym);//页码 //top.$('.sj').eq(i).textbox('setValue', d.rows[i].sj); top.$('.sjshow').eq(i).text(d.rows[i].sj);//颜色 //top.$('.rj').eq(i).textbox('setValue', d.rows[i].rj); //top.$('.jp').eq(i).textbox('setValue', d.rows[i].jp); //top.$('.zz').eq(i).val(d.rows[i].zz); if (d.rows[i].zz == "自带") { //top.$('.zz').eq(i).attr("checked", true); //console.log("判断纸张自带!"); var pt = top.$('.khzdshow').eq(i).text(); top.$('.khzdshow').eq(i).text(pt + "纸张"); } if (d.rows[i].jp == "自带") { //top.$('.jp').eq(i).attr("checked", true); //console.log("判断纸张自带!"); var pt = top.$('.khzdshow').eq(i).text(); top.$('.khzdshow').eq(i).text(pt + "CPT"); } if (d.rows[i].rj == "自带") { //top.$('.rj').eq(i).attr("checked", true); var pt = top.$('.khzdshow').eq(i).text(); top.$('.khzdshow').eq(i).text(pt + "软件"); //console.log("判断纸张自带!"); } //top.$('.sl').eq(i).textbox('setValue', d.rows[i].sl); top.$('.slshow').eq(i).text(d.rows[i].sl);//数量 top.$('.cc').eq(i).textbox('setValue', d.rows[i].cc); top.$('.dj').eq(i).textbox('setValue', d.rows[i].dj); top.$('.je').eq(i).textbox('setValue', d.rows[i].je); top.$('.note').eq(i).textbox('setValue', d.rows[i].note); //top.$('.kzcc').eq(i).textbox('setValue', d.rows[i].kzcc); //top.$('.zs').eq(i).textbox('setValue', d.rows[i].zs); //top.$('.fs').eq(i).textbox('setValue', d.rows[i].fs); //top.$('.pss').eq(i).textbox('setValue', d.rows[i].pss); //top.$('.pst').eq(i).textbox('setValue', d.rows[i].pst); top.$('.fbyq').eq(i).combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=100', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', onLoadSuccess: function () { } }); top.$('.fbyq').eq(i).combobox('setValue', d.rows[i].fbyq); top.$('.jx').eq(i).combobox({ url: '/sys/ashx/dichandler.ashx?categoryId=101', limitToList: true,//设置为true时,输入的值只能是列表框中的内容。 //required: true, valueField: 'Title', textField: 'Title', onLoadSuccess: function () { } }); top.$('.jx').eq(i).combobox('setValue', d.rows[i].jx); //top.$('.jx').eq(i).textbox('setValue', d.rows[i].jx); top.$('.fumoa').eq(i).textbox('setValue', d.rows[i].fumoa); top.$('.fumob').eq(i).textbox('setValue', d.rows[i].fumob); top.$('.yaa').eq(i).textbox('setValue', d.rows[i].yaa); top.$('.yab').eq(i).textbox('setValue', d.rows[i].yab); top.$('.tana').eq(i).textbox('setValue', d.rows[i].tana); top.$('.tanb').eq(i).textbox('setValue', d.rows[i].tanb); top.$('.zheye').eq(i).textbox('setValue', d.rows[i].zheye); top.$('.uva').eq(i).textbox('setValue', d.rows[i].uva); top.$('.uvb').eq(i).textbox('setValue', d.rows[i].uvb); top.$('.zd').eq(i).textbox('setValue', d.rows[i].zd); top.$('.db').eq(i).textbox('setValue', d.rows[i].db); top.$('.bh').eq(i).textbox('setValue', d.rows[i].bh); top.$('.sh').eq(i).textbox('setValue', d.rows[i].sh); top.$('.sk').eq(i).textbox('setValue', d.rows[i].sk); top.$('.sjwcsj').eq(i).textbox('setValue', d.rows[i].sjwcsj); top.$('.cpwcsj').eq(i).textbox('setValue', d.rows[i].cpwcsj); top.$('.ctpsj').eq(i).textbox('setValue', d.rows[i].ctpsj); top.$('.sbwcsj').eq(i).textbox('setValue', d.rows[i].sbwcsj); top.$('.qslsj').eq(i).textbox('setValue', d.rows[i].qslsj); top.$('.yswcsj').eq(i).textbox('setValue', d.rows[i].yswcsj); top.$('.hjgkssj').eq(i).textbox('setValue', d.rows[i].hjgkssj); top.$('.hjgwcsj').eq(i).textbox('setValue', d.rows[i].hjgwcsj); top.$('.wjgjcsj').eq(i).textbox('setValue', d.rows[i].wjgjcsj); top.$('.qcpsj').eq(i).textbox('setValue', d.rows[i].qcpsj); top.$('.zdkssj').eq(i).textbox('setValue', d.rows[i].zdkssj); top.$('.dzwcsj').eq(i).textbox('setValue', d.rows[i].dzwcsj); top.$('.shryccsj').eq(i).textbox('setValue', d.rows[i].shryccsj); top.$('.shryhcsj').eq(i).textbox('setValue', d.rows[i].shryhcsj); top.$('.dbsj').eq(i).textbox('setValue', d.rows[i].dbsj); top.$('.rksj').eq(i).textbox('setValue', d.rows[i].rksj); top.$('.cksj').eq(i).textbox('setValue', d.rows[i].cksj); top.$('.zrr').eq(i).textbox('setValue', d.rows[i].zrr); top.$('.kkyy').eq(i).textbox('setValue', d.rows[i].kkyy); top.$('.sxj').eq(i).textbox('setValue', d.rows[i].sxj); top.$('.szp').eq(i).textbox('setValue', d.rows[i].szp); top.$('.zph').eq(i).textbox('setValue', d.rows[i].zph); top.$('.myws').eq(i).textbox('setValue', d.rows[i].myws); top.$('.myysf').eq(i).textbox('setValue', d.rows[i].myysf); top.$('.O_myhjg').eq(i).textbox('setValue', d.rows[i].O_myhjg); top.$('.qianshou').eq(i).textbox('setValue', d.rows[i].qianshou); top.$('.skje').eq(i).textbox('setValue', d.rows[i].skje); top.$('.wsjgbz').eq(i).textbox('setValue', d.rows[i].wsjgbz); top.$('.dddd').eq(i).textbox('setValue', d.rows[i].dddd); top.$('.kkkje').eq(i).textbox('setValue', d.rows[i].kkkje); top.$('.yspmcb').eq(i).textbox('setValue', d.rows[i].yspmcb); top.$('.FileTypeb').eq(i).textbox('setValue', d.rows[i].FileTypeb); top.$('.mianb').eq(i).textbox('setValue', d.rows[i].mianb); top.$('.munb').eq(i).textbox('setValue', d.rows[i].munb); top.$('.colorb').eq(i).textbox('setValue', d.rows[i].colorb); top.$('.pagerb').eq(i).textbox('setValue', d.rows[i].pagerb); top.$('.O_my_jpb').eq(i).textbox('setValue', d.rows[i].O_my_jpb); top.$('.O_my_zzb').eq(i).textbox('setValue', d.rows[i].O_my_zzb); top.$('.ddddb').eq(i).textbox('setValue', d.rows[i].ddddb); top.$('.zznb').eq(i).textbox('setValue', d.rows[i].zznb); top.$('.ymb').eq(i).textbox('setValue', d.rows[i].ymb); top.$('.sjb').eq(i).textbox('setValue', d.rows[i].sjb); top.$('.rjb').eq(i).textbox('setValue', d.rows[i].rjb); top.$('.jpb').eq(i).textbox('setValue', d.rows[i].jpb); top.$('.zzb').eq(i).textbox('setValue', d.rows[i].zzb); top.$('.fumoab').eq(i).textbox('setValue', d.rows[i].fumoab); top.$('.fumobb').eq(i).textbox('setValue', d.rows[i].fumobb); top.$('.yaab').eq(i).textbox('setValue', d.rows[i].yaab); top.$('.yabb').eq(i).textbox('setValue', d.rows[i].yabb); top.$('.tanab').eq(i).textbox('setValue', d.rows[i].tanab); top.$('.tanbb').eq(i).textbox('setValue', d.rows[i].tanbb); top.$('.zheyeb').eq(i).textbox('setValue', d.rows[i].zheyeb); top.$('.uvab').eq(i).textbox('setValue', d.rows[i].uvab); top.$('.uvbb').eq(i).textbox('setValue', d.rows[i].uvbb); top.$('.zdb').eq(i).textbox('setValue', d.rows[i].zdb); top.$('.dbb').eq(i).textbox('setValue', d.rows[i].dbb); top.$('.bhb').eq(i).textbox('setValue', d.rows[i].bhb); top.$('.shb').eq(i).textbox('setValue', d.rows[i].shb); top.$('.skb').eq(i).textbox('setValue', d.rows[i].skb); top.$('.PrintTypeb').eq(i).textbox('setValue', d.rows[i].PrintTypeb); top.$('.zzfb').eq(i).textbox('setValue', d.rows[i].zzfb); top.$('.noteb').eq(i).textbox('setValue', d.rows[i].noteb); top.$('.cpccb').eq(i).textbox('setValue', d.rows[i].cpccb); top.$('.printyes').eq(i).textbox('setValue', d.rows[i].printyes); top.$('.kzccb').eq(i).textbox('setValue', d.rows[i].kzccb); top.$('.zsb').eq(i).textbox('setValue', d.rows[i].zsb); top.$('.fsb').eq(i).textbox('setValue', d.rows[i].fsb); top.$('.pssb').eq(i).textbox('setValue', d.rows[i].pssb); top.$('.pstb').eq(i).textbox('setValue', d.rows[i].pstb); top.$('.fbyqb').eq(i).textbox('setValue', d.rows[i].fbyqb); top.$('.jxb').eq(i).textbox('setValue', d.rows[i].jxb); top.$('.kkkjeb').eq(i).textbox('setValue', d.rows[i].kkkjeb); top.$('.nysl').eq(i).textbox('setValue', d.rows[i].nysl); top.$('.ctpa').eq(i).textbox('setValue', d.rows[i].ctpa); top.$('.ctpb').eq(i).textbox('setValue', d.rows[i].ctpb); top.$('.zhizhangbb').eq(i).textbox('setValue', d.rows[i].zhizhangbb); top.$('.songhuo').eq(i).textbox('setValue', d.rows[i].songhuo); //top.$('.xiaoyang').eq(i).textbox('setValue', d.rows[i].xiaoyang);//小样 //top.$('.danwei_m').eq(i).textbox('setValue', d.rows[i].danwei_m); top.$('.danwei_mshow').eq(i).text(d.rows[i].danwei_m); //单位 top.$('.danwei_mb').eq(i).textbox('setValue', d.rows[i].danwei_mb); top.$('.bz_hx').eq(i).textbox('setValue', d.rows[i].bz_hx); top.$('.bz_wbz_cc').eq(i).textbox('setValue', d.rows[i].bz_wbz_cc); top.$('.bz_wbz_gy').eq(i).textbox('setValue', d.rows[i].bz_wbz_gy); top.$('.bz_nbz_zz').eq(i).textbox('setValue', d.rows[i].bz_nbz_zz); top.$('.bz_nbz_cc').eq(i).textbox('setValue', d.rows[i].bz_nbz_cc); top.$('.bz_nbz_gy').eq(i).textbox('setValue', d.rows[i].bz_nbz_gy); top.$('.bz_wkz_zz').eq(i).textbox('setValue', d.rows[i].bz_wkz_zz); top.$('.bz_wkz_cc').eq(i).textbox('setValue', d.rows[i].bz_wkz_cc); top.$('.bz_wkz_gy').eq(i).textbox('setValue', d.rows[i].bz_wkz_gy); top.$('.bz_bc_yl').eq(i).textbox('setValue', d.rows[i].bz_bc_yl); top.$('.bz_bc_sl').eq(i).textbox('setValue', d.rows[i].bz_bc_sl); top.$('.bz_bc_mx').eq(i).textbox('setValue', d.rows[i].bz_bc_mx); top.$('.bz_nt').eq(i).textbox('setValue', d.rows[i].bz_nt); top.$('.bz_nt_cc').eq(i).textbox('setValue', d.rows[i].bz_nt_cc); top.$('.bz_nt_mx').eq(i).textbox('setValue', d.rows[i].bz_nt_mx); top.$('.bz_wbz').eq(i).textbox('setValue', d.rows[i].bz_wbz); //加载完后渲染 } top.$(".kzcc,.zs,.fs,.pss,.pst").textbox({});//开纸尺寸,正数,放数,色,套 initlc();//加载流程--完了之后加载流程 } }); //top.$('.mymy').form('load', {comname:'北京'}); //top.$('#txt_KeyId').numberspinner('setValue', row.KeyId); //top.$('#txt_ServiceType').numberspinner('setValue', row.ServiceType); //top.$('#txt_OrderYear').textbox('setValue', row.OrderYear); //top.$('#txt_OrderInt').numberspinner('setValue', row.OrderInt); //top.$('#txt_OrderID').textbox('setValue', row.OrderID); //top.$('#txt_username').textbox('setValue', row.username); //top.$('#txt_comname').textbox('setValue', row.comname); //top.$('#txt_comnameid').numberspinner('setValue', row.comnameid); //top.$('#txt_jpm').textbox('setValue', row.jpm); //top.$('#txt_name').textbox('setValue', row.name); //top.$('#txt_tel').textbox('setValue', row.tel); //top.$('#txt_address').textbox('setValue', row.address); //top.$('#txt_explain').textbox('setValue', row.explain); //top.$('#txt_deliveryDate').datetimebox('setValue', row.deliveryDate); //top.$('#txt_delivery').textbox('setValue', row.delivery); //top.$('#txt_adddate').datetimebox('setValue', row.adddate); //top.$('#txt_fk').numberspinner('setValue', row.fk); //top.$('#txt_yf').numberspinner('setValue', row.yf); //top.$('#txt_qt').numberspinner('setValue', row.qt); //top.$('#txt_totalprice').numberspinner('setValue', row.totalprice); //top.$('#txt_cfzt').textbox('setValue', row.cfzt); //top.$('#txt_jjy').textbox('setValue', row.jjy); //top.$('#txt_fumoa').textbox('setValue', row.fumoa); //top.$('#txt_fumob').textbox('setValue', row.fumob); //top.$('#txt_yaa').textbox('setValue', row.yaa); //top.$('#txt_yab').textbox('setValue', row.yab); //top.$('#txt_tana').textbox('setValue', row.tana); //top.$('#txt_tanb').textbox('setValue', row.tanb); //top.$('#txt_zheye').textbox('setValue', row.zheye); //top.$('#txt_uva').textbox('setValue', row.uva); //top.$('#txt_uvb').textbox('setValue', row.uvb); //top.$('#txt_zd').textbox('setValue', row.zd); //top.$('#txt_db').textbox('setValue', row.db); //top.$('#txt_bh').textbox('setValue', row.bh); //top.$('#txt_sh').textbox('setValue', row.sh); //top.$('#txt_sk').textbox('setValue', row.sk); //top.$('#txt_huofa').textbox('setValue', row.huofa); //top.$('#txt_fahuoren').textbox('setValue', row.fahuoren); //top.$('#txt_ys').textbox('setValue', row.ys); //top.$('#txt_fy').textbox('setValue', row.fy); //top.$('#txt_dha').textbox('setValue', row.dha); //top.$('#txt_dhb').textbox('setValue', row.dhb); //top.$('#txt_status').textbox('setValue', row.status); //top.$('#txt_jexx').textbox('setValue', row.jexx); //top.$('#txt_jedx').textbox('setValue', row.jedx); //top.$('#txt_yufuk').numberspinner('setValue', row.yufuk); //top.$('#txt_yufukuana').textbox('setValue', row.yufukuana); //top.$('#txt_sckd').textbox('setValue', row.sckd); //top.$('#txt_sjwcsj').textbox('setValue', row.sjwcsj); //top.$('#txt_cpwcsj').textbox('setValue', row.cpwcsj); //top.$('#txt_ctpsj').textbox('setValue', row.ctpsj); //top.$('#txt_sbwcsj').textbox('setValue', row.sbwcsj); //top.$('#txt_qslsj').textbox('setValue', row.qslsj); //top.$('#txt_yswcsj').textbox('setValue', row.yswcsj); //top.$('#txt_hjgkssj').textbox('setValue', row.hjgkssj); //top.$('#txt_hjgwcsj').textbox('setValue', row.hjgwcsj); //top.$('#txt_wjgjcsj').textbox('setValue', row.wjgjcsj); //top.$('#txt_qcpsj').textbox('setValue', row.qcpsj); //top.$('#txt_zdkssj').textbox('setValue', row.zdkssj); //top.$('#txt_dzwcsj').textbox('setValue', row.dzwcsj); //top.$('#txt_shryccsj').textbox('setValue', row.shryccsj); //top.$('#txt_shryhcsj').textbox('setValue', row.shryhcsj); //top.$('#txt_dbsj').textbox('setValue', row.dbsj); //top.$('#txt_szp').textbox('setValue', row.szp); //top.$('#txt_sxj').textbox('setValue', row.sxj); //top.$('#txt_skje').numberspinner('setValue', row.skje); //top.$('#txt_zph').textbox('setValue', row.zph); //top.$('#txt_kkyy').textbox('setValue', row.kkyy); //top.$('#txt_zrr').textbox('setValue', row.zrr); //top.$('#txt_rksj').textbox('setValue', row.rksj); //top.$('#txt_cksj').textbox('setValue', row.cksj); //top.$('#txt_myws').textbox('setValue', row.myws); //top.$('#txt_myysf').textbox('setValue', row.myysf); //top.$('#txt_O_myhjg1').textbox('setValue', row.O_myhjg1); //top.$('#txt_jgzysx').textbox('setValue', row.jgzysx); //top.$('#txt_connman').textbox('setValue', row.connman); //top.$('#txt_mystatus').numberspinner('setValue', row.mystatus); //top.$('#txt_kkkje').numberspinner('setValue', row.kkkje); //top.$('#txt_ds').numberspinner('setValue', row.ds); //top.$('#txt_allyspmc').textbox('setValue', row.allyspmc); //top.$('#txt_$item.colAttribute').val(row.$item.colAttribute);//$item.coltitle //top.$('.kindeditor').kindeditor();//初始化kingdeditor编辑器 //注意 如果控件被EasyUI初始化过,赋值的方法有所改变 下面提供几个例子。程序员根据情况改动一下 //$('#nn').numberbox('setValue', 206.12); //$('#nn').textbox('setValue',1); //$('#cc').combobox('setValues', ['001','002']); //$('#dt').datetimebox('setValue', '6/1/2012 12:30:56'); }, submit: function () { //alert(top.$("#uiform").form('enableValidation').form('validate')); //alert(top.$("#uiform").form('validate')); //原来用的是这种方法 alert(top.$('#uiform').validate().form()); if (top.$("#uiform").form('validate')) { var query = createParam('edit', row.KeyId); console.log("编辑时query:" + query); //alert(query); var temp = top.$(".mymy :input").serializeArray();//serializeArray 要么选择form 要么 $(".mymy :input") 这样选择 //先循环mymy下所有html元素 var mymylenth = top.$(".mymy").length;//得到有几个.mymy //alert(mymylenth); var detailjson = "["; var j = 1; top.$(".mymy").each(function () { var temp2 = top.$(this).find(":input").serializeArray(); var jsonstr = JSON.stringify(convertArrayNew(temp2)); if (j < mymylenth) { detailjson = detailjson + '{"d":' + jsonstr + '},'; } else { detailjson = detailjson + '{"d":' + jsonstr + '}'; } //alert(top.$(this).html()) j = j + 1; //alert("转化后是:"+JSON.stringify(convertArray(temp2))); }); detailjson = detailjson + ']'; console.log("得到的json数据是:" + detailjson); jQuery.ajaxjson(actionURL, query + "&d=" + detailjson, function (d) { if (parseInt(d) > 0) { msg.ok('修改成功!'); hDialog.dialog('close'); grid.reload(); } else { MessageOrRedirect(d); } }); } //msg.warning('请填写必填项!'); return false; } }); } else { msg.warning('请选择要修改的行。'); } }, del: function () { var row = grid.getSelectedRow(); if (row) { if (confirm('确认要执行删除操作吗?')) { var rid = row.KeyId; jQuery.ajaxjson(actionURL, createParam('delete', rid), function (d) { if (parseInt(d) > 0) { msg.ok('删除成功!'); grid.reload(); } else { MessageOrRedirect(d); } }); } } else { msg.warning('请选择要删除的行。'); } } }; //实现动态隐藏列 var cmenu = null; function createColumnMenu() { cmenu = $('<div/>').appendTo('body'); cmenu.menu({ onClick: function (item) { if (item.iconCls == 'icon-ok') { $('#list').datagrid('hideColumn', item.name); cmenu.menu('setIcon', { target: item.target, iconCls: 'icon-empty' }); } else { $('#list').datagrid('showColumn', item.name); cmenu.menu('setIcon', { target: item.target, iconCls: 'icon-ok' }); } } }); var fields = $('#list').datagrid('getColumnFields'); for (var i = 0; i < fields.length; i++) { var field = fields[i]; var col = $('#list').datagrid('getColumnOption', field); cmenu.menu('appendItem', { text: col.title, name: field, iconCls: 'icon-ok' }); } } //实现动态隐藏列结束 //双击编辑表单焦点消失后保存 var editIndex = undefined; function endEditing() { if (editIndex == undefined) { return true } if ($('#list').datagrid('validateRow', editIndex)) { $('#list').datagrid('endEdit', editIndex); editIndex = undefined; return true; } else { return false; } } function onDblClickCell(index, field) { if (editIndex != index) { if (endEditing()) { $('#list').datagrid('selectRow', index) $('#list').datagrid('beginEdit', index); var ed = $('#list').datagrid('getEditor', { index: index, field: field }); if (ed) { ($(ed.target).data('textbox') ? $(ed.target).textbox('textbox') : $(ed.target)).focus(); //这个写法很有意思 //为了方便 ,类似字段要同事写两个值 1把部门id写入隐藏字段2把标题换成值写入 显示字段 } editIndex = index; } else { setTimeout(function () { $('#list').datagrid('selectRow', editIndex); }, 0); } } } function onUnselect(index, row) { //alert(index); } function onCancelEdit(index, row) { //alert(index); } function onClickRow(index, row) { if (editIndex != undefined) { //alert("正在编辑的行是:" + editIndex); //alert("验证正在编辑的行:" + $('#list').datagrid('validateRow', editIndex)); if ($('#list').datagrid('validateRow', editIndex)) {//如果验证正在编辑的行数据有效则 $("#list").datagrid('endEdit', editIndex);//如果点其他行,结束编辑正在编辑的行 editIndex = undefined; } else { msg.warning("还有一行没编辑完啦!!"); } } $("#list").datagrid('selectRow', index); } function onSelect(index, row) { } function onEndEdit(index, row, changes) { //alert('结束编辑'+index+JSON.stringify(row)); var o = {}; var query = JSON.stringify(row); o.jsonEntity = query; o.action = 'edit'; o.keyid = row.KeyId; query = "json=" + JSON.stringify(o); //alert(query); //表格内编辑模式编辑成功不提示信息 jQuery.ajaxjson(actionURL, query, function (d) { //if (parseInt(d) > 0) { // msg.ok('编辑成功!'); // hDialog.dialog('close'); grid.reload(); // } else { // MessageOrRedirect(d); // } }); } function append() { if (endEditing()) { $('#list').datagrid('appendRow', { status: 'P' }); editIndex = $('#list').datagrid('getRows').length - 1; $('#list').datagrid('selectRow', editIndex) .datagrid('beginEdit', editIndex); } } function removeit() { if (editIndex == undefined) { return } $('#list').datagrid('cancelEdit', editIndex) .datagrid('deleteRow', editIndex); editIndex = undefined; } function accept() { if (endEditing()) { $('#list').datagrid('acceptChanges'); } } function reject() { $('#list').datagrid('rejectChanges'); editIndex = undefined; } function getChanges() { var rows = $('#list').datagrid('getChanges'); alert(rows.length + ' rows are changed!'); } //双击编辑表单焦点消失后保存结束 //自定义搜索开始 function mySearch() { //page=1&rows=20&filter={"groupOp":"AND","rules":[{"field":"unit","op":"cn","data":"昆明"},{"field":"connman","op":"cn","data":"朱光明"}],"groups":[]} var myunit = $("#myUnit").textbox('getValue'); var connman = $("#myConnMan").textbox('getValue'); var query = '{"groupOp":"AND","rules":[],"groups":[]}'; var o = JSON.parse(query); var i = 0; if (myunit != '' && myunit != undefined) {//假如单位搜索不为空 o.rules[i] = JSON.parse('{"field":"unit","op":"cn","data":"' + myunit + '"}'); i = i + 1; } if (connman != '' & connman != undefined) {//联系人不为空 o.rules[i] = JSON.parse('{"field":"connman","op":"cn","data":"' + connman + '"}'); } $('#list').datagrid('reload', { filter: JSON.stringify(o) }); } //自定义搜索结束 //单选多选开关 $('#selectSwitch').switchbutton({ checked: false, onChange: function (checked) { if (checked) { $('#list').datagrid({ singleSelect: false });//多选 } else { $('#list').datagrid({ singleSelect: true });//单选 } } }) //订单状态筛选 $("#orderstatus").combobox({ valueField: 'id', textField: 'value', data: [{ id: '0', value: '接件单', }, { id: '1', value: '流程单' }, { id: '2', value: '送货签收单' }, { id: '4', value: '作废单' }], onSelect: function (rec) { //alert(rec.id+"k"); if (rec.id == 0) {//正常订单 $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"status","op":"cn","data":"0"}],"groups":[]}' }); } if (rec.id == 1) { $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"status","op":"cn","data":"1"}],"groups":[]}' }); } if (rec.id == 2) {//送货签收单 $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"status","op":"cn","data":"2"}],"groups":[]}' }); } if (rec.id == 4) { $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"status","op":"cn","data":"4"}],"groups":[]}' }); } if (rec.id == 999) { $('#list').datagrid('reload', { filter: '' }); } } }); //订单部门筛选 $("#orderdeptid").combobox({ valueField: 'id', textField: 'value', data: [{ id: '1', value: '总公司', }, { id: '5', value: '昆明盘亘商贸' }], onSelect: function (rec) { //alert(rec.id+"k"); if (rec.id == 1) {//正常订单 $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"deptid","op":"eq","data":"1"}],"groups":[]}' }); } if (rec.id == 5) { $('#list').datagrid('reload', { filter: '{"groupOp":"AND","rules":[{"field":"deptid","op":"eq","data":"5"}],"groups":[]}' }); } } }); //小写转大写 function cmycurd(num) { //转成人民币大写金额形式 var str1 = '零壹贰叁肆伍陆柒捌玖'; //0-9所对应的汉字 var str2 = '万仟佰拾亿仟佰拾万仟佰拾元角分'; //数字位所对应的汉字 var str3; //从原num值中取出的值 var str4; //数字的字符串形式 var str5 = ''; //人民币大写金额形式 var i; //循环变量 var j; //num的值乘以100的字符串长度 var ch1; //数字的汉语读法 var ch2; //数字位的汉字读法 var nzero = 0; //用来计算连续的零值是几个 num = Math.abs(num).toFixed(2); //将num取绝对值并四舍五入取2位小数 str4 = (num * 100).toFixed(0).toString(); //将num乘100并转换成字符串形式 j = str4.length; //找出最高位 if (j > 15) { return '溢出'; } str2 = str2.substr(15 - j); //取出对应位数的str2的值。如:200.55,j为5所以str2=佰拾元角分 //循环取出每一位需要转换的值 for (i = 0; i < j; i++) { str3 = str4.substr(i, 1); //取出需转换的某一位的值 if (i != (j - 3) && i != (j - 7) && i != (j - 11) && i != (j - 15)) { //当所取位数不为元、万、亿、万亿上的数字时 if (str3 == '0') { ch1 = ''; ch2 = ''; nzero = nzero + 1; } else { if (str3 != '0' && nzero != 0) { ch1 = '零' + str1.substr(str3 * 1, 1); ch2 = str2.substr(i, 1); nzero = 0; } else { ch1 = str1.substr(str3 * 1, 1); ch2 = str2.substr(i, 1); nzero = 0; } } } else { //该位是万亿,亿,万,元位等关键位 if (str3 != '0' && nzero != 0) { ch1 = "零" + str1.substr(str3 * 1, 1); ch2 = str2.substr(i, 1); nzero = 0; } else { if (str3 != '0' && nzero == 0) { ch1 = str1.substr(str3 * 1, 1); ch2 = str2.substr(i, 1); nzero = 0; } else { if (str3 == '0' && nzero >= 3) { ch1 = ''; ch2 = ''; nzero = nzero + 1; } else { if (j >= 11) { ch1 = ''; nzero = nzero + 1; } else { ch1 = ''; ch2 = str2.substr(i, 1); nzero = nzero + 1; } } } } } if (i == (j - 11) || i == (j - 3)) { //如果该位是亿位或元位,则必须写上 ch2 = str2.substr(i, 1); } str5 = str5 + ch1 + ch2; if (i == j - 1 && str3 == '0') { //最后一位(分)为0时,加上"整" str5 = str5 + '整'; } } if (num == 0) { str5 = '零元整'; } return str5; } //小写转大写 //主要是推荐这个函数。它将jquery系列化后的值转为name:value的形式。 function convertArrayNew(o) { var v = {}; for (var i in o) { if (o[i].name != '__VIEWSTATE') { if (typeof (v[o[i].name]) == 'undefined') v[o[i].name] = o[i].value; else //记住注释了这行 //v[o[i].name] += "," + o[i].value; v[o[i].name] += o[i].value; } } return v; } //打印wenjian function print_printdy(id,str) { var dialog = $.dialog({ title: '接件单打印', content: 'url:/JydWodrmb/print_printdy.aspx?KeyId=' + id + '&OrderID=' + str , min: false, max: false, lock: true, width: 850, height: 650 }); } ~~~ 新建cs中写入要查询的语句 ~~~ using NetWing.Common.Data.SqlServer; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace NetWing.BPM.Admin.JydWodrmb { public partial class print_printdy : System.Web.UI.Page { public DataTable dt = null; public DataTable dte = null; protected void Page_Load(object sender, EventArgs e) { string pid = Request["KeyId"]; string dateii = Request["OrderID"]; string sql = "select * from jydOrderDetail where orderid='" + dateii + "' or KeyId=" + pid; string sqle = "select * from jydOrder where OrderID='" + dateii + "' and KeyId=" + pid; dt = SqlEasy.ExecuteDataTable(sql); dte = SqlEasy.ExecuteDataTable(sqle); string shname = ""; foreach (DataRow dr in dte.Rows) { shname += dr["OrderID"].ToString() + ","; } shname = shname.Substring(0, shname.Length - 1); } } } ~~~ aspx中写入数值 ~~~ <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="print_printdy.aspx.cs" Inherits="NetWing.BPM.Admin.JydWodrmb.print_printdy" %> <!DOCTYPE html> <%@ Import Namespace="System.Collections.Generic" %> <%@ Import Namespace="System.Text" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.Sql" %> <%@ Import Namespace="System.Data.SqlClient" %> <%@ Import Namespace="NetWing.Common" %> <%@ Import Namespace="NetWing.Common.Data" %> <%@ Import Namespace="NetWing.Common.Data.SqlServer" %> <%@ Import Namespace="NetWing.Common.Provider" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>聚源达接件单</title> <meta content="" name="keywords"> <meta content="" name="description"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <script type="text/javascript" src="../scripts/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="../scripts/lhgdialog/lhgdialog.js?skin=idialog"></script> <link type="text/css" rel="stylesheet" href="css/base.css" /> <script> //窗口API var api = frameElement.api, W = api.opener; var myDate = new Date(); api.button( { name: '确认打印', focus: true, callback: function () { printWin(); return false; } }, //{ // name: '导出Excel', // callback: function () { // ajaxExcel(); // return false; // } //}, { name: '取消' } ); //打印方法 function printWin() { var oWin = window.open("", "_blank"); oWin.document.write(document.getElementById("print_content").innerHTML); oWin.focus(); oWin.document.close(); oWin.print() oWin.close() } </script> </head> <body> <form id="form1" runat="server"> <div id="print_content"> <!--全局变量--> <% int pd1l = 0; foreach (DataRow dr in dt.Rows) { %> <!--接件单名--> <p class="MsoNormal" align="center" style="text-align: center;"> <img width="61" height="34" src="img/dyt.png" /><b><span style="font-family: 宋体; font-size: 18pt;"><span>昆明聚源达彩印包装有限公司接件单</span></span></b><b><span style="font-family: 宋体; font-size: 18pt;"></span></b> </p> <!--订单号--> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 12pt;"><%=dte.Rows[0]["OrderID"].ToString() %></span></b><b><span style="font-family: 宋体; font-size: 12pt;"></span></b> </p> <!--日期--> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;"><span>客户名称:</span></span></b><b><u><span style="font-family: 宋体; font-size: 9pt;">&nbsp;<%=dte.Rows[0]["comname"].ToString() %></span></u></b><b><span style="font-family: 宋体; font-size: 9pt;"><span>联系人:<%=dte.Rows[0]["connman"].ToString() %></span> &nbsp;&nbsp;&nbsp;&nbsp;<span>电话:<%=dte.Rows[0]["tel"].ToString() %></span> &nbsp;&nbsp;&nbsp;&nbsp;<span>接件日期:<%=dte.Rows[0]["adddate"].ToString() %></span> &nbsp;&nbsp;&nbsp;&nbsp;<span>交货日期:<%=dte.Rows[0]["deliveryDate"].ToString() %></span> &nbsp;&nbsp;&nbsp;<span>接件员:<%=dte.Rows[0]["jjy"].ToString() %></span> &nbsp;</span></b><b><span style="font-family: 宋体; font-size: 9pt;"><span>业务员:<%=dte.Rows[0]["sckd"].ToString() %></span></span></b><b><u><span style="font-family: 宋体; font-size: 9pt;"></span></u></b> </p> <div align="center"> <table class="MsoTableGrid" border="1" cellspacing="0" style="border-collapse: collapse; width: 493.5500pt; border: none;"> <tbody> <!--首行名称--> <tr> <td width="98" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">产品名称</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="48" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">类型</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="39" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">单位</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="90" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">成品尺寸<span>(cm)</span></span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="64" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">设计要求</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="44" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">材料</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="54" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 7.5pt;">客户自带</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="43" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">页码</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="43" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">数量</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="48" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">单价</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="40" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 9pt;">金额</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> <td width="40" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 7.5pt;">工艺</span></b><b><span style="font-family: 宋体; font-size: 9pt;"></span></b> </p> </td> </tr> <!--数值--> <tr> <td width="98" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["yspmc"].ToString() %></span></b> </p> </td> <td width="48" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["PrintType"].ToString() %></span></b> </p> </td> <td width="39" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["danwei_m"].ToString() %></span></b> </p> </td> <td width="90" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["cpcc"].ToString() %></span></b> </p> </td> <td width="64" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["zzf"].ToString() %></span></b> </p> </td> <td width="44" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"></span></b> </p> </td> <td width="54" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["zz"].ToString() %></span></b> </p> </td> <td width="43" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["ym"].ToString() %></span></b> </p> </td> <td width="43" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["zs"].ToString() %></span></b> </p> </td> <td width="48" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["dj"].ToString() %></span></b> </p> </td> <td width="40" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["je"].ToString() %></span></b> </p> </td> <td width="40" valign="center" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="center" style="text-align: center;"> <b><span style="font-family: 宋体; font-size: 10.5pt;"><%=dr["fbyq"].ToString() %></span></b> </p> </td> </tr> <!--注释--> <tr> <td width="658" valign="center" colspan="12" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal"> <b><span style="font-family: 宋体; font-size: 7.5pt;"></span></b> </p> </td> </tr> <!--合计--> <tr> <td width="658" valign="top" colspan="12" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal" align="justify" style="text-align: justify;"> <span style="font-family: 宋体; font-size: 10.5pt;">注:</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;">手工输入</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"></span> </p> <p class="MsoNormal" align="justify" style="text-align: justify;"> <span style="font-family: 宋体; font-size: 10.5pt;">货发:<%=dte.Rows[0]["huofa"].ToString() %></span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"> &nbsp;</span><span style="font-family: 宋体; font-size: 10.5pt;">收货人:</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"><%=dte.Rows[0]["connman"].ToString() %><span> </span></span><span style="font-family: 宋体; font-size: 10.5pt;">电话:</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"><%=dte.Rows[0]["tel"].ToString() %><span> &nbsp;</span></span><span style="font-family: 宋体; font-size: 10.5pt;">运输</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;">:<%=dte.Rows[0]["huofa"].ToString() %></span><span style="font-family: 宋体; color: #FF0000; font-size: 7.5pt;">&nbsp;&nbsp;</span><span style="font-family: 宋体; font-size: 10.5pt;">费用</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;">:<%=dte.Rows[0]["jedx"].ToString() %></span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"></span> </p> <p class="MsoNormal" align="justify" style="text-align: justify;"> <span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 宋体; font-size: 10.5pt;">&nbsp;</span><span style="font-family: 宋体; color: #FF0000; font-size: 10.5pt;"></span> </p> </td> </tr> <tr> <td width="658" valign="center" colspan="12" style="border: 1.0000pt solid windowtext;"> <p class="MsoNormal"> <b><span style="font-family: 宋体; font-size: 7.5pt;">合计: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;大写: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;预付款:<%=dr["je"].ToString() %></span></b><b><span style="font-family: 宋体; font-size: 7.5pt;"></span></b> </p> </td> </tr> <%} %> </tbody> </table> </div> <p class="MsoNormal"> <span style="font-family: Calibri; font-size: 10.5000pt;">&nbsp;</span> </p> </div> <div class="cnzz" style="display: none;"></div> </form> </body> </html> ~~~