feat: refactor midjourney image creating page
@@ -80,6 +80,7 @@ func (h *MidJourneyHandler) Image(c *gin.Context) {
 | 
			
		||||
	var data struct {
 | 
			
		||||
		SessionId string  `json:"session_id"`
 | 
			
		||||
		Prompt    string  `json:"prompt"`
 | 
			
		||||
		NegPrompt string  `json:"neg_prompt"`
 | 
			
		||||
		Rate      string  `json:"rate"`
 | 
			
		||||
		Model     string  `json:"model"`
 | 
			
		||||
		Chaos     int     `json:"chaos"`
 | 
			
		||||
@@ -87,6 +88,8 @@ func (h *MidJourneyHandler) Image(c *gin.Context) {
 | 
			
		||||
		Seed      int64   `json:"seed"`
 | 
			
		||||
		Stylize   int     `json:"stylize"`
 | 
			
		||||
		Img       string  `json:"img"`
 | 
			
		||||
		Tile      bool    `json:"tile"`
 | 
			
		||||
		Quality   float32 `json:"quality"`
 | 
			
		||||
		Weight    float32 `json:"weight"`
 | 
			
		||||
	}
 | 
			
		||||
	if err := c.ShouldBindJSON(&data); err != nil {
 | 
			
		||||
@@ -119,6 +122,15 @@ func (h *MidJourneyHandler) Image(c *gin.Context) {
 | 
			
		||||
	if data.Raw {
 | 
			
		||||
		prompt += " --style raw"
 | 
			
		||||
	}
 | 
			
		||||
	if data.Quality > 0 {
 | 
			
		||||
		prompt += fmt.Sprintf(" --q %.2f", data.Quality)
 | 
			
		||||
	}
 | 
			
		||||
	if data.NegPrompt != "" {
 | 
			
		||||
		prompt += fmt.Sprintf(" --no %s", data.NegPrompt)
 | 
			
		||||
	}
 | 
			
		||||
	if data.Tile {
 | 
			
		||||
		prompt += " --tile "
 | 
			
		||||
	}
 | 
			
		||||
	if data.Model != "" && !strings.Contains(prompt, "--v") && !strings.Contains(prompt, "--niji") {
 | 
			
		||||
		prompt += fmt.Sprintf(" %s", data.Model)
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB  | 
| 
		 Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB  | 
| 
		 Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB  | 
| 
		 Before Width: | Height: | Size: 526 KiB After Width: | Height: | Size: 526 KiB  | 
| 
		 Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB  | 
| 
		 Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB  | 
| 
		 Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB  | 
| 
		 Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB  | 
| 
		 Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB  | 
| 
		 Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB  | 
| 
		 Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB  | 
| 
		 Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB  | 
| 
		 Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB  | 
| 
		 Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB  | 
| 
		 Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB  | 
| 
		 Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB  | 
@@ -35,7 +35,6 @@
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .el-icon {
 | 
			
		||||
  position: relative;
 | 
			
		||||
  top: 3px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content {
 | 
			
		||||
  background-color: #383838;
 | 
			
		||||
@@ -43,26 +42,62 @@
 | 
			
		||||
  padding: 8px 14px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  margin-bottom: 10px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content:hover {
 | 
			
		||||
  background-color: #585858;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .icon {
 | 
			
		||||
  width: 20px;
 | 
			
		||||
  height: 20px;
 | 
			
		||||
  margin-bottom: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape {
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
  margin-right: 5px;
 | 
			
		||||
  margin-bottom: 5px;
 | 
			
		||||
  border: 1px solid #c4c4c4;
 | 
			
		||||
  border-radius: 3px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.vertical {
 | 
			
		||||
  width: 12px;
 | 
			
		||||
  height: 20px;
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size9-16 {
 | 
			
		||||
  width: 9px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.horizontal {
 | 
			
		||||
  height: 12px;
 | 
			
		||||
  width: 20px;
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size16-9 {
 | 
			
		||||
  height: 9px;
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  top: 3px;
 | 
			
		||||
  margin: 4px 0 7px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size3-4 {
 | 
			
		||||
  width: 12px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size4-3 {
 | 
			
		||||
  height: 12px;
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  margin: 4px 0 4px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size2-3 {
 | 
			
		||||
  width: 11px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size3-2 {
 | 
			
		||||
  height: 11px;
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  margin: 4px 0 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size1-2 {
 | 
			
		||||
  width: 8px;
 | 
			
		||||
  height: 16px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content .shape.size2-1 {
 | 
			
		||||
  height: 8px;
 | 
			
		||||
  width: 16px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  margin: 4px 0 8px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .grid-content.active {
 | 
			
		||||
  color: #47fff1;
 | 
			
		||||
@@ -76,6 +111,7 @@
 | 
			
		||||
  border: 1px solid #454545;
 | 
			
		||||
  border-radius: 5px;
 | 
			
		||||
  padding: 10px;
 | 
			
		||||
  margin-bottom: 10px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-flow: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
@@ -98,10 +134,20 @@
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .form-item-inner {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .form-item-inner .el-select {
 | 
			
		||||
  --el-select-input-focus-border-color: #47fff1;
 | 
			
		||||
  --el-input-focus-border-color: #47fff1;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .form-item-inner .el-input__wrapper {
 | 
			
		||||
  background: #383838;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .form-item-inner .el-input__inner {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .form-item-inner .el-icon {
 | 
			
		||||
  margin-left: 10px;
 | 
			
		||||
  margin-top: 2px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line .img-uploader .el-upload {
 | 
			
		||||
  border: 1px dashed var(--el-border-color);
 | 
			
		||||
@@ -123,19 +169,11 @@
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .mj-params .param-line.pt {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  padding-top: 5px;
 | 
			
		||||
  padding-bottom: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .submit-btn {
 | 
			
		||||
  padding: 10px 15px 0 15px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .submit-btn .el-button {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .mj-box .submit-btn .el-button span {
 | 
			
		||||
  color: #2d3a4b;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .el-form .el-form-item__label {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
@@ -149,6 +187,86 @@
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  overflow-x: hidden;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-tabs {
 | 
			
		||||
  --el-tabs-header-height: 55px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-tabs__item {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  font-size: 18px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .title-tabs .el-tabs__item.is-active {
 | 
			
		||||
  color: #47fff1;
 | 
			
		||||
  font-size: 18px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .title-tabs .el-tabs__active-bar {
 | 
			
		||||
  background-color: #47fff1;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .title-tabs .el-tabs__content {
 | 
			
		||||
  padding: 10px 0;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-textarea {
 | 
			
		||||
  --el-input-focus-border-color: #47fff1;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-textarea__inner {
 | 
			
		||||
  background: transparent;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-input__wrapper {
 | 
			
		||||
  background: transparent;
 | 
			
		||||
  padding: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .text {
 | 
			
		||||
  margin-bottom: 10px;
 | 
			
		||||
  color: #6b778c;
 | 
			
		||||
  font-size: 15px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .param-line.pt {
 | 
			
		||||
  padding-top: 5px;
 | 
			
		||||
  padding-bottom: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .form-item-inner {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .form-item-inner .el-icon {
 | 
			
		||||
  margin-left: 10px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .el-form-item__label {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .img-uploader .el-upload {
 | 
			
		||||
  border: 1px dashed var(--el-border-color);
 | 
			
		||||
  border-radius: 6px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
  width: 300px;
 | 
			
		||||
  transition: var(--el-transition-duration-fast);
 | 
			
		||||
  margin-bottom: 20px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .img-uploader .el-upload:hover {
 | 
			
		||||
  border-color: var(--el-color-primary);
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .img-uploader .el-upload .el-icon.uploader-icon {
 | 
			
		||||
  font-size: 28px;
 | 
			
		||||
  color: #8c939d;
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  height: 120px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .submit-btn {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  margin: 20px 0;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .submit-btn .el-button {
 | 
			
		||||
  width: 200px;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .task-list-inner .submit-btn .text-info {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  justify-content: right;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
.page-mj .inner .task-list-box .running-job-list .job-item {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  padding: 2px;
 | 
			
		||||
@@ -253,5 +371,4 @@
 | 
			
		||||
  margin-left: 10px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  top: 2px;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -167,12 +167,15 @@
 | 
			
		||||
              --el-select-input-focus-border-color: #47FFF1;
 | 
			
		||||
              --el-input-focus-border-color: #47FFF1;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            .el-input__wrapper {
 | 
			
		||||
              background: #383838;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            .el-input__inner {
 | 
			
		||||
              color: #fff
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            .el-icon {
 | 
			
		||||
              margin-left 10px
 | 
			
		||||
            }
 | 
			
		||||
@@ -211,19 +214,6 @@
 | 
			
		||||
          padding-bottom 5px
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      .submit-btn {
 | 
			
		||||
        padding 10px 15px 0 15px
 | 
			
		||||
        text-align center
 | 
			
		||||
 | 
			
		||||
        .el-button {
 | 
			
		||||
          width 100%
 | 
			
		||||
 | 
			
		||||
          span {
 | 
			
		||||
            color #2D3A4B
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .el-form {
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,86 @@
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  overflow-x: hidden;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-tabs {
 | 
			
		||||
  --el-tabs-header-height: 55px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-tabs__item {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  font-size: 18px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .title-tabs .el-tabs__item.is-active {
 | 
			
		||||
  color: #47fff1;
 | 
			
		||||
  font-size: 18px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .title-tabs .el-tabs__active-bar {
 | 
			
		||||
  background-color: #47fff1;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .title-tabs .el-tabs__content {
 | 
			
		||||
  padding: 10px 0;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-textarea {
 | 
			
		||||
  --el-input-focus-border-color: #47fff1;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-textarea__inner {
 | 
			
		||||
  background: transparent;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-input__wrapper {
 | 
			
		||||
  background: transparent;
 | 
			
		||||
  padding: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .text {
 | 
			
		||||
  margin-bottom: 10px;
 | 
			
		||||
  color: #6b778c;
 | 
			
		||||
  font-size: 15px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .param-line.pt {
 | 
			
		||||
  padding-top: 5px;
 | 
			
		||||
  padding-bottom: 5px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .form-item-inner {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .form-item-inner .el-icon {
 | 
			
		||||
  margin-left: 10px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .el-form-item__label {
 | 
			
		||||
  color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .img-uploader .el-upload {
 | 
			
		||||
  border: 1px dashed var(--el-border-color);
 | 
			
		||||
  border-radius: 6px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
  width: 300px;
 | 
			
		||||
  transition: var(--el-transition-duration-fast);
 | 
			
		||||
  margin-bottom: 20px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .img-uploader .el-upload:hover {
 | 
			
		||||
  border-color: var(--el-color-primary);
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .img-uploader .el-upload .el-icon.uploader-icon {
 | 
			
		||||
  font-size: 28px;
 | 
			
		||||
  color: #8c939d;
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  height: 120px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .submit-btn {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  margin: 20px 0;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .submit-btn .el-button {
 | 
			
		||||
  width: 200px;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .task-list-inner .submit-btn .text-info {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  justify-content: right;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
.page-sd .inner .task-list-box .running-job-list .job-item {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  padding: 2px;
 | 
			
		||||
 
 | 
			
		||||
@@ -8,17 +8,21 @@
 | 
			
		||||
    .el-tabs {
 | 
			
		||||
      --el-tabs-header-height: 55px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .el-tabs__item {
 | 
			
		||||
      color: #fff;
 | 
			
		||||
      font-size: 18px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .title-tabs .el-tabs__item.is-active {
 | 
			
		||||
      color: #47FFF1;
 | 
			
		||||
      font-size: 18px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .title-tabs .el-tabs__active-bar {
 | 
			
		||||
      background-color: #47FFF1;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .title-tabs .el-tabs__content {
 | 
			
		||||
      padding: 10px 0;
 | 
			
		||||
    }
 | 
			
		||||
@@ -26,6 +30,7 @@
 | 
			
		||||
    .el-textarea {
 | 
			
		||||
      --el-input-focus-border-color: #47FFF1;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .el-textarea__inner {
 | 
			
		||||
      background: transparent;
 | 
			
		||||
      color: #fff;
 | 
			
		||||
@@ -86,14 +91,18 @@
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .submit-btn {
 | 
			
		||||
      display flex
 | 
			
		||||
      margin: 20px 0
 | 
			
		||||
 | 
			
		||||
        .el-icon.submit-icon {
 | 
			
		||||
          font-size: 28px
 | 
			
		||||
      .el-button {
 | 
			
		||||
        width 200px
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      .text-info {
 | 
			
		||||
        width 100%
 | 
			
		||||
          height: 100px
 | 
			
		||||
          text-align: center
 | 
			
		||||
          margin-right: 10px
 | 
			
		||||
        display flex
 | 
			
		||||
        justify-content right
 | 
			
		||||
        align-items center
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -9,12 +9,13 @@
 | 
			
		||||
      </div>
 | 
			
		||||
      <ul class="nav-items">
 | 
			
		||||
        <li v-for="item in navs" :key="item.path">
 | 
			
		||||
					<el-tooltip effect="light" :content="item.title" placement="right">
 | 
			
		||||
          <!--          <el-tooltip effect="light" :content="item.title" placement="right">-->
 | 
			
		||||
          <!--            -->
 | 
			
		||||
          <!--          </el-tooltip>-->
 | 
			
		||||
          <a @click="changeNav(item)" :class="item.path === curPath ? 'active' : ''">
 | 
			
		||||
            <el-image :src="item.icon_path" :width="20" v-if="item.icon_path"/>
 | 
			
		||||
            <i :class="'iconfont icon-' + item.icon" v-else></i>
 | 
			
		||||
          </a>
 | 
			
		||||
					</el-tooltip>
 | 
			
		||||
          <div :class="item.path === curPath ? 'title active' : 'title'">{{ item.title }}</div>
 | 
			
		||||
        </li>
 | 
			
		||||
      </ul>
 | 
			
		||||
@@ -37,14 +38,14 @@ import { isMobile } from "@/utils/libs";
 | 
			
		||||
import {ref} from "vue";
 | 
			
		||||
 | 
			
		||||
const router = useRouter();
 | 
			
		||||
const logo = '/images/icon-logo.png';
 | 
			
		||||
const logo = '/images/logo.png';
 | 
			
		||||
const navs = ref([
 | 
			
		||||
  {path: "/chat", icon_path: "/images/chat.png", title: "对话聊天"},
 | 
			
		||||
  {path: "/mj", icon_path: "/images/mj.png", title: "MJ 绘画"},
 | 
			
		||||
  {path: "/sd", icon_path: "/images/sd.png", title: "SD 绘画"},
 | 
			
		||||
  {path: "/apps", icon: "menu", title: "应用中心"},
 | 
			
		||||
  {path: "/images-wall", icon: "image-list", title: "作品展示"},
 | 
			
		||||
  {path: "/knowledge", icon: "book", title: "我的知识库"},
 | 
			
		||||
  {path: "/knowledge", icon: "book", title: "知识库"},
 | 
			
		||||
  {path: "/member", icon: "vip-user", title: "会员计划"},
 | 
			
		||||
  {path: "/invite", icon: "share", title: "推广计划"},
 | 
			
		||||
])
 | 
			
		||||
@@ -122,6 +123,7 @@ const changeNav = (item) => {
 | 
			
		||||
          color: #e5e7eb;
 | 
			
		||||
          text-align: center;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .active {
 | 
			
		||||
          color #47fff1
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
@@ -21,8 +21,8 @@
 | 
			
		||||
                  <div class="flex-col items-center"
 | 
			
		||||
                       :class="item.value === params.rate ? 'grid-content active' : 'grid-content'"
 | 
			
		||||
                       @click="changeRate(item)">
 | 
			
		||||
										<div :class="'shape ' + item.css"></div>
 | 
			
		||||
										<!-- <el-image class="icon" :src="item.img" fit="cover"></el-image> -->
 | 
			
		||||
                    <!--                    <div :class="'shape ' + item.css"></div>-->
 | 
			
		||||
                    <el-image class="icon" :src="item.img" fit="cover"></el-image>
 | 
			
		||||
                    <div class="text">{{ item.text }}</div>
 | 
			
		||||
                  </div>
 | 
			
		||||
                </el-col>
 | 
			
		||||
@@ -95,7 +95,8 @@
 | 
			
		||||
                  <div class="form-item-inner">
 | 
			
		||||
                    <el-switch v-model="params.raw" inactive-color="#464649" active-color="#47fff1"/>
 | 
			
		||||
                    <el-tooltip effect="light"
 | 
			
		||||
											content="启用新的RAW模式,呈现的人物写实感更加逼真,人物细节、光源、流畅度也更加接近原始作品。<br/> 同时也意味着您需要添加更长的提示。" raw-content
 | 
			
		||||
                                content="启用新的RAW模式,呈现的人物写实感更加逼真,人物细节、光源、流畅度也更加接近原始作品。<br/> 同时也意味着您需要添加更长的提示。"
 | 
			
		||||
                                raw-content
 | 
			
		||||
                                placement="right">
 | 
			
		||||
                      <el-icon>
 | 
			
		||||
                        <InfoFilled/>
 | 
			
		||||
@@ -110,7 +111,6 @@
 | 
			
		||||
              <el-form-item label="创意度">
 | 
			
		||||
                <template #default>
 | 
			
		||||
                  <div class="form-item-inner">
 | 
			
		||||
										<!-- <el-input v-model.number="params.chaos" size="small" /> -->
 | 
			
		||||
                    <el-slider v-model.number="params.chaos" :max="100" :step="1"
 | 
			
		||||
                               style="width: 180px;--el-slider-main-bg-color:#47fff1"/>
 | 
			
		||||
                    <el-tooltip effect="light"
 | 
			
		||||
@@ -129,7 +129,6 @@
 | 
			
		||||
              <el-form-item label="风格化">
 | 
			
		||||
                <template #default>
 | 
			
		||||
                  <div class="form-item-inner">
 | 
			
		||||
										<!-- <el-input v-model.number="params.stylize" size="small" /> -->
 | 
			
		||||
                    <el-slider v-model.number="params.stylize" :min="0" :max="1000" :step="1"
 | 
			
		||||
                               style="width: 180px;--el-slider-main-bg-color:#47fff1"/>
 | 
			
		||||
                    <el-tooltip effect="light"
 | 
			
		||||
@@ -144,33 +143,14 @@
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
						<!-- <div class="param-line" style="padding-top: 10px">
 | 
			
		||||
							<el-form-item label="图像权重">
 | 
			
		||||
								<template #default>
 | 
			
		||||
									<div class="form-item-inner">
 | 
			
		||||
										<el-slider v-model.number="params.weight" :max="1" :step="0.01"
 | 
			
		||||
											style="width: 180px;--el-slider-main-bg-color:#47fff1" />
 | 
			
		||||
										<el-tooltip effect="light"
 | 
			
		||||
											content="使用图像权重参数--iw来调整图像 URL 与文本的重要性 <br/>权重较高时意味着图像提示将对完成的作业产生更大的影响"
 | 
			
		||||
											raw-content placement="right">
 | 
			
		||||
											<el-icon style="margin-top: 6px">
 | 
			
		||||
												<InfoFilled />
 | 
			
		||||
											</el-icon>
 | 
			
		||||
										</el-tooltip>
 | 
			
		||||
									</div>
 | 
			
		||||
								</template>
 | 
			
		||||
							</el-form-item>
 | 
			
		||||
						</div> -->
 | 
			
		||||
 | 
			
		||||
            <div class="param-line">
 | 
			
		||||
              <el-form-item label="随机种子">
 | 
			
		||||
                <template #default>
 | 
			
		||||
                  <div class="form-item-inner">
 | 
			
		||||
										<el-input v-model.number="params.seed" size="small" />
 | 
			
		||||
										<!-- <el-slider v-model.number="params.seed" :min="0" :max="4294967295" :step="1"
 | 
			
		||||
											style="width: 180px;--el-slider-main-bg-color:#47fff1" /> -->
 | 
			
		||||
                    <el-input v-model.number="params.seed" style="--el-input-focus-border-color:#47fff1"/>
 | 
			
		||||
                    <el-tooltip effect="light"
 | 
			
		||||
											content="随机种子:--seed,默认值0表示随机产生 <br/>使用相同的种子参数和描述将产生相似的图像" raw-content
 | 
			
		||||
                                content="随机种子:--seed,默认值0表示随机产生 <br/>使用相同的种子参数和描述将产生相似的图像"
 | 
			
		||||
                                raw-content
 | 
			
		||||
                                placement="right">
 | 
			
		||||
                      <el-icon>
 | 
			
		||||
                        <InfoFilled/>
 | 
			
		||||
@@ -180,58 +160,17 @@
 | 
			
		||||
                </template>
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
						
 | 
			
		||||
 | 
			
		||||
						<!-- <div class="param-line">
 | 
			
		||||
							<el-form-item label="图生图">
 | 
			
		||||
								<template #default>
 | 
			
		||||
									<div class="form-item-inner">
 | 
			
		||||
										<el-input v-model="params.img" size="small" placeholder="请输入图片地址或者上传图片"
 | 
			
		||||
											style="width: 160px" />
 | 
			
		||||
										<el-icon @click="params.img = ''" title="清空图片">
 | 
			
		||||
											<DeleteFilled />
 | 
			
		||||
										</el-icon>
 | 
			
		||||
										<el-tooltip effect="light" content="垫图:以某张图片为底稿参考来创作绘画 <br/> 支持 PNG 和 JPG 格式图片"
 | 
			
		||||
											raw-content placement="right">
 | 
			
		||||
											<el-icon>
 | 
			
		||||
												<InfoFilled />
 | 
			
		||||
											</el-icon>
 | 
			
		||||
										</el-tooltip>
 | 
			
		||||
									</div>
 | 
			
		||||
								</template>
 | 
			
		||||
							</el-form-item>
 | 
			
		||||
						</div>
 | 
			
		||||
 | 
			
		||||
						<div class="param-line">
 | 
			
		||||
							<el-upload class="img-uploader" :auto-upload="true" :show-file-list="false"
 | 
			
		||||
								:http-request="afterRead" style="--el-color-primary:#47fff1">
 | 
			
		||||
								<el-image v-if="params.img !== ''" :src="params.img" fit="cover" />
 | 
			
		||||
								<el-icon v-else class="uploader-icon">
 | 
			
		||||
									<Plus />
 | 
			
		||||
								</el-icon>
 | 
			
		||||
							</el-upload>
 | 
			
		||||
						</div> -->
 | 
			
		||||
 | 
			
		||||
						<div class="param-line pt">
 | 
			
		||||
							<el-form-item label="剩余次数">
 | 
			
		||||
								<template #default>
 | 
			
		||||
									<el-tag type="info">{{ imgCalls }}</el-tag>
 | 
			
		||||
								</template>
 | 
			
		||||
							</el-form-item>
 | 
			
		||||
						</div>
 | 
			
		||||
          </el-form>
 | 
			
		||||
        </div>
 | 
			
		||||
				<!-- <div class="submit-btn">
 | 
			
		||||
					<el-button color="#47fff1" :dark="false" round @click="generate">立即生成</el-button>
 | 
			
		||||
				</div> -->
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="task-list-box">
 | 
			
		||||
        <div class="task-list-inner" :style="{ height: listBoxHeight + 'px' }">
 | 
			
		||||
          <h2>AI绘画</h2>
 | 
			
		||||
					<el-tabs v-model="activeName" class="title-tabs" @tab-click="handleClick">
 | 
			
		||||
          <el-form>
 | 
			
		||||
            <el-tabs v-model="activeName" class="title-tabs">
 | 
			
		||||
              <el-tab-pane label="图生图(可选)" name="图生图">
 | 
			
		||||
							<div class="text">图生图:以某张图片为底稿参考来创作绘画,生成类似风格或类型图像,支持 PNG 和 JPG 格式图片;</div>
 | 
			
		||||
                <div class="text">图生图:以某张图片为底稿参考来创作绘画,生成类似风格或类型图像,支持 PNG 和 JPG 格式图片;
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="param-line pt">
 | 
			
		||||
                  <el-form-item label="">
 | 
			
		||||
                    <template #default>
 | 
			
		||||
@@ -241,7 +180,8 @@
 | 
			
		||||
                        <el-icon @click="params.img = ''" title="清空图片">
 | 
			
		||||
                          <DeleteFilled/>
 | 
			
		||||
                        </el-icon>
 | 
			
		||||
											<el-tooltip effect="light" content="垫图:以某张图片为底稿参考来创作绘画 <br/> 支持 PNG 和 JPG 格式图片"
 | 
			
		||||
                        <el-tooltip effect="light"
 | 
			
		||||
                                    content="垫图:以某张图片为底稿参考来创作绘画 <br/> 支持 PNG 和 JPG 格式图片"
 | 
			
		||||
                                    raw-content placement="right">
 | 
			
		||||
                          <el-icon>
 | 
			
		||||
                            <InfoFilled/>
 | 
			
		||||
@@ -282,21 +222,17 @@
 | 
			
		||||
              </el-tab-pane>
 | 
			
		||||
 | 
			
		||||
              <el-tab-pane label="图生文(可选)" name="图生文">
 | 
			
		||||
							<div class="text">图生文:上传一张图片生成对应的提示词;</div>
 | 
			
		||||
							<div class="param-line pt">
 | 
			
		||||
								<el-empty image-size="100px" description="功能建设中" />
 | 
			
		||||
							</div>
 | 
			
		||||
                <div class="text">图生文功能正在紧锣密鼓开发中,敬请期待...</div>
 | 
			
		||||
                <!--              <div class="param-line pt">-->
 | 
			
		||||
                <!--                <el-empty image-size="100px" description="功能建设中"/>-->
 | 
			
		||||
                <!--              </div>-->
 | 
			
		||||
              </el-tab-pane>
 | 
			
		||||
 | 
			
		||||
              <el-tab-pane label="融图(可选)" name="融图">
 | 
			
		||||
							<div class="text">融图:融合图片风格;</div>
 | 
			
		||||
							<div class="param-line pt">
 | 
			
		||||
								<el-empty image-size="100px" description="功能建设中" />
 | 
			
		||||
							</div>
 | 
			
		||||
                <div class="text">融图功能正在紧锣密鼓开发中,敬请期待...</div>
 | 
			
		||||
              </el-tab-pane>
 | 
			
		||||
            </el-tabs>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
            <div class="param-line pt">
 | 
			
		||||
              <div class="flex-row justify-between items-center">
 | 
			
		||||
                <div class="flex-row justify-start items-center">
 | 
			
		||||
@@ -308,7 +244,10 @@
 | 
			
		||||
                  </el-tooltip>
 | 
			
		||||
                </div>
 | 
			
		||||
                <el-button type="success">
 | 
			
		||||
								<el-icon style="margin-right: 6px;font-size: 18px;"><Refresh /></el-icon>翻译
 | 
			
		||||
                  <el-icon style="margin-right: 6px;font-size: 18px;">
 | 
			
		||||
                    <Refresh/>
 | 
			
		||||
                  </el-icon>
 | 
			
		||||
                  翻译
 | 
			
		||||
                </el-button>
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
@@ -330,24 +269,27 @@
 | 
			
		||||
                  </el-tooltip>
 | 
			
		||||
                </div>
 | 
			
		||||
                <el-button type="success">
 | 
			
		||||
								<el-icon style="margin-right: 6px;font-size: 18px;"><Refresh /></el-icon>翻译
 | 
			
		||||
                  <el-icon style="margin-right: 6px;font-size: 18px;">
 | 
			
		||||
                    <Refresh/>
 | 
			
		||||
                  </el-icon>
 | 
			
		||||
                  翻译
 | 
			
		||||
                </el-button>
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="param-line pt">
 | 
			
		||||
						<el-input v-model="params.no" :autosize="{ minRows: 4, maxRows: 6 }" type="textarea"
 | 
			
		||||
              <el-input v-model="params.neg_prompt" :autosize="{ minRows: 4, maxRows: 6 }" type="textarea"
 | 
			
		||||
                        ref="promptRef"
 | 
			
		||||
                        placeholder="这里输入你不希望出现在图片上的内容,元素"/>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="submit-btn">
 | 
			
		||||
						<el-button color="#47fff1" :dark="false" size="medium" @click="generate">
 | 
			
		||||
							<el-icon class="submit-icon">
 | 
			
		||||
								<Notification />
 | 
			
		||||
							</el-icon>立即生成
 | 
			
		||||
						</el-button>
 | 
			
		||||
              <el-button color="#47fff1" :dark="false" @click="generate" round>立即生成</el-button>
 | 
			
		||||
              <div class="text-info">
 | 
			
		||||
                <el-tag type="success">可用额度:{{ imgCalls }}</el-tag>
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </el-form>
 | 
			
		||||
 | 
			
		||||
          <h2>任务列表</h2>
 | 
			
		||||
          <div class="running-job-list">
 | 
			
		||||
@@ -472,7 +414,15 @@
 | 
			
		||||
 | 
			
		||||
<script setup>
 | 
			
		||||
import {onMounted, ref} from "vue"
 | 
			
		||||
import { ChromeFilled, DeleteFilled, DocumentCopy, InfoFilled, Notification, Picture, Plus, Refresh } from "@element-plus/icons-vue";
 | 
			
		||||
import {
 | 
			
		||||
  ChromeFilled,
 | 
			
		||||
  DeleteFilled,
 | 
			
		||||
  DocumentCopy,
 | 
			
		||||
  InfoFilled,
 | 
			
		||||
  Picture,
 | 
			
		||||
  Plus,
 | 
			
		||||
  Refresh
 | 
			
		||||
} from "@element-plus/icons-vue";
 | 
			
		||||
import Compressor from "compressorjs";
 | 
			
		||||
import {httpGet, httpPost} from "@/utils/http";
 | 
			
		||||
import {ElMessage, ElNotification} from "element-plus";
 | 
			
		||||
@@ -482,7 +432,6 @@ import { checkSession } from "@/action/session";
 | 
			
		||||
import {useRouter} from "vue-router";
 | 
			
		||||
import {getSessionId, getUserToken} from "@/store/session";
 | 
			
		||||
import {removeArrayItem} from "@/utils/libs";
 | 
			
		||||
import axios from "axios";
 | 
			
		||||
 | 
			
		||||
const listBoxHeight = ref(window.innerHeight - 40)
 | 
			
		||||
const mjBoxHeight = ref(window.innerHeight - 150)
 | 
			
		||||
@@ -491,26 +440,26 @@ window.onresize = () => {
 | 
			
		||||
  mjBoxHeight.value = window.innerHeight - 150
 | 
			
		||||
}
 | 
			
		||||
const rates = [
 | 
			
		||||
	{ css: "square", value: "1:1", text: "1:1",img: "/images/1_1.png" },
 | 
			
		||||
	{ css: "size1-2", value: "1:2", text: "1:2",img: "/images/1_2.png" },
 | 
			
		||||
	{ css: "size2-1", value: "2:1", text: "2:1",img: "/images/2_1.png" },
 | 
			
		||||
	{ css: "size2-3", value: "2:3", text: "2:3",img: "/images/3_4.png" },
 | 
			
		||||
	{ css: "size3-2", value: "3:2", text: "3:2",img: "/images/4_3.png" },
 | 
			
		||||
	{ css: "size3-4", value: "3:4", text: "3:4",img: "/images/3_4.png" },
 | 
			
		||||
	{ css: "size4-3", value: "4:3", text: "4:3",img: "/images/4_3.png" },
 | 
			
		||||
	{ css: "size16-9", value: "16:9", text: "16:9",img: "/images/16_9.png" },
 | 
			
		||||
	{ css: "size9-16", value: "9:16", text: "9:16",img: "/images/9_16.png" },
 | 
			
		||||
  {css: "square", value: "1:1", text: "1:1", img: "/images/mj/rate_1_1.png"},
 | 
			
		||||
  {css: "size1-2", value: "1:2", text: "1:2", img: "/images/mj/rate_1_2.png"},
 | 
			
		||||
  {css: "size2-1", value: "2:1", text: "2:1", img: "/images/mj/rate_2_1.png"},
 | 
			
		||||
  {css: "size2-3", value: "2:3", text: "2:3", img: "/images/mj/rate_3_4.png"},
 | 
			
		||||
  {css: "size3-2", value: "3:2", text: "3:2", img: "/images/mj/rate_4_3.png"},
 | 
			
		||||
  {css: "size3-4", value: "3:4", text: "3:4", img: "/images/mj/rate_3_4.png"},
 | 
			
		||||
  {css: "size4-3", value: "4:3", text: "4:3", img: "/images/mj/rate_4_3.png"},
 | 
			
		||||
  {css: "size16-9", value: "16:9", text: "16:9", img: "/images/mj/rate_16_9.png"},
 | 
			
		||||
  {css: "size9-16", value: "9:16", text: "9:16", img: "/images/mj/rate_9_16.png"},
 | 
			
		||||
]
 | 
			
		||||
const models = [
 | 
			
		||||
	{ text: "最新模式MJ-5.2", value: " --v 5.2", img: "/images/mj-normal.png" },
 | 
			
		||||
	{ text: "优质模式MJ-5.1", value: " --v 5.1", img: "/images/mj1.jpg" },
 | 
			
		||||
	{ text: "虚幻模式MJ-5", value: " --v 5", img: "/images/mj2.jpg" },
 | 
			
		||||
	{ text: "真实模式MJ-4", value: " --v 4", img: "/images/mj3.jpg" },
 | 
			
		||||
	{ text: "动漫风niji5 原始", value: " --niji 5", img: "/images/mj-niji.png" },
 | 
			
		||||
	{ text: "动漫风niji5 可爱", value: " --niji 5 --style cute", img: "/images/nj1.jpg" },
 | 
			
		||||
	{ text: "动漫风niji5 风景", value: " --niji 5 --style scenic", img: "/images/nj2.jpg" },
 | 
			
		||||
	{ text: "动漫风niji5 表现力", value: " --niji 5 --style expressive", img: "/images/nj3.jpg" },
 | 
			
		||||
	{ text: "动漫风niji4", value: " --niji 4", img: "/images/nj4.jpg" },
 | 
			
		||||
  {text: "最新模式MJ-5.2", value: " --v 5.2", img: "/images/mj/mj-v5.2.png"},
 | 
			
		||||
  {text: "优质模式MJ-5.1", value: " --v 5.1", img: "/images/mj/mj-v5.1.jpg"},
 | 
			
		||||
  {text: "虚幻模式MJ-5", value: " --v 5", img: "/images/mj/mj-v5.jpg"},
 | 
			
		||||
  {text: "真实模式MJ-4", value: " --v 4", img: "/images/mj/mj-v4.jpg"},
 | 
			
		||||
  {text: "动漫风niji5 原始", value: " --niji 5", img: "/images/mj/mj-niji.png"},
 | 
			
		||||
  {text: "动漫风niji5 可爱", value: " --niji 5 --style cute", img: "/images/mj/nj1.jpg"},
 | 
			
		||||
  {text: "动漫风niji5 风景", value: " --niji 5 --style scenic", img: "/images/mj/nj2.jpg"},
 | 
			
		||||
  {text: "动漫风niji5 表现力", value: " --niji 5 --style expressive", img: "/images/mj/nj3.jpg"},
 | 
			
		||||
  {text: "动漫风niji4", value: " --niji 4", img: "/images/mj/nj4.jpg"},
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
const options = [
 | 
			
		||||
@@ -538,9 +487,9 @@ const params = ref({
 | 
			
		||||
  img: "",
 | 
			
		||||
  weight: 0.25,
 | 
			
		||||
  prompt: "",
 | 
			
		||||
	no:"",
 | 
			
		||||
  neg_prompt: "",
 | 
			
		||||
  tile: false,
 | 
			
		||||
	quality: 1
 | 
			
		||||
  quality: 0.5
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
const activeName = ref('图生图')
 | 
			
		||||
@@ -614,6 +563,7 @@ const connect = () => {
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  _socket.addEventListener('close', () => {
 | 
			
		||||
    ElMessage.error("Websocket 已经断开,正在重新连接服务器")
 | 
			
		||||
    connect()
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -57,7 +57,10 @@
 | 
			
		||||
      <el-form :model="item" label-width="120px" ref="formRef" :rules="rules">
 | 
			
		||||
        <el-form-item label="所属平台:" prop="platform">
 | 
			
		||||
          <el-select v-model="item.platform" placeholder="请选择平台">
 | 
			
		||||
            <el-option v-for="item in platforms" :value="item.value" :key="item.value">{{ item.name }}</el-option>
 | 
			
		||||
            <el-option v-for="item in platforms" :value="item.value" :label="item.name" :key="item.value">{{
 | 
			
		||||
                item.name
 | 
			
		||||
              }}
 | 
			
		||||
            </el-option>
 | 
			
		||||
          </el-select>
 | 
			
		||||
        </el-form-item>
 | 
			
		||||
 | 
			
		||||
@@ -66,7 +69,10 @@
 | 
			
		||||
        </el-form-item>
 | 
			
		||||
        <el-form-item label="用途:" prop="type">
 | 
			
		||||
          <el-select v-model="item.type" placeholder="请选择用途">
 | 
			
		||||
            <el-option v-for="item in types" :value="item.value" :key="item.value">{{ item.name }}</el-option>
 | 
			
		||||
            <el-option v-for="item in types" :value="item.value" :label="item.name" :key="item.value">{{
 | 
			
		||||
                item.name
 | 
			
		||||
              }}
 | 
			
		||||
            </el-option>
 | 
			
		||||
          </el-select>
 | 
			
		||||
        </el-form-item>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -53,7 +53,10 @@
 | 
			
		||||
      <el-form :model="item" label-width="120px" ref="formRef" :rules="rules">
 | 
			
		||||
        <el-form-item label="所属平台:" prop="platform">
 | 
			
		||||
          <el-select v-model="item.platform" placeholder="请选择平台">
 | 
			
		||||
            <el-option v-for="item in platforms" :value="item.value" :key="item.value">{{ item.name }}</el-option>
 | 
			
		||||
            <el-option v-for="item in platforms" :value="item.value" :label="item.name" :key="item.value">{{
 | 
			
		||||
                item.name
 | 
			
		||||
              }}
 | 
			
		||||
            </el-option>
 | 
			
		||||
          </el-select>
 | 
			
		||||
        </el-form-item>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||