From e542e0baddf674e406e59a8bb40dd6aa80431f54 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期二, 12 九月 2023 10:04:39 +0800
Subject: [PATCH] #产品费用明细完善
---
src/main/webapp/views/priOnline2/priOnline_more.html | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/main/webapp/views/priOnline2/priOnline_more.html b/src/main/webapp/views/priOnline2/priOnline_more.html
index 6194ce7..cc8f88b 100644
--- a/src/main/webapp/views/priOnline2/priOnline_more.html
+++ b/src/main/webapp/views/priOnline2/priOnline_more.html
@@ -141,23 +141,23 @@
success: function (res) {
notice.destroy();
if (res.code === 200) {
- let priOnlineId = res.data;
- top.priOnlineIdByMore = null;
- $("#form-name").html(priOnlineId.name);
+ let priOnline = res.data;
+ top.priOnlineByMore = null;
+ $("#form-name").html(priOnline.name);
// 杩涘害姝ラ鍥�
let template0 = Handlebars.compile($('#stepTpl').html());
- $('#stepBox').html(template0({list: JSON.parse(priOnlineId.settleMsg)}));
- $('#step-' + Number(priOnlineId.step)).addClass("layui-this");
+ $('#stepBox').html(template0({list: JSON.parse(priOnline.settleMsg)}));
+ $('#step-' + Number(priOnline.step)).addClass("layui-this");
let template1 = Handlebars.compile($('#timelineTpl').html());
- $('#timelineBox').html(template1({list: JSON.parse(priOnlineId.settleMsg)}));
+ $('#timelineBox').html(template1({list: JSON.parse(priOnline.settleMsg)}));
// 琛ュ厖html
- $('#customizeBox').html(priOnlineId.formHtml);
+ $('#customizeBox').html(priOnline.formHtml);
// 璁惧鏄庣粏
- // form.val('formAdvForm', priOnlineId);
+ // form.val('formAdvForm', priOnline);
// top.convertDisabled($('#formAdvForm :input'), true);
// 璺熻繘浜�
- // initFollowers(priOnlineId.id);
+ // initFollowers(priOnline.id);
layDateRender();
} else if (res.code === 403) {
top.location.href = baseUrl + "/";
--
Gitblit v1.9.1