Commit cc4925b6 authored by FangYuePeng's avatar FangYuePeng

Merge remote-tracking branch 'origin/1.0' into 1.0

parents fd61eb08 4ecee3e9
......@@ -66,3 +66,13 @@ export function exportTeaTrialCourse(query) {
responseType: 'blob'
})
}
export function batchAddTeaTrialCourse(data) {
return request({
url: '/teatrialcourse/batchAdd',
method: 'post',
data,
headers: {
'Content-Type': 'application/json;charset=UTF-8' // 接口修改传参类型
}
})
}
......@@ -148,7 +148,7 @@
<el-form-item label="难度等级" prop="value2">
<el-select v-model="form.value2" placeholder="难度等级" clearable>
<el-option
v-for="item in value2Options"
v-for="item in valueOptions"
:key="item.value"
:label="item.label"
:value="item.value"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment