Commit 4a56e3d3 authored by 张子雨's avatar 张子雨

Merge branch 'feat/constructionOne' into feature/20230327_public_takeaway

* feat/constructionOne:
  feat: 合同日期判断问题
parents 60719448 6bf50182
......@@ -39,6 +39,9 @@ const ContractView = () => {
align: 'center',
hideInSearch: true,
render: (val, data) => {
if (data.signDate && typeof data.signDate === 'string') {
return data.signDate;
}
if (data.signDate && data?.signDate.length) {
let date = '';
data.signDate.forEach((item, index) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment