This commit is contained in:
cwchen 2024-11-16 15:10:03 +08:00
parent 3f3d251c23
commit 616152c90a
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ function initTable() {
headers: { headers: {
authorization: sessionStorage.getItem("gz-token"), authorization: sessionStorage.getItem("gz-token"),
}, },
height: "full-170", height: "full",
url: dataUrl + "backstage/planApplication/getPlanDetailsList", url: dataUrl + "backstage/planApplication/getPlanDetailsList",
where: { where: {
encryptedData: JSON.stringify({ encryptedData: JSON.stringify({
@ -94,7 +94,7 @@ function initTable() {
cols: [ cols: [
[ [
{ {
width: '9.9%', width: '9.8%',
title: "序号", title: "序号",
align: "center", align: "center",
templet: function (d) { templet: function (d) {

View File

@ -167,7 +167,7 @@ function openDetail() {
// 发货状态颜色 // 发货状态颜色
function setStatusColor(value) { function setStatusColor(value) {
value = value ? parseInt(value) : 0; value = value;
let color = "#409Eff"; let color = "#409Eff";
let name = '' let name = ''
if (value === 0) { if (value === 0) {