<!-- Version Management -->
<a-modal :zIndex="1000" @cancel=" = false" :footer="null" :title="" v-model:open="" width="70%" append-to-body>
<el-row :gutter="64" style="margin-left: -24px;margin-right: -24px;">
<el-col :span="20" :xs="64" style="width: 100%">
<el-table ref="publishRef" :data="publishList" border highlight-current-row
style="width: 100%">
<el-table-column label="Process ID Key" align="center" prop="key" :show-overflow-tooltip="true" />
<el-table-column label="Process Name" align="center" :show-overflow-tooltip="true">
<template #default="scope">
<el-button type="primary" @click="handleProcessView()">
<span>{{ }}</span>
</el-button>
</template>
</el-table-column>
<el-table-column label="Process Version" align="center">
<template #default="scope">
<el-tag size="large" >v{{ }}</el-tag>
</template>
</el-table-column>
<el-table-column label="state" align="center">
<template #default="scope">
<el-tag type="success" v-if=" === 1">activation</el-tag>
<el-tag type="warning" v-if=" === 2">Hang up</el-tag>
</template>
</el-table-column>
<el-table-column label="operate" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button size="small" type="primary" v-if=" === 1" @click="submitChangeState()">Hang up</el-button>
<el-button size="small" type="primary" v-if=" === 2" @click="submitChangeState()">activation</el-button>
<el-button size="small" type="primary" @click="submitDelete()">delete</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="publishTotal>0"
:total="publishTotal"
v-model:page=""
v-model:limit=""
@pagination="getPublishList"
/>
</el-col>
</el-row>
</a-modal>