对接IDP系统项目开车数据

This commit is contained in:
2025-08-06 15:27:50 +08:00
parent 0a061ce206
commit 268c6b7a14
33 changed files with 6226 additions and 91 deletions
@@ -0,0 +1,40 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="IDPPreRunDataDetail.aspx.cs" Inherits="FineUIPro.Web.TestRun.BeforeTestRun.IDPPreRunDataDetail" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>IDP试车数据明细</title>
<style>
.f-grid-row .f-grid-cell-inner {
white-space: normal;
word-break: break-all;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" Title="IDP试车数据明细" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:TextArea ID="txtDetaiilContent" runat="server" Height="500px" MaxLength="1000">
</f:TextArea>
</Items>
</f:FormRow>
</Rows>
</f:Form>
</form>
<script type="text/javascript">
// 返回false,来阻止浏览器右键菜单
function onRowContextMenu(event, rowId) {
return false;
}
function reloadGrid() {
__doPostBack(null, 'reloadGrid');
}
</script>
</body>
</html>