提交 ab8289c0 编写于 作者: Skyeye云's avatar Skyeye云

售后模块整改完成

上级 6d6e5ec4
...@@ -30,13 +30,13 @@ layui.config({ ...@@ -30,13 +30,13 @@ layui.config({
$("#writePeople").html(json.bean.userName); $("#writePeople").html(json.bean.userName);
matchingLanguage(); matchingLanguage();
//支出分类 //支出分类
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype008", params: {}, type: 'json', callback: function(data) { AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype008", params: {}, type: 'json', callback: function(data) {
if(data.returnCode == 0) { if(data.returnCode == 0) {
costTypeList = getDataUseHandlebars(selOption, data); costTypeList = getDataUseHandlebars(selOption, data);
addRow(); addRow();
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -138,7 +138,7 @@ layui.config({ ...@@ -138,7 +138,7 @@ layui.config({
subType: subType, // 表单类型 1.保存草稿 2.提交审批 subType: subType, // 表单类型 1.保存草稿 2.提交审批
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "procostexpense002", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "procostexpense002", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'procostexpense001', url: flowableBasePath + 'procostexpense001',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
...@@ -87,7 +87,7 @@ layui.config({ ...@@ -87,7 +87,7 @@ layui.config({
var msg = '确认从工作流中撤销选中数据吗?'; var msg = '确认从工作流中撤销选中数据吗?';
layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) { layer.confirm(msg, { icon: 3, title: '撤销操作' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "procostexpense007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpense007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -124,7 +124,7 @@ layui.config({ ...@@ -124,7 +124,7 @@ layui.config({
rowId: data.id, rowId: data.id,
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "procostexpense006", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpense006", params: params, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -141,7 +141,7 @@ layui.config({ ...@@ -141,7 +141,7 @@ layui.config({
var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?'; var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?';
layer.confirm(msg, { icon: 3, title: '作废操作' }, function (index) { layer.confirm(msg, { icon: 3, title: '作废操作' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "procostexpense010", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpense010", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -186,7 +186,7 @@ layui.config({ ...@@ -186,7 +186,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "procostexpense009", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpense009", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -13,7 +13,7 @@ layui.config({ ...@@ -13,7 +13,7 @@ layui.config({
var beanTemplate = $("#beanTemplate").html(); var beanTemplate = $("#beanTemplate").html();
AjaxPostUtil.request({url:reqBasePath + "procostexpense003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpense003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){
if(json.returnCode == 0) { if(json.returnCode == 0) {
//附件回显 //附件回显
var str = "暂无附件"; var str = "暂无附件";
......
...@@ -20,7 +20,7 @@ layui.config({ ...@@ -20,7 +20,7 @@ layui.config({
var showTemplate = $("#showTemplate").html(); var showTemplate = $("#showTemplate").html();
var selOption = getFileContent('tpl/template/select-option.tpl'); var selOption = getFileContent('tpl/template/select-option.tpl');
AjaxPostUtil.request({url: reqBasePath + "procostexpense004", params: {rowId: parent.rowId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "procostexpense004", params: {rowId: parent.rowId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
$("#title").val(json.bean.title); $("#title").val(json.bean.title);
$("#writePeople").html(json.bean.userName); $("#writePeople").html(json.bean.userName);
...@@ -44,7 +44,7 @@ layui.config({ ...@@ -44,7 +44,7 @@ layui.config({
//获取项目 //获取项目
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -54,7 +54,7 @@ layui.config({ ...@@ -54,7 +54,7 @@ layui.config({
$("#proId").val(json.bean.proId); $("#proId").val(json.bean.proId);
form.render('select'); form.render('select');
//支出分类 //支出分类
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype008", params: {}, type: 'json', callback: function(data) { AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype008", params: {}, type: 'json', callback: function(data) {
if(data.returnCode == 0) { if(data.returnCode == 0) {
departmentsSelect(json); departmentsSelect(json);
costTypeList = getDataUseHandlebars(selOption, data); costTypeList = getDataUseHandlebars(selOption, data);
...@@ -165,7 +165,7 @@ layui.config({ ...@@ -165,7 +165,7 @@ layui.config({
subType: subType, // 1:保存为草稿 2.提交到工作流 3.在工作流中编辑 subType: subType, // 1:保存为草稿 2.提交到工作流 3.在工作流中编辑
approvalId: approvalId, approvalId: approvalId,
}; };
AjaxPostUtil.request({url: reqBasePath + "procostexpense005", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "procostexpense005", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "procostexpensetype003", url: flowableBasePath + "procostexpensetype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/procostexpensetype/procostexpensetypeeditTemplate.tpl'), template: getFileContent('tpl/procostexpensetype/procostexpensetypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'procostexpensetype001', url: flowableBasePath + 'procostexpensetype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -117,7 +117,7 @@ layui.config({ ...@@ -117,7 +117,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -133,7 +133,7 @@ layui.config({ ...@@ -133,7 +133,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -149,7 +149,7 @@ layui.config({ ...@@ -149,7 +149,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "procostexpensetype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "procostexpensetype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -33,7 +33,7 @@ layui.config({ ...@@ -33,7 +33,7 @@ layui.config({
function taskTypeSelect(){ function taskTypeSelect(){
showGrid({ showGrid({
id: "fileType", id: "fileType",
url: reqBasePath + "profiletype008", url: flowableBasePath + "profiletype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -50,7 +50,7 @@ layui.config({ ...@@ -50,7 +50,7 @@ layui.config({
function proIdSelect(){ function proIdSelect(){
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -97,7 +97,7 @@ layui.config({ ...@@ -97,7 +97,7 @@ layui.config({
winui.window.msg('请填写文档内容!', {icon: 2,time: 2000}); winui.window.msg('请填写文档内容!', {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "profile002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'profile011', url: flowableBasePath + 'profile011',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
var useTemplate = $("#useTemplate").html(); var useTemplate = $("#useTemplate").html();
AjaxPostUtil.request({url:reqBasePath + "profile003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){
if(json.returnCode == 0) { if(json.returnCode == 0) {
//任务说明附件回显 //任务说明附件回显
var str = "暂无附件"; var str = "暂无附件";
......
...@@ -14,7 +14,7 @@ layui.config({ ...@@ -14,7 +14,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "profile004", url: flowableBasePath + "profile004",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/profile/profileeditTemplate.tpl'), template: getFileContent('tpl/profile/profileeditTemplate.tpl'),
...@@ -50,7 +50,7 @@ layui.config({ ...@@ -50,7 +50,7 @@ layui.config({
//所属分类选择 //所属分类选择
showGrid({ showGrid({
id: "fileType", id: "fileType",
url: reqBasePath + "profiletype008", url: flowableBasePath + "profiletype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -67,7 +67,7 @@ layui.config({ ...@@ -67,7 +67,7 @@ layui.config({
function proIdSelect(){ function proIdSelect(){
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -126,7 +126,7 @@ layui.config({ ...@@ -126,7 +126,7 @@ layui.config({
winui.window.msg('请填写文档内容!', {icon: 2,time: 2000}); winui.window.msg('请填写文档内容!', {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "profile005", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "profile005", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'profile001', url: flowableBasePath + 'profile001',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
...@@ -85,7 +85,7 @@ layui.config({ ...@@ -85,7 +85,7 @@ layui.config({
var msg = '确认从工作流中撤销选中数据吗?'; var msg = '确认从工作流中撤销选中数据吗?';
layer.confirm(msg, { icon: 3, title: '撤销申请' }, function (index) { layer.confirm(msg, { icon: 3, title: '撤销申请' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "profile007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -122,7 +122,7 @@ layui.config({ ...@@ -122,7 +122,7 @@ layui.config({
rowId: data.id, rowId: data.id,
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "profile006", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile006", params: params, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -139,7 +139,7 @@ layui.config({ ...@@ -139,7 +139,7 @@ layui.config({
var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?'; var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?';
layer.confirm(msg, { icon: 3, title: '作废操作' }, function (index) { layer.confirm(msg, { icon: 3, title: '作废操作' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "profile010", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile010", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -184,7 +184,7 @@ layui.config({ ...@@ -184,7 +184,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "profile009", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profile009", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'profile012', url: flowableBasePath + 'profile012',
where: {rowId: parent.rowId}, where: {rowId: parent.rowId},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "profiletype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profiletype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "profiletype003", url: flowableBasePath + "profiletype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/profiletype/profiletypeeditTemplate.tpl'), template: getFileContent('tpl/profiletype/profiletypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "profiletype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profiletype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'profiletype001', url: flowableBasePath + 'profiletype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "profiletype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profiletype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "profiletype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profiletype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "profiletype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "profiletype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "proprojecttype008", url: flowableBasePath + "proprojecttype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -32,7 +32,7 @@ layui.config({ ...@@ -32,7 +32,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proproject002', url: flowableBasePath + 'proproject002',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
...@@ -137,7 +137,7 @@ layui.config({ ...@@ -137,7 +137,7 @@ layui.config({
function del(data){ function del(data){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proproject009", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject009", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -152,7 +152,7 @@ layui.config({ ...@@ -152,7 +152,7 @@ layui.config({
function revoke(data){ function revoke(data){
layer.confirm("确定撤销申请吗?", {icon: 3, title: '撤销操作'}, function (index) { layer.confirm("确定撤销申请吗?", {icon: 3, title: '撤销操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proproject010", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject010", params: {processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("撤销成功", {icon: 1, time: 2000}); winui.window.msg("撤销成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -167,7 +167,7 @@ layui.config({ ...@@ -167,7 +167,7 @@ layui.config({
function nullify(data){ function nullify(data){
layer.confirm("确定作废该项目吗?", {icon: 3, title: '作废操作'}, function (index) { layer.confirm("确定作废该项目吗?", {icon: 3, title: '作废操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proproject011", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject011", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("作废成功", {icon: 1, time: 2000}); winui.window.msg("作废成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -182,7 +182,7 @@ layui.config({ ...@@ -182,7 +182,7 @@ layui.config({
function execute(data){ function execute(data){
layer.confirm("确定开始执行该项目吗?", {icon: 3, title: '执行操作'}, function (index) { layer.confirm("确定开始执行该项目吗?", {icon: 3, title: '执行操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proproject012", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject012", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("执行成功", {icon: 1, time: 2000}); winui.window.msg("执行成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -291,7 +291,7 @@ layui.config({ ...@@ -291,7 +291,7 @@ layui.config({
rowId: data.id, rowId: data.id,
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "proproject008", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject008", params: params, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proproject013", url: flowableBasePath + "proproject013",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: $("#beanTemplate").html(), template: $("#beanTemplate").html(),
...@@ -198,7 +198,7 @@ layui.config({ ...@@ -198,7 +198,7 @@ layui.config({
return false; return false;
} }
params.planContent = encodeURIComponent(planUe.getContent()); params.planContent = encodeURIComponent(planUe.getContent());
AjaxPostUtil.request({url: reqBasePath + "proproject014", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject014", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proproject015", url: flowableBasePath + "proproject015",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: $("#beanTemplate").html(), template: $("#beanTemplate").html(),
...@@ -104,7 +104,7 @@ layui.config({ ...@@ -104,7 +104,7 @@ layui.config({
winui.window.msg("请填写项目成果和总结", {icon: 2,time: 2000}); winui.window.msg("请填写项目成果和总结", {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "proproject016", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject016", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
winui.window.msg("请填写项目成果和总结", {icon: 2,time: 2000}); winui.window.msg("请填写项目成果和总结", {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "proproject016", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject016", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -46,7 +46,7 @@ layui.config({ ...@@ -46,7 +46,7 @@ layui.config({
//项目分类 //项目分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "proprojecttype008", url: flowableBasePath + "proprojecttype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -176,7 +176,7 @@ layui.config({ ...@@ -176,7 +176,7 @@ layui.config({
winui.window.msg("请填写业务需求和目标", {icon: 2,time: 2000}); winui.window.msg("请填写业务需求和目标", {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "proproject003", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject003", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proproject005", url: flowableBasePath + "proproject005",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/proproject/proprojectdetailsTemplate.tpl'), template: getFileContent('tpl/proproject/proprojectdetailsTemplate.tpl'),
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proproject006", url: flowableBasePath + "proproject006",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/proproject/proprojecteditTemplate.tpl'), template: getFileContent('tpl/proproject/proprojecteditTemplate.tpl'),
...@@ -64,7 +64,7 @@ layui.config({ ...@@ -64,7 +64,7 @@ layui.config({
//项目分类 //项目分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "proprojecttype008", url: flowableBasePath + "proprojecttype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -217,7 +217,7 @@ layui.config({ ...@@ -217,7 +217,7 @@ layui.config({
winui.window.msg("请填写业务需求和目标", {icon: 2,time: 2000}); winui.window.msg("请填写业务需求和目标", {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "proproject007", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proproject007", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "proprojecttype008", url: flowableBasePath + "proprojecttype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -29,7 +29,7 @@ layui.config({ ...@@ -29,7 +29,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proproject001', url: flowableBasePath + 'proproject001',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
var rowId = parent.parent.rowId; var rowId = parent.parent.rowId;
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "proprojectdiscusstype008", url: flowableBasePath + "proprojectdiscusstype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -98,7 +98,7 @@ layui.config({ ...@@ -98,7 +98,7 @@ layui.config({
} else { } else {
params.content = encodeURIComponent(layedit.getContent(completedContent)); params.content = encodeURIComponent(layedit.getContent(completedContent));
} }
AjaxPostUtil.request({url: reqBasePath + "prodiscuss002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "prodiscuss002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'prodiscuss006', url: flowableBasePath + 'prodiscuss006',
where: {title: $("#title").val(), projectName: $("#projectName").val()}, where: {title: $("#title").val(), projectName: $("#projectName").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var leftTemplate = $("#leftTemplate").html(); var leftTemplate = $("#leftTemplate").html();
var rightTemplate = $("#rightTemplate").html(); var rightTemplate = $("#rightTemplate").html();
AjaxPostUtil.request({url: reqBasePath + "prodiscuss005", params: {rowId: rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "prodiscuss005", params: {rowId: rowId}, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
$(".disheader").html(json.bean.title); $(".disheader").html(json.bean.title);
$(".disdesc").html('' + json.bean.createName + '' + json.bean.createTime + '发布'); $(".disdesc").html('' + json.bean.createName + '' + json.bean.createTime + '发布');
...@@ -110,7 +110,7 @@ layui.config({ ...@@ -110,7 +110,7 @@ layui.config({
} else { } else {
params.content = encodeURIComponent(layedit.getContent(completedContent)); params.content = encodeURIComponent(layedit.getContent(completedContent));
} }
AjaxPostUtil.request({url: reqBasePath + "prodiscuss003", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "prodiscuss003", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}, function(){ winui.window.msg("提交成功", {icon: 1, time: 2000}, function(){
location.reload(); location.reload();
......
...@@ -20,7 +20,7 @@ layui.config({ ...@@ -20,7 +20,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'prodiscuss001', url: flowableBasePath + 'prodiscuss001',
where: {rowId: rowId}, where: {rowId: rowId},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "proprojectdiscusstype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojectdiscusstype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proprojectdiscusstype003", url: flowableBasePath + "proprojectdiscusstype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/proprojectdiscusstype/proprojectdiscusstypeeditTemplate.tpl'), template: getFileContent('tpl/proprojectdiscusstype/proprojectdiscusstypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "proprojectdiscusstype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojectdiscusstype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proprojectdiscusstype001', url: flowableBasePath + 'proprojectdiscusstype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -114,7 +114,7 @@ layui.config({ ...@@ -114,7 +114,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojectdiscusstype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojectdiscusstype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -130,7 +130,7 @@ layui.config({ ...@@ -130,7 +130,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojectdiscusstype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojectdiscusstype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -146,7 +146,7 @@ layui.config({ ...@@ -146,7 +146,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojectdiscusstype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojectdiscusstype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "proprojecttype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojecttype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "proprojecttype003", url: flowableBasePath + "proprojecttype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/proprojecttype/proprojecttypeeditTemplate.tpl'), template: getFileContent('tpl/proprojecttype/proprojecttypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "proprojecttype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojecttype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proprojecttype001', url: flowableBasePath + 'proprojecttype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -115,7 +115,7 @@ layui.config({ ...@@ -115,7 +115,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojecttype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojecttype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -131,7 +131,7 @@ layui.config({ ...@@ -131,7 +131,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojecttype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojecttype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -147,7 +147,7 @@ layui.config({ ...@@ -147,7 +147,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proprojecttype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proprojecttype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -74,7 +74,7 @@ layui.config({ ...@@ -74,7 +74,7 @@ layui.config({
function taskTypeSelect(){ function taskTypeSelect(){
showGrid({ showGrid({
id: "taskType", id: "taskType",
url: reqBasePath + "protasktype008", url: flowableBasePath + "protasktype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -91,7 +91,7 @@ layui.config({ ...@@ -91,7 +91,7 @@ layui.config({
function proIdSelect(){ function proIdSelect(){
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -176,7 +176,7 @@ layui.config({ ...@@ -176,7 +176,7 @@ layui.config({
winui.window.msg('请填写任务说明!', {icon: 2,time: 2000}); winui.window.msg('请填写任务说明!', {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "protask002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
var useTemplate = $("#useTemplate").html(); var useTemplate = $("#useTemplate").html();
AjaxPostUtil.request({url:reqBasePath + "protask003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask003", params:{rowId: parent.rowId}, type: 'json', callback: function(json){
if(json.returnCode == 0) { if(json.returnCode == 0) {
//任务说明附件回显 //任务说明附件回显
var str = "暂无附件"; var str = "暂无附件";
......
...@@ -24,8 +24,8 @@ layui.config({ ...@@ -24,8 +24,8 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "protask004", url: flowableBasePath + "protask004",
params: {rowId:parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/protask/protaskeditTemplate.tpl'), template: getFileContent('tpl/protask/protaskeditTemplate.tpl'),
ajaxSendAfter:function(json){ ajaxSendAfter:function(json){
...@@ -91,7 +91,7 @@ layui.config({ ...@@ -91,7 +91,7 @@ layui.config({
//所属分类选择 //所属分类选择
showGrid({ showGrid({
id: "taskType", id: "taskType",
url: reqBasePath + "protasktype008", url: flowableBasePath + "protasktype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -108,7 +108,7 @@ layui.config({ ...@@ -108,7 +108,7 @@ layui.config({
function proIdSelect(){ function proIdSelect(){
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -251,7 +251,7 @@ layui.config({ ...@@ -251,7 +251,7 @@ layui.config({
winui.window.msg('请填写任务说明!', {icon: 2,time: 2000}); winui.window.msg('请填写任务说明!', {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "protask005", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "protask005", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -14,7 +14,7 @@ layui.config({ ...@@ -14,7 +14,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "protask003", url: flowableBasePath + "protask003",
params: {rowId:parent.rowId}, params: {rowId:parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/protask/protaskexecutionTemplate.tpl'), template: getFileContent('tpl/protask/protaskexecutionTemplate.tpl'),
...@@ -66,7 +66,7 @@ layui.config({ ...@@ -66,7 +66,7 @@ layui.config({
winui.window.msg('请填写执行结果!', {icon: 2,time: 2000}); winui.window.msg('请填写执行结果!', {icon: 2,time: 2000});
return false; return false;
} }
AjaxPostUtil.request({url: reqBasePath + "protask013", params: params, type: 'json', callback: function(j) { AjaxPostUtil.request({url: flowableBasePath + "protask013", params: params, type: 'json', callback: function(j) {
if(j.returnCode == 0) { if(j.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -29,7 +29,7 @@ layui.config({ ...@@ -29,7 +29,7 @@ layui.config({
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
idField: 'id', idField: 'id',
url: reqBasePath + 'protask011', url: flowableBasePath + 'protask011',
cellMinWidth: 100, cellMinWidth: 100,
where: getTableParams(), where: getTableParams(),
treeId: 'id',//树形id字段名称 treeId: 'id',//树形id字段名称
...@@ -115,7 +115,7 @@ layui.config({ ...@@ -115,7 +115,7 @@ layui.config({
var msg = obj ? '确认开始执行【' + obj.data.taskName + '】吗?' : '确认开始执行该任务吗?'; var msg = obj ? '确认开始执行【' + obj.data.taskName + '】吗?' : '确认开始执行该任务吗?';
layer.confirm(msg, { icon: 3, title: '任务开始执行' }, function (index) { layer.confirm(msg, { icon: 3, title: '任务开始执行' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "protask012", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask012", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -131,7 +131,7 @@ layui.config({ ...@@ -131,7 +131,7 @@ layui.config({
var msg = obj ? '确认关闭【' + obj.data.taskName + '】吗?' : '确认关闭该任务吗?'; var msg = obj ? '确认关闭【' + obj.data.taskName + '】吗?' : '确认关闭该任务吗?';
layer.confirm(msg, { icon: 3, title: '关闭任务' }, function (index) { layer.confirm(msg, { icon: 3, title: '关闭任务' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "protask014", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask014", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -147,7 +147,7 @@ layui.config({ ...@@ -147,7 +147,7 @@ layui.config({
var msg = '确认从工作流中撤销选中数据吗?'; var msg = '确认从工作流中撤销选中数据吗?';
layer.confirm(msg, { icon: 3, title: '撤销任务审批申请' }, function (index) { layer.confirm(msg, { icon: 3, title: '撤销任务审批申请' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "protask007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask007", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -223,7 +223,7 @@ layui.config({ ...@@ -223,7 +223,7 @@ layui.config({
rowId: data.id, rowId: data.id,
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "protask008", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask008", params: params, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -240,7 +240,7 @@ layui.config({ ...@@ -240,7 +240,7 @@ layui.config({
var msg = obj ? '确认作废【' + obj.data.taskName + '】吗?' : '确认作废该任务信息吗?'; var msg = obj ? '确认作废【' + obj.data.taskName + '】吗?' : '确认作废该任务信息吗?';
layer.confirm(msg, { icon: 3, title: '任务作废' }, function (index) { layer.confirm(msg, { icon: 3, title: '任务作废' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "protask009", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask009", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -292,7 +292,7 @@ layui.config({ ...@@ -292,7 +292,7 @@ layui.config({
var msg = obj ? '确认删除【' + obj.data.taskName + '】吗?' : '确认删除选中数据吗?'; var msg = obj ? '确认删除【' + obj.data.taskName + '】吗?' : '确认删除选中数据吗?';
layer.confirm(msg, {icon: 3, title: '删除任务'}, function (index) { layer.confirm(msg, {icon: 3, title: '删除任务'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "protask006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protask006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -24,7 +24,7 @@ layui.config({ ...@@ -24,7 +24,7 @@ layui.config({
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
idField: 'id', idField: 'id',
url: reqBasePath + 'protask001', url: flowableBasePath + 'protask001',
cellMinWidth: 100, cellMinWidth: 100,
where: getTableParams(), where: getTableParams(),
treeId: 'id',//树形id字段名称 treeId: 'id',//树形id字段名称
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "protasktype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protasktype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "protasktype003", url: flowableBasePath + "protasktype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/protasktype/protasktypeeditTemplate.tpl'), template: getFileContent('tpl/protasktype/protasktypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "protasktype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protasktype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'protasktype001', url: flowableBasePath + 'protasktype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -117,7 +117,7 @@ layui.config({ ...@@ -117,7 +117,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "protasktype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protasktype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -133,7 +133,7 @@ layui.config({ ...@@ -133,7 +133,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "protasktype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protasktype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -149,7 +149,7 @@ layui.config({ ...@@ -149,7 +149,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "protasktype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "protasktype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -25,7 +25,7 @@ layui.config({ ...@@ -25,7 +25,7 @@ layui.config({
$("#writePeople").html(json.bean.userName); $("#writePeople").html(json.bean.userName);
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -56,7 +56,7 @@ layui.config({ ...@@ -56,7 +56,7 @@ layui.config({
$("#title").val(item.name + "-" + item.customerName + "-" + getYMDFormatDate()); $("#title").val(item.name + "-" + item.customerName + "-" + getYMDFormatDate());
} }
//获取我的任务 //获取我的任务
AjaxPostUtil.request({url: reqBasePath + "protask015", params: {proId: item.id}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "protask015", params: {proId: item.id}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
taskListHtml = getDataUseHandlebars(selOption, json); taskListHtml = getDataUseHandlebars(selOption, json);
resetTableTask(); resetTableTask();
...@@ -212,7 +212,7 @@ layui.config({ ...@@ -212,7 +212,7 @@ layui.config({
subType: subType, // 表单类型 1.保存草稿 2.提交审批 subType: subType, // 表单类型 1.保存草稿 2.提交审批
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "proworkload002", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "proworkload002", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
//项目名称 //项目名称
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -28,7 +28,7 @@ layui.config({ ...@@ -28,7 +28,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proworkload003', url: flowableBasePath + 'proworkload003',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
......
...@@ -13,7 +13,7 @@ layui.config({ ...@@ -13,7 +13,7 @@ layui.config({
var beanTemplate = $("#beanTemplate").html(); var beanTemplate = $("#beanTemplate").html();
AjaxPostUtil.request({url:reqBasePath + "proworkload006", params:{rowId: parent.rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proworkload006", params:{rowId: parent.rowId}, type: 'json', callback: function(json){
if(json.returnCode == 0) { if(json.returnCode == 0) {
//附件回显 //附件回显
var str = "暂无附件"; var str = "暂无附件";
......
...@@ -20,7 +20,7 @@ layui.config({ ...@@ -20,7 +20,7 @@ layui.config({
var showTemplate = $("#showTemplate").html(); var showTemplate = $("#showTemplate").html();
var selOption = getFileContent('tpl/template/select-option.tpl'); var selOption = getFileContent('tpl/template/select-option.tpl');
AjaxPostUtil.request({url: reqBasePath + "proworkload007", params: {rowId: parent.rowId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "proworkload007", params: {rowId: parent.rowId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
$("#title").val(json.bean.title); $("#title").val(json.bean.title);
$("#desc").val(json.bean.desc); $("#desc").val(json.bean.desc);
...@@ -54,7 +54,7 @@ layui.config({ ...@@ -54,7 +54,7 @@ layui.config({
//获取项目 //获取项目
showGrid({ showGrid({
id: "proId", id: "proId",
url: reqBasePath + "proproject004", url: flowableBasePath + "proproject004",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -65,7 +65,7 @@ layui.config({ ...@@ -65,7 +65,7 @@ layui.config({
$("#proId").val(json.bean.proId); $("#proId").val(json.bean.proId);
form.render('select'); form.render('select');
//获取我的任务 //获取我的任务
AjaxPostUtil.request({url: reqBasePath + "protask015", params: {proId: json.bean.proId}, type: 'json', callback: function(data) { AjaxPostUtil.request({url: flowableBasePath + "protask015", params: {proId: json.bean.proId}, type: 'json', callback: function(data) {
if(data.returnCode == 0) { if(data.returnCode == 0) {
taskListHtml = getDataUseHandlebars(selOption, data); taskListHtml = getDataUseHandlebars(selOption, data);
$.each(json.bean.tasks, function(i, item){ $.each(json.bean.tasks, function(i, item){
...@@ -97,7 +97,7 @@ layui.config({ ...@@ -97,7 +97,7 @@ layui.config({
$("#title").val(item.name + "-" + item.customerName + "-" + getYMDFormatDate()); $("#title").val(item.name + "-" + item.customerName + "-" + getYMDFormatDate());
} }
//获取我的任务 //获取我的任务
AjaxPostUtil.request({url: reqBasePath + "protask015", params: {proId: item.id}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "protask015", params: {proId: item.id}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
taskListHtml = getDataUseHandlebars(selOption, json); taskListHtml = getDataUseHandlebars(selOption, json);
resetTableTask(); resetTableTask();
...@@ -258,7 +258,7 @@ layui.config({ ...@@ -258,7 +258,7 @@ layui.config({
subType: subType, // 1:保存为草稿 2.提交到工作流 3.在工作流中编辑 subType: subType, // 1:保存为草稿 2.提交到工作流 3.在工作流中编辑
approvalId: approvalId, approvalId: approvalId,
}; };
AjaxPostUtil.request({url: reqBasePath + "proworkload008", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "proworkload008", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'proworkload001', url: flowableBasePath + 'proworkload001',
where: getTableParams(), where: getTableParams(),
even: true, even: true,
page: true, page: true,
...@@ -88,7 +88,7 @@ layui.config({ ...@@ -88,7 +88,7 @@ layui.config({
var msg = '确认从工作流中撤销选中数据吗?'; var msg = '确认从工作流中撤销选中数据吗?';
layer.confirm(msg, { icon: 3, title: '撤销任务审批申请' }, function (index) { layer.confirm(msg, { icon: 3, title: '撤销任务审批申请' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "proworkload005", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proworkload005", params:{processInstanceId: data.processInstanceId}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -125,7 +125,7 @@ layui.config({ ...@@ -125,7 +125,7 @@ layui.config({
rowId: data.id, rowId: data.id,
approvalId: approvalId approvalId: approvalId
}; };
AjaxPostUtil.request({url: reqBasePath + "proworkload004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proworkload004", params: params, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("提交成功", {icon: 1, time: 2000}); winui.window.msg("提交成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -142,7 +142,7 @@ layui.config({ ...@@ -142,7 +142,7 @@ layui.config({
var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?'; var msg = obj ? '确认作废【' + obj.data.title + '】吗?' : '确认作废该任务信息吗?';
layer.confirm(msg, { icon: 3, title: '工作量作废' }, function (index) { layer.confirm(msg, { icon: 3, title: '工作量作废' }, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url:reqBasePath + "proworkload011", params:{rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proworkload011", params:{rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -187,7 +187,7 @@ layui.config({ ...@@ -187,7 +187,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "proworkload010", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "proworkload010", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -14,7 +14,7 @@ layui.config({ ...@@ -14,7 +14,7 @@ layui.config({
var customerId = "",//客户id var customerId = "",//客户id
productId = "";//产品id productId = "";//产品id
AjaxPostUtil.request({url: reqBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
$("#orderNum").html(json.bean.orderNum); $("#orderNum").html(json.bean.orderNum);
$("#customerName").html(json.bean.customerName); $("#customerName").html(json.bean.customerName);
...@@ -23,7 +23,7 @@ layui.config({ ...@@ -23,7 +23,7 @@ layui.config({
customerId = json.bean.customerId; customerId = json.bean.customerId;
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "crmservicefeedbacktype008", url: flowableBasePath + "crmservicefeedbacktype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -50,7 +50,7 @@ layui.config({ ...@@ -50,7 +50,7 @@ layui.config({
serviceId: parent.serviceId, serviceId: parent.serviceId,
enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload') enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
}; };
AjaxPostUtil.request({url: reqBasePath + "feedback003", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "feedback003", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -11,14 +11,14 @@ layui.config({ ...@@ -11,14 +11,14 @@ layui.config({
var index = parent.layer.getFrameIndex(window.name); var index = parent.layer.getFrameIndex(window.name);
var $ = layui.$; var $ = layui.$;
AjaxPostUtil.request({url: reqBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
$("#orderNum").html(json.bean.orderNum); $("#orderNum").html(json.bean.orderNum);
$("#customerName").html(json.bean.customerName); $("#customerName").html(json.bean.customerName);
$("#productName").html(json.bean.productName); $("#productName").html(json.bean.productName);
//获取反馈信息 //获取反馈信息
AjaxPostUtil.request({url: reqBasePath + "feedback007", params: {rowId: parent.rowId}, type: 'json', callback: function(j) { AjaxPostUtil.request({url: flowableBasePath + "feedback007", params: {rowId: parent.rowId}, type: 'json', callback: function(j) {
if(j.returnCode == 0) { if(j.returnCode == 0) {
$("#createName").html(j.bean.createName); $("#createName").html(j.bean.createName);
$("#typeName").html(j.bean.typeName); $("#typeName").html(j.bean.typeName);
......
...@@ -11,7 +11,7 @@ layui.config({ ...@@ -11,7 +11,7 @@ layui.config({
var index = parent.layer.getFrameIndex(window.name); var index = parent.layer.getFrameIndex(window.name);
var $ = layui.$; var $ = layui.$;
AjaxPostUtil.request({url: reqBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "feedback002", params: {serviceId: parent.serviceId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
$("#orderNum").html(json.bean.orderNum); $("#orderNum").html(json.bean.orderNum);
$("#customerName").html(json.bean.customerName); $("#customerName").html(json.bean.customerName);
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "crmservicefeedbacktype008", url: flowableBasePath + "crmservicefeedbacktype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -28,7 +28,7 @@ layui.config({ ...@@ -28,7 +28,7 @@ layui.config({
ajaxSendAfter:function(data){ ajaxSendAfter:function(data){
form.render("select"); form.render("select");
//获取反馈信息 //获取反馈信息
AjaxPostUtil.request({url: reqBasePath + "feedback004", params: {rowId: parent.rowId}, type: 'json', callback: function(j) { AjaxPostUtil.request({url: flowableBasePath + "feedback004", params: {rowId: parent.rowId}, type: 'json', callback: function(j) {
if(j.returnCode == 0) { if(j.returnCode == 0) {
$("#typeId").val(j.bean.typeId); $("#typeId").val(j.bean.typeId);
$("#content").val(j.bean.content); $("#content").val(j.bean.content);
...@@ -45,7 +45,7 @@ layui.config({ ...@@ -45,7 +45,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload') enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
}; };
AjaxPostUtil.request({url: reqBasePath + "feedback005", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "feedback005", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice039", url: flowableBasePath + "sealseservice039",
params: {rowId: serviceId}, params: {rowId: serviceId},
pagination: false, pagination: false,
template: $("#beanTemplate").html(), template: $("#beanTemplate").html(),
...@@ -36,7 +36,7 @@ layui.config({ ...@@ -36,7 +36,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'feedback001', url: flowableBasePath + 'feedback001',
where: {serviceId: serviceId}, where: {serviceId: serviceId},
even: true, even: true,
page: true, page: true,
...@@ -114,8 +114,7 @@ layui.config({ ...@@ -114,8 +114,7 @@ layui.config({
function deleteRow(data){ function deleteRow(data){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: flowableBasePath + "feedback006", params: {rowId: data.id}, type: 'json', callback: function(json){
AjaxPostUtil.request({url: reqBasePath + "feedback006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "crmservicefeedbacktype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "crmservicefeedbacktype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "crmservicefeedbacktype003", url: flowableBasePath + "crmservicefeedbacktype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/feedbacktype/feedbacktypeeditTemplate.tpl'), template: getFileContent('tpl/feedbacktype/feedbacktypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "crmservicefeedbacktype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "crmservicefeedbacktype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'crmservicefeedbacktype001', url: flowableBasePath + 'crmservicefeedbacktype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "crmservicefeedbacktype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "crmservicefeedbacktype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "crmservicefeedbacktype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "crmservicefeedbacktype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "crmservicefeedbacktype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "crmservicefeedbacktype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice031', url: flowableBasePath + 'sealseservice031',
where: {materialName: $("#materialName").val(), materialModel: $("#materialModel").val()}, where: {materialName: $("#materialName").val(), materialModel: $("#materialModel").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice032', url: flowableBasePath + 'sealseservice032',
where: {materialName: $("#materialName").val(), materialModel: $("#materialModel").val()}, where: {materialName: $("#materialName").val(), materialModel: $("#materialModel").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice024', url: flowableBasePath + 'sealseservice024',
where: {orderNum: $("#orderNum").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()}, where: {orderNum: $("#orderNum").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice029', url: flowableBasePath + 'sealseservice029',
where: {orderNum: $("#orderNum").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()}, where: {orderNum: $("#orderNum").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice023', url: flowableBasePath + 'sealseservice023',
where: {orderNum: $("#orderNum").val(), state: $("#state").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()}, where: {orderNum: $("#orderNum").val(), state: $("#state").val(), applyNum: $("#applyNum").val(), customerName: $("#customerName").val()},
even: true, even: true,
page: true, page: true,
...@@ -129,7 +129,7 @@ layui.config({ ...@@ -129,7 +129,7 @@ layui.config({
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservice025", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice025", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -15,7 +15,7 @@ layui.config({ ...@@ -15,7 +15,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice022', url: flowableBasePath + 'sealseservice022',
where: {}, where: {},
even: true, even: true,
page: false, page: false,
......
...@@ -171,7 +171,7 @@ layui.config({ ...@@ -171,7 +171,7 @@ layui.config({
serviceId: chooseOrderId, serviceId: chooseOrderId,
enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload') enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice021", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "sealseservice021", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -13,7 +13,7 @@ layui.config({ ...@@ -13,7 +13,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice028", url: flowableBasePath + "sealseservice028",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: beanTemplate, template: beanTemplate,
......
...@@ -35,7 +35,7 @@ layui.config({ ...@@ -35,7 +35,7 @@ layui.config({
var orderObject = []; var orderObject = [];
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice026", url: flowableBasePath + "sealseservice026",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: beanTemplate, template: beanTemplate,
...@@ -229,7 +229,7 @@ layui.config({ ...@@ -229,7 +229,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload') enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice027", params: params, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "sealseservice027", params: params, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -14,7 +14,7 @@ layui.config({ ...@@ -14,7 +14,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice028", url: flowableBasePath + "sealseservice028",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: beanTemplate, template: beanTemplate,
...@@ -39,7 +39,7 @@ layui.config({ ...@@ -39,7 +39,7 @@ layui.config({
isAgree: $("input[name='flag']:checked").val(), isAgree: $("input[name='flag']:checked").val(),
rowId: parent.rowId rowId: parent.rowId
}; };
AjaxPostUtil.request({url:reqBasePath + "sealseservice030", params: jStr, type: 'json', callback: function(json){ AjaxPostUtil.request({url:flowableBasePath + "sealseservice030", params: jStr, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -65,7 +65,7 @@ layui.config({ ...@@ -65,7 +65,7 @@ layui.config({
function typeId(){ function typeId(){
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -81,7 +81,7 @@ layui.config({ ...@@ -81,7 +81,7 @@ layui.config({
function urgencyId(){ function urgencyId(){
showGrid({ showGrid({
id: "urgencyId", id: "urgencyId",
url: reqBasePath + "sealseserviceurgency008", url: flowableBasePath + "sealseserviceurgency008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -97,7 +97,7 @@ layui.config({ ...@@ -97,7 +97,7 @@ layui.config({
function modeId(){ function modeId(){
showGrid({ showGrid({
id: "modeId", id: "modeId",
url: reqBasePath + "sealseservicemode008", url: flowableBasePath + "sealseservicemode008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -172,7 +172,7 @@ layui.config({ ...@@ -172,7 +172,7 @@ layui.config({
}); });
params.cooperationUserId = cooperationUserId; params.cooperationUserId = cooperationUserId;
} }
AjaxPostUtil.request({url: reqBasePath + "sealseservice011", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice011", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
winui.window.msg("操作成功", {icon: 1, time: 3000}, function(){ winui.window.msg("操作成功", {icon: 1, time: 3000}, function(){
location.reload(); location.reload();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice010", url: flowableBasePath + "sealseservice010",
params: {rowId: serviceId}, params: {rowId: serviceId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseservice/sealseservicedetailsTemplate.tpl'), template: getFileContent('tpl/sealseservice/sealseservicedetailsTemplate.tpl'),
......
...@@ -29,7 +29,7 @@ layui.config({ ...@@ -29,7 +29,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice012", url: flowableBasePath + "sealseservice012",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseservice/sealseserviceeditTemplate.tpl'), template: getFileContent('tpl/sealseservice/sealseserviceeditTemplate.tpl'),
...@@ -176,7 +176,7 @@ layui.config({ ...@@ -176,7 +176,7 @@ layui.config({
}); });
params.cooperationUserId = cooperationUserId; params.cooperationUserId = cooperationUserId;
} }
AjaxPostUtil.request({url: reqBasePath + "sealseservice015", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice015", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
...@@ -194,7 +194,7 @@ layui.config({ ...@@ -194,7 +194,7 @@ layui.config({
function typeId(json){ function typeId(json){
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -211,7 +211,7 @@ layui.config({ ...@@ -211,7 +211,7 @@ layui.config({
function urgencyId(json){ function urgencyId(json){
showGrid({ showGrid({
id: "urgencyId", id: "urgencyId",
url: reqBasePath + "sealseserviceurgency008", url: flowableBasePath + "sealseserviceurgency008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -228,7 +228,7 @@ layui.config({ ...@@ -228,7 +228,7 @@ layui.config({
function modeId(json){ function modeId(json){
showGrid({ showGrid({
id: "modeId", id: "modeId",
url: reqBasePath + "sealseservicemode008", url: flowableBasePath + "sealseservicemode008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice001', url: flowableBasePath + 'sealseservice001',
where: {orderNum: $("#orderNum").val(), state: $("#state").val(), contacts: $("#contacts").val(), receiver: $("#receiver").val()}, where: {orderNum: $("#orderNum").val(), state: $("#state").val(), contacts: $("#contacts").val(), receiver: $("#receiver").val()},
even: true, even: true,
page: true, page: true,
...@@ -212,7 +212,7 @@ layui.config({ ...@@ -212,7 +212,7 @@ layui.config({
layer.confirm('确认审核该数据吗?', {icon: 3, title: '审核操作'}, function (index) { layer.confirm('确认审核该数据吗?', {icon: 3, title: '审核操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservice038", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice038", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("审核成功", {icon: 1, time: 2000}); winui.window.msg("审核成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -240,7 +240,7 @@ layui.config({ ...@@ -240,7 +240,7 @@ layui.config({
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservice020", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice020", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservicecheckwork001', url: flowableBasePath + 'sealseservicecheckwork001',
where: {userName: $("#userName").val()}, where: {userName: $("#userName").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceevaluatetype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceevaluatetype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseserviceevaluatetype003", url: flowableBasePath + "sealseserviceevaluatetype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseserviceevaluatetype/sealseserviceevaluatetypeeditTemplate.tpl'), template: getFileContent('tpl/sealseserviceevaluatetype/sealseserviceevaluatetypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceevaluatetype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceevaluatetype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseserviceevaluatetype001', url: flowableBasePath + 'sealseserviceevaluatetype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceevaluatetype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceevaluatetype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceevaluatetype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceevaluatetype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceevaluatetype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceevaluatetype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicefaulttype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicefaulttype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservicefaulttype003", url: flowableBasePath + "sealseservicefaulttype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseservicefaulttype/sealseservicefaulttypeeditTemplate.tpl'), template: getFileContent('tpl/sealseservicefaulttype/sealseservicefaulttypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicefaulttype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicefaulttype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservicefaulttype001', url: flowableBasePath + 'sealseservicefaulttype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicefaulttype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicefaulttype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicefaulttype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicefaulttype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicefaulttype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicefaulttype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicemode002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicemode002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservicemode003", url: flowableBasePath + "sealseservicemode003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseservicemode/sealseservicemodeeditTemplate.tpl'), template: getFileContent('tpl/sealseservicemode/sealseservicemodeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicemode004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicemode004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservicemode001', url: flowableBasePath + 'sealseservicemode001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicemode005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicemode005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicemode006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicemode006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicemode007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicemode007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicetype002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicetype002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservicetype003", url: flowableBasePath + "sealseservicetype003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseservicetype/sealseservicetypeeditTemplate.tpl'), template: getFileContent('tpl/sealseservicetype/sealseservicetypeeditTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservicetype004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicetype004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservicetype001', url: flowableBasePath + 'sealseservicetype001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -117,7 +117,7 @@ layui.config({ ...@@ -117,7 +117,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicetype005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicetype005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -133,7 +133,7 @@ layui.config({ ...@@ -133,7 +133,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicetype006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicetype006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -149,7 +149,7 @@ layui.config({ ...@@ -149,7 +149,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservicetype007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservicetype007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
var params = { var params = {
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceurgency002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceurgency002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseserviceurgency003", url: flowableBasePath + "sealseserviceurgency003",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/sealseserviceurgency/sealseserviceurgencyeditTemplate.tpl'), template: getFileContent('tpl/sealseserviceurgency/sealseserviceurgencyeditTemplate.tpl'),
...@@ -28,7 +28,7 @@ layui.config({ ...@@ -28,7 +28,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
typeName: $("#typeName").val() typeName: $("#typeName").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceurgency004", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceurgency004", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -16,7 +16,7 @@ layui.config({ ...@@ -16,7 +16,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseserviceurgency001', url: flowableBasePath + 'sealseserviceurgency001',
where: {typeName: $("#typeName").val(), state: $("#state").val()}, where: {typeName: $("#typeName").val(), state: $("#state").val()},
even: true, even: true,
page: true, page: true,
...@@ -116,7 +116,7 @@ layui.config({ ...@@ -116,7 +116,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceurgency005", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceurgency005", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
...@@ -132,7 +132,7 @@ layui.config({ ...@@ -132,7 +132,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】上线吗?' : '确认将选中数据上线吗?';
layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '上线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceurgency006", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceurgency006", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("上线成功", {icon: 1, time: 2000}); winui.window.msg("上线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
...@@ -148,7 +148,7 @@ layui.config({ ...@@ -148,7 +148,7 @@ layui.config({
var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?'; var msg = obj ? '确认将【' + obj.data.typeName + '】下线吗?' : '确认将选中数据下线吗?';
layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) { layer.confirm(msg, {icon: 3, title: '下线操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceurgency007", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceurgency007", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("下线成功", {icon: 1, time: 2000}); winui.window.msg("下线成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -46,7 +46,7 @@ layui.config({ ...@@ -46,7 +46,7 @@ layui.config({
areaName: result.regeocode.addressComponent.district, areaName: result.regeocode.addressComponent.district,
addressDetail: $("#userAddressInput").val() addressDetail: $("#userAddressInput").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceworker002", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceworker002", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
var index = parent.layer.getFrameIndex(window.name); var index = parent.layer.getFrameIndex(window.name);
var $ = layui.$; var $ = layui.$;
AjaxPostUtil.request({url: reqBasePath + "sealseserviceworker004", params: {rowId: parent.rowId}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceworker004", params: {rowId: parent.rowId}, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
longitude = json.bean.longitude; longitude = json.bean.longitude;
latitude = json.bean.latitude; latitude = json.bean.latitude;
...@@ -48,7 +48,7 @@ layui.config({ ...@@ -48,7 +48,7 @@ layui.config({
areaName: result.regeocode.addressComponent.district, areaName: result.regeocode.addressComponent.district,
addressDetail: $("#userAddressInput").val() addressDetail: $("#userAddressInput").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseserviceworker005", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceworker005", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -18,7 +18,7 @@ layui.config({ ...@@ -18,7 +18,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseserviceworker001', url: flowableBasePath + 'sealseserviceworker001',
where: {userName: $("#userName").val()}, where: {userName: $("#userName").val()},
even: true, even: true,
page: true, page: true,
...@@ -114,7 +114,7 @@ layui.config({ ...@@ -114,7 +114,7 @@ layui.config({
function del(data, obj){ function del(data, obj){
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseserviceworker003", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceworker003", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -11,7 +11,7 @@ layui.config({ ...@@ -11,7 +11,7 @@ layui.config({
var userList = new Array(); var userList = new Array();
AjaxPostUtil.request({url: reqBasePath + "sealseserviceworker007", params: {}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseserviceworker007", params: {}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
userList = json.rows; userList = json.rows;
var map = new AMap.Map('container', { var map = new AMap.Map('container', {
......
...@@ -17,7 +17,7 @@ layui.config({ ...@@ -17,7 +17,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseserviceworker006', url: flowableBasePath + 'sealseserviceworker006',
where: {userName: $("#userName").val()}, where: {userName: $("#userName").val()},
even: true, even: true,
page: true, page: true,
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice036", url: flowableBasePath + "sealseservice036",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: $("#beanTemplate").html(), template: $("#beanTemplate").html(),
...@@ -22,7 +22,7 @@ layui.config({ ...@@ -22,7 +22,7 @@ layui.config({
showGrid({ showGrid({
id: "evaluateType", id: "evaluateType",
url: reqBasePath + "sealseserviceevaluatetype008", url: flowableBasePath + "sealseserviceevaluatetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -42,7 +42,7 @@ layui.config({ ...@@ -42,7 +42,7 @@ layui.config({
evaluateType: $("#evaluateType").val(), evaluateType: $("#evaluateType").val(),
content: $("#content").val() content: $("#content").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice037", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice037", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice006', url: flowableBasePath + 'sealseservice006',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice007', url: flowableBasePath + 'sealseservice007',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice008', url: flowableBasePath + 'sealseservice008',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
...@@ -114,7 +114,7 @@ layui.config({ ...@@ -114,7 +114,7 @@ layui.config({
layer.confirm('确认审核该数据吗?', {icon: 3, title: '审核操作'}, function (index) { layer.confirm('确认审核该数据吗?', {icon: 3, title: '审核操作'}, function (index) {
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservice038", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice038", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg("审核成功", {icon: 1, time: 2000}); winui.window.msg("审核成功", {icon: 1, time: 2000});
loadTable(); loadTable();
......
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
//获取完工信息 //获取完工信息
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice033", url: flowableBasePath + "sealseservice033",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: $("#beanTemplate").html(), template: $("#beanTemplate").html(),
...@@ -51,7 +51,7 @@ layui.config({ ...@@ -51,7 +51,7 @@ layui.config({
showGrid({ showGrid({
id: "faultTypeId", id: "faultTypeId",
url: reqBasePath + "sealseservicefaulttype008", url: flowableBasePath + "sealseservicefaulttype008",
params: {}, params: {},
pagination: false, pagination: false,
template: selOption, template: selOption,
...@@ -198,7 +198,7 @@ layui.config({ ...@@ -198,7 +198,7 @@ layui.config({
useStr: JSON.stringify(tableData), useStr: JSON.stringify(tableData),
subType: subType subType: subType
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice035", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice035", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
...@@ -258,7 +258,7 @@ layui.config({ ...@@ -258,7 +258,7 @@ layui.config({
//当两个都不为空时 //当两个都不为空时
if(!isNull(chooseUnitId)){ if(!isNull(chooseUnitId)){
//获取库存 //获取库存
AjaxPostUtil.request({url: reqBasePath + "sealseservice034", params: {mUnitId: chooseUnitId}, type: 'json', callback: function(json) { AjaxPostUtil.request({url: flowableBasePath + "sealseservice034", params: {mUnitId: chooseUnitId}, type: 'json', callback: function(json) {
if(json.returnCode == 0) { if(json.returnCode == 0) {
var currentTock = 0; var currentTock = 0;
if(!isNull(json.bean)){ if(!isNull(json.bean)){
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice005', url: flowableBasePath + 'sealseservice005',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice040', url: flowableBasePath + 'sealseservice040',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
...@@ -147,7 +147,7 @@ layui.config({ ...@@ -147,7 +147,7 @@ layui.config({
layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){ layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function(index){
layer.close(index); layer.close(index);
AjaxPostUtil.request({url: reqBasePath + "sealseservice020", params: {rowId: data.id}, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice020", params: {rowId: data.id}, type: 'json', callback: function(json){
if(json.returnCode == 0){ if(json.returnCode == 0){
winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000}); winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1,time: 2000});
loadTable(); loadTable();
......
...@@ -13,7 +13,7 @@ layui.config({ ...@@ -13,7 +13,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice016", url: flowableBasePath + "sealseservice016",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/stateisstayreceipt/receiptTemplate.tpl'), template: getFileContent('tpl/stateisstayreceipt/receiptTemplate.tpl'),
...@@ -37,7 +37,7 @@ layui.config({ ...@@ -37,7 +37,7 @@ layui.config({
subscribeTime: $("#subscribeTime").val(), subscribeTime: $("#subscribeTime").val(),
remark: $("#remark").val() remark: $("#remark").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice017", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice017", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice003', url: flowableBasePath + 'sealseservice003',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
......
...@@ -12,7 +12,7 @@ layui.config({ ...@@ -12,7 +12,7 @@ layui.config({
showGrid({ showGrid({
id: "showForm", id: "showForm",
url: reqBasePath + "sealseservice018", url: flowableBasePath + "sealseservice018",
params: {rowId: parent.rowId}, params: {rowId: parent.rowId},
pagination: false, pagination: false,
template: getFileContent('tpl/stateisstaysignin/signinTemplate.tpl'), template: getFileContent('tpl/stateisstaysignin/signinTemplate.tpl'),
...@@ -27,7 +27,7 @@ layui.config({ ...@@ -27,7 +27,7 @@ layui.config({
rowId: parent.rowId, rowId: parent.rowId,
remark: $("#remark").val() remark: $("#remark").val()
}; };
AjaxPostUtil.request({url: reqBasePath + "sealseservice019", params: params, type: 'json', callback: function(json){ AjaxPostUtil.request({url: flowableBasePath + "sealseservice019", params: params, type: 'json', callback: function(json){
if (json.returnCode == 0){ if (json.returnCode == 0){
parent.layer.close(index); parent.layer.close(index);
parent.refreshCode = '0'; parent.refreshCode = '0';
......
...@@ -19,7 +19,7 @@ layui.config({ ...@@ -19,7 +19,7 @@ layui.config({
//分类 //分类
showGrid({ showGrid({
id: "typeId", id: "typeId",
url: reqBasePath + "sealseservicetype008", url: flowableBasePath + "sealseservicetype008",
params: {}, params: {},
pagination: false, pagination: false,
template: getFileContent('tpl/template/select-option.tpl'), template: getFileContent('tpl/template/select-option.tpl'),
...@@ -43,7 +43,7 @@ layui.config({ ...@@ -43,7 +43,7 @@ layui.config({
id: 'messageTable', id: 'messageTable',
elem: '#messageTable', elem: '#messageTable',
method: 'post', method: 'post',
url: reqBasePath + 'sealseservice004', url: flowableBasePath + 'sealseservice004',
where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''}, where: {orderNum: $("#orderNum").val(), typeId: $("#typeId").val(), customerName: $("#customerName").val(), firstTime: '', lastTime: ''},
even: true, even: true,
page: true, page: true,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册