Compare commits
5 Commits
1e12b653d6
...
6d367b121c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d367b121c | ||
|
|
e2385cf813 | ||
| 552b1e6d6a | |||
| 4383067eb1 | |||
| f80644e07c |
4
.env.dev
4
.env.dev
@@ -13,8 +13,8 @@ VUE_APP_TITLE = 智能监控分析系统
|
||||
|
||||
# 芋道管理系统/开发环境
|
||||
# VUE_APP_BASE_API = 'http://172.16.33.187:48082'
|
||||
# VUE_APP_BASE_API = 'http://line.kszny.picaiba.com'
|
||||
VUE_APP_BASE_API = 'http://172.16.32.79:48082'
|
||||
VUE_APP_BASE_API = 'http://line.kszny.picaiba.com'
|
||||
# VUE_APP_BASE_API = 'http://172.16.32.79:48082'
|
||||
|
||||
|
||||
# 路由懒加载
|
||||
|
||||
@@ -62,10 +62,10 @@ export function getEquipmentAll() {
|
||||
|
||||
export function getTree(query) {
|
||||
return request({
|
||||
url: '/base/factory/getTree',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
url: '/base/factory/getTreeSimple',
|
||||
method: 'get',
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function getEquipmentOverall(data) {
|
||||
|
||||
@@ -54,7 +54,7 @@ export default {
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.currentMenu = this.menus[0];
|
||||
// this.currentMenu = this.menus[0];
|
||||
},
|
||||
watch: {
|
||||
currentMenu(val) {
|
||||
|
||||
@@ -63,7 +63,7 @@
|
||||
style="width: 75%"
|
||||
v-model="dataForm.price"
|
||||
clearable
|
||||
placeholder="请输入允许留存时间" />
|
||||
placeholder="请输入单价" />
|
||||
{{ unit }}
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
@@ -140,13 +140,15 @@ export default {
|
||||
setTimeout(this.setCode(), 1000);
|
||||
}
|
||||
},
|
||||
setCode() {
|
||||
setCode() {
|
||||
console.log('this.MaterialList', this.urlOptions.dictArr.dict0);
|
||||
|
||||
this.MaterialList.forEach((item) => {
|
||||
if (item.id === this.dataForm.materialId) {
|
||||
this.dataForm.code = item.code;
|
||||
this.unit =
|
||||
'元/' +
|
||||
this.urlOptions.dictArr.dict0.find((d) => d.value === item.unit)
|
||||
this.urlOptions.dictArr.dict0.find((d) => d.value == item.unit)
|
||||
.label;
|
||||
}
|
||||
});
|
||||
|
||||
@@ -128,7 +128,7 @@ export default {
|
||||
this.tableData = response.data;
|
||||
this.dataListLoading = false;
|
||||
});
|
||||
},
|
||||
},
|
||||
handleClick(val) {
|
||||
const data = {
|
||||
...this.time,
|
||||
|
||||
@@ -90,6 +90,7 @@ export default {
|
||||
param: 'lineIds',
|
||||
defaultSelect: [],
|
||||
multiple: true,
|
||||
collapseTags: true,
|
||||
filterable: true,
|
||||
width: 300,
|
||||
},
|
||||
|
||||
@@ -80,6 +80,16 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label=" 基板类型" prop="typeDictValue">
|
||||
<el-select :disabled="isdetail" v-model="dataForm.typeDictValue" clearable
|
||||
style="width: 100%" placeholder="请选择基板类型">
|
||||
<el-option v-for="dict in typeList" :key="dict.value" :label="dict.label" :value="dict.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<small-title style="margin: 16px 0; padding-left: 8px" :no-padding="true">
|
||||
@@ -131,160 +141,184 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
deleteProductAttr,
|
||||
getProductAttrPage,
|
||||
deleteProductAttr,
|
||||
getProductAttrPage,
|
||||
} from '@/api/core/base/productAttr';
|
||||
|
||||
import {
|
||||
createProduct,
|
||||
updateProduct,
|
||||
getProduct,
|
||||
getCode,
|
||||
createProduct,
|
||||
updateProduct,
|
||||
getProduct,
|
||||
getCode,
|
||||
} from '@/api/core/base/product';
|
||||
import productAttrAdd from './attr-add';
|
||||
import { parseTime } from '../../mixins/code-filter';
|
||||
import SmallTitle from './SmallTitle';
|
||||
|
||||
import { listData } from "@/api/system/dict/data"; //数据字典接口
|
||||
const tableBtn = [
|
||||
{
|
||||
type: 'edit',
|
||||
btnName: '编辑',
|
||||
},
|
||||
{
|
||||
type: 'delete',
|
||||
btnName: '删除',
|
||||
},
|
||||
{
|
||||
type: 'edit',
|
||||
btnName: '编辑',
|
||||
},
|
||||
{
|
||||
type: 'delete',
|
||||
btnName: '删除',
|
||||
},
|
||||
];
|
||||
const tableProps = [
|
||||
{
|
||||
prop: 'createTime',
|
||||
label: '添加时间',
|
||||
filter: parseTime,
|
||||
},
|
||||
{
|
||||
prop: 'name',
|
||||
label: '属性名',
|
||||
},
|
||||
{
|
||||
prop: 'value',
|
||||
label: '属性值',
|
||||
},
|
||||
{
|
||||
prop: 'createTime',
|
||||
label: '添加时间',
|
||||
filter: parseTime,
|
||||
},
|
||||
{
|
||||
prop: 'name',
|
||||
label: '属性名',
|
||||
},
|
||||
{
|
||||
prop: 'value',
|
||||
label: '属性值',
|
||||
},
|
||||
];
|
||||
|
||||
export default {
|
||||
components: { productAttrAdd, SmallTitle },
|
||||
data() {
|
||||
return {
|
||||
visible: false,
|
||||
addOrUpdateVisible: false,
|
||||
tableBtn,
|
||||
tableProps,
|
||||
productAttributeList: [],
|
||||
dataForm: {
|
||||
id: null,
|
||||
name: '', // 产品名称
|
||||
code: '', // 产品编码
|
||||
area: 0, // 深加工单位平方数(float only)
|
||||
typeDictValue: null, // 产品类型id
|
||||
processTime: null, // 单位产品用时 (s)
|
||||
specifications: '', // 深加工规格
|
||||
unitDictValue: '', // 单位id
|
||||
originalSpecifications: '', // 原片规格
|
||||
components: { productAttrAdd, SmallTitle },
|
||||
data() {
|
||||
return {
|
||||
visible: false,
|
||||
addOrUpdateVisible: false,
|
||||
tableBtn,
|
||||
tableProps,
|
||||
productAttributeList: [],
|
||||
dataForm: {
|
||||
id: null,
|
||||
name: '', // 产品名称
|
||||
code: '', // 产品编码
|
||||
area: 0, // 深加工单位平方数(float only)
|
||||
typeDictValue: null, // 产品类型id
|
||||
processTime: null, // 单位产品用时 (s)
|
||||
specifications: '', // 深加工规格
|
||||
unitDictValue: '', // 单位id
|
||||
originalSpecifications: '', // 原片规格
|
||||
originalArea: 0, // 原片单位平方数
|
||||
processTypes: [],
|
||||
},
|
||||
listQuery: {
|
||||
pageSize: 10,
|
||||
pageNo: 1,
|
||||
total: 0,
|
||||
typeDictValue: null,
|
||||
},
|
||||
typeList:[],
|
||||
listQuery: {
|
||||
pageSize: 10,
|
||||
pageNo: 1,
|
||||
total: 0,
|
||||
},
|
||||
processTypeList: [
|
||||
{
|
||||
value: '1',
|
||||
label:'压花丝印'
|
||||
},
|
||||
{
|
||||
value: '2',
|
||||
label: '无印打孔'
|
||||
},
|
||||
{
|
||||
value: '3',
|
||||
label: '单层镀膜'
|
||||
}, {
|
||||
value: '4',
|
||||
label: '双层镀膜'
|
||||
}
|
||||
// {
|
||||
// value: '1',
|
||||
// label: '压花丝印'
|
||||
// },
|
||||
// {
|
||||
// value: '2',
|
||||
// label: '无印打孔'
|
||||
// },
|
||||
// {
|
||||
// value: '3',
|
||||
// label: '单层镀膜'
|
||||
// }, {
|
||||
// value: '4',
|
||||
// label: '双层镀膜'
|
||||
// }
|
||||
],
|
||||
dataRule: {
|
||||
code: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品编码不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
// {
|
||||
// type: 'number',
|
||||
// message: '产品编码为数字类型',
|
||||
// trigger: 'blur',
|
||||
// transfom: 'val => Number(val)',
|
||||
// },
|
||||
],
|
||||
name: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品名称不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
typeDictValue: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品类型不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
area: [
|
||||
{
|
||||
type: 'number',
|
||||
message: '请输入正确的数值',
|
||||
trigger: 'change',
|
||||
transform: (val) => Number(val),
|
||||
},
|
||||
],
|
||||
processTime: [
|
||||
{
|
||||
required: true,
|
||||
message: '完成单位产品用时不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
{
|
||||
type: 'number',
|
||||
message: '请输入正确的数值',
|
||||
trigger: 'blur',
|
||||
transform: (val) => Number(val),
|
||||
},
|
||||
],
|
||||
},
|
||||
isdetail: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
initData() {
|
||||
this.productAttributeList.splice(0);
|
||||
this.listQuery.total = 0;
|
||||
},
|
||||
init(id, isdetail) {
|
||||
this.initData();
|
||||
this.isdetail = isdetail || false;
|
||||
dataRule: {
|
||||
code: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品编码不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
// {
|
||||
// type: 'number',
|
||||
// message: '产品编码为数字类型',
|
||||
// trigger: 'blur',
|
||||
// transfom: 'val => Number(val)',
|
||||
// },
|
||||
],
|
||||
name: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品名称不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
typeDictValue: [
|
||||
{
|
||||
required: true,
|
||||
message: '产品类型不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
area: [
|
||||
{
|
||||
type: 'number',
|
||||
message: '请输入正确的数值',
|
||||
trigger: 'change',
|
||||
transform: (val) => Number(val),
|
||||
},
|
||||
],
|
||||
processTime: [
|
||||
{
|
||||
required: true,
|
||||
message: '完成单位产品用时不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
{
|
||||
type: 'number',
|
||||
message: '请输入正确的数值',
|
||||
trigger: 'blur',
|
||||
transform: (val) => Number(val),
|
||||
},
|
||||
],
|
||||
},
|
||||
isdetail: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
async initData() {
|
||||
this.productAttributeList.splice(0);
|
||||
this.listQuery.total = 0;
|
||||
const typeRes = await listData({
|
||||
pageNo:
|
||||
1,
|
||||
pageSize
|
||||
: 10,
|
||||
dictType
|
||||
: 'product_type'
|
||||
})
|
||||
|
||||
this.typeList = typeRes.data.list
|
||||
console.log('typeRes', this.typeList);
|
||||
const processTypeRes = await listData({
|
||||
pageNo:
|
||||
1,
|
||||
pageSize
|
||||
: 10,
|
||||
dictType
|
||||
: 'process_type'
|
||||
})
|
||||
|
||||
this.processTypeList = processTypeRes.data.list
|
||||
console.log('typeRes', this.typeList);
|
||||
},
|
||||
init(id, isdetail) {
|
||||
this.initData();
|
||||
this.isdetail = isdetail || false;
|
||||
this.dataForm.id = id || null;
|
||||
// this.dataForm.processTypes = [] // 清空工艺选择
|
||||
this.visible = true;
|
||||
this.visible = true;
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.$refs['dataForm'].resetFields();
|
||||
this.$nextTick(() => {
|
||||
this.$refs['dataForm'].resetFields();
|
||||
|
||||
if (this.dataForm.id) {
|
||||
// 获取产品详情
|
||||
if (this.dataForm.id) {
|
||||
// 获取产品详情
|
||||
getProduct(id).then((res) => {
|
||||
const resData = res.data || {};
|
||||
// 逐个字段赋值(保留响应式)
|
||||
@@ -305,161 +339,163 @@ export default {
|
||||
|
||||
console.log('工艺列表(编辑时):', this.dataForm.processTypes); // 验证是否为 ["1","2"] 格式
|
||||
});
|
||||
// 获取产品的属性列表
|
||||
this.getList();
|
||||
} else {
|
||||
getCode().then((res) => {
|
||||
this.dataForm.code = res.data;
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
// 获取产品的属性列表
|
||||
this.getList();
|
||||
} else {
|
||||
getCode().then((res) => {
|
||||
this.dataForm.code = res.data;
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
getList() {
|
||||
// 获取产品的属性列表
|
||||
getProductAttrPage({
|
||||
...this.listQuery,
|
||||
productId: this.dataForm.id,
|
||||
}).then((response) => {
|
||||
this.productAttributeList = response.data.list;
|
||||
this.listQuery.total = response.data.total;
|
||||
});
|
||||
},
|
||||
handleClick(raw) {
|
||||
if (raw.type === 'delete') {
|
||||
this.$confirm(
|
||||
`确定对${
|
||||
raw.data.name
|
||||
? '[名称=' + raw.data.name + ']'
|
||||
: '[序号=' + raw.data._pageIndex + ']'
|
||||
}进行删除操作?`,
|
||||
'提示',
|
||||
{
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.getList();
|
||||
},
|
||||
});
|
||||
});
|
||||
})
|
||||
.catch(() => {});
|
||||
} else {
|
||||
this.addNew(raw.data.id);
|
||||
}
|
||||
},
|
||||
// 表单提交
|
||||
dataFormSubmit() {
|
||||
this.$refs['dataForm'].validate((valid) => {
|
||||
getList() {
|
||||
// 获取产品的属性列表
|
||||
getProductAttrPage({
|
||||
...this.listQuery,
|
||||
productId: this.dataForm.id,
|
||||
}).then((response) => {
|
||||
this.productAttributeList = response.data.list;
|
||||
this.listQuery.total = response.data.total;
|
||||
});
|
||||
},
|
||||
handleClick(raw) {
|
||||
if (raw.type === 'delete') {
|
||||
this.$confirm(
|
||||
`确定对${raw.data.name
|
||||
? '[名称=' + raw.data.name + ']'
|
||||
: '[序号=' + raw.data._pageIndex + ']'
|
||||
}进行删除操作?`,
|
||||
'提示',
|
||||
{
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.getList();
|
||||
},
|
||||
});
|
||||
});
|
||||
})
|
||||
.catch(() => { });
|
||||
} else {
|
||||
this.addNew(raw.data.id);
|
||||
}
|
||||
},
|
||||
// 表单提交
|
||||
dataFormSubmit() {
|
||||
this.$refs['dataForm'].validate((valid) => {
|
||||
if (valid) {
|
||||
// 修改的提交
|
||||
if (this.dataForm.id) {
|
||||
updateProduct(this.dataForm).then((response) => {
|
||||
this.$modal.msgSuccess('修改成功');
|
||||
this.visible = false;
|
||||
this.$emit('refreshDataList');
|
||||
});
|
||||
return;
|
||||
}
|
||||
// 添加的提交
|
||||
createProduct(this.dataForm).then((response) => {
|
||||
this.$modal.msgSuccess('新增成功');
|
||||
this.$confirm(`是否新增产品属性?`, '系统提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
})
|
||||
.then(() => {
|
||||
|
||||
// 修改的提交
|
||||
if (this.dataForm.id) {
|
||||
updateProduct(this.dataForm).then((response) => {
|
||||
this.$modal.msgSuccess('修改成功');
|
||||
this.visible = false;
|
||||
this.$emit('refreshDataList');
|
||||
});
|
||||
return;
|
||||
}
|
||||
// 添加的提交
|
||||
createProduct(this.dataForm).then((response) => {
|
||||
this.$modal.msgSuccess('新增成功');
|
||||
this.$confirm(`是否新增产品属性?`, '系统提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
})
|
||||
.then(() => {
|
||||
this.dataForm.id = response.data
|
||||
this.addNew();
|
||||
})
|
||||
.catch(() => {
|
||||
this.visible = false;
|
||||
this.$emit('refreshDataList');
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
goEdit() {
|
||||
this.isdetail = false;
|
||||
},
|
||||
// 新增 / 修改
|
||||
addNew(id) {
|
||||
if (this.dataForm.id) {
|
||||
this.addOrUpdateVisible = true;
|
||||
this.$nextTick(() => {
|
||||
this.$refs.addOrUpdate.init(id);
|
||||
});
|
||||
} else {
|
||||
this.$message('请先创建产品!');
|
||||
}
|
||||
},
|
||||
goback() {
|
||||
this.$emit('refreshDataList');
|
||||
this.visible = false;
|
||||
this.initData();
|
||||
},
|
||||
},
|
||||
this.addNew();
|
||||
})
|
||||
.catch(() => {
|
||||
this.visible = false;
|
||||
this.$emit('refreshDataList');
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
goEdit() {
|
||||
this.isdetail = false;
|
||||
},
|
||||
// 新增 / 修改
|
||||
addNew(id) {
|
||||
if (this.dataForm.id) {
|
||||
this.addOrUpdateVisible = true;
|
||||
this.$nextTick(() => {
|
||||
this.$refs.addOrUpdate.init(id);
|
||||
});
|
||||
} else {
|
||||
this.$message('请先创建产品!');
|
||||
}
|
||||
},
|
||||
goback() {
|
||||
this.$emit('refreshDataList');
|
||||
this.visible = false;
|
||||
this.initData();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.drawer >>> .el-drawer {
|
||||
border-radius: 8px 0 0 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.drawer>>>.el-drawer {
|
||||
border-radius: 8px 0 0 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.drawer >>> .el-form-item__label {
|
||||
padding: 0;
|
||||
.drawer>>>.el-form-item__label {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.drawer >>> .el-drawer__header {
|
||||
margin: 0;
|
||||
padding: 32px 32px 24px;
|
||||
border-bottom: 1px solid #dcdfe6;
|
||||
}
|
||||
.drawer >>> .el-drawer__body {
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.drawer>>>.el-drawer__header {
|
||||
margin: 0;
|
||||
padding: 32px 32px 24px;
|
||||
border-bottom: 1px solid #dcdfe6;
|
||||
}
|
||||
|
||||
.drawer >>> .content {
|
||||
padding: 30px 24px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* height: 100%; */
|
||||
.drawer>>>.el-drawer__body {
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.drawer >>> .visual-part {
|
||||
flex: 1 auto;
|
||||
max-height: 76vh;
|
||||
overflow: hidden;
|
||||
overflow-y: scroll;
|
||||
padding-right: 10px; /* 调整滚动条样式 */
|
||||
.drawer>>>.content {
|
||||
padding: 30px 24px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* height: 100%; */
|
||||
}
|
||||
|
||||
.drawer >>> .el-form,
|
||||
.drawer >>> .attr-list {
|
||||
padding: 0 16px;
|
||||
.drawer>>>.visual-part {
|
||||
flex: 1 auto;
|
||||
max-height: 76vh;
|
||||
overflow: hidden;
|
||||
overflow-y: scroll;
|
||||
padding-right: 10px;
|
||||
/* 调整滚动条样式 */
|
||||
}
|
||||
|
||||
.drawer>>>.el-form,
|
||||
.drawer>>>.attr-list {
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.drawer-body__footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 18px;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 18px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -104,7 +104,11 @@ export default {
|
||||
getDataListURL: getProductionLinePage,
|
||||
deleteURL: deleteProductionLine,
|
||||
exportURL: exportProductionLineExcel,
|
||||
},
|
||||
},
|
||||
listQuery: {
|
||||
pageSize: 20,
|
||||
pageNo:1
|
||||
},
|
||||
tableProps,
|
||||
tableBtn: [
|
||||
this.$auth.hasPermi(`base:production-line:update`)
|
||||
@@ -212,7 +216,7 @@ export default {
|
||||
switch (val.btnName) {
|
||||
case 'search':
|
||||
this.listQuery.pageNo = 1;
|
||||
this.listQuery.pageSize = 10;
|
||||
this.listQuery.pageSize = 20;
|
||||
this.listQuery.factoryId = val.factoryId || undefined;
|
||||
this.listQuery.name = val.name;
|
||||
this.getDataList();
|
||||
@@ -220,7 +224,7 @@ export default {
|
||||
case 'reset':
|
||||
this.$refs.searchBarForm.resetForm();
|
||||
this.listQuery = {
|
||||
pageSize: 10,
|
||||
pageSize: 20,
|
||||
pageNo: 1,
|
||||
total: 1,
|
||||
};
|
||||
|
||||
@@ -519,6 +519,12 @@ export default {
|
||||
btnName: '重置',
|
||||
name: 'reset',
|
||||
},
|
||||
// {
|
||||
// type: 'label', // 初始隐藏
|
||||
// label: '刷新时间', // 自定义标识
|
||||
// // slot: 'currentTimeSlot', // 自定义插槽名
|
||||
// // width: 200, // 宽度适配
|
||||
// },
|
||||
]
|
||||
};
|
||||
},
|
||||
@@ -541,7 +547,7 @@ export default {
|
||||
{
|
||||
prop: 'processType',
|
||||
label: '产品类型',
|
||||
filter: (val) => (val != 1 ? '面板' : '背板'),
|
||||
filter: (val) => (val === 1 ? '面板' : '背板'),
|
||||
fixed: true,
|
||||
sortable: true,
|
||||
},
|
||||
@@ -588,12 +594,12 @@ export default {
|
||||
// end.getTime()
|
||||
// ];
|
||||
|
||||
this.$refs.searchBarForm.formInline.timeType = 1
|
||||
|
||||
this.$refs.searchBarForm.formInline.timeType = 3
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
this.getDayDataList();
|
||||
// this.getLastDayDataList();
|
||||
this.getPdLineList();
|
||||
const queryParams = {
|
||||
pageNo: 1,
|
||||
@@ -642,6 +648,12 @@ export default {
|
||||
this.formConfig[1].type = ''; // 隐藏查询类型
|
||||
this.formConfig[6].type = ''; // 隐藏报表类型
|
||||
this.formConfig[7].type = ''; // 隐藏时间范围
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
};
|
||||
|
||||
// 3. 执行公共重置
|
||||
@@ -656,14 +668,43 @@ export default {
|
||||
this.formConfig[3].type = 'select'; // 显示产线
|
||||
this.formConfig[4].type = ''; // 隐藏产品工艺
|
||||
this.formConfig[5].type = ''; // 隐藏产品类型
|
||||
this.getDayDataList();
|
||||
|
||||
this.listQuery.timeType = 3;
|
||||
if (this.$refs.searchBarForm) {
|
||||
this.$refs.searchBarForm.formInline.timeType = 3;
|
||||
}
|
||||
// 主动调用上一班数据接口
|
||||
this.getLastDayDataList();
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
} else {
|
||||
|
||||
// 按产品监控:显示产品工艺和类型,隐藏产线,时间维度移除上一班
|
||||
this.formConfig[0].selectOptions = this.timeTypeOptions.product; // 不含上一班
|
||||
this.formConfig[3].type = ''; // 隐藏产线
|
||||
this.formConfig[4].type = 'select'; // 显示产品工艺
|
||||
this.formConfig[5].type = 'select'; // 显示产品类型
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
this.getProductList();
|
||||
|
||||
}
|
||||
@@ -995,6 +1036,26 @@ export default {
|
||||
}
|
||||
switch (val.btnName) {
|
||||
case 'search':
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
|
||||
// 仅当时间维度为【当天】时,添加/更新刷新时间
|
||||
if (this.listQuery.timeType === 1 || this.listQuery.timeType === 3) {
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
} else if (timeItemIndex > -1) {
|
||||
// 非当天时,移除刷新时间
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
|
||||
if (this.activeName === 'productLine') {
|
||||
if (this.listQuery.timeType === 1) {
|
||||
this.getDayDataList();
|
||||
@@ -1012,7 +1073,7 @@ export default {
|
||||
break;
|
||||
case 'reset':
|
||||
this.$refs.searchBarForm.resetForm();
|
||||
this.$refs.searchBarForm.formInline.timeType = 1;
|
||||
this.$refs.searchBarForm.formInline.timeType = 3;
|
||||
this.formConfig[0].selectOptions = this.activeName === 'productLine'
|
||||
? this.timeTypeOptions.productLine
|
||||
: this.timeTypeOptions.product;
|
||||
@@ -1020,10 +1081,23 @@ export default {
|
||||
pageSize: 100,
|
||||
pageNo: 1,
|
||||
total: 0,
|
||||
timeType: 1,
|
||||
timeType: this.activeName === 'productLine' ? 3 : 1,
|
||||
};
|
||||
// 重置后默认是当天,添加刷新时间
|
||||
const resetTimeIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const resetTimeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (resetTimeIndex > -1) {
|
||||
this.formConfig.splice(resetTimeIndex, 1, resetTimeLabel);
|
||||
} else {
|
||||
this.formConfig.push(resetTimeLabel);
|
||||
}
|
||||
if (this.activeName === 'productLine') {
|
||||
this.getDayDataList();
|
||||
this.getLastDayDataList();
|
||||
} else {
|
||||
this.getProductList();
|
||||
}
|
||||
@@ -1350,29 +1424,48 @@ export default {
|
||||
this.listQuery.pageNo = val;
|
||||
this.getDataList();
|
||||
},
|
||||
|
||||
formatCurrentTime() {
|
||||
const date = new Date();
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
const hours = String(date.getHours()).padStart(2, '0');
|
||||
const minutes = String(date.getMinutes()).padStart(2, '0');
|
||||
const seconds = String(date.getSeconds()).padStart(2, '0');
|
||||
return `${hours}:${minutes}:${seconds} ${year}.${month}.${day}`;
|
||||
},
|
||||
// 搜索栏下拉选择变化
|
||||
handleSearchBarChanged({ param, value }) {
|
||||
if (param === 'timeType') {
|
||||
console.log(value);
|
||||
|
||||
this.listQuery.timeType = value;
|
||||
if (value === 2) {
|
||||
// 切换为“自定义”:显示查询类型和时间范围
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
|
||||
// 仅移除,不添加(查询时才添加)
|
||||
if (value !== 1 && value !== 3 && timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = undefined;
|
||||
this.$refs.searchBarForm.formInline.reportType = undefined;
|
||||
this.$refs.searchBarForm.formInline.timeVal = undefined;
|
||||
|
||||
if (value === 1) {
|
||||
this.formConfig[1].type = '';
|
||||
this.formConfig[6].type = '';
|
||||
this.formConfig[7].type = '';
|
||||
} else if (value === 2) {
|
||||
this.formConfig[1].type = 'select';
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.listQuery.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = 1;
|
||||
this.formConfig[7].type = 'datePicker';
|
||||
} else {
|
||||
this.formConfig[1].type = '';
|
||||
this.formConfig[6].type = '';
|
||||
this.formConfig[7].type = '';
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.listQuery.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = undefined;
|
||||
this.$refs.searchBarForm.formInline.reportType = undefined;
|
||||
this.$refs.searchBarForm.formInline.timeVal = undefined;
|
||||
}
|
||||
|
||||
} else if (param === 'searchType') {
|
||||
if (value === 1) {
|
||||
// 统计数据:显示时间范围,隐藏报表类型
|
||||
@@ -1422,7 +1515,10 @@ export default {
|
||||
label: '时间范围',
|
||||
dateType: 'week',
|
||||
placeholder: '选择日期',
|
||||
format: 'yyyy-MM-dd',
|
||||
format: 'yyyy 第 WW 周',
|
||||
pickerOptions: {
|
||||
firstDayOfWeek: 1 // 数字1表示周一作为周的第一天(0=周日,1=周一,依此类推)
|
||||
},
|
||||
valueFormat: 'yyyy-MM-dd',
|
||||
param: 'timeValWeek',
|
||||
width: 250,
|
||||
|
||||
@@ -204,94 +204,88 @@ export default {
|
||||
);
|
||||
});
|
||||
},
|
||||
test() {
|
||||
var target = document.getElementsByClassName("right-aside")[0]
|
||||
target.style.background = '#FFFFFF'
|
||||
var that = this
|
||||
setTimeout(() => {
|
||||
html2canvas(target).then(function(canvas) {
|
||||
var contentWidth = canvas.width
|
||||
var contentHeight = canvas.height
|
||||
|
||||
// 一页pdf显示html页面生成的canvas高度
|
||||
var pageHeight = contentHeight / 592.28 * 841.89
|
||||
// 未生成pdf的html页面高度
|
||||
var leftHeight = contentHeight
|
||||
// 页面偏移
|
||||
var position = 0
|
||||
// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的高度
|
||||
var imgWidth = 595.28
|
||||
var imgHeight = 592.28 / contentWidth * contentHeight
|
||||
|
||||
var pageData = canvas.toDataURL('image/jpeg', 1.0)
|
||||
|
||||
console.log('nihc URL', leftHeight, pageHeight)
|
||||
|
||||
var pdf = new jsPDF('', 'pt', 'a4')
|
||||
|
||||
if (leftHeight < pageHeight) {
|
||||
pdf.addImage(pageData, 'JPEG', 0, 20, imgWidth, imgHeight)
|
||||
} else {
|
||||
while(leftHeight > 0) {
|
||||
pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
|
||||
leftHeight -= pageHeight
|
||||
position -= 841.89
|
||||
// 避免空白页
|
||||
if (leftHeight > 0) {
|
||||
pdf.addPage()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pdf.save(that.fileName + '工段统计.pdf')
|
||||
})
|
||||
}, 300)
|
||||
},
|
||||
exportECL() {
|
||||
let tables = document.querySelector('.el-table').cloneNode(true)
|
||||
const fix = tables.querySelector('.el-table__fixed')
|
||||
const fixRight = tables.querySelector('.el-table__fixed-right')
|
||||
if (fix) {
|
||||
tables.removeChild(tables.querySelector('.el-table__fixed'))
|
||||
}
|
||||
if (fixRight) {
|
||||
tables.removeChild(tables.querySelector('.el-table__fixed-right'))
|
||||
}
|
||||
let exportTable = XLSX.utils.table_to_book(tables)
|
||||
|
||||
var exportTableOut = XLSX.write(exportTable, {
|
||||
bookType: 'xlsx', bookSST: true, type: 'array'
|
||||
})
|
||||
// sheetjs.xlsx为导出表格的标题名称
|
||||
try {
|
||||
FileSaver.saveAs(new Blob([exportTableOut], {
|
||||
type: 'application/octet-stream'
|
||||
}), this.fileName + '工段统计.xlsx')
|
||||
} catch (e) {
|
||||
if (typeof console !== 'undefined') console.log(e, exportTableOut)
|
||||
exportXlsx() {
|
||||
if (!this.showData.length) {
|
||||
this.$message.warning('暂无数据可导出');
|
||||
return;
|
||||
}
|
||||
return exportTableOut
|
||||
},
|
||||
exportPdf() {
|
||||
this.test()
|
||||
setTimeout(() =>{
|
||||
this.dialogVisible = false
|
||||
this.showData = this.tableData
|
||||
}, 600)
|
||||
|
||||
},
|
||||
exportXlsx() {
|
||||
this.exportECL()
|
||||
this.dialogVisible = false
|
||||
this.showData = this.tableData
|
||||
},
|
||||
handleClose(done) {
|
||||
this.$confirm('确认关闭?')
|
||||
.then(_ => {
|
||||
done();
|
||||
})
|
||||
.catch(_ => {});
|
||||
},
|
||||
this.exportLoading = true;
|
||||
|
||||
try {
|
||||
// 1. 处理导出数据(格式化时间字段)
|
||||
const exportData = this.showData.map(item => {
|
||||
const formatItem = { ...item };
|
||||
// 格式化时间字段
|
||||
if (formatItem.startTime) formatItem.startTime = parseTime(formatItem.startTime);
|
||||
if (formatItem.endTime) formatItem.endTime = parseTime(formatItem.endTime);
|
||||
return formatItem;
|
||||
});
|
||||
|
||||
// 2. 构建表头映射:{ prop: label },只保留表格配置中存在的列
|
||||
const headerMap = {};
|
||||
this.tableProps.forEach(col => {
|
||||
if (col.prop && col.label) {
|
||||
headerMap[col.prop] = col.label;
|
||||
}
|
||||
});
|
||||
|
||||
// 3. 转换数据:将prop键名替换为label,按tableProps顺序排列列
|
||||
const formattedData = exportData.map(item => {
|
||||
const newItem = {};
|
||||
// 按表格配置顺序遍历列,确保Excel列顺序与表格一致
|
||||
this.tableProps.forEach(col => {
|
||||
const prop = col.prop;
|
||||
const label = col.label;
|
||||
if (prop && label) {
|
||||
// 处理可能的undefined值,避免导出为空字符串
|
||||
newItem[label] = item[prop] ?? '';
|
||||
}
|
||||
});
|
||||
return newItem;
|
||||
});
|
||||
|
||||
// 4. 创建工作表(使用处理后的带label表头的数据)
|
||||
const worksheet = XLSX.utils.json_to_sheet(formattedData);
|
||||
|
||||
// 5. 创建工作簿并添加工作表
|
||||
const workbook = XLSX.utils.book_new();
|
||||
XLSX.utils.book_append_sheet(workbook, worksheet, '下片日志数据');
|
||||
|
||||
// 6. 生成Excel文件
|
||||
const excelBuffer = XLSX.write(workbook, {
|
||||
bookType: 'xlsx',
|
||||
type: 'array'
|
||||
});
|
||||
|
||||
// 7. 保存文件
|
||||
const blob = new Blob([excelBuffer], {
|
||||
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
|
||||
});
|
||||
|
||||
// 8. 生成文件名(包含查询条件信息)
|
||||
let fileName = '下片历史';
|
||||
if (this.listQuery.productionLineId) {
|
||||
const lineItem = this.formConfig[0].selectOptions.find(
|
||||
item => item.id === this.listQuery.productionLineId
|
||||
);
|
||||
if (lineItem) fileName += lineItem.name + '_';
|
||||
}
|
||||
if (this.listQuery.thick) {
|
||||
fileName += this.listQuery.thick + '_';
|
||||
}
|
||||
// 添加时间戳避免文件名重复
|
||||
fileName += + '.xlsx';
|
||||
|
||||
FileSaver.saveAs(blob, fileName);
|
||||
this.$message.success('导出成功');
|
||||
} catch (error) {
|
||||
console.error('导出失败:', error);
|
||||
this.$message.error('导出失败,请重试');
|
||||
} finally {
|
||||
this.exportLoading = false;
|
||||
}
|
||||
},
|
||||
getPdLineList() {
|
||||
getPdList().then((res) => {
|
||||
this.formConfig[0].selectOptions = res.data || []
|
||||
@@ -323,7 +317,7 @@ export default {
|
||||
this.getDataList();
|
||||
break;
|
||||
case 'export':
|
||||
this.handleExport();
|
||||
this.exportXlsx();
|
||||
break;
|
||||
default:
|
||||
console.log(val);
|
||||
@@ -351,12 +345,6 @@ export default {
|
||||
this.listQuery.pageNo = val;
|
||||
this.getDataList();
|
||||
},
|
||||
handleExport() {
|
||||
if (this.selectedList.length > 0) {
|
||||
this.showData = this.selectedList
|
||||
}
|
||||
this.dialogVisible = true
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -570,22 +570,35 @@ export default {
|
||||
},
|
||||
mounted() {
|
||||
this.$nextTick(() => {
|
||||
// 1. 强制设置当前激活标签为 按产品监控
|
||||
this.activeName = 'product';
|
||||
if (this.$refs.buttonNav) {
|
||||
this.$refs.buttonNav.currentMenu = '按产品监控';
|
||||
// 时间维度选项只显示 当天/自定义(无 上一班)
|
||||
this.formConfig[0].selectOptions = this.timeTypeOptions.product;
|
||||
}
|
||||
if (this.$refs.searchBarForm) {
|
||||
// this.$refs.searchBarForm.formInline.timeVal = [
|
||||
// yesterday.getTime(),
|
||||
// end.getTime()
|
||||
// ];
|
||||
|
||||
this.$refs.searchBarForm.formInline.timeType = 1
|
||||
|
||||
// 2. 强制设置搜索表单的 timeType 为 1(当天)
|
||||
this.$refs.searchBarForm.formInline.timeType = 1;
|
||||
// 同步查询参数的 timeType
|
||||
this.listQuery.timeType = 1;
|
||||
}
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
});
|
||||
|
||||
this.getDayDataList();
|
||||
// 3. 初始化直接调用 按产品监控 的接口
|
||||
this.getProductList();
|
||||
this.getPdLineList();
|
||||
const queryParams = {
|
||||
pageNo: 1,
|
||||
@@ -597,11 +610,22 @@ export default {
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
formatCurrentTime() {
|
||||
const date = new Date();
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
const hours = String(date.getHours()).padStart(2, '0');
|
||||
const minutes = String(date.getMinutes()).padStart(2, '0');
|
||||
const seconds = String(date.getSeconds()).padStart(2, '0');
|
||||
return `${hours}:${minutes}:${seconds} ${year}.${month}.${day}`;
|
||||
},
|
||||
// 切换按产线/按产品监控
|
||||
currentMenu(val) {
|
||||
// 1. 确定当前激活的类型(产线/产品)
|
||||
const isProductLine = val === '按产线监控';
|
||||
this.activeName = isProductLine ? 'productLine' : 'product';
|
||||
console.log('isProductLine', isProductLine);
|
||||
|
||||
// 2. 提取公共重置逻辑(无论切换到哪个标签,都需要执行的操作)
|
||||
const resetCommon = () => {
|
||||
@@ -634,11 +658,19 @@ export default {
|
||||
this.formConfig[1].type = ''; // 隐藏查询类型
|
||||
this.formConfig[6].type = ''; // 隐藏报表类型
|
||||
this.formConfig[7].type = ''; // 隐藏时间范围
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
};
|
||||
|
||||
// 3. 执行公共重置
|
||||
resetCommon();
|
||||
|
||||
// if (this.activeName === 'productLine') {
|
||||
// } else {
|
||||
// }
|
||||
// 4. 根据类型设置差异化的表单配置(仅处理不同的部分)
|
||||
if (isProductLine) {
|
||||
// 按产线监控:显示产线,隐藏产品工艺和类型,时间维度包含上一班
|
||||
@@ -646,16 +678,44 @@ export default {
|
||||
this.formConfig[3].type = 'select'; // 显示产线
|
||||
this.formConfig[4].type = ''; // 隐藏产品工艺
|
||||
this.formConfig[5].type = ''; // 隐藏产品类型
|
||||
this.getDayDataList();
|
||||
this.listQuery.timeType = 3;
|
||||
if (this.$refs.searchBarForm) {
|
||||
this.$refs.searchBarForm.formInline.timeType = 3;
|
||||
}
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
// 主动调用上一班数据接口
|
||||
this.getLastDayDataList();
|
||||
|
||||
} else {
|
||||
this.getProductList();
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
// 按产品监控:显示产品工艺和类型,隐藏产线,时间维度移除上一班
|
||||
this.formConfig[0].selectOptions = this.timeTypeOptions.product; // 不含上一班
|
||||
this.formConfig[3].type = ''; // 隐藏产线
|
||||
this.formConfig[4].type = 'select'; // 显示产品工艺
|
||||
this.formConfig[5].type = 'select'; // 显示产品类型
|
||||
this.getProductList();
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
@@ -947,6 +1007,25 @@ export default {
|
||||
}
|
||||
switch (val.btnName) {
|
||||
case 'search':
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
|
||||
// 仅当时间维度为【当天】时,添加/更新刷新时间
|
||||
if (this.listQuery.timeType === 1 || this.listQuery.timeType === 3) {
|
||||
const timeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1, timeLabel);
|
||||
} else {
|
||||
this.formConfig.push(timeLabel);
|
||||
}
|
||||
} else if (timeItemIndex > -1) {
|
||||
// 非当天时,移除刷新时间
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
if (this.activeName === 'productLine') {
|
||||
if (this.listQuery.timeType === 1) {
|
||||
this.getDayDataList();
|
||||
@@ -965,15 +1044,27 @@ export default {
|
||||
case 'reset':
|
||||
this.$refs.searchBarForm.resetForm();
|
||||
this.$refs.searchBarForm.formInline.timeType = 1;
|
||||
this.formConfig[0].selectOptions = this.activeName === 'productLine'
|
||||
this.formConfig[0].selectOptions = this.activeName === 'product'
|
||||
? this.timeTypeOptions.productLine
|
||||
: this.timeTypeOptions.product;
|
||||
this.listQuery = {
|
||||
pageSize: 100,
|
||||
pageNo: 1,
|
||||
total: 0,
|
||||
timeType: 1,
|
||||
timeType: this.activeName === 'productLine' ? 3 : 1,
|
||||
};
|
||||
const resetTimeIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
const resetTimeLabel = {
|
||||
type: 'label',
|
||||
label: `刷新时间: ${this.formatCurrentTime()}`,
|
||||
};
|
||||
if (resetTimeIndex > -1) {
|
||||
this.formConfig.splice(resetTimeIndex, 1, resetTimeLabel);
|
||||
} else {
|
||||
this.formConfig.push(resetTimeLabel);
|
||||
}
|
||||
if (this.activeName === 'productLine') {
|
||||
this.getDayDataList();
|
||||
} else {
|
||||
@@ -1307,24 +1398,33 @@ export default {
|
||||
handleSearchBarChanged({ param, value }) {
|
||||
console.log(value, param);
|
||||
if (param === 'timeType') {
|
||||
console.log(value);
|
||||
|
||||
this.listQuery.timeType = value;
|
||||
if (value === 2) {
|
||||
// 切换为“自定义”:显示查询类型和时间范围
|
||||
const timeItemIndex = this.formConfig.findIndex(item =>
|
||||
item.label?.includes('刷新时间')
|
||||
);
|
||||
|
||||
// 仅移除,不添加(查询时才添加)
|
||||
if (value !== 1 && value !== 3 && timeItemIndex > -1) {
|
||||
this.formConfig.splice(timeItemIndex, 1);
|
||||
}
|
||||
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = undefined;
|
||||
this.$refs.searchBarForm.formInline.reportType = undefined;
|
||||
this.$refs.searchBarForm.formInline.timeVal = undefined;
|
||||
|
||||
if (value === 1) {
|
||||
this.formConfig[1].type = '';
|
||||
this.formConfig[6].type = '';
|
||||
this.formConfig[7].type = '';
|
||||
} else if (value === 2) {
|
||||
this.formConfig[1].type = 'select';
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.listQuery.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = 1;
|
||||
this.formConfig[7].type = 'datePicker';
|
||||
} else {
|
||||
this.formConfig[1].type = '';
|
||||
this.formConfig[6].type = '';
|
||||
this.formConfig[7].type = '';
|
||||
this.$refs.searchBarForm.formInline.timeType = value;
|
||||
this.listQuery.timeType = value;
|
||||
this.$refs.searchBarForm.formInline.searchType = undefined;
|
||||
this.$refs.searchBarForm.formInline.reportType = undefined;
|
||||
this.$refs.searchBarForm.formInline.timeVal = undefined;
|
||||
}
|
||||
} else if (param === 'searchType') {
|
||||
if (value === 1) {
|
||||
@@ -1375,7 +1475,10 @@ export default {
|
||||
label: '时间范围',
|
||||
dateType: 'week',
|
||||
placeholder: '选择日期',
|
||||
format: 'yyyy-MM-dd',
|
||||
format: 'yyyy 第 WW 周',
|
||||
pickerOptions: {
|
||||
firstDayOfWeek: 1 // 数字1表示周一作为周的第一天(0=周日,1=周一,依此类推)
|
||||
},
|
||||
valueFormat: 'yyyy-MM-dd',
|
||||
param: 'timeValWeek',
|
||||
width: 250,
|
||||
|
||||
@@ -244,7 +244,10 @@ export default {
|
||||
label: '统计时间',
|
||||
dateType: 'week',
|
||||
placeholder: '选择日期',
|
||||
format: 'yyyy-MM-dd',
|
||||
format: 'yyyy 第 WW 周',
|
||||
pickerOptions: {
|
||||
firstDayOfWeek: 1 // 数字1表示周一作为周的第一天(0=周日,1=周一,依此类推)
|
||||
},
|
||||
valueFormat: 'yyyy-MM-dd',
|
||||
param: 'timeValWeek',
|
||||
width: 250,
|
||||
@@ -453,11 +456,10 @@ export default {
|
||||
item.statisticType = this.listQuery.statisticType;
|
||||
|
||||
// 匹配产线名称
|
||||
const targetLine = this.pdLineList.find(line => line.id === item.bindObjectId);
|
||||
item.bindObjectName = targetLine ? targetLine.name : '';
|
||||
|
||||
// const targetLine = this.pdLineList.find(line => line.id === item.bindObjectId);
|
||||
// item.bindObjectName = targetLine ? targetLine.name : ''
|
||||
return item;
|
||||
});
|
||||
})
|
||||
this.listQuery.total = response.data?.total || 0;
|
||||
})
|
||||
.catch(err => {
|
||||
|
||||
@@ -1,423 +1,430 @@
|
||||
<template>
|
||||
<div class="home-page">
|
||||
<div class="date-tabs">
|
||||
<!-- @tab-click="handleClick" -->
|
||||
<el-tabs v-model="activeName" @tab-click="timedayChange" :stretch="true">
|
||||
<el-tab-pane
|
||||
:label="'\u2002\u2002日\u2002\u2002'"
|
||||
name="日"></el-tab-pane>
|
||||
<el-tab-pane
|
||||
:label="'\u2002\u2002周\u2002\u2002'"
|
||||
name="周"></el-tab-pane>
|
||||
<el-tab-pane
|
||||
:label="'\u2002\u2002月\u2002\u2002'"
|
||||
name="月"></el-tab-pane>
|
||||
<el-tab-pane
|
||||
:label="'\u2002\u2002年\u2002\u2002'"
|
||||
name="年"></el-tab-pane>
|
||||
</el-tabs>
|
||||
<div class="detail">
|
||||
<div class="app-container">
|
||||
<!-- 顶部日期&筛选栏 -->
|
||||
<el-row :gutter="20" class="top-bar">
|
||||
<el-col :span="8">
|
||||
<el-date-picker
|
||||
v-model="timeday"
|
||||
align="right"
|
||||
type="date"
|
||||
format="yyyy-MM-dd"
|
||||
valueFormat="yyyy-MM-dd"
|
||||
:clearable="false"
|
||||
@change="timedayChange"
|
||||
placeholder="选择日期"
|
||||
:picker-options="pickerOptions"></el-date-picker>
|
||||
</div>
|
||||
</div>
|
||||
<el-row class="main-top" :gutter="16">
|
||||
<el-col :span="24" style="position: relative">
|
||||
<div class="title">
|
||||
<svg-icon icon-class="home-produce" />
|
||||
<span class="title-inner">生产总成本</span>
|
||||
</div>
|
||||
<el-row class="box">
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.priceS }}万元</div>
|
||||
<div class="unit-style">总计成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.matPriceS }}万元</div>
|
||||
<div class="unit-style">原料成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.energyPriceS }}万元</div>
|
||||
<div class="unit-style">能源成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.otherPriceS }}万元</div>
|
||||
<div class="unit-style">其他成本</div>
|
||||
</el-col>
|
||||
<!-- <el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.ratioS }}</div>
|
||||
<div class="unit-style">综合良品率/%</div>
|
||||
</el-col> -->
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.areaPriceS }}元</div>
|
||||
<div class="unit-style">综合每平米成本</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
v-model="dateRange"
|
||||
type="daterange"
|
||||
range-separator="~"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-dd" />
|
||||
<el-button type="primary" style="margin-left: 10px">查询</el-button>
|
||||
</el-col>
|
||||
<el-col :span="24" style="position: relative">
|
||||
<div class="title">
|
||||
<svg-icon icon-class="home-produce" />
|
||||
<span class="title-inner">原片成本</span>
|
||||
</div>
|
||||
<el-row class="box">
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.priceO }}万元</div>
|
||||
<div class="unit-style">原片总成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.matPriceO }}万元</div>
|
||||
<div class="unit-style">原料成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.energyPriceO }}万元</div>
|
||||
<div class="unit-style">能源成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.otherPriceO }}万元</div>
|
||||
<div class="unit-style">其他成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.ratioO }}</div>
|
||||
<div class="unit-style">原片良品率/%</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.areaPriceO }}元</div>
|
||||
<div class="unit-style">原片每平米成本</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-col>
|
||||
<el-col :span="24" style="position: relative">
|
||||
<div class="title">
|
||||
<svg-icon icon-class="home-produce" />
|
||||
<span class="title-inner">深加工成本</span>
|
||||
</div>
|
||||
<el-row class="box">
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.priceD }}万元</div>
|
||||
<div class="unit-style">深加工总成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.energyPriceD }}万元</div>
|
||||
<div class="unit-style">能源成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.otherPriceD }}万元</div>
|
||||
<div class="unit-style">其他成本</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.ratioD }}</div>
|
||||
<div class="unit-style">深加工良品率/%</div>
|
||||
</el-col>
|
||||
<el-col :span="4" class="num-box shadow">
|
||||
<div class="num-style">{{ homeData.areaPriceD }}元</div>
|
||||
<div class="unit-style">深加工每平米成本</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-col :span="16">
|
||||
<el-tag type="info" @click="changeTime('yesterday')">昨日</el-tag>
|
||||
<el-tag type="info" @click="changeTime('week')">本周</el-tag>
|
||||
<el-tag type="info" @click="changeTime('month')">本月</el-tag>
|
||||
<el-tag type="info" @click="changeTime('year')">本年</el-tag>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row class="main-bottom" :gutter="16" v-if="false">
|
||||
<el-col :span="9">
|
||||
<div class="chart-wrapper">
|
||||
<line-chart :chart-data="lineChartData" />
|
||||
</div>
|
||||
</el-col>
|
||||
<el-col :span="7">
|
||||
<div class="chart-wrapper">
|
||||
<pie-chart />
|
||||
</div>
|
||||
|
||||
<!-- 成本概览卡片 -->
|
||||
<el-row :gutter="20" class="card-row">
|
||||
<el-col :span="8">
|
||||
<el-card class="cost-card">
|
||||
<div class="card-title">总制造成本(元/平米)</div>
|
||||
<div class="card-content">
|
||||
<div>
|
||||
目标
|
||||
<span class="target-val">16</span>
|
||||
</div>
|
||||
<div>
|
||||
实际
|
||||
<span class="actual-val">12.8</span>
|
||||
</div>
|
||||
<el-progress :stroke-width="13" :percentage="80" color="#42b983" />
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<div class="chart-wrapper">
|
||||
<bar-chart />
|
||||
</div>
|
||||
<el-card class="cost-card">
|
||||
<div class="card-title">原片成本(元/平米)</div>
|
||||
<div class="card-content">
|
||||
<div>
|
||||
目标
|
||||
<span class="target-val">16</span>
|
||||
</div>
|
||||
<div>
|
||||
实际
|
||||
<span class="actual-val">12.8</span>
|
||||
</div>
|
||||
<el-progress :stroke-width="13" :percentage="99" color="#42b983" />
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-card class="cost-card">
|
||||
<div class="card-title">加工成本(元/平米)</div>
|
||||
<div class="card-content">
|
||||
<div>
|
||||
目标
|
||||
<span class="target-val">16</span>
|
||||
</div>
|
||||
<div>
|
||||
实际
|
||||
<span class="actual-val">12.8</span>
|
||||
</div>
|
||||
<el-progress :stroke-width="13" :percentage="99" color="#42b983" />
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- 成本构成区域 -->
|
||||
<el-row :gutter="20" class="composition-row">
|
||||
<!-- 饼图 -->
|
||||
<el-col :span="6">
|
||||
<el-card class="composition-card">
|
||||
<div class="card-title">成本构成</div>
|
||||
<div id="costPie" class="chart" style="height: 350px"></div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<!-- 原片/加工成本子项 -->
|
||||
<el-col :span="18">
|
||||
<el-card class="composition-card">
|
||||
<div class="card-title">成本构成</div>
|
||||
|
||||
<!-- 原片成本子项 -->
|
||||
<div class="sub-cost-group">
|
||||
<div class="sub-cost-title">原片成本</div>
|
||||
<div class="sub-cost">
|
||||
<div
|
||||
v-for="(item, idx) in rawSubCosts"
|
||||
:key="idx"
|
||||
class="sub-cost-div">
|
||||
<div class="sub-cost-name">
|
||||
{{ item.name }}
|
||||
<div class="sub-cost-val">{{ item.val }}</div>
|
||||
</div>
|
||||
<div style="text-align: center">
|
||||
<el-progress
|
||||
type="circle"
|
||||
:percentage="89"
|
||||
:width="60"
|
||||
:stroke-width="10"
|
||||
:show-text="false"
|
||||
color="#e74c3c" />
|
||||
</div>
|
||||
<div class="sub-cost-name">
|
||||
目标
|
||||
<span class="red-text">{{ item.target }}</span>
|
||||
</div>
|
||||
<div class="sub-cost-name">
|
||||
完成率
|
||||
<span class="red-text">89%</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<el-divider></el-divider>
|
||||
<!-- 加工成本子项 -->
|
||||
<div class="sub-cost-group" style="margin-top: 20px">
|
||||
<div class="sub-cost-title">加工成本</div>
|
||||
<div class="sub-cost">
|
||||
<div
|
||||
v-for="(item, idx) in processSubCosts"
|
||||
:key="idx"
|
||||
class="sub-cost-div">
|
||||
<div class="sub-cost-name">
|
||||
{{ item.name }}
|
||||
<div class="sub-cost-val">{{ item.val }}</div>
|
||||
</div>
|
||||
<div style="text-align: center">
|
||||
<el-progress
|
||||
type="circle"
|
||||
:percentage="89"
|
||||
:width="60"
|
||||
:stroke-width="10"
|
||||
:show-text="false"
|
||||
color="#e74c3c" />
|
||||
</div>
|
||||
<div class="sub-cost-name">
|
||||
目标
|
||||
<span class="red-text">{{ item.target }}</span>
|
||||
</div>
|
||||
<div class="sub-cost-name">
|
||||
完成率
|
||||
<span class="red-text">89%</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- 趋势图区域 -->
|
||||
<el-row :gutter="20" class="trend-row">
|
||||
<!-- 总制造成本趋势 -->
|
||||
<el-col :span="8">
|
||||
<el-card class="trend-card">
|
||||
<div class="card-title">总制造成本趋势</div>
|
||||
<div id="totalTrend" class="chart" style="height: 300px"></div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<!-- 原片/加工成本趋势 -->
|
||||
<el-col :span="8">
|
||||
<el-card class="trend-card">
|
||||
<div class="card-title">原片/加工成本趋势</div>
|
||||
<el-tabs v-model="costTab" type="card" style="margin-bottom: 10px">
|
||||
<el-tab-pane label="原片成本" name="raw"></el-tab-pane>
|
||||
<el-tab-pane label="加工成本" name="process"></el-tab-pane>
|
||||
</el-tabs>
|
||||
<div id="rawProcessTrend" class="chart" style="height: 300px"></div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<!-- 单项成本趋势 -->
|
||||
<el-col :span="8">
|
||||
<el-card class="trend-card">
|
||||
<div class="card-title">单项成本趋势</div>
|
||||
<el-tabs v-model="itemTab" type="card" style="margin-bottom: 10px">
|
||||
<el-tab-pane label="人工成本" name="labor"></el-tab-pane>
|
||||
<el-tab-pane label="原料成本" name="material"></el-tab-pane>
|
||||
<el-tab-pane label="制造费用" name="expense"></el-tab-pane>
|
||||
<el-tab-pane label="玻璃热耗" name="heat"></el-tab-pane>
|
||||
<el-tab-pane label="原片成品率" name="yield"></el-tab-pane>
|
||||
</el-tabs>
|
||||
<div id="itemTrend" class="chart" style="height: 300px"></div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<div
|
||||
class="main-footer"
|
||||
style="
|
||||
color: #c7c7c7;
|
||||
user-select: none;
|
||||
font-size: 14px;
|
||||
letter-spacing: 1px;
|
||||
height: 30px;
|
||||
display: grid;
|
||||
place-content: center;
|
||||
">
|
||||
© 中建材智能自动化研究院有限公司
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import moment from 'moment';
|
||||
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||
import LineChart from '../dashboard/LineChart';
|
||||
import PieChart from '../dashboard/PieChart';
|
||||
import BarChart from '../dashboard/BarChart';
|
||||
import PanelGroup from '../dashboard/PanelGroup';
|
||||
import { getData } from '@/api/cost/allCost';
|
||||
import { getUserProfile } from '@/api/system/user';
|
||||
|
||||
const lineChartData = {
|
||||
newVisitis: {
|
||||
expectedData: [100, 120, 161, 134, 105, 160, 165],
|
||||
actualData: [120, 82, 91, 154, 162, 140, 145],
|
||||
},
|
||||
messages: {
|
||||
expectedData: [200, 192, 120, 144, 160, 130, 140],
|
||||
actualData: [180, 160, 151, 106, 145, 150, 130],
|
||||
},
|
||||
purchases: {
|
||||
expectedData: [80, 100, 121, 104, 105, 90, 100],
|
||||
actualData: [120, 90, 100, 138, 142, 130, 130],
|
||||
},
|
||||
shoppings: {
|
||||
expectedData: [130, 140, 141, 142, 145, 150, 160],
|
||||
actualData: [120, 82, 91, 154, 162, 140, 130],
|
||||
},
|
||||
};
|
||||
import * as echarts from 'echarts';
|
||||
|
||||
export default {
|
||||
name: 'Home',
|
||||
mixins: [tableHeightMixin],
|
||||
components: {
|
||||
LineChart,
|
||||
PieChart,
|
||||
PanelGroup,
|
||||
BarChart,
|
||||
},
|
||||
computed: {
|
||||
gradientBackground() {
|
||||
return {
|
||||
'background-image':
|
||||
'linear-gradient(90deg, #f0f0f0 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, #f0f0f0 50%, #f0f0f0 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0))',
|
||||
'background-size': '100px 100px', // 调整条纹的大小
|
||||
};
|
||||
},
|
||||
},
|
||||
name: 'CostDashboard',
|
||||
data() {
|
||||
return {
|
||||
activeName: '日',
|
||||
user: '',
|
||||
lineChartData: lineChartData.newVisitis,
|
||||
homeData: {},
|
||||
timeday: moment(new Date()).subtract(1, 'days').format('YYYY-MM-DD'),
|
||||
startTime:
|
||||
moment(new Date()).subtract(0, 'days').format('YYYY-MM-DD') +
|
||||
' 00:00:00',
|
||||
endTime:
|
||||
moment(new Date()).subtract(-1, 'days').format('YYYY-MM-DD') +
|
||||
' 00:00:00',
|
||||
|
||||
pickerOptions: {
|
||||
disabledDate(time) {
|
||||
return time.getTime() + 3600 * 1000 * 24 > Date.now();
|
||||
},
|
||||
shortcuts: [
|
||||
{
|
||||
text: '今天',
|
||||
onClick(picker) {
|
||||
picker.$emit('pick', new Date());
|
||||
},
|
||||
},
|
||||
{
|
||||
text: '昨天',
|
||||
onClick(picker) {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
||||
picker.$emit('pick', date);
|
||||
},
|
||||
},
|
||||
{
|
||||
text: '一周前',
|
||||
onClick(picker) {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit('pick', date);
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
dateRange: ['2023-05-06', '2023-05-06'],
|
||||
costTab: 'raw',
|
||||
itemTab: 'labor',
|
||||
// 原片成本子项
|
||||
rawSubCosts: [
|
||||
{ name: '人工成本', val: 4.56, target: 4.32 },
|
||||
{ name: '原料成本', val: 4.56, target: 4.32 },
|
||||
{ name: '原片制造费用', val: 4.56, target: 4.32 },
|
||||
{ name: '玻璃热耗', val: 4.56, target: 4.32 },
|
||||
{ name: '原片成品率', val: 4.56, target: 4.32 },
|
||||
],
|
||||
// 加工成本子项
|
||||
processSubCosts: [
|
||||
{ name: '人工成本', val: 4.56, target: 4.32 },
|
||||
{ name: '加工动力成本', val: 4.56, target: 4.32 },
|
||||
{ name: '加工制造费用', val: 4.56, target: 4.32 },
|
||||
{ name: '加工投入产出率', val: 4.56, target: 4.32 },
|
||||
],
|
||||
// 趋势图模拟数据
|
||||
trendX: ['00:00', '01:00', '02:00'],
|
||||
trendY: [20, 40, 50],
|
||||
targetY: 12.54,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
beforeDestroy() {
|
||||
mounted() {
|
||||
this.initCostPie();
|
||||
this.initTotalTrend();
|
||||
this.initRawProcessTrend();
|
||||
this.initItemTrend();
|
||||
},
|
||||
methods: {
|
||||
getData() {
|
||||
let listQuery = {
|
||||
//分页
|
||||
pageSize: 10,
|
||||
pageNo: 1,
|
||||
statisticType: ['', '日', '周', '月', '年'].indexOf(this.activeName),
|
||||
startTime: this.timeday + ' 00:00:00',
|
||||
};
|
||||
getData(listQuery).then((response) => {
|
||||
this.homeData = response.data;
|
||||
for (let i in this.homeData) {
|
||||
this.homeData[i] = Number(this.homeData[i]).toFixed(2);
|
||||
}
|
||||
// 切换时间范围(示例)
|
||||
changeTime(type) {
|
||||
// 实际项目中需根据type请求对应数据
|
||||
console.log('切换时间:', type);
|
||||
},
|
||||
// 初始化成本构成饼图
|
||||
initCostPie() {
|
||||
const pieChart = echarts.init(document.getElementById('costPie'));
|
||||
pieChart.setOption({
|
||||
tooltip: { trigger: 'item' },
|
||||
legend: {
|
||||
orient: 'horizontal', // 水平排列
|
||||
bottom: 0, // 放在底部
|
||||
icon: 'circle',
|
||||
left: 'center',
|
||||
formatter: function (name) {
|
||||
return name;
|
||||
},
|
||||
},
|
||||
series: [
|
||||
{
|
||||
type: 'pie',
|
||||
data: [
|
||||
{ name: '原料成本(4.2元)', value: 29.9 },
|
||||
{ name: '动力成本(2.1元)', value: 24 },
|
||||
{ name: '人工成本(1.5元)', value: 24 },
|
||||
{ name: '辅料成本(0.5元)', value: 21.2 },
|
||||
{ name: '制造费用(0.5元)', value: 21.2 },
|
||||
],
|
||||
label: { show: false },
|
||||
labelLine: { show: false },
|
||||
bottom: 10,
|
||||
},
|
||||
],
|
||||
});
|
||||
window.addEventListener('resize', () => pieChart.resize());
|
||||
},
|
||||
timedayChange() {
|
||||
let listQuery = {
|
||||
//分页
|
||||
pageSize: 10,
|
||||
pageNo: 1,
|
||||
statisticType: ['', '日', '周', '月', '年'].indexOf(this.activeName),
|
||||
startTime: this.timeday + ' 00:00:00',
|
||||
};
|
||||
getData(listQuery).then((response) => {
|
||||
this.homeData = response.data;
|
||||
for (let i in this.homeData) {
|
||||
this.homeData[i] = Number(this.homeData[i]).toFixed(2);
|
||||
}
|
||||
});
|
||||
// 初始化总制造成本趋势图
|
||||
initTotalTrend() {
|
||||
const totalChart = echarts.init(document.getElementById('totalTrend'));
|
||||
totalChart.setOption({
|
||||
grid: { top: 20, bottom: 30, left: 30, right: 10 },
|
||||
xAxis: { type: 'category', data: this.trendX },
|
||||
yAxis: { type: 'value', min: -20, max: 60 },
|
||||
series: [
|
||||
{
|
||||
name: '实际值',
|
||||
type: 'line',
|
||||
data: this.trendY,
|
||||
lineStyle: { color: '#409eff' },
|
||||
},
|
||||
{
|
||||
name: '目标值',
|
||||
type: 'line',
|
||||
data: [this.targetY, this.targetY, this.targetY],
|
||||
lineStyle: { type: 'dashed', color: '#e6a23c' },
|
||||
},
|
||||
],
|
||||
});
|
||||
window.addEventListener('resize', () => totalChart.resize());
|
||||
},
|
||||
goDetail() {
|
||||
this.$router.push({ path: 'indexDetail' });
|
||||
// 初始化原片/加工成本趋势图
|
||||
initRawProcessTrend() {
|
||||
const rpChart = echarts.init(document.getElementById('rawProcessTrend'));
|
||||
rpChart.setOption({
|
||||
grid: { top: 10, bottom: 20, left: 20, right: 10 },
|
||||
xAxis: { type: 'category', data: this.trendX },
|
||||
yAxis: { type: 'value', min: -20, max: 60 },
|
||||
series: [
|
||||
{
|
||||
name: '实际值',
|
||||
type: 'line',
|
||||
data: this.trendY,
|
||||
lineStyle: { color: '#409eff' },
|
||||
},
|
||||
{
|
||||
name: '目标值',
|
||||
type: 'line',
|
||||
data: [this.targetY, this.targetY, this.targetY],
|
||||
lineStyle: { type: 'dashed', color: '#e6a23c' },
|
||||
},
|
||||
],
|
||||
});
|
||||
window.addEventListener('resize', () => rpChart.resize());
|
||||
},
|
||||
// 初始化单项成本趋势图
|
||||
initItemTrend() {
|
||||
const itemChart = echarts.init(document.getElementById('itemTrend'));
|
||||
itemChart.setOption({
|
||||
grid: { top: 10, bottom: 20, left: 20, right: 10 },
|
||||
xAxis: { type: 'category', data: this.trendX },
|
||||
yAxis: { type: 'value', min: -20, max: 60 },
|
||||
series: [
|
||||
{
|
||||
name: '实际值',
|
||||
type: 'line',
|
||||
data: this.trendY,
|
||||
lineStyle: { color: '#409eff' },
|
||||
},
|
||||
{
|
||||
name: '目标值',
|
||||
type: 'line',
|
||||
data: [this.targetY, this.targetY, this.targetY],
|
||||
lineStyle: { type: 'dashed', color: '#e6a23c' },
|
||||
},
|
||||
],
|
||||
});
|
||||
window.addEventListener('resize', () => itemChart.resize());
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.home-page::before {
|
||||
background-image: url('~@/assets/img/home-bg.png');
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.date-tabs {
|
||||
padding-left: 40px;
|
||||
padding-top: 20px;
|
||||
position: relative;
|
||||
<style scoped>
|
||||
.top-bar {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
:deep(.date-tabs) {
|
||||
.el-tabs__header {
|
||||
margin-bottom: 8px;
|
||||
display: inline-block;
|
||||
transform: translateY(-12px);
|
||||
}
|
||||
|
||||
.el-tabs__content {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.el-tabs__item {
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
line-height: 36px !important;
|
||||
height: 36px;
|
||||
}
|
||||
.el-tabs__item.is-active {
|
||||
color: #0b58ff;
|
||||
}
|
||||
.card-row,
|
||||
.composition-row {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.detail {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 260px;
|
||||
top: 10px;
|
||||
.cost-card .card-title {
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
:deep(.detail) {
|
||||
.el-input__inner {
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
// .current-date {
|
||||
// color: #fff;
|
||||
// font-size: 18px;
|
||||
// position: absolute;
|
||||
// left: 260px;
|
||||
// top: 14px;
|
||||
// }
|
||||
.current-time {
|
||||
color: #fff;
|
||||
.cost-card .card-content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
font-size: 18px;
|
||||
position: absolute;
|
||||
right: 38px;
|
||||
top: 14px;
|
||||
}
|
||||
.main-top {
|
||||
width: 100%;
|
||||
padding: 0 20px 0 40px;
|
||||
.title {
|
||||
position: absolute;
|
||||
left: 34px;
|
||||
top: 20px;
|
||||
width: 180px;
|
||||
font-size: 32px;
|
||||
z-index: 10;
|
||||
.title-inner {
|
||||
position: absolute;
|
||||
left: 42px;
|
||||
top: 5px;
|
||||
font-size: calc(100vw * 20 / 1920);
|
||||
}
|
||||
}
|
||||
.box {
|
||||
background-color: #fff;
|
||||
border-radius: 24px;
|
||||
height: 192px;
|
||||
padding: 40px 24px 32px 24px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 8px 8px 0 gray;
|
||||
.num-box {
|
||||
height: 120px;
|
||||
padding-top: 26px;
|
||||
text-align: center;
|
||||
.num-style {
|
||||
color: #000;
|
||||
font-size: calc(100vw * 40 / 1920);
|
||||
}
|
||||
.unit-style {
|
||||
color: rgba(0, 0, 0, 0.7);
|
||||
font-size: calc(100vw * 18 / 1920);
|
||||
}
|
||||
}
|
||||
.shadow {
|
||||
background: linear-gradient(90deg, #ffffff 80%, #f2f4f9 100%);
|
||||
}
|
||||
}
|
||||
.target-val {
|
||||
color: #666;
|
||||
margin-left: 5px;
|
||||
font-size: 20px;
|
||||
}
|
||||
.main-bottom {
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
.chart-wrapper {
|
||||
margin-left: 10px;
|
||||
height: 425px;
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 3px 3px 0 gray;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style lang="scss">
|
||||
.home-page {
|
||||
.el-progress-bar__inner {
|
||||
background-image: url('~@/assets/img/home-progress-bg.png');
|
||||
background-size: cover;
|
||||
}
|
||||
.actual-val {
|
||||
color: #42b983;
|
||||
margin-left: 5px;
|
||||
font-size: 20px;
|
||||
}
|
||||
.composition-card {
|
||||
height: 480px;
|
||||
}
|
||||
.composition-card .card-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.sub-cost {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
.sub-cost-group .sub-cost-title {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.sub-cost-group .sub-cost-div {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
border: 1px solid rgb(220, 220, 220, 0.5);
|
||||
padding: 10px;
|
||||
}
|
||||
.sub-cost-name {
|
||||
text-align: center;
|
||||
margin-top: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.sub-cost-val {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.completion {
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
.red-text {
|
||||
color: #e74c3c;
|
||||
}
|
||||
.trend-card {
|
||||
height: 450px;
|
||||
}
|
||||
.trend-card .card-title {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* @Author: zwq
|
||||
* @Date: 2025-10-13 15:07:24
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2025-12-01 14:40:46
|
||||
* @LastEditTime: 2025-12-03 15:48:26
|
||||
* @Description:
|
||||
-->
|
||||
<template>
|
||||
@@ -826,10 +826,14 @@ export default {
|
||||
});
|
||||
checkPlan(data).then((RES) => {
|
||||
createStepFour(this.dataForm.id).then((res) => {
|
||||
this.$modal.msgSuccess('创建计划成功');
|
||||
this.stepNum = 1;
|
||||
this.$emit('setSN', this.stepNum);
|
||||
this.$emit('refreshDataList');
|
||||
if (res.code === 200 || res.code === 0) {
|
||||
this.$modal.msgSuccess('创建计划成功');
|
||||
this.stepNum = 1;
|
||||
this.$emit('setSN', this.stepNum);
|
||||
this.$emit('refreshDataList');
|
||||
} else {
|
||||
this.$message(res.msg);
|
||||
}
|
||||
});
|
||||
});
|
||||
return;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* @Author: zwq
|
||||
* @Date: 2021-11-18 14:16:25
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2025-11-27 14:06:11
|
||||
* @LastEditTime: 2025-12-11 10:47:50
|
||||
* @Description:
|
||||
-->
|
||||
<template>
|
||||
@@ -66,7 +66,7 @@
|
||||
type="date"
|
||||
placeholder="选择日期"
|
||||
format="yyyy-MM-dd"
|
||||
value-format="--MM-dd"
|
||||
value-format="yyyy-MM-dd"
|
||||
@blur="$forceUpdate()"
|
||||
:picker-options="pickerOptions"></el-date-picker>
|
||||
</el-form-item>
|
||||
@@ -81,7 +81,7 @@
|
||||
v-model="dataForm.dateDayArr"
|
||||
type="daterange"
|
||||
format="yyyy-MM-dd"
|
||||
value-format="--MM-dd"
|
||||
value-format="yyyy-MM-dd"
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
@@ -341,45 +341,70 @@ export default {
|
||||
this.$refs['dataForm'].resetFields();
|
||||
if (this.dataForm.id) {
|
||||
getHoliday(this.dataForm.id).then((res) => {
|
||||
//设置年份,不重复的直接用返回的年份,重复的直接用当年年份
|
||||
let year = new Date().getFullYear();
|
||||
if (res.data.calendarType == 1 && !res.data.repeat) {
|
||||
year = res.data.noRepeatYear;
|
||||
} else if (res.data.calendarType == 2 && !res.data.repeat) {
|
||||
year = res.data.noRepeatYearChinese;
|
||||
}
|
||||
|
||||
this.dataForm = res.data;
|
||||
if (
|
||||
this.dataForm.dateType == 1 &&
|
||||
this.dataForm.calendarType == 1
|
||||
) {
|
||||
this.dataForm.dateDay = this.dataForm.oneDay;
|
||||
this.dataForm.dateDay =
|
||||
year + '-' + this.dataForm.oneDay.slice(-5);
|
||||
} else if (
|
||||
this.dataForm.dateType == 2 &&
|
||||
this.dataForm.calendarType == 1
|
||||
) {
|
||||
let num = this.compareMonthDay(
|
||||
this.dataForm.startDay.slice(-5),
|
||||
this.dataForm.endDay.slice(-5)
|
||||
);
|
||||
this.dataForm.dateDayArr = [
|
||||
this.dataForm.startDay,
|
||||
this.dataForm.endDay,
|
||||
year + '-' + this.dataForm.startDay.slice(-5),
|
||||
(num > 0 ? year : year + 1) +
|
||||
'-' +
|
||||
this.dataForm.endDay.slice(-5),
|
||||
];
|
||||
} else if (
|
||||
this.dataForm.dateType == 1 &&
|
||||
this.dataForm.calendarType == 2
|
||||
) {
|
||||
this.dataForm.dateDayChinese =
|
||||
'L' +
|
||||
new Date().getFullYear() +
|
||||
this.dataForm.oneDayChinese.slice(-6);
|
||||
'L' + year + this.dataForm.oneDayChinese.slice(-6);
|
||||
} else if (
|
||||
this.dataForm.dateType == 2 &&
|
||||
this.dataForm.calendarType == 2
|
||||
) {
|
||||
let num = this.compareMonthDay(
|
||||
this.dataForm.startDayChinese.slice(-6),
|
||||
this.dataForm.endDayChinese.slice(-6)
|
||||
);
|
||||
this.dataForm.dateDayArrChinese = [
|
||||
'L' + year + this.dataForm.startDayChinese.slice(-6),
|
||||
'L' +
|
||||
new Date().getFullYear() +
|
||||
this.dataForm.startDayChinese.slice(-6),
|
||||
'L' +
|
||||
new Date().getFullYear() +
|
||||
this.dataForm.endDayChinese.slice(-6),
|
||||
(num > 0 ? year : year + 1) +
|
||||
+this.dataForm.endDayChinese.slice(-6),
|
||||
];
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
//用于比较日期大小,判断年份是否要加1
|
||||
compareMonthDay(dateStr1, dateStr2) {
|
||||
const [month1, day1] = dateStr1.split('-').map(Number);
|
||||
const [month2, day2] = dateStr2.split('-').map(Number);
|
||||
|
||||
if (month1 !== month2) {
|
||||
return month2 - month1;
|
||||
}
|
||||
return day2 - day1;
|
||||
},
|
||||
editHoliday() {
|
||||
this.detail = false;
|
||||
},
|
||||
@@ -442,13 +467,16 @@ export default {
|
||||
return false;
|
||||
}
|
||||
if (this.dataForm.dateType == 1 && this.dataForm.calendarType == 1) {
|
||||
this.dataForm.oneDay = this.dataForm.dateDay;
|
||||
const [year, month, day] = this.dataForm.dateDay.split('-');
|
||||
this.dataForm.oneDay = `--${month}-${day}`;
|
||||
} else if (
|
||||
this.dataForm.dateType == 2 &&
|
||||
this.dataForm.calendarType == 1
|
||||
) {
|
||||
this.dataForm.startDay = this.dataForm.dateDayArr[0];
|
||||
this.dataForm.endDay = this.dataForm.dateDayArr[1];
|
||||
const [year, month, day] = this.dataForm.dateDayArr[0].split('-');
|
||||
this.dataForm.startDay = `--${month}-${day}`;
|
||||
const [year1, month1, day1] = this.dataForm.dateDayArr[1].split('-');
|
||||
this.dataForm.endDay = `--${month1}-${day1}`;
|
||||
} else if (
|
||||
this.dataForm.dateType == 1 &&
|
||||
this.dataForm.calendarType == 2
|
||||
@@ -464,10 +492,35 @@ export default {
|
||||
this.dataForm.endDayChinese =
|
||||
'--' + this.dataForm.dateDayArrChinese[1].slice(-5);
|
||||
}
|
||||
if (this.dataForm.calendarType == 1 && !this.dataForm.repeat) {
|
||||
this.dataForm.noRepeatYear = new Date().getFullYear();
|
||||
} else if (this.dataForm.calendarType == 2 && !this.dataForm.repeat) {
|
||||
this.dataForm.noRepeatYearChinese = new Date().getFullYear();
|
||||
//是否每年重复,不重复的话需要传 年份
|
||||
if (
|
||||
this.dataForm.dateType == 1 &&
|
||||
this.dataForm.calendarType == 1 &&
|
||||
!this.dataForm.repeat
|
||||
) {
|
||||
const [year, month, day] = this.dataForm.dateDay.split('-');
|
||||
this.dataForm.noRepeatYear = year;
|
||||
} else if (
|
||||
this.dataForm.dateType == 2 &&
|
||||
this.dataForm.calendarType == 1 &&
|
||||
!this.dataForm.repeat
|
||||
) {
|
||||
const [year, month, day] = this.dataForm.dateDayArr[0].split('-');
|
||||
this.dataForm.noRepeatYear = year;
|
||||
} else if (
|
||||
this.dataForm.dateType == 1 &&
|
||||
this.dataForm.calendarType == 2 &&
|
||||
!this.dataForm.repeat
|
||||
) {
|
||||
this.dataForm.noRepeatYearChinese =
|
||||
this.dataForm.dateDayChinese.slice(1, 5);
|
||||
} else if (
|
||||
this.dataForm.dateType == 2 &&
|
||||
this.dataForm.calendarType == 2 &&
|
||||
!this.dataForm.repeat
|
||||
) {
|
||||
this.dataForm.noRepeatYearChinese =
|
||||
this.dataForm.dateDayArrChinese[0].slice(1, 5);
|
||||
}
|
||||
// 修改的提交
|
||||
if (this.dataForm.id) {
|
||||
@@ -475,8 +528,45 @@ export default {
|
||||
this.dataForm.inherited = false;
|
||||
}
|
||||
updateHoliday(this.dataForm).then((res) => {
|
||||
if (res.code === 0 || res.code === 200) {
|
||||
if (!res.data.updateFlag) {
|
||||
this.$modal.msgSuccess('修改成功');
|
||||
this.$emit('refreshPage');
|
||||
} else {
|
||||
this.$confirm(
|
||||
'新增节假日影响已有排班计划,是否立即更新?',
|
||||
'更新排班',
|
||||
{
|
||||
confirmButtonText: '立即更新',
|
||||
cancelButtonText: '暂不更新',
|
||||
type: 'warning',
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
updateSchedule({ logId: res.data.logId }).then((res1) => {
|
||||
this.$modal.msgSuccess('更新成功');
|
||||
});
|
||||
this.$emit('refreshPage');
|
||||
})
|
||||
.catch(() => {
|
||||
this.$message({
|
||||
type: 'info',
|
||||
message: '已取消',
|
||||
});
|
||||
this.$emit('refreshPage');
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.$modal.msg(res.msg);
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
// 添加的提交
|
||||
createHoliday(this.dataForm).then((res) => {
|
||||
if (res.code === 0 || res.code === 200) {
|
||||
if (!res.data.updateFlag) {
|
||||
this.$modal.msgSuccess('修改成功');
|
||||
this.$modal.msgSuccess('新增成功');
|
||||
this.$emit('refreshPage');
|
||||
} else {
|
||||
this.$confirm(
|
||||
@@ -502,37 +592,8 @@ export default {
|
||||
this.$emit('refreshPage');
|
||||
});
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
// 添加的提交
|
||||
createHoliday(this.dataForm).then((res) => {
|
||||
if (!res.data.updateFlag) {
|
||||
this.$modal.msgSuccess('新增成功');
|
||||
this.$emit('refreshPage');
|
||||
} else {
|
||||
this.$confirm(
|
||||
'新增节假日影响已有排班计划,是否立即更新?',
|
||||
'更新排班',
|
||||
{
|
||||
confirmButtonText: '立即更新',
|
||||
cancelButtonText: '暂不更新',
|
||||
type: 'warning',
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
updateSchedule({ logId: res.data.logId }).then((res1) => {
|
||||
this.$modal.msgSuccess('更新成功');
|
||||
});
|
||||
this.$emit('refreshPage');
|
||||
})
|
||||
.catch(() => {
|
||||
this.$message({
|
||||
type: 'info',
|
||||
message: '已取消',
|
||||
});
|
||||
this.$emit('refreshPage');
|
||||
});
|
||||
this.$modal.msg(res.msg);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
@@ -210,7 +210,7 @@
|
||||
</template>
|
||||
<script>
|
||||
import moment from 'moment';
|
||||
import JDatePickerScript from './jDatePicker.js'
|
||||
import JDatePickerScript from './JDatePicker.js'
|
||||
|
||||
export default {
|
||||
props: {
|
||||
|
||||
Reference in New Issue
Block a user