rev: 字段修改

This commit is contained in:
2023-04-10 20:02:17 +08:00
parent e16a1fd440
commit 204d771420
2 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ export function getTaskStatus() {
export function getTaskType() { export function getTaskType() {
return request({ return request({
url: 'api/task/taskType', url: 'api/task/taskType',
method: 'get' method: 'post'
}) })
} }
export function getAcsTaskType() { export function getAcsTaskType() {

View File

@@ -76,10 +76,10 @@
> >
<el-option <el-option
v-for="item in taskTypeList" v-for="item in taskTypeList"
:key="item.code" :key="item.value"
clearable clearable
:label="item.name" :label="item.text"
:value="item.code" :value="item.value"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>