|
@@ -2,6 +2,7 @@ import React, { useMemo } from "react";
|
|
import styles from "./index.module.scss";
|
|
import styles from "./index.module.scss";
|
|
import { Modal } from "antd";
|
|
import { Modal } from "antd";
|
|
import { A1TableType } from "@/types";
|
|
import { A1TableType } from "@/types";
|
|
|
|
+import passDecodeFu from "../passDecode";
|
|
|
|
|
|
type Props = {
|
|
type Props = {
|
|
data: A1TableType;
|
|
data: A1TableType;
|
|
@@ -52,14 +53,14 @@ function A1Look({ data, closeModelFu }: Props) {
|
|
<div className="A1MBox">
|
|
<div className="A1MBox">
|
|
<div className="A1MBoxL">所在单位:</div>
|
|
<div className="A1MBoxL">所在单位:</div>
|
|
<div className="A1MBoxR">
|
|
<div className="A1MBoxR">
|
|
- <p>{data.organ}</p>
|
|
|
|
|
|
+ <p>{data.unitName}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="A1MBox">
|
|
<div className="A1MBox">
|
|
<div className="A1MBoxL">所在处室:</div>
|
|
<div className="A1MBoxL">所在处室:</div>
|
|
<div className="A1MBoxR">
|
|
<div className="A1MBoxR">
|
|
- <p>xxxxxxxxxxxx</p>
|
|
|
|
|
|
+ <p>{data.division}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -69,7 +70,7 @@ function A1Look({ data, closeModelFu }: Props) {
|
|
{infoArr.map((v: any, i: number) => (
|
|
{infoArr.map((v: any, i: number) => (
|
|
<div className="infoP" key={i}>
|
|
<div className="infoP" key={i}>
|
|
<p>{v.name}</p>
|
|
<p>{v.name}</p>
|
|
- <p>{v.zheng}</p>
|
|
|
|
|
|
+ <p>{passDecodeFu(v.zheng)}</p>
|
|
</div>
|
|
</div>
|
|
))}
|
|
))}
|
|
</div>
|
|
</div>
|
|
@@ -78,14 +79,14 @@ function A1Look({ data, closeModelFu }: Props) {
|
|
<div className="A1MBox">
|
|
<div className="A1MBox">
|
|
<div className="A1MBoxL">预约日期:</div>
|
|
<div className="A1MBoxL">预约日期:</div>
|
|
<div className="A1MBoxR">
|
|
<div className="A1MBoxR">
|
|
- <p>{data.bookDay + " " + data.bootTimeScope}</p>
|
|
|
|
|
|
+ <p>{data.bookDay}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className="A1MBox">
|
|
<div className="A1MBox">
|
|
<div className="A1MBoxL">所在时段:</div>
|
|
<div className="A1MBoxL">所在时段:</div>
|
|
<div className="A1MBoxR">
|
|
<div className="A1MBoxR">
|
|
- <p>xxxxxxxxxxxxxxxx</p>
|
|
|
|
|
|
+ <p>{data.bootTimeScope}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<br />
|