|
@@ -188,13 +188,19 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
open_new_template(val) { // 点击新建模版
|
|
open_new_template(val) { // 点击新建模版
|
|
- if (val.creator === localStorage.getItem('username')) {
|
|
|
|
- val ? this.templateId = val.id : this.templateId = '新建模版'
|
|
|
|
|
|
+ val ? this.templateId = val.id : this.templateId = '新建模版'
|
|
|
|
+ if (this.templateId === '新建模版') {
|
|
this.reportTamplate = true // 编辑区域
|
|
this.reportTamplate = true // 编辑区域
|
|
this.reportHome = false // 步骤条
|
|
this.reportHome = false // 步骤条
|
|
this.showOne = false // 模版选择
|
|
this.showOne = false // 模版选择
|
|
} else {
|
|
} else {
|
|
- this.$message({ message: '没有权限,请联系创建人执行操作!', type: 'warning', duration: 1000, offset: 150 })
|
|
|
|
|
|
+ if (val.creator === localStorage.getItem('username')) {
|
|
|
|
+ this.reportTamplate = true // 编辑区域
|
|
|
|
+ this.reportHome = false // 步骤条
|
|
|
|
+ this.showOne = false // 模版选择
|
|
|
|
+ } else {
|
|
|
|
+ this.$message({ message: '没有权限,请联系创建人执行操作!', type: 'warning', duration: 1000, offset: 150 })
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|