特殊页面可以直接使用HTML

This commit is contained in:
GoEdgeLab
2021-10-10 10:35:09 +08:00
parent 146b477c17
commit 1935fc83d8
5 changed files with 131 additions and 57 deletions

View File

@@ -19,7 +19,9 @@ service HTTPPageService {
// 创建Page
message CreateHTTPPageRequest {
repeated string statusList = 1;
string bodyType = 5;
string url = 2;
string body = 4;
int32 newStatus = 3;
}
@@ -31,7 +33,9 @@ message CreateHTTPPageResponse {
message UpdateHTTPPageRequest {
int64 pageId = 1;
repeated string statusList = 2;
string bodyType = 6;
string url = 3;
string body = 5;
int32 newStatus = 4;
}