Commit a71b809e by qiaoyanqi

跳转界面

parent ff48db94
......@@ -3,13 +3,17 @@ import { getUUID } from "./util/lib.js";
import {setQueryTag} from './util/queryTag.js';
export default {
execute(context, param) {
if (!param.billId || !param.viewName || !param.taskId) {
if (!param.billId || !param.taskId) {
context.dom.$Message.info("请配置跳转页面的参数");
return;
}
const uuid = getUUID();
const billState = param.canEdit ? '': 'readOnly';
let templateName = param.billName || param.viewName;
let templateName = param.billName ? context.selects[0][param.billName]:param.viewName;
if(!templateName){
context.dom.$Message.info("请配置跳转页面的参数");
return;
}
let index = context.selects[0]._index||(context.selects[0]._serialIndex)*1-1;
setQueryTag(context.currentDataQueryConditionSet,index,templateName,uuid);//上张下张用
let billId = context.selects[0][param.billId];
......
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