This commit is contained in:
parent
3f3d251c23
commit
616152c90a
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue