flowabale

This commit is contained in:
卢序振 2023-11-08 10:44:27 +08:00
parent f26d33fb4c
commit 1c9e3522d9
3 changed files with 4 additions and 9 deletions

View File

@ -31,7 +31,6 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['flowable:model:add']"
>新增</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@ -65,7 +64,7 @@
type="primary"
icon="el-icon-edit"
@click="design(scope.row)"
v-hasPermi="['flowable:model:design']"
>设计</el-button>
<el-button
size="small"
@ -79,14 +78,14 @@
type="primary"
icon="el-icon-edit"
@click="exportXml(scope.row)"
v-hasPermi="['flowable:model:exportXml']"
>导出</el-button>
<el-button
size="small"
type="danger"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['flowable:model:remove']"
>删除</el-button>
</template>
</el-table-column>

View File

@ -40,28 +40,24 @@
type="primary"
icon="el-icon-edit"
@click="show(scope.row)"
v-hasPermi="['flowable:model:show']"
>查看</el-button>
<el-button
size="small"
type="primary"
icon="el-icon-edit"
@click="flowChart(scope.row)"
v-hasPermi="['flowable:model:flowChart']"
>流程图</el-button>
<el-button
size="small"
type="primary"
icon="el-icon-edit"
@click="model(scope.row)"
v-hasPermi="['flowable:model:model']"
>转为模型</el-button>
<el-button
size="small"
type="danger"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['flowable:model:remove']"
>删除</el-button>
</template>
</el-table-column>

View File

@ -35,7 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://localhost:8080`,
target: `http://localhost:9150`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''