diff --git a/irc_vue_drone.yml b/irc_vue_drone.yml
new file mode 100644
index 00000000..6dbcef8e
--- /dev/null
+++ b/irc_vue_drone.yml
@@ -0,0 +1,60 @@
+kind: pipeline
+type: ssh
+name: ssh-linux-test-irc-publish
+
+platform:
+ os: Linux
+ arch: 386
+
+clone:
+ disable: true #禁用默认克隆
+
+server:
+ host: 192.168.3.68
+ user: root
+ password:
+ from_secret: local_pwd
+
+steps:
+- name: publish-test-irc-vue
+ commands:
+ - echo start publish test-irc-vue
+ - cd /opt/hang/vue/test-irc
+ - sh test-irc.sh v${DRONE_BUILD_NUMBER}
+
+trigger:
+ branch:
+ - main
+
+---
+
+
+kind: pipeline
+type: ssh
+name: ssh-linux-test-study-publish
+
+platform:
+ os: Linux
+ arch: 386
+
+clone:
+ disable: true #禁用默认克隆
+
+server:
+ host: 123.56.94.154
+ user: root
+ password:
+ from_secret: local_pwd
+
+steps:
+- name: publish-test-study
+ commands:
+ - echo start publish test-study-api
+ - cd /opt/1panel/hang/devops/test-study
+ - sh test-study.sh v${DRONE_BUILD_NUMBER}
+
+trigger:
+ branch:
+ - Test.Study
+
+
\ No newline at end of file
diff --git a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue
index 90c9ec44..b03f87ec 100644
--- a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue
+++ b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue
@@ -1909,7 +1909,11 @@ export default {
}
},
handleCTSelectionChange(rows) {
- this.ctSeriesInfo = rows[0]
+ if (rows.length > 0) {
+ this.ctSeriesInfo = rows[0]
+ } else {
+ this.ctSeriesInfo = {}
+ }
},
handleCTSelect(selection) {
if (selection.length > 1) {
@@ -1924,7 +1928,11 @@ export default {
}
},
handlePTSelectionChange(rows) {
- this.petSeriesInfo = rows[0]
+ if (rows.length > 0) {
+ this.petSeriesInfo = rows[0]
+ } else {
+ this.petSeriesInfo = {}
+ }
},
handleSubmitFusionSeries() {
this.$refs['fusionForm'].validate((valid) => {
diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue
index df0f19e8..36bba668 100644
--- a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue
+++ b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue
@@ -177,33 +177,60 @@
{{ val }}
-
+
+