mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
5.0
This commit is contained in:
@@ -10,6 +10,7 @@ import {
|
||||
handlePaginationChange,
|
||||
handleSave,
|
||||
handleSearch,
|
||||
isCustomRegSource,
|
||||
pageInfo,
|
||||
searchFormColumns,
|
||||
searchFormData,
|
||||
@@ -40,6 +41,7 @@ import {
|
||||
pageSizeList: [10, 20, 50, 100],
|
||||
align: 'right'
|
||||
}"
|
||||
adaptive
|
||||
@paginationChange="handlePaginationChange"
|
||||
>
|
||||
<template #title>
|
||||
@@ -56,7 +58,49 @@ import {
|
||||
labelWidth: '100px',
|
||||
labelPosition: 'right'
|
||||
}"
|
||||
:hasErrorTip="false"
|
||||
@confirm="handleSave"
|
||||
/>
|
||||
>
|
||||
<template #plus-field-application>
|
||||
<el-input
|
||||
v-if="isCustomRegSource"
|
||||
v-model="editFormData.application"
|
||||
placeholder="请输入所属应用"
|
||||
/>
|
||||
<span v-else>
|
||||
{{ editFormData.application }}
|
||||
</span>
|
||||
</template>
|
||||
<template #plus-field-apiName>
|
||||
<el-input
|
||||
v-if="isCustomRegSource"
|
||||
v-model="editFormData.apiName"
|
||||
placeholder="请输入接口名称,如:goods.get"
|
||||
/>
|
||||
<span v-else>
|
||||
{{ editFormData.apiName }}
|
||||
</span>
|
||||
</template>
|
||||
<template #plus-field-apiVersion>
|
||||
<el-input
|
||||
v-if="isCustomRegSource"
|
||||
v-model="editFormData.apiVersion"
|
||||
placeholder="请输入接口版本,如:1.0"
|
||||
/>
|
||||
<span v-else>
|
||||
{{ editFormData.apiVersion }}
|
||||
</span>
|
||||
</template>
|
||||
<template #plus-field-description>
|
||||
<el-input
|
||||
v-if="isCustomRegSource"
|
||||
v-model="editFormData.description"
|
||||
placeholder="请输入接口描述"
|
||||
/>
|
||||
<span v-else>
|
||||
{{ editFormData.description }}
|
||||
</span>
|
||||
</template>
|
||||
</PlusDialogForm>
|
||||
</el-card>
|
||||
</template>
|
||||
|
Reference in New Issue
Block a user