diff --git a/frontend/src/assets/svg/service_01.svg b/frontend/src/assets/svg/service_01.svg new file mode 100644 index 0000000000..1b78755588 --- /dev/null +++ b/frontend/src/assets/svg/service_01.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/frontend/src/assets/svg/service_02.svg b/frontend/src/assets/svg/service_02.svg new file mode 100644 index 0000000000..3ee9b0e42f --- /dev/null +++ b/frontend/src/assets/svg/service_02.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/frontend/src/components/business/ms-assertion/comp/ResponseBodyTab.vue b/frontend/src/components/business/ms-assertion/comp/ResponseBodyTab.vue index 59d2e18481..b8b757a8aa 100644 --- a/frontend/src/components/business/ms-assertion/comp/ResponseBodyTab.vue +++ b/frontend/src/components/business/ms-assertion/comp/ResponseBodyTab.vue @@ -39,6 +39,7 @@ class="ms-params-input" :max-length="255" :disabled="props.disabled" + :placeholder="t('apiTestDebug.commonPlaceholder')" @input="() => handleExpressionChange(rowIndex)" @change="() => handleExpressionChange(rowIndex)" > @@ -132,6 +133,7 @@ :disabled="props.disabled" class="ms-params-input" :max-length="255" + :placeholder="t('apiTestDebug.commonPlaceholder')" @input="() => handleExpressionChange(rowIndex)" @change="() => handleExpressionChange(rowIndex)" > diff --git a/frontend/src/components/business/ms-assertion/comp/VariableTab.vue b/frontend/src/components/business/ms-assertion/comp/VariableTab.vue index be210b18e9..f334e68629 100644 --- a/frontend/src/components/business/ms-assertion/comp/VariableTab.vue +++ b/frontend/src/components/business/ms-assertion/comp/VariableTab.vue @@ -13,7 +13,7 @@ diff --git a/frontend/src/views/setting/organization/serviceIntegration/index.vue b/frontend/src/views/setting/organization/serviceIntegration/index.vue index 9833fca94d..d1742ed172 100644 --- a/frontend/src/views/setting/organization/serviceIntegration/index.vue +++ b/frontend/src/views/setting/organization/serviceIntegration/index.vue @@ -11,7 +11,7 @@ t('organization.service.expand') }} -
+
@@ -114,6 +114,7 @@ ], step: '@/assets/images/ms_plugindownload.jpg', description: 'organization.service.description', + bg: '@/assets/svg/service_01.svg', }, { id: '1002', @@ -129,6 +130,7 @@ ], step: '@/assets/images/ms_configplugin.jpg', description: 'organization.service.configDescription', + bg: '@/assets/svg/service_02.svg', }, ]); const isCollapse = ref(false); @@ -167,11 +169,13 @@ @apply flex items-center rounded-md; } .ms-item-0 { - background: url('@/assets/images/ms_plugindownload.jpg') no-repeat center; + background: url('@/assets/svg/service_01.svg') no-repeat; + background-position: center; background-size: cover; } .ms-item-1 { - background: url('@/assets/images/ms_configplugin.jpg') no-repeat center; + background: url('@/assets/svg/service_02.svg') no-repeat; + background-position: center; background-size: cover; }