Commit 8a232393 authored by 华国豪's avatar 华国豪 🙄

列表新增项

parent a3906c6b
...@@ -122,9 +122,11 @@ ...@@ -122,9 +122,11 @@
<th>开始时间</th> <th>开始时间</th>
<th>截止时间</th> <th>截止时间</th>
<th>创建时间</th> <th>创建时间</th>
<th>立项审批信息</th> <th>总经理立项审批</th>
<th>主管立项审批</th>
<th>当前进度</th> <th>当前进度</th>
<th>完成审批信息</th> <th>总经理完成审批</th>
<th>主管完成审批</th>
<th>操作</th> <th>操作</th>
</tr> </tr>
<tr v-for="(item, index) in DataList" :key="index"> <tr v-for="(item, index) in DataList" :key="index">
...@@ -148,6 +150,14 @@ ...@@ -148,6 +150,14 @@
<td>{{item.BeginTime}}</td> <td>{{item.BeginTime}}</td>
<td>{{item.EndTime}}</td> <td>{{item.EndTime}}</td>
<td>{{item.CreateDate}}</td> <td>{{item.CreateDate}}</td>
<td>
<span v-if="item.ZongExamineStatus==0" style="color:grey">审批中</span>
<span
v-else-if="item.ZongExamineStatus==1"
style="color:green;text-decoration: underline;"
>已通过</span>
<span v-else style="color:red;text-decoration: underline;">已驳回</span>
</td>
<td> <td>
<span v-if="item.ExamineStatus==0" style="color:grey">审批中</span> <span v-if="item.ExamineStatus==0" style="color:grey">审批中</span>
<span <span
...@@ -164,6 +174,16 @@ ...@@ -164,6 +174,16 @@
status="success" status="success"
></el-progress> ></el-progress>
</td> </td>
<td>
<span v-if="item.Status==2||item.Status==3">
<span v-if="item.ZongFinishExamineStatus==0" style="color:grey">审批中</span>
<span
v-else-if="item.ZongFinishExamineStatus==1"
style="color:green;text-decoration: underline;"
>已通过</span>
<span v-else style="color:red;text-decoration: underline;">已驳回</span>
</span>
</td>
<td> <td>
<span v-if="item.Status==2||item.Status==3"> <span v-if="item.Status==2||item.Status==3">
<span v-if="item.FinishExamineStatus==0" style="color:grey">审批中</span> <span v-if="item.FinishExamineStatus==0" style="color:grey">审批中</span>
......
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