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

View File

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