Commit 58a3c557 authored by xiao-hesheng's avatar xiao-hesheng
Browse files

流程十脚本编写

parent ab279443
......@@ -5,6 +5,7 @@ __author__ = "xiaohesheng"
"""
case_tag:api,herp-web,a2_编辑医院信息,id2263,id2263-2,sit,on
主数据平台:a2_编辑医院信息
python runner_test.py tag id2263-2 debug sit
"""
from common.common_func import commonFuc
......
......@@ -41,6 +41,27 @@
</style>
</head>
<body>
<script>
function updateTime() {
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
month = (month < 10 ? "0" : "") + month;
day = (day < 10 ? "0" : "") + day;
hours = (hours < 10 ? "0" : "") + hours;
minutes = (minutes < 10 ? "0" : "") + minutes;
seconds = (seconds < 10 ? "0" : "") + seconds;
var timeString = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
document.getElementById("currentDateTime").textContent = timeString;
}
setInterval(updateTime, 1000); // 每秒更新一次时间
</script>
<div id="currentDateTime"></div>
<div>
<!--<div><h2>Test Statistics</h2></div>-->
......@@ -56,7 +77,7 @@
<tr width="600">
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>8分55</td>
<td class='details-col-elapsed'>0分2</td>
<td class="details-col-elapsed">100.0%</td>
</tr>
</table>
......@@ -72,9 +93,9 @@
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a7流程五_中心库入库结算_正结算3_内网验收入库结算/log.html' target='_blank'>a_a7流程五_中心库入库结算_正结算3_内网验收入库结算</a></td>
<td class="details-col-elapsed"><a href='../log/a2_编辑医院信息/log.html' target='_blank'>a2_编辑医院信息</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">535.834</td>
<td class="details-col-elapsed">1.895</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
......
......@@ -41,6 +41,27 @@
</style>
</head>
<body>
<script>
function updateTime() {
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
month = (month < 10 ? "0" : "") + month;
day = (day < 10 ? "0" : "") + day;
hours = (hours < 10 ? "0" : "") + hours;
minutes = (minutes < 10 ? "0" : "") + minutes;
seconds = (seconds < 10 ? "0" : "") + seconds;
var timeString = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
document.getElementById("currentDateTime").textContent = timeString;
}
setInterval(updateTime, 1000); // 每秒更新一次时间
</script>
<div id="currentDateTime"></div>
<div>
<!--<div><h2>Test Statistics</h2></div>-->
......
Supports Markdown
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