|
|
@@ -11,7 +11,12 @@
|
|
|
<el-col :span="2">
|
|
|
<div class="node-type">Bug</div>
|
|
|
</el-col>
|
|
|
- <el-col :span="12" :offset="2">
|
|
|
+ <el-col :span="4">
|
|
|
+ <template class="entry-row">
|
|
|
+ <span>#{{id}}</span>
|
|
|
+ </template>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
<template class="entry-row" v-if="isEditing">
|
|
|
<el-input placeholder="请输入标题" size="mini" style="width: 200px;display: inline;" v-model="editedBugRecord.title"/>
|
|
|
</template>
|
|
|
@@ -226,6 +231,7 @@ export default {
|
|
|
BugListAPI.updateBugRecord(param).then((res) => {
|
|
|
this.isEditing = false;
|
|
|
this.$emit('bug-record-update');
|
|
|
+ this.showDrawer = false;
|
|
|
});
|
|
|
this.confirmLoading = false;
|
|
|
},
|