fix(测试跟踪): 脑图模式下,新增用例状态默认值问题
--bug=1017739 --user=宋昌昌 【测试跟踪】github#18186-功能用例“脑图”模式下,新增用例,保存不上 https://www.tapd.cn/55049933/s/1259204
This commit is contained in:
parent
c7567242cc
commit
6876d9b9d5
|
@ -168,7 +168,7 @@ export function getMinderExtraNode(groupId, nodeId) {
|
|||
}
|
||||
|
||||
export function testCaseMinderEdit(param) {
|
||||
return post(BASE_URL + '/minder/edit', param);
|
||||
return post(BASE_URL + 'minder/edit', param);
|
||||
}
|
||||
|
||||
export function editTestReviewTestCaseOrder(request) {
|
||||
|
|
|
@ -458,7 +458,7 @@ export default {
|
|||
remark: "",
|
||||
stepDescription: "",
|
||||
expectedResult: "",
|
||||
status: this.testCaseDefaultValue['用例状态'],
|
||||
status: this.testCaseDefaultValue['用例状态'] ? this.testCaseDefaultValue['用例状态'] : 'Prepare',
|
||||
steps: [{
|
||||
num: 1,
|
||||
desc: '',
|
||||
|
|
Loading…
Reference in New Issue