username@email.com
2021-06-04 10b700dad2a510b83a5066aa5002dea8f4eb0e38
zhengcaioa/zhengcaioa/Views/Project/Select.cshtml
@@ -21,9 +21,58 @@
            {
                label: '项目名称', name: 'Name', labtype: 'txt', hidden: false, width: 400 ,
                formatter: function (cellvalue, options, rowObject) {
                    return "<a onclick=\"OpenWindow('" + cellvalue.replace(/'/g, '') + "','98%','100%', '/Project/Add?id=" + rowObject.Id + "')\"  >" + cellvalue + "</a>";
                    return "<a onclick=\"OpenWindow('" + cellvalue + "','98%','100%', '/Project/Add?id=" + rowObject.Id + "')\"  >" + cellvalue + "</a>";
                }
            }, { label: '项目编号', name: 'Number', labtype: 'txt', hidden: false, width: 100  },
            }, { label: '项目编号', name: 'Number', labtype: 'txt', hidden: false, width: 100 },
            {
                label: '中标供应商', name: 'Toubiaocishu', labtype: 'txt', hidden: false, width: 400,
                formatter: function (cellvalue, options, rowObject) {
                    if (cellvalue != null && cellvalue != "null" && cellvalue != "") {
                        var ss = cellvalue.split('、');
                        var result = "";
                        for (var i = 0;i < ss.length; i++){
                            result += "<a onclick=\"OpenWindow('" + ss[i] + "','98%','100%', '/IntentionCustomer/EditByName?name=" + ss[i] + "')\"  >" + ss[i] + "</a>&nbsp;";
                        }
                        return result;
                    } else {
                        return "";
                    }
                }
            },
            {
                label: '第二候选', name: 'Drhx', labtype: 'txt', hidden: false, width: 400,
                formatter: function (cellvalue, options, rowObject) {
                    if (cellvalue != null && cellvalue != "null" && cellvalue != "") {
                        var ss = cellvalue.split('、');
                        var result = "";
                        for (var i = 0; i < ss.length; i++) {
                            result += "<a onclick=\"OpenWindow('" + ss[i] + "','98%','100%', '/IntentionCustomer/EditByName?name=" + ss[i] + "')\"  >" + ss[i] + "</a>&nbsp;";
                        }
                        return result;
                    } else {
                        return "";
                    }
                }
            },
            {
                label: '第三候选', name: 'Dshx', labtype: 'txt', hidden: false, width: 400,
                formatter: function (cellvalue, options, rowObject) {
                    if (cellvalue != null && cellvalue != "null" && cellvalue != "") {
                        var ss = cellvalue.split('、');
                        var result = "";
                        for (var i = 0; i < ss.length; i++) {
                            result += "<a onclick=\"OpenWindow('" + ss[i] + "','98%','100%', '/IntentionCustomer/EditByName?name=" + ss[i] + "')\"  >" + ss[i] + "</a>&nbsp;";
                        }
                        return result;
                    } else {
                        return "";
                    }
                }
            },
            { label: '评审专家', name: 'Zhuanjia', labtype: 'txt', hidden: false, width: 400 },
            { label: '投标次数', name: 'Toubiaocishu', labtype: 'txt', hidden: true },
            { label: '中标次数', name: 'Zhongbiaocishu', labtype: 'txt', hidden: true },
@@ -39,10 +88,13 @@
            { label: '省', name: 'Sheng', labtype: 'combox', hidden: false, data: JSON.parse(shengDropDown), cwidth: '5%', cccwidth: '8%' },
            { label: '市', name: 'City', labtype: 'combox', hidden: false, data: JSON.parse('[]'), cwidth: '1%', cccwidth: '8%'  },
            { label: '区县', name: 'AreaId', labtype: 'combox', hidden: false, data: JSON.parse('[]'), cwidth: '2%', cccwidth: '8%'  },
            { label: '评审专家', name: 'Zhuanjia', labtype: 'txt', hidden: false, cwidth: '8.5%', cccwidth: '15%' },
            { label: '供应商', name: 'Names', labtype: 'txt', hidden: false },
            { label: '区县', name: 'AreaId', labtype: 'combox', hidden: false, data: JSON.parse('[]'), cwidth: '2%', cccwidth: '8%' },
            { label: '采购方式', name: 'Cgfs', labtype: 'combox', hidden: false, data: JSON.parse(projectDropDown) },
            { label: '中标供应商', name: 'Names', labtype: 'txt', hidden: false },
            { label: '投标供应商', name: 'NamesToubiao', labtype: 'txt', hidden: false },
            { label: '评审专家', name: 'Zhuanjia', labtype: 'txt', hidden: false, cwidth: '8.5%', cccwidth: '15%' },
            { label: '录入时间', name: 'Createtime', labtype: 'datearea', hidden: false },
            { label: '录入人', name: 'Creater', labtype: 'combox', hidden: false, data: JSON.parse(Creater), cwidth: '5%', cccwidth: '8%' },