130 lines
4.1 KiB
Vue
130 lines
4.1 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="app-container">
|
|||
|
|
<!--工具栏-->
|
|||
|
|
<div class="head-container">
|
|||
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
|||
|
|
<crudOperation :permission="permission" />
|
|||
|
|
<!--表单组件-->
|
|||
|
|
<el-dialog
|
|||
|
|
:close-on-click-modal="false"
|
|||
|
|
:before-close="crud.cancelCU"
|
|||
|
|
:visible.sync="crud.status.cu > 0"
|
|||
|
|
:title="crud.status.title"
|
|||
|
|
width="500px"
|
|||
|
|
>
|
|||
|
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="80px">
|
|||
|
|
<el-form-item v-if="false" label="舞台标识" prop="stage_uuid">
|
|||
|
|
<el-input v-model="form.stage_uuid" style="width: 370px;" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="舞台编码" prop="stage_code">
|
|||
|
|
<el-input v-model="form.stage_code" style="width: 370px;" />
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="舞台名字" prop="stage_name">
|
|||
|
|
<el-input v-model="form.stage_name" style="width: 370px;" />
|
|||
|
|
</el-form-item>
|
|||
|
|
</el-form>
|
|||
|
|
<div slot="footer" class="dialog-footer">
|
|||
|
|
<el-button type="text" @click="crud.cancelCU">取消</el-button>
|
|||
|
|
<el-button :loading="crud.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|||
|
|
</div>
|
|||
|
|
</el-dialog>
|
|||
|
|
<!--表格渲染-->
|
|||
|
|
<el-table
|
|||
|
|
ref="table"
|
|||
|
|
v-loading="crud.loading"
|
|||
|
|
:data="crud.data"
|
|||
|
|
size="small"
|
|||
|
|
style="width: 100%;"
|
|||
|
|
@selection-change="crud.selectionChangeHandler"
|
|||
|
|
>
|
|||
|
|
<el-table-column type="selection" width="55" />
|
|||
|
|
<el-table-column v-if="false" prop="stage_uuid" label="舞台标识" />
|
|||
|
|
<el-table-column prop="stage_code" label="舞台编码" />
|
|||
|
|
<el-table-column prop="stage_name" label="舞台名字" />
|
|||
|
|
<el-table-column prop="stage_data" label="舞台数据" show-overflow-tooltip />
|
|||
|
|
<el-table-column prop="create_name" label="创建者" />
|
|||
|
|
<el-table-column prop="create_time" label="创建时间" min-width="135" />
|
|||
|
|
<el-table-column prop="update_name" label="修改者" />
|
|||
|
|
<el-table-column prop="update_time" label="修改时间" min-width="135" />
|
|||
|
|
<el-table-column v-permission="['admin','stage:edit','stage:del']" label="操作" width="150px" align="center">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<udOperation
|
|||
|
|
:data="scope.row"
|
|||
|
|
:permission="permission"
|
|||
|
|
/>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
</el-table>
|
|||
|
|
<!--分页组件-->
|
|||
|
|
<pagination />
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import crudStage from '@/api/logicflow/stage'
|
|||
|
|
import CRUD, { presenter, header, form, crud } from '@crud/crud'
|
|||
|
|
import crudOperation from '@crud/CRUD.operation'
|
|||
|
|
import udOperation from '@crud/UD.operation'
|
|||
|
|
import pagination from '@crud/Pagination'
|
|||
|
|
|
|||
|
|
const defaultForm = {
|
|||
|
|
stage_uuid: null,
|
|||
|
|
stage_code: null,
|
|||
|
|
stage_name: null,
|
|||
|
|
stage_data: null,
|
|||
|
|
is_active: null,
|
|||
|
|
is_delete: null,
|
|||
|
|
create_by: null,
|
|||
|
|
create_time: null,
|
|||
|
|
update_by: null,
|
|||
|
|
update_time: null
|
|||
|
|
}
|
|||
|
|
export default {
|
|||
|
|
name: 'Stage',
|
|||
|
|
components: { pagination, crudOperation, udOperation },
|
|||
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|||
|
|
cruds() {
|
|||
|
|
return CRUD({
|
|||
|
|
title: '舞台',
|
|||
|
|
url: 'api/stage',
|
|||
|
|
idField: 'stage_uuid',
|
|||
|
|
sort: 'stage_uuid,desc',
|
|||
|
|
crudMethod: { ...crudStage },
|
|||
|
|
optShow: {
|
|||
|
|
add: true,
|
|||
|
|
edit: true,
|
|||
|
|
del: true
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
permission: {
|
|||
|
|
add: ['admin', 'stage:add'],
|
|||
|
|
edit: ['admin', 'stage:edit'],
|
|||
|
|
del: ['admin', 'stage:del']
|
|||
|
|
},
|
|||
|
|
rules: {
|
|||
|
|
stage_code: [
|
|||
|
|
{ required: true, message: '舞台编码不能为空', trigger: 'blur' }
|
|||
|
|
],
|
|||
|
|
stage_name: [
|
|||
|
|
{ required: true, message: '舞台名字不能为空', trigger: 'blur' }
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|||
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|||
|
|
return true
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style scoped>
|
|||
|
|
|
|||
|
|
</style>
|