|
@@ -38,34 +38,34 @@ const ctx = ctxRef(new Context(), {
|
|
|
<DefinitionTable>
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <td class="title">加速域名 *</td>
|
|
|
+ <td class="title after:content-['*'] after:text-red-500">加速域名</td>
|
|
|
<td>
|
|
|
<ServerNameBox ref="serverNameBox"></ServerNameBox>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <td>域名协议 *</td>
|
|
|
+ <td class="after:content-['*'] after:text-red-500">域名协议</td>
|
|
|
<td>
|
|
|
- <div class="flex items-center">
|
|
|
- <TCheckboxBinary name="protocols" :value="'http'">HTTP</TCheckboxBinary>
|
|
|
+ <div class="flex items-center gap-[60px]">
|
|
|
+ <TCheckboxBinary name="protocols" :value="'http'">HTTP</TCheckboxBinary>
|
|
|
<TCheckboxBinary name="protocols" :value="'https'" v-model="ctx.supportHTTPS">HTTPS</TCheckboxBinary>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr v-show="ctx.supportHTTPS">
|
|
|
- <td>HTTPS证书 *</td>
|
|
|
+ <td class="after:content-['*'] after:text-red-500">HTTPS证书</td>
|
|
|
<td>
|
|
|
<SSLCertsBox :v-domains="ctx.findServerNames"></SSLCertsBox>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <td>源站信息 *</td>
|
|
|
+ <td class="after:content-['*'] after:text-red-500">源站信息</td>
|
|
|
<td>
|
|
|
<OriginInputBox :v-oss-types="ctx.ossTypes"></OriginInputBox>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <td>回源主机名 *</td>
|
|
|
+ <td class="after:content-['*'] after:text-red-500">回源主机名</td>
|
|
|
<td>
|
|
|
<TRadio name="requestHostType" :value="0" v-model="ctx.requestHostType">跟随CDN服务</TRadio>
|
|
|
<TRadio name="requestHostType" :value="1" v-model="ctx.requestHostType">跟随源站</TRadio>
|
|
@@ -86,7 +86,7 @@ const ctx = ctxRef(new Context(), {
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr v-show="ctx.requirePlan || ctx.userPlans.length > 0">
|
|
|
- <td>绑定套餐 <span v-if="ctx.requirePlan">*</span></td>
|
|
|
+ <td>绑定套餐<span v-if="ctx.requirePlan" class="text-red-500">*</span></td>
|
|
|
<td>
|
|
|
<input type="hidden" name="isChanged" value="1"/>
|
|
|
<span v-if="ctx.userPlans.length == 0 && !ctx.requirePlan" class="disabled">当前还没有可以使用的套餐。</span>
|