Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev-warehouse
caoyizhong 2 years ago
parent
commit
026853189d
  1. 50
      src/api/basic/basicTeamGroup.js
  2. 50
      src/api/basic/basicTeamStaff.js
  3. 94
      src/option/basic/basicPrintTemplate1.js
  4. 198
      src/option/basic/basicTeamGroup.js
  5. 168
      src/option/basic/basicTeamStaff.js
  6. 444
      src/views/basic/printTemplate/basicPrintTemplate1.vue
  7. 436
      src/views/basic/printTemplate/basicPrintTemplateFrom.vue
  8. 225
      src/views/basic/teamGroup/basicTeamGroup.vue
  9. 225
      src/views/basic/teamStaff/basicTeamStaff.vue

50
src/api/basic/basicTeamGroup.js

@ -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
})
}

50
src/api/basic/basicTeamStaff.js

@ -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
})
}

94
src/option/basic/basicPrintTemplate1.js

@ -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",
// },
]
}

198
src/option/basic/basicTeamGroup.js

@ -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"
}],
},
]
}

168
src/option/basic/basicTeamStaff.js

@ -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,
},
]
}

444
src/views/basic/printTemplate/basicPrintTemplate1.vue

@ -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">pngjpegjpg</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>

436
src/views/basic/printTemplate/basicPrintTemplateFrom.vue

@ -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">pngjpegjpg</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>

225
src/views/basic/teamGroup/basicTeamGroup.vue

@ -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>

225
src/views/basic/teamStaff/basicTeamStaff.vue

@ -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…
Cancel
Save