|
@@ -1,6 +1,6 @@
|
|
|
<!--
|
|
|
* @Date: 2022-03-24 09:55:13
|
|
|
- * @LastEditTime: 2022-05-12 13:53:55
|
|
|
+ * @LastEditTime: 2022-05-12 16:46:25
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 服务管理-编辑服务
|
|
|
* have a nice day!
|
|
@@ -582,9 +582,10 @@ export default {
|
|
|
this.operateDialogType = type
|
|
|
},
|
|
|
btnEditClickHandler(obj, type) {
|
|
|
- Object.keys(this.outputForm).forEach(key => {
|
|
|
- this.outputForm[key] = obj[key]
|
|
|
- })
|
|
|
+ // Object.keys(this.outputForm).forEach(key => {
|
|
|
+ // this.outputForm[key] = obj[key]
|
|
|
+ // })
|
|
|
+ this.outputForm = obj
|
|
|
this.showOperateDialog(type)
|
|
|
},
|
|
|
// 关联编辑-提交
|
|
@@ -611,13 +612,19 @@ export default {
|
|
|
const outputTarget = {
|
|
|
...this.outputForm
|
|
|
}
|
|
|
- if (typeof outputTarget.serviceOutputID !== 'undefined') {
|
|
|
- await this.updateServiceOutput('update', outputTarget)
|
|
|
- } else {
|
|
|
- await this.updateServiceOutput('create', outputTarget)
|
|
|
+ try {
|
|
|
+ let message
|
|
|
+ if (outputTarget.serviceOutputID ?? true) {
|
|
|
+ message = await this.updateServiceOutput('update', outputTarget)
|
|
|
+ } else {
|
|
|
+ message = await this.updateServiceOutput('create', outputTarget)
|
|
|
+ }
|
|
|
+ this.$message.success(message ?? '成功')
|
|
|
+ await this.queryAll()
|
|
|
+ this.hideOperateDialog()
|
|
|
+ } catch (error) {
|
|
|
+ this.$message.error(error)
|
|
|
}
|
|
|
- await this.queryAll()
|
|
|
- this.hideOperateDialog()
|
|
|
},
|
|
|
// 关联编辑-隐藏弹框
|
|
|
hideOperateDialog() {
|
|
@@ -633,10 +640,13 @@ export default {
|
|
|
},
|
|
|
// 关联删除-提交
|
|
|
async deleteSubmitHandler() {
|
|
|
- const message = await this.dataInMap(this.deleteDialogType, 'operate')(
|
|
|
- 'delete',
|
|
|
- this.delObj[this.dataInMap(this.deleteDialogType, 'key')]
|
|
|
- )
|
|
|
+ const operate = this.dataInMap(this.deleteDialogType, 'operate')
|
|
|
+ let message
|
|
|
+ if (this.deleteDialogType === 'output') {
|
|
|
+ message = await operate('delete', this.delObj)
|
|
|
+ } else {
|
|
|
+ message = await operate('delete', this.delObj[this.dataInMap(this.deleteDialogType, 'key')])
|
|
|
+ }
|
|
|
this.$message.success(message ?? '成功')
|
|
|
await this.queryAll()
|
|
|
this.hideDeleteDialog()
|