|
@@ -6,6 +6,9 @@
|
|
|
is-statuser
|
|
|
is-slot
|
|
|
is-preser
|
|
|
+ slot-permission="slot_edit_page"
|
|
|
+ save-permission="service_save_button"
|
|
|
+ log-permission="view_log_button"
|
|
|
@add-journal-form="logDialogShow"
|
|
|
@add-slot-form="slotDialogShow"
|
|
|
@preser-form="serviceSubmitHandler"
|
|
@@ -280,6 +283,7 @@
|
|
|
<Minheader
|
|
|
:is-statuser="true"
|
|
|
:is-auth="true"
|
|
|
+ power-data="new_service_output_location_button"
|
|
|
@addForm="outputDialogShow"
|
|
|
>
|
|
|
<template #header>
|
|
@@ -742,11 +746,13 @@ const outputTableButtonGroup = [
|
|
|
name: '编辑',
|
|
|
className: 'editBtn',
|
|
|
param: 1,
|
|
|
+ is: 'service_edit_output_location_button',
|
|
|
},
|
|
|
{
|
|
|
name: '删除',
|
|
|
className: 'delBtn',
|
|
|
param: 2,
|
|
|
+ is: 'service_delete_output_location_button',
|
|
|
},
|
|
|
]
|
|
|
const outputTableButtonClickHandler = (
|
|
@@ -814,7 +820,7 @@ const outputForm = reactive<CommonData>({})
|
|
|
const outputSubmitHandler = async () => {
|
|
|
try {
|
|
|
const dataContent = {
|
|
|
- serviceID
|
|
|
+ serviceID,
|
|
|
}
|
|
|
switch (outputDialogType.value) {
|
|
|
case 'add':
|
|
@@ -968,11 +974,13 @@ const slotTableButtonGroups = [
|
|
|
name: '编辑',
|
|
|
className: 'editBtn',
|
|
|
param: 1,
|
|
|
+ is: 'machine_editing_button'
|
|
|
},
|
|
|
{
|
|
|
name: '删除',
|
|
|
className: 'delBtn',
|
|
|
param: 2,
|
|
|
+ is: 'machine_deletion_button'
|
|
|
},
|
|
|
]
|
|
|
const slotTableButtonClickHandler = (
|