Commit eb909d88 by qiaoyanqi

examineAction

parent 4e8110fb
...@@ -6,7 +6,7 @@ export default { ...@@ -6,7 +6,7 @@ export default {
let name = GMS.$hideContainer.addComponent(addInfoModal, {}, function (c) { let name = GMS.$hideContainer.addComponent(addInfoModal, {}, function (c) {
let BILLID = param.param.billId||'BILLID'; let BILLID = param.param.billId||'BILLID';
let BILLNAME = param.param.billName||'BILLNAME'; let BILLNAME = param.param.billName||'BILLNAME';
let BILLEDITNAME = param.param.viewName||param.param.billDefineName||'BILLEDITNAME'; let BILLEDITNAME = param.param.billDefineName||'BILLEDITNAME';
GMS.showDetailAction = true;//详情,点击确定按钮。记录此参数 GMS.showDetailAction = true;//详情,点击确定按钮。记录此参数
component = c; component = c;
c.bill = bill; c.bill = bill;
......
...@@ -1012,6 +1012,13 @@ export default { ...@@ -1012,6 +1012,13 @@ export default {
"paramDes": [ "paramDes": [
{ {
"isRequired": true, "isRequired": true,
"ref": "columnField",
"type": "field",
"title": "页面名称",
"key": "billName"
},
{
"isRequired": true,
"ref": "bill", "ref": "bill",
"type": "metaData", "type": "metaData",
"title": "跳转页面", "title": "跳转页面",
...@@ -1439,12 +1446,6 @@ export default { ...@@ -1439,12 +1446,6 @@ export default {
"key": "billName", "key": "billName",
"type": "String", "type": "String",
},{ },{
"isRequired": true,
"ref": "columnField",
"type": "field",
"title": "页面名称",
"key": "viewName"
},{
"isRequired": false, "isRequired": false,
"title": "单据界面", "title": "单据界面",
"key": "billDefineName", "key": "billDefineName",
......
...@@ -8,10 +8,10 @@ export default { ...@@ -8,10 +8,10 @@ export default {
return; return;
} }
const uuid = getUUID(); const uuid = getUUID();
const billState = param.canEdit ? '': 'readOnly' const billState = param.canEdit ? '': 'readOnly';
let templateName = param.billName || param.viewName;
let index = context.selects[0]._index||(context.selects[0]._serialIndex)*1-1; let index = context.selects[0]._index||(context.selects[0]._serialIndex)*1-1;
setQueryTag(context.currentDataQueryConditionSet,index,param.viewName,uuid);//上张下张用 setQueryTag(context.currentDataQueryConditionSet,index,templateName,uuid);//上张下张用
let templateName = param.viewName;
let billId = context.selects[0][param.billId]; let billId = context.selects[0][param.billId];
window.GMS.workflowTaskId = context.selects[0][param.taskId] window.GMS.workflowTaskId = context.selects[0][param.taskId]
if ( if (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment