9 changed files with 1890 additions and 0 deletions
@ -0,0 +1,50 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamGroup/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamGroup/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamGroup/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamGroup/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamGroup/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,50 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamStaff/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamStaff/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamStaff/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamStaff/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/logpm-basic/basicTeamStaff/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,94 @@
|
||||
export default { |
||||
expand: false, |
||||
index: true, |
||||
border: true, |
||||
selection: true, |
||||
column: [ |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "租户号", |
||||
prop: "tenantId", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建人", |
||||
prop: "createUser", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建时间", |
||||
prop: "createTime", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新人", |
||||
prop: "updateUser", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新时间", |
||||
prop: "updateTime", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "状态", |
||||
prop: "status", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "是否已删除", |
||||
prop: "isDeleted", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建部门", |
||||
prop: "createDept", |
||||
display: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "模板名称", |
||||
prop: "templateName", |
||||
}, |
||||
{ |
||||
label: "模板类型", |
||||
prop: "templateType", |
||||
}, |
||||
{ |
||||
label: "模板版本", |
||||
prop: "version", |
||||
}, |
||||
// {
|
||||
// label: "预留1",
|
||||
// prop: "reserve1",
|
||||
// },
|
||||
// {
|
||||
// label: "预留2",
|
||||
// prop: "reserve2",
|
||||
// },
|
||||
// {
|
||||
// label: "预留3",
|
||||
// prop: "reserve3",
|
||||
// },
|
||||
// {
|
||||
// label: "预留4",
|
||||
// prop: "reserve4",
|
||||
// },
|
||||
// {
|
||||
// label: "预留5",
|
||||
// prop: "reserve5",
|
||||
// },
|
||||
] |
||||
} |
@ -0,0 +1,198 @@
|
||||
export default { |
||||
height:'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: true, |
||||
selection: true, |
||||
dialogClickModal: false, |
||||
column: [ |
||||
{ |
||||
label: "租户号", |
||||
prop: "tenantId", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建人", |
||||
prop: "createUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建时间", |
||||
prop: "createTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新人", |
||||
prop: "updateUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新时间", |
||||
prop: "updateTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "状态", |
||||
prop: "status", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "是否已删除", |
||||
prop: "isDeleted", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建部门", |
||||
prop: "createDept", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留1", |
||||
prop: "reserve1", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留2", |
||||
prop: "reserve2", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留3", |
||||
prop: "reserve3", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留4", |
||||
prop: "reserve4", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留5", |
||||
prop: "reserve5", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "组名", |
||||
prop: "groupName", |
||||
type: "input", |
||||
span: 24, |
||||
rules: [{ |
||||
required: true, |
||||
message: "请输入组名", |
||||
trigger: "blur" |
||||
}], |
||||
}, |
||||
{ |
||||
label: "归属", |
||||
prop: "belongTo", |
||||
type: "input", |
||||
span: 24, |
||||
rules: [{ |
||||
required: true, |
||||
message: "请输入归属", |
||||
trigger: "blur" |
||||
}], |
||||
}, |
||||
{ |
||||
label: "班组类型", |
||||
prop: "groupType", |
||||
type: "select", |
||||
dicUrl: "/blade-system/dict/dictionary?code=team_type", |
||||
dataType: "number", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey" |
||||
}, |
||||
span: 24, |
||||
rules: [{ |
||||
required: true, |
||||
message: "请输入班组类型", |
||||
trigger: "blur" |
||||
}], |
||||
}, |
||||
{ |
||||
label: "班组人员", |
||||
prop: "staffInfos", |
||||
hide: true, |
||||
type: "select", |
||||
multiple: true, |
||||
dicUrl: "/blade-system/dict/dictionary?code=team_type", |
||||
dataType: "string", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey" |
||||
}, |
||||
span: 24, |
||||
rules: [{ |
||||
required: true, |
||||
message: "请输入班组类型", |
||||
trigger: "blur" |
||||
}], |
||||
}, |
||||
] |
||||
} |
@ -0,0 +1,168 @@
|
||||
export default { |
||||
height:'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: true, |
||||
selection: true, |
||||
dialogClickModal: false, |
||||
column: [ |
||||
{ |
||||
label: "租户号", |
||||
prop: "tenantId", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建人", |
||||
prop: "createUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建时间", |
||||
prop: "createTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新人", |
||||
prop: "updateUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新时间", |
||||
prop: "updateTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "状态", |
||||
prop: "status", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "是否已删除", |
||||
prop: "isDeleted", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建部门", |
||||
prop: "createDept", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留1", |
||||
prop: "reserve1", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留2", |
||||
prop: "reserve2", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留3", |
||||
prop: "reserve3", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留4", |
||||
prop: "reserve4", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留5", |
||||
prop: "reserve5", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "班组ID", |
||||
prop: "teamGroupId", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "姓名", |
||||
prop: "name", |
||||
type: "input", |
||||
}, |
||||
{ |
||||
label: "工号", |
||||
prop: "jobNumber", |
||||
type: "input", |
||||
}, |
||||
{ |
||||
label: "员工表ID", |
||||
prop: "staffId", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
] |
||||
} |
@ -0,0 +1,444 @@
|
||||
<template> |
||||
<basic-container> |
||||
<div class="avue-crud"> |
||||
<el-row :hidden="!search" style="padding:6px 18px"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item> |
||||
<el-form-item label="模板名称:"> |
||||
<el-input v-model="query.templateName" placeholder="请输入模板名称"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="模板类型:"> |
||||
<el-select type="text" v-model="query.templateType" placeholder="请选择模板类型" > |
||||
<el-option |
||||
v-for="item in templateType" |
||||
:key="item.dictKey" |
||||
:label="item.dictValue" |
||||
:value="item.sort"> |
||||
</el-option> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</el-row> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新 增</el-button> |
||||
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain>删 除</el-button> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button> |
||||
<el-button icon="el-icon-search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<el-table ref="table" v-loading="loading" |
||||
@selection-change="selectionChange" |
||||
:data="data" |
||||
:height="height" |
||||
style="width: 100%" |
||||
:border="option.border"> |
||||
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column> |
||||
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
||||
<el-table-column v-if="option.index" label="序号" type="index" width="80" align="center"> |
||||
</el-table-column> |
||||
<template v-for="(item,index) in option.column"> |
||||
<!-- table字段 --> |
||||
<el-table-column v-if="item.hide!==true" |
||||
:prop="item.prop" |
||||
:label="item.label" |
||||
:width="item.width" |
||||
:key="index"> |
||||
</el-table-column> |
||||
</template> |
||||
<!-- 操作栏模块 --> |
||||
<el-table-column prop="menu" label="操作" :width="220" align="center"> |
||||
<template #="{row}"> |
||||
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button> |
||||
<el-button type="primary" text icon="el-icon-view" @click="handleTemplate(row)">查看模板</el-button> |
||||
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button> |
||||
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
</el-row> |
||||
<el-row> |
||||
<div class="avue-crud__pagination" style="width:100%"> |
||||
<!-- 分页模块 --> |
||||
<el-pagination align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[10, 20, 30, 40, 50, 100]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total"> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
<!-- 表单模块 --> |
||||
<el-dialog :title="title" |
||||
v-model="box" |
||||
width="50%" |
||||
:before-close="beforeClose" |
||||
append-to-body> |
||||
<el-form :disabled="view" ref="form" :rules="validataRules" :model="form" label-width="80px"> |
||||
<!-- 表单字段 --> |
||||
<el-row> |
||||
<el-col :span = "11"> |
||||
<el-form-item label="模板名称:" prop="templateName" label-width="100px"> |
||||
<el-input v-model="form.templateName" placeholder="请输入打印模板名称"/> |
||||
</el-form-item> |
||||
</el-col> |
||||
<el-col :span="12"> |
||||
<el-form-item label="模板类型:" prop="templateType" label-width="100px"> |
||||
<el-select type="text" v-model="form.templateType" placeholder="请选择模板类型" style="width: 80%"> |
||||
<el-option |
||||
v-for="item in templateType" |
||||
:key="item.dictKey" |
||||
:label="item.dictValue" |
||||
:value="item.sort"> |
||||
</el-option> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
|
||||
<el-row> |
||||
<el-col :span = "11"> |
||||
<el-form-item label="模板版本:" prop="version" label-width="100px"> |
||||
<el-input v-model="form.version" placeholder="请输入模板版本"/> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
|
||||
<el-row> |
||||
<el-col :span="11"> |
||||
<el-form-item label="模板附件:" label-width="100px"> |
||||
<el-upload |
||||
v-model:file-list="fileList" |
||||
class="upload-demo" |
||||
:action="action" |
||||
:headers="headers" |
||||
:disabled="view" |
||||
:limit="3" |
||||
:on-change="handleChange" |
||||
:auto-upload="true" |
||||
:on-remove="handleRemove" |
||||
:on-preview="handlePictureCardPreview" |
||||
> |
||||
<el-button type="primary">请选择附件</el-button> |
||||
<!-- <template #tip>--> |
||||
<!-- <div class="el-upload__tip">--> |
||||
<!-- jpg/png files with a size less than 500kb--> |
||||
<!-- </div>--> |
||||
<!-- </template>--> |
||||
</el-upload> |
||||
<!-- <span v-if="!view"> 上传文件只能是<b style="color: #C03639">png,jpeg,jpg</b>格式,大小不能超过<b style="color: #C03639">10M,最多3张</b> </span>--> |
||||
<!-- <el-dialog v-model="dialogVisible" >--> |
||||
<!-- <img w-full :src="dialogImageUrl" alt="Preview Image" />--> |
||||
<!-- </el-dialog>--> |
||||
</el-form-item> |
||||
</el-col> |
||||
|
||||
</el-row> |
||||
|
||||
|
||||
|
||||
|
||||
<!-- <el-form-item label="模板创建人" prop="founder">--> |
||||
<!-- <el-input v-model="form.founder" placeholder="请输入模板创建人"/>--> |
||||
<!-- </el-form-item>--> |
||||
|
||||
|
||||
<!-- <el-form-item label="预留1" prop="reserve1">--> |
||||
<!-- <el-input v-model="form.reserve1" placeholder="请输入预留1"/>--> |
||||
<!-- </el-form-item>--> |
||||
<!-- <el-form-item label="预留2" prop="reserve2">--> |
||||
<!-- <el-input v-model="form.reserve2" placeholder="请输入预留2"/>--> |
||||
<!-- </el-form-item>--> |
||||
<!-- <el-form-item label="预留3" prop="reserve3">--> |
||||
<!-- <el-input v-model="form.reserve3" placeholder="请输入预留3"/>--> |
||||
<!-- </el-form-item>--> |
||||
<!-- <el-form-item label="预留4" prop="reserve4">--> |
||||
<!-- <el-input v-model="form.reserve4" placeholder="请输入预留4"/>--> |
||||
<!-- </el-form-item>--> |
||||
<!-- <el-form-item label="预留5" prop="reserve5">--> |
||||
<!-- <el-input v-model="form.reserve5" placeholder="请输入预留5"/>--> |
||||
<!-- </el-form-item>--> |
||||
</el-form> |
||||
<!-- 表单按钮 --> |
||||
<template #footer> |
||||
<span v-if="!view" class="dialog-footer"> |
||||
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit">提 交</el-button> |
||||
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
||||
</span> |
||||
</template> |
||||
</el-dialog> |
||||
</div> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { getList, getDetail, add, update, remove } from "@/api/basic/basicPrintTemplate"; |
||||
import option from "@/option/basic/basicPrintTemplate1"; |
||||
import { mapGetters } from "vuex"; |
||||
import {getDictionaryBiz} from '@/api/system/dict'; |
||||
import { getToken } from '@/utils/auth'; |
||||
// import type { UploadProps, UploadUserFile } from 'element-plus'; |
||||
|
||||
export default { |
||||
data () { |
||||
return { |
||||
height: 0, |
||||
// 弹框标题 |
||||
title: '', |
||||
// 是否展示弹框 |
||||
box: false, |
||||
// 是否显示查询 |
||||
search: true, |
||||
// 加载中 |
||||
loading: true, |
||||
// 是否为查看模式 |
||||
view: false, |
||||
// 查询信息 |
||||
query: { |
||||
templateName:"", |
||||
templateType:"" |
||||
}, |
||||
// 分页信息 |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 10, |
||||
total: 40 |
||||
}, |
||||
// 表单数据 |
||||
form: {}, |
||||
// 选择行 |
||||
selectionList: [], |
||||
// 表单配置 |
||||
option: option, |
||||
// 表单列表 |
||||
data: [], |
||||
//模板类型 |
||||
templateType:[], |
||||
//文件上传数据列表 |
||||
fileList: [], |
||||
//文件是否未查看 |
||||
view: false, |
||||
validataRules:{ |
||||
templateName:[ |
||||
{ |
||||
required: true, |
||||
trigger: "blur", |
||||
message: "请输入模板名称" |
||||
}], |
||||
templateType:[{ |
||||
required: true, |
||||
trigger: "change", |
||||
message: "请选择模板类型" |
||||
}] |
||||
} |
||||
|
||||
} |
||||
}, |
||||
created() { |
||||
this.getDictionaryBizInfo(); |
||||
}, |
||||
mounted () { |
||||
this.init(); |
||||
this.onLoad(this.page); |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
ids () { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
}, |
||||
//头信息token构建 |
||||
headers() { |
||||
return { |
||||
"Blade-Auth":'Bearer ' + getToken() |
||||
} |
||||
}, |
||||
//附件上传 |
||||
action() { |
||||
return '/api/blade-resource/oss/endpoint/put-file-attach' |
||||
} |
||||
}, |
||||
methods: { |
||||
getDictionaryBizInfo() { |
||||
getDictionaryBiz("print_template").then(res=>{ |
||||
this.templateType = res.data.data; |
||||
}) |
||||
}, |
||||
|
||||
init () { |
||||
this.height = this.setPx(document.body.clientHeight - 340); |
||||
}, |
||||
searchHide () { |
||||
this.search = !this.search; |
||||
}, |
||||
searchChange () { |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchReset () { |
||||
this.query = {}; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page); |
||||
}, |
||||
handleSubmit () { |
||||
this.$refs.form.validate(valid=>{ |
||||
if (valid){ |
||||
if (!this.form.id) { |
||||
add(this.form).then(() => { |
||||
this.box = false; |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
} else { |
||||
update(this.form).then(() => { |
||||
this.box = false; |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}) |
||||
} |
||||
} |
||||
}) |
||||
|
||||
}, |
||||
handleAdd () { |
||||
this.title = '新增' |
||||
this.form = {} |
||||
this.box = true |
||||
this.$refs['form'].resetFields(); |
||||
}, |
||||
handleEdit (row) { |
||||
this.title = '编辑' |
||||
this.box = true |
||||
this.$refs['form'].resetFields(); |
||||
getDetail(row.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
}, |
||||
handleView (row) { |
||||
this.title = '查看' |
||||
this.view = true; |
||||
this.box = true; |
||||
getDetail(row.id).then(res => { |
||||
res.data.data.templateType = parseInt(res.data.data.templateType); |
||||
this.form = res.data.data; |
||||
}); |
||||
}, |
||||
handleDelete () { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning("请选择至少一条数据"); |
||||
return; |
||||
} |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.selectionClear(); |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
rowDel (row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
beforeClose (done) { |
||||
done() |
||||
this.form = {}; |
||||
this.view = false; |
||||
}, |
||||
selectionChange (list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear () { |
||||
this.selectionList = []; |
||||
this.$refs.table.clearSelection(); |
||||
}, |
||||
currentChange (currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
this.onLoad(this.page); |
||||
}, |
||||
sizeChange (pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
this.onLoad(this.page); |
||||
}, |
||||
//移除文件列表数据 |
||||
handleRemove(file, fileList) { |
||||
console.log(file, fileList); |
||||
}, |
||||
|
||||
handlePictureCardPreview(){ |
||||
|
||||
}, |
||||
//查看模板 |
||||
handleTemplate(row){ |
||||
|
||||
}, |
||||
onLoad (page, params = {}) { |
||||
this.loading = true; |
||||
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
||||
const data = res.data.data; |
||||
//编码类型数据回显 |
||||
this.templateType.forEach(item=>{ |
||||
data.records.forEach(type=>{ |
||||
console.log(type); |
||||
console.log(item); |
||||
if (type.templateType === item.sort){ |
||||
type.templateType =item.dictValue |
||||
} |
||||
}) |
||||
}) |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
@ -0,0 +1,436 @@
|
||||
<template> |
||||
<basic-container> |
||||
<div class="avue-crud"> |
||||
<el-form ref="form" |
||||
:rules="validataRules" |
||||
:model="form" |
||||
label-width="80px"> |
||||
<!-- 表单字段 --> |
||||
<el-row> |
||||
<el-col :span = "11"> |
||||
<el-form-item label="模板名称:" prop="templateName" label-width="100px" :rules="validataRules.templateName"> |
||||
<el-input v-model="form.templateName" :disabled="view" placeholder="请输入打印模板名称"/> |
||||
</el-form-item> |
||||
</el-col> |
||||
<el-col :span="12"> |
||||
<el-form-item label="模板类型:" prop="templateType" label-width="100px" :rules="validataRules.templateType"> |
||||
<el-select type="text" v-model="form.templateType" clearable :disabled="view" placeholder="请选择模板类型" style="width: 80%"> |
||||
<el-option |
||||
v-for="item in templateType" |
||||
:key="item.dictKey" |
||||
:label="item.dictValue" |
||||
:value="item.sort"> |
||||
</el-option> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
|
||||
<el-row style="margin-top: 8px"> |
||||
<el-col :span = "11" > |
||||
<el-form-item label="模板版本:" prop="version" label-width="100px" > |
||||
<el-input v-model="form.version" :disabled="view" placeholder="请输入模板版本"/> |
||||
</el-form-item> |
||||
</el-col> |
||||
|
||||
<el-col :span="11"> |
||||
<el-form-item label="模板创建人:" prop="founder" label-width="100px" > |
||||
<el-input v-model="form.founder" :disabled="true" placeholder="系统添加" style="width: 89%"/> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row style="margin-top: 5px"> |
||||
<el-col :span="11" v-if="isUpload"> |
||||
<el-form-item label="模板附件:" label-width="100px" :rules="validataRules.fileName" > |
||||
<el-upload |
||||
v-model:file-list="fileList" |
||||
class="upload-demo" |
||||
:action="action" |
||||
:headers="headers" |
||||
:disabled="view" |
||||
:limit="1" |
||||
:on-change="handleChange" |
||||
:auto-upload="true" |
||||
:on-success="onSuccess" |
||||
:on-remove="handleRemove" |
||||
:on-preview="handlePictureCardPreview" |
||||
> |
||||
<el-button type="primary">请选择附件</el-button> |
||||
<!-- <template #tip>--> |
||||
<!-- <div class="el-upload__tip">--> |
||||
<!-- jpg/png files with a size less than 500kb--> |
||||
<!-- </div>--> |
||||
<!-- </template>--> |
||||
</el-upload> |
||||
<!-- <span v-if="!view"> 上传文件只能是<b style="color: #C03639">png,jpeg,jpg</b>格式,大小不能超过<b style="color: #C03639">10M,最多3张</b> </span>--> |
||||
<!-- <el-dialog v-model="dialogVisible" >--> |
||||
<!-- <img w-full :src="dialogImageUrl" alt="Preview Image" />--> |
||||
<!-- </el-dialog>--> |
||||
</el-form-item> |
||||
</el-col> |
||||
<el-col :span="11" v-if="!isUpload"> |
||||
<el-form-item label="模板文件:" label-width="100px" :rules="validataRules.fileName"> |
||||
<el-link :underline="false" v-model="form.fileName" href="${form.templateUrl}">{{form.fileName}}</el-link> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
|
||||
<!-- <template #footer>--> |
||||
<center> |
||||
<span class="dialog-footer"> |
||||
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit" v-if="submitBtn" size="medium ">提 交</el-button> |
||||
<el-button icon="el-icon-circle-close" @click="$router.go(-1)" size="medium ">返 回</el-button> |
||||
</span> |
||||
</center> |
||||
</el-form> |
||||
|
||||
<!-- </template>--> |
||||
</div> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { getList, getDetail, add, update, remove } from "@/api/basic/basicPrintTemplate"; |
||||
import option from "@/option/basic/basicPrintTemplate1"; |
||||
import { mapGetters } from "vuex"; |
||||
import {getDictionaryBiz} from '@/api/system/dict'; |
||||
import { getToken } from '@/utils/auth'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
height: 0, |
||||
// 弹框标题 |
||||
title: '', |
||||
// 是否展示弹框 |
||||
box: false, |
||||
// 是否显示查询 |
||||
search: true, |
||||
// 加载中 |
||||
loading: true, |
||||
// 是否为查看模式 |
||||
view: false, |
||||
// // 查询信息 |
||||
// query: { |
||||
// templateName:"", |
||||
// templateType:"" |
||||
// }, |
||||
// // 分页信息 |
||||
// page: { |
||||
// currentPage: 1, |
||||
// pageSize: 10, |
||||
// total: 40 |
||||
// }, |
||||
//上传显示控制 |
||||
isUpload :false, |
||||
// 表单数据 |
||||
form: {}, |
||||
// 选择行 |
||||
selectionList: [], |
||||
// 表单配置 |
||||
option: option, |
||||
// 表单列表 |
||||
data: [], |
||||
//模板类型 |
||||
templateType:[], |
||||
//文件上传数据列表 |
||||
fileList: [], |
||||
//文件是否未查看 |
||||
view: false, |
||||
templateId:'', |
||||
submitBtn:false, |
||||
validataRules:{ |
||||
templateName:[ |
||||
{ |
||||
required: true, |
||||
trigger: "blur", |
||||
message: "请输入模板名称" |
||||
}], |
||||
templateType:[{ |
||||
required: true, |
||||
trigger: "blur", |
||||
message: "请选择模板类型" |
||||
}], |
||||
fileName:[{ |
||||
required: true, |
||||
trigger: "blur", |
||||
message: "请选择模板类型" |
||||
}], |
||||
} |
||||
|
||||
} |
||||
}, |
||||
|
||||
mounted() { |
||||
this.init(); |
||||
this.onLoad(this.page); |
||||
}, |
||||
created() { |
||||
//查询字典 |
||||
this.queryDictionary(); |
||||
// watch 路由的参数,以便再次获取数据 |
||||
this.$watch( |
||||
() => this.$route.params, |
||||
() => { |
||||
// this.fetchData(); |
||||
this.onLoad(this.page) |
||||
}, |
||||
// 组件创建完后获取数据, |
||||
// 此时 data 已经被 observed 了 |
||||
{ immediate: true } |
||||
) |
||||
|
||||
}, |
||||
computed: { |
||||
...mapGetters(['permission']), |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(','); |
||||
}, |
||||
// 头信息token构建 |
||||
headers() { |
||||
return { |
||||
"Blade-Auth":'Bearer ' + getToken() |
||||
} |
||||
}, |
||||
//附件上传 |
||||
action() { |
||||
return '/api/blade-resource/oss/endpoint/put-file-attach' |
||||
}, |
||||
|
||||
}, |
||||
methods: { |
||||
//文件上传成功之后获取源文件名称,并且赋值给表单内容进行新增提交 |
||||
onSuccess(){ |
||||
this.form.fileName = this.fileList[0].response.data.originalName |
||||
// console.log("文件上传成功",this.fileList[0].response.data.originalName); |
||||
}, |
||||
init () { |
||||
this.height = this.setPx(document.body.clientHeight - 340); |
||||
}, |
||||
//修改 |
||||
rowUpdate() { |
||||
this.$refs.myForm.validate(valid => { |
||||
if (valid) { |
||||
let row = this.dataForm |
||||
updatepda(row).then(() => { |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
let str = { |
||||
val: true |
||||
} |
||||
this.$emit("returnpda", str); |
||||
}, error => { |
||||
console.log(error); |
||||
}); |
||||
} |
||||
}); |
||||
}, |
||||
queryDictionary() { |
||||
getDictionaryBiz('print_template').then(res => { |
||||
this.templateType = res.data.data; |
||||
}); |
||||
|
||||
|
||||
}, |
||||
//移除文件列表数据 |
||||
handleRemove(file, fileList) { |
||||
console.log(file, fileList); |
||||
}, |
||||
//查看文件 |
||||
handlePictureCardPreview(){ |
||||
|
||||
}, |
||||
init() { |
||||
this.height = this.setPx(document.body.clientHeight - 340); |
||||
}, |
||||
searchHide() { |
||||
this.search = !this.search; |
||||
}, |
||||
searchChange() { |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page); |
||||
}, |
||||
handleSubmit() { |
||||
this.$refs.form.validate(valid => { |
||||
if (valid) { |
||||
if (!this.form.fileName){ |
||||
this.$message({ |
||||
type: 'warning', |
||||
message: '请上传附件!' |
||||
}); |
||||
return ; |
||||
} |
||||
if (!this.form.id) { |
||||
// console.log(">>>>",this.form); |
||||
add(this.form).then(() => { |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
}); |
||||
this.$router.push({ |
||||
path: '/basic/printTemplate/basicPrintTemplate', |
||||
}) |
||||
} else { |
||||
console.log(this.form); |
||||
update(this.form).then(() => { |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
}); |
||||
this.$router.push({ |
||||
path: '/basic/printTemplate/basicPrintTemplate', |
||||
}) |
||||
} |
||||
} else { |
||||
console.log('error submit!!'); |
||||
return false; |
||||
} |
||||
}); |
||||
}, |
||||
handleAdd() { |
||||
this.title = '新增'; |
||||
this.form = {}; |
||||
this.box = true; |
||||
}, |
||||
handleEdit(row) { |
||||
this.title = '编辑'; |
||||
this.box = true; |
||||
getDetail(row.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
}, |
||||
handleView(row) { |
||||
this.title = '查看'; |
||||
this.view = true; |
||||
this.box = true; |
||||
getDetail(row.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning' |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.selectionClear(); |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
}); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning' |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!' |
||||
}); |
||||
}); |
||||
}, |
||||
beforeClose(done) { |
||||
done(); |
||||
this.form = {}; |
||||
this.view = false; |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
this.onLoad(this.page); |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
this.onLoad(this.page); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
// this.box = true; |
||||
this.loading = true; |
||||
console.log("前",this.query); |
||||
console.log("后",this.$route.query.type); |
||||
let id = this.$route.query.id; |
||||
//判断查看和编辑 |
||||
if (!!id){ |
||||
|
||||
getDetail(id).then(res=>{ |
||||
console.log(res.data.data); |
||||
const data = res.data.data; |
||||
// this.page.total = data.total; |
||||
this.templateType.forEach(item=>{ |
||||
if (data.templateType === item.dictKey){ |
||||
data.templateType=item.dictValue; |
||||
} |
||||
}) |
||||
//控制文件 |
||||
if (!data.fileName){ |
||||
this.isUpload = true; |
||||
} |
||||
this.form = data; |
||||
this.loading = false; |
||||
//查看禁用 |
||||
if (this.$route.query.type === 'view'){ |
||||
this.view = true; |
||||
//新增清空表单项 |
||||
}else if (this.$route.query.type === 'edit'){ |
||||
this.view = false; |
||||
this.submitBtn =true; |
||||
} |
||||
this.selectionClear(); |
||||
}) |
||||
}else { |
||||
//打开新增窗口 |
||||
//清空表单 |
||||
this.form={}; |
||||
//提交按钮展示 |
||||
this.submitBtn =true; |
||||
//解除禁用 |
||||
this.view = false; |
||||
this.isUpload = true; |
||||
} |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
<style> |
||||
#avue-view{ |
||||
flex: 1; |
||||
overflow-y: auto; |
||||
overflow-x: hidden; |
||||
margin-bottom: 10px; |
||||
background-color: white; |
||||
} |
||||
</style> |
@ -0,0 +1,225 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud :option="option" |
||||
v-model:search="search" |
||||
v-model:page="page" |
||||
v-model="form" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@selection-change="selectionChange" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad"> |
||||
<template #menu-left> |
||||
<el-button type="danger" |
||||
icon="el-icon-delete" |
||||
plain |
||||
v-if="permission.basicTeamGroup_delete" |
||||
@click="handleDelete">删 除 |
||||
</el-button> |
||||
<el-button type="warning" |
||||
plain |
||||
icon="el-icon-download" |
||||
@click="handleExport">导 出 |
||||
</el-button> |
||||
</template> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import {getList, getDetail, add, update, remove} from "@/api/basic/basicTeamGroup"; |
||||
import option from "@/option/basic/basicTeamGroup"; |
||||
import {mapGetters} from "vuex"; |
||||
import {exportBlob} from "@/api/common"; |
||||
import {getToken} from '@/utils/auth'; |
||||
import {downloadXls} from "@/utils/util"; |
||||
import {dateNow} from "@/utils/date"; |
||||
import NProgress from 'nprogress'; |
||||
import 'nprogress/nprogress.css'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
search: {}, |
||||
loading: true, |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0 |
||||
}, |
||||
selectionList: [], |
||||
option: option, |
||||
data: [] |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
addBtn: this.validData(this.permission.basicTeamGroup_add, false), |
||||
viewBtn: this.validData(this.permission.basicTeamGroup_view, false), |
||||
delBtn: this.validData(this.permission.basicTeamGroup_delete, false), |
||||
editBtn: this.validData(this.permission.basicTeamGroup_edit, false) |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
} |
||||
}, |
||||
methods: { |
||||
rowSave(row, done, loading) { |
||||
add(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
window.console.log(error); |
||||
}); |
||||
}, |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
console.log(error); |
||||
}); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning("请选择至少一条数据"); |
||||
return; |
||||
} |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleExport() { |
||||
let downloadUrl = `/logpm-basic/basicTeamGroup/export-basicTeamGroup?${this.website.tokenHeader}=${getToken()}`; |
||||
const { |
||||
} = this.query; |
||||
let values = { |
||||
}; |
||||
this.$confirm("是否导出数据?", "提示", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}).then(() => { |
||||
NProgress.start(); |
||||
exportBlob(downloadUrl, values).then(res => { |
||||
downloadXls(res.data, `基础班组表${dateNow()}.xlsx`); |
||||
NProgress.done(); |
||||
}) |
||||
}); |
||||
}, |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.crud.toggleSelection(); |
||||
}, |
||||
currentChange(currentPage){ |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize){ |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
|
||||
const { |
||||
} = this.query; |
||||
|
||||
let values = { |
||||
}; |
||||
|
||||
getList(page.currentPage, page.pageSize, values).then(res => { |
||||
const data = res.data.data; |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
@ -0,0 +1,225 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud :option="option" |
||||
v-model:search="search" |
||||
v-model:page="page" |
||||
v-model="form" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@selection-change="selectionChange" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad"> |
||||
<template #menu-left> |
||||
<el-button type="danger" |
||||
icon="el-icon-delete" |
||||
plain |
||||
v-if="permission.basicTeamStaff_delete" |
||||
@click="handleDelete">删 除 |
||||
</el-button> |
||||
<el-button type="warning" |
||||
plain |
||||
icon="el-icon-download" |
||||
@click="handleExport">导 出 |
||||
</el-button> |
||||
</template> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import {getList, getDetail, add, update, remove} from "@/api/basic/basicTeamStaff"; |
||||
import option from "@/option/basic/basicTeamStaff"; |
||||
import {mapGetters} from "vuex"; |
||||
import {exportBlob} from "@/api/common"; |
||||
import {getToken} from '@/utils/auth'; |
||||
import {downloadXls} from "@/utils/util"; |
||||
import {dateNow} from "@/utils/date"; |
||||
import NProgress from 'nprogress'; |
||||
import 'nprogress/nprogress.css'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
search: {}, |
||||
loading: true, |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0 |
||||
}, |
||||
selectionList: [], |
||||
option: option, |
||||
data: [] |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
addBtn: this.validData(this.permission.basicTeamStaff_add, false), |
||||
viewBtn: this.validData(this.permission.basicTeamStaff_view, false), |
||||
delBtn: this.validData(this.permission.basicTeamStaff_delete, false), |
||||
editBtn: this.validData(this.permission.basicTeamStaff_edit, false) |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
} |
||||
}, |
||||
methods: { |
||||
rowSave(row, done, loading) { |
||||
add(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
window.console.log(error); |
||||
}); |
||||
}, |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
console.log(error); |
||||
}); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning("请选择至少一条数据"); |
||||
return; |
||||
} |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleExport() { |
||||
let downloadUrl = `/logpm-basic/basicTeamStaff/export-basicTeamStaff?${this.website.tokenHeader}=${getToken()}`; |
||||
const { |
||||
} = this.query; |
||||
let values = { |
||||
}; |
||||
this.$confirm("是否导出数据?", "提示", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}).then(() => { |
||||
NProgress.start(); |
||||
exportBlob(downloadUrl, values).then(res => { |
||||
downloadXls(res.data, `班组人员表${dateNow()}.xlsx`); |
||||
NProgress.done(); |
||||
}) |
||||
}); |
||||
}, |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.crud.toggleSelection(); |
||||
}, |
||||
currentChange(currentPage){ |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize){ |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
|
||||
const { |
||||
} = this.query; |
||||
|
||||
let values = { |
||||
}; |
||||
|
||||
getList(page.currentPage, page.pageSize, values).then(res => { |
||||
const data = res.data.data; |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
Loading…
Reference in new issue