Files
longdianningxing/acs2/nladmin-ui/src/views/system/logicflow/index.vue

143 lines
5.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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="100px">
<el-form-item v-if="false" :label="$t('stage.stage_table_title.stage_uuid')" prop="stage_uuid">
<el-input v-model="form.stage_uuid" style="width: 370px;" />
</el-form-item>
<el-form-item :label="$t('stage.stage_table_title.stage_code')" prop="stage_code">
<el-input v-model="form.stage_code" style="width: 370px;" />
</el-form-item>
<el-form-item :label="$t('stage.stage_table_title.stage_name')" prop="stage_name">
<el-input v-model="form.stage_name" style="width: 370px;" />
</el-form-item>
<el-form-item :label="$t('stage.stage_table_title.in_stage_name')" prop="in_stage_name">
<el-input v-model="form.in_stage_name" style="width: 370px;" />
</el-form-item>
<el-form-item :label="$t('stage.stage_table_title.en_stage_name')" prop="en_stage_name">
<el-input v-model="form.en_stage_name" style="width: 370px;" />
</el-form-item>
<el-form-item :label="$t('stage.stage_table_title.zh_stage_name')" prop="zh_stage_name">
<el-input v-model="form.zh_stage_name" style="width: 370px;" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="text" @click="crud.cancelCU">{{ $t('auto.common.Cancel') }}</el-button>
<el-button :loading="crud.cu === 2" type="primary" @click="crud.submitCU">{{ $t('auto.common.Confirm') }}</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="$t('stage.stage_table_title.stage_uuid')" />
<el-table-column prop="stage_code" :label="$t('stage.stage_table_title.stage_code')" :min-width="flexWidth('stage_code',crud.data,$t('stage.stage_table_title.stage_code'))" />
<el-table-column prop="stage_name" :label="$t('stage.stage_table_title.stage_name')" :min-width="flexWidth('stage_name',crud.data,$t('stage.stage_table_title.stage_name'))" />
<el-table-column prop="stage_data" :label="$t('stage.stage_table_title.stage_data')" show-overflow-tooltip />
<el-table-column prop="create_name" :label="$t('task.select.Creator')" :min-width="flexWidth('create_name',crud.data,$t('task.select.Creator'))" />
<el-table-column prop="create_time" :label="$t('task.select.Create_time')" :min-width="flexWidth('create_time',crud.data,$t('task.select.Create_time'))" />
<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="$t('task.select.Operation')" 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'
import i18n from '@/i18n'
const defaultForm = {
stage_uuid: null,
stage_code: null,
en_stage_name: null,
in_stage_name: null,
zh_stage_name: 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: i18n.t('stage.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: i18n.t('stage.stage_table_title.message1'), trigger: 'blur' }
],
stage_name: [
{ required: true, message: i18n.t('stage.stage_table_title.message2'), trigger: 'blur' }
]
}
}
},
methods: {
// 钩子在获取表格数据之前执行false 则代表不获取数据
[CRUD.HOOK.beforeRefresh]() {
return true
}
}
}
</script>
<style scoped>
</style>