You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.5 KiB
119 lines
4.5 KiB
<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 label="id" prop="id"> |
|
<el-input v-model="form.id" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="合作模式名称"> |
|
<el-input v-model="form.name" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="合作模式简介"> |
|
<el-input v-model="form.content" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="合作模式阶段数"> |
|
<el-input v-model="form.stageNums" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="createTime"> |
|
<el-input v-model="form.createTime" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="updateTime"> |
|
<el-input v-model="form.updateTime" style="width: 370px;" /> |
|
</el-form-item> |
|
<el-form-item label="isDel"> |
|
<el-input v-model="form.isDel" 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="columns.visible('id')" prop="id" label="id" /> |
|
<el-table-column v-if="columns.visible('name')" prop="name" label="合作模式名称" /> |
|
<el-table-column v-if="columns.visible('content')" prop="content" label="合作模式简介" /> |
|
<el-table-column v-if="columns.visible('stageNums')" prop="stageNums" label="合作模式阶段数" /> |
|
<el-table-column v-permission="['admin','CooperationMode:edit','CooperationMode: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 crudCooperationMode from '@/api/CooperationMode' |
|
import CRUD, { presenter, header, form, crud } from '@crud/crud' |
|
import rrOperation from '@crud/RR.operation' |
|
import crudOperation from '@crud/CRUD.operation' |
|
import udOperation from '@crud/UD.operation' |
|
import pagination from '@crud/Pagination' |
|
import MaterialList from "@/components/material"; |
|
|
|
// crud交由presenter持有 |
|
const defaultCrud = CRUD({ title: '合作模式', url: 'api/CooperationMode', sort: 'id,desc', crudMethod: { ...crudCooperationMode }}) |
|
const defaultForm = { id: null, name: null, content: null, stageNums: null, createTime: null, updateTime: null, isDel: null } |
|
export default { |
|
name: 'CooperationMode', |
|
components: { pagination, crudOperation, rrOperation, udOperation ,MaterialList}, |
|
mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()], |
|
data() { |
|
return { |
|
|
|
permission: { |
|
add: ['admin', 'CooperationMode:add'], |
|
edit: ['admin', 'CooperationMode:edit'], |
|
del: ['admin', 'CooperationMode:del'] |
|
}, |
|
rules: { |
|
id: [ |
|
{ required: true, message: '不能为空', trigger: 'blur' } |
|
] |
|
} } |
|
}, |
|
watch: { |
|
}, |
|
methods: { |
|
// 获取数据前设置好接口地址 |
|
[CRUD.HOOK.beforeRefresh]() { |
|
return true |
|
}, // 新增与编辑前做的操作 |
|
[CRUD.HOOK.afterToCU](crud, form) { |
|
}, |
|
} |
|
} |
|
|
|
|
|
|
|
</script> |
|
|
|
<style scoped> |
|
.table-img { |
|
display: inline-block; |
|
text-align: center; |
|
background: #ccc; |
|
color: #fff; |
|
white-space: nowrap; |
|
position: relative; |
|
overflow: hidden; |
|
vertical-align: middle; |
|
width: 32px; |
|
height: 32px; |
|
line-height: 32px; |
|
} |
|
</style>
|
|
|