fix: 调整脚本根目录
This commit is contained in:
@@ -57,7 +57,7 @@
|
|||||||
<h3>基本信息</h3>
|
<h3>基本信息</h3>
|
||||||
</div>
|
</div>
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :span="12">
|
<a-col :span="8">
|
||||||
<a-form-item name="name">
|
<a-form-item name="name">
|
||||||
<template #label>
|
<template #label>
|
||||||
<a-tooltip title="为脚本设置一个易于识别的名称">
|
<a-tooltip title="为脚本设置一个易于识别的名称">
|
||||||
@@ -75,34 +75,8 @@
|
|||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item name="type">
|
|
||||||
<template #label>
|
|
||||||
<a-tooltip title="脚本类型创建后无法修改">
|
|
||||||
<span class="form-label">
|
|
||||||
脚本类型
|
|
||||||
<QuestionCircleOutlined class="help-icon" />
|
|
||||||
</span>
|
|
||||||
</a-tooltip>
|
|
||||||
</template>
|
|
||||||
<a-select v-model:value="formData.type" disabled size="large">
|
|
||||||
<a-select-option value="MAA">MAA脚本</a-select-option>
|
|
||||||
<a-select-option value="General">通用脚本</a-select-option>
|
|
||||||
</a-select>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- MAA脚本配置 -->
|
|
||||||
<template v-if="formData.type === 'MAA'">
|
<template v-if="formData.type === 'MAA'">
|
||||||
<!-- 路径配置 -->
|
<a-col :span="16">
|
||||||
<div class="form-section">
|
|
||||||
<div class="section-header">
|
|
||||||
<h3>路径配置</h3>
|
|
||||||
</div>
|
|
||||||
<a-row :gutter="24">
|
|
||||||
<a-col :span="24">
|
|
||||||
<a-form-item name="path">
|
<a-form-item name="path">
|
||||||
<template #label>
|
<template #label>
|
||||||
<a-tooltip title="选择MAA.exe所在的文件夹路径">
|
<a-tooltip title="选择MAA.exe所在的文件夹路径">
|
||||||
@@ -129,9 +103,41 @@
|
|||||||
</a-input-group>
|
</a-input-group>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
</template>
|
||||||
|
<template v-if="formData.type === 'General'">
|
||||||
|
<a-col :span="16">
|
||||||
|
<a-form-item name="rootPath">
|
||||||
|
<template #label>
|
||||||
|
<a-tooltip title="脚本的根目录路径,其余路径将基于此目录自动调整">
|
||||||
|
<span class="form-label">
|
||||||
|
脚本根目录
|
||||||
|
<QuestionCircleOutlined class="help-icon" />
|
||||||
|
</span>
|
||||||
|
</a-tooltip>
|
||||||
|
</template>
|
||||||
|
<a-input-group compact class="path-input-group">
|
||||||
|
<a-input
|
||||||
|
v-model:value="generalConfig.Info.RootPath"
|
||||||
|
placeholder="请选择脚本根目录"
|
||||||
|
size="large"
|
||||||
|
class="path-input"
|
||||||
|
readonly
|
||||||
|
/>
|
||||||
|
<a-button size="large" @click="selectRootPath" class="path-button">
|
||||||
|
<template #icon>
|
||||||
|
<FolderOpenOutlined />
|
||||||
|
</template>
|
||||||
|
选择文件夹
|
||||||
|
</a-button>
|
||||||
|
</a-input-group>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</template>
|
||||||
</a-row>
|
</a-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- MAA脚本配置 -->
|
||||||
|
<template v-if="formData.type === 'MAA'">
|
||||||
<!-- 运行配置 -->
|
<!-- 运行配置 -->
|
||||||
<div class="form-section">
|
<div class="form-section">
|
||||||
<div class="section-header">
|
<div class="section-header">
|
||||||
@@ -289,33 +295,6 @@
|
|||||||
<h3>脚本配置</h3>
|
<h3>脚本配置</h3>
|
||||||
</div>
|
</div>
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item name="rootPath">
|
|
||||||
<template #label>
|
|
||||||
<a-tooltip title="脚本的根目录路径,其余路径将基于此目录自动调整">
|
|
||||||
<span class="form-label">
|
|
||||||
根目录
|
|
||||||
<QuestionCircleOutlined class="help-icon" />
|
|
||||||
</span>
|
|
||||||
</a-tooltip>
|
|
||||||
</template>
|
|
||||||
<a-input-group compact class="path-input-group">
|
|
||||||
<a-input
|
|
||||||
v-model:value="generalConfig.Info.RootPath"
|
|
||||||
placeholder="请选择脚本根目录"
|
|
||||||
size="large"
|
|
||||||
class="path-input"
|
|
||||||
readonly
|
|
||||||
/>
|
|
||||||
<a-button size="large" @click="selectRootPath" class="path-button">
|
|
||||||
<template #icon>
|
|
||||||
<FolderOpenOutlined />
|
|
||||||
</template>
|
|
||||||
选择文件夹
|
|
||||||
</a-button>
|
|
||||||
</a-input-group>
|
|
||||||
</a-form-item>
|
|
||||||
</a-col>
|
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item>
|
<a-form-item>
|
||||||
<template #label>
|
<template #label>
|
||||||
@@ -343,13 +322,7 @@
|
|||||||
</a-input-group>
|
</a-input-group>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
<a-col :span="6">
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 游戏配置 -->
|
|
||||||
<div class="form-section">
|
|
||||||
<a-row :gutter="24">
|
|
||||||
<a-col :span="12">
|
|
||||||
<a-form-item>
|
<a-form-item>
|
||||||
<template #label>
|
<template #label>
|
||||||
<a-tooltip title="启动脚本任务时需要添加的附加命令,详细语法参见官网文档">
|
<a-tooltip title="启动脚本任务时需要添加的附加命令,详细语法参见官网文档">
|
||||||
@@ -367,7 +340,7 @@
|
|||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="6">
|
||||||
<a-form-item>
|
<a-form-item>
|
||||||
<template #label>
|
<template #label>
|
||||||
<a-tooltip title="开启后仅在脚本进程及其所有子进程全部结束时认定脚本进程结束">
|
<a-tooltip title="开启后仅在脚本进程及其所有子进程全部结束时认定脚本进程结束">
|
||||||
|
|||||||
Reference in New Issue
Block a user