This commit is contained in:
cwchen 2024-11-11 14:02:55 +08:00
parent 65060b0a35
commit 8677ac694b
2 changed files with 3 additions and 4 deletions

View File

@ -6,8 +6,7 @@ function setParams(obj) {
$('#planNum').html(objParam.planNum);
setStatusColor(objParam.status);
layui.use(["layer", 'element'], function () {
form = layui.form;
table = layui.table;
layer = layui.layer;
element = layui.element;
// tab 切换事件
element.on('tab(demo-filter-tab)', function (data) {
@ -160,5 +159,5 @@ function numToChinese(num) {
// 查看需求计划
function openDetail() {
openIframeByParamObj2("view_plan", "需求计划", "./child/demand_plan_detail_list.html", "92%", "95%", objParam);
openIframeByParamObj2("view_plan", "需求计划", "/page/demandPlan/child/demand_plan_detail_list.html", "92%", "95%", objParam);
}

View File

@ -165,5 +165,5 @@ function setNumColor(value, type) {
// 需求计划编号
function plan_detail(obj){
openIframeByParamObj2("plan_detail", "机具需求计划", "./child/apply_plan_detail.html", "92%", "95%", obj);
openIframeByParamObj2("plan_detail", "机具需求计划", "/page/demandPlan/child/apply_plan_detail.html", "92%", "95%", obj);
}