sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

View File

@ -0,0 +1,481 @@
<template>
<div class="l-layout">
<v-row ref="searchFilter">
<v-col :cols="12">
<v-card class="searchFilter">
<v-row align="center" no-gutters>
<v-col :cols="4">
<component
:is="'selectCodeList'"
:parentPrgmId="myPrgmId"
:label="'시스템구분'"
dataKey="sysDivCd"
:sendParam="{ commGrpCd: 'CO_SYSDIV', useFg: '1' }"
:addAll="true"
/>
</v-col>
<v-col :cols="4">
<component
:is="'selectCodeList'"
:parentPrgmId="myPrgmId"
:label="'사용여부'"
:dataKey="'useFg'"
:sendParam="{ commGrpCd: 'CO_USEFG', useFg: '1' }"
:addAll="true"
/>
</v-col>
<v-col :cols="4" class="text-right">
<v-btn :ripple="false" @click="search()">조회</v-btn>
</v-col>
</v-row>
</v-card>
</v-col>
</v-row>
<v-row ref="contents">
<v-col :cols="4" class="h100">
<v-card class="pb-5">
<div class="d-flex align-center justify-space-between pa-5">
<v-card-title class="pa-0">메뉴 리스트</v-card-title>
<div>
<Buttons
:parentPrgmId="myPrgmId"
:bindingData="gridName"
:btnActionsFnc="btnActions"
/>
</div>
</div>
<div class="h100 px-5" style="height:calc(100% - 70px)">
<div ref="treeGridParent" class="w100 h100">
<component
:ref="gridName + myPrgmId"
:is="loadTree ? 'Grid' : null"
:gridName="gridName"
:parentPrgmId="myPrgmId"
@getRowsData="getRowData"
/>
</div>
</div>
</v-card>
</v-col>
<v-col :cols="8" class="h100">
<v-card class="pb-5">
<div class="d-flex align-center justify-space-between pa-5">
<v-card-title class="pa-0">메뉴 상세</v-card-title>
</div>
<div class="px-5" style="height:calc(100% - 76px)">
<component
:is="'Form'"
:parentPrgmId="myPrgmId"
:detailList="detailList"
@gridEditingFinish="gridEditingFinish"
/>
</div>
</v-card>
</v-col>
</v-row>
</div>
</template>
<script>
import mixinGlobal from '@/mixin/global.js';
import Utility from '~/plugins/utility';
import { mapState, mapMutations, mapActions } from 'vuex';
import Grid from '~/components/common/Grid';
import Buttons from '~/components/common/button/Buttons';
import selectCodeList from '@/components/common/select/selectCodeList';
import Form from '~/components/common/form/Form';
let myTitle;
let myPrgmId;
export default {
mixins: [mixinGlobal],
async asyncData(context) {
const myState = context.store.state;
myPrgmId = context.route.query.prgmId;
await context.store.commit('setActiveMenuInfo', myState.menuData[myPrgmId]);
myTitle = await myState.activeMenuInfo.menuNm;
},
meta: {
title: () => {
return myTitle;
},
prgmId: myPrgmId,
closable: true,
},
components: {
Grid,
Buttons,
selectCodeList,
Form,
},
data() {
return {
myPrgmId: myPrgmId,
gridName: 'treeGrid',
loadTree: false,
detailList: myDetail,
addRowFg: false,
};
},
computed: {
...mapState({
pageData: state => state.pageData[myPrgmId],
}),
chkIsFind() {
// 조회 플래그
return this.pageData.isFind;
},
chkSysDivCd() {
// 사용여부 선택 감지
return this.pageData.sysDivCd;
},
chkUseFg() {
// 사용여부 선택 감지
return this.pageData.useFg;
},
ChkRowGridSelectData() {
return this.pageData.rowGridSelectData;
},
},
watch: {
chkIsFind(val) {
if (val) this.search();
},
chkSysDivCd() {
this.setPageData({ isFind: true });
},
chkUseFg() {
this.setPageData({ isFind: true });
},
},
async beforeCreate() {
myPrgmId = this.$route.query.prgmId;
await this.$store.dispatch('chkOpenTabList', {
key: 'create',
prgmId: myPrgmId,
defaultData: defaultData,
});
},
mounted() {
this.init();
},
methods: {
init() {
this.gridInit();
},
search() {
this.loadTree = false;
this.addRowFg = false;
this.getTreeData();
},
gridInit() {
const treeGridHeight = this.$refs.treeGridParent.offsetHeight - 30;
const myOptionsTree = {
treeColumnOptions: {
name: 'menuNm',
},
scrollX: false,
};
this.setGridOption({
gridKey: this.gridName,
// value: myOptionsTree
value: Object.assign(
Utility.defaultGridOption(treeGridHeight),
myOptionsTree,
),
});
this.setGridColumn({
gridKey: this.gridName,
value: [
{ header: '메뉴명', name: 'menuNm' },
{ header: 'prgmId ', name: 'prgmId', hidden: true },
{ header: 'sysDivCd ', name: 'sysDivCd', hidden: true },
],
});
this.getTreeData();
},
// 메뉴리스트 조회
async getTreeData() {
let res = await this.postApiReturn({
apiKey: 'selectMenu',
resKey: 'menuData',
sendParam: {
sysDivCd: this.pageData.sysDivCd,
useFg: this.pageData.useFg,
comId: this.comId,
},
});
res = res.map(item => {
const newItem = {
...item,
menuIdNm: item.menuNm,
menuId: item.menuId,
parentId: item.parentId,
useFg: item.useFg === '1' ? true : false,
rowStat: null,
upMenuId:
item.upMenuId && item.upMenuId != '0'
? item.upMenuId
: item.upMenuId == '0'
? '0'
: 'ROOT',
};
return newItem;
});
const setTreeData = await this.setTree({
treeKey: 'MENU_ID',
value: res,
});
this.loadTree = true;
// console.log("setTreeData = ", setTreeData);
await this.setGridData({
gridKey: this.gridName,
value: setTreeData.ROOT || [],
});
// 첫번째 row 선택상태
this.$refs[this.gridName + this.myPrgmId].focus({
//rowKey: 0,
rowKey:
this.pageData.rowGridSelectKey == '' ||
this.pageData.rowGridSelectKey == null
? 0
: this.pageData.rowGridSelectKey ==
this.$refs[this.gridName + this.myPrgmId].getData().length - 1
? this.pageData.rowGridSelectKey
: 0,
columnName: 'menuNm',
setScroll: true,
});
this.setPageData({ isFind: false });
},
async getRowData(data) {
this.setPageData({
rowGridSelectKey: data.rowKey,
rowGridSelectData: data,
});
},
async btnActions(action) {
let dataArr = [];
switch (action) {
case 'add':
if (!this.addRowFg) {
let upMenuId = this.ChkRowGridSelectData.menuId;
if (upMenuId == 'ROOT' || upMenuId == '00') upMenuId = '0';
this.$refs[this.gridName + this.myPrgmId].addTreeRow({
upMenuId: upMenuId,
});
this.addRowFg = true;
} else {
alert('한번에 한가지 메뉴만 추가 가능합니다.');
}
break;
case 'remove':
this.$refs[this.gridName + this.myPrgmId].removeTreeRow();
if (this.addRowFg) this.addRowFg = false;
break;
case 'save':
dataArr = this.$refs[this.gridName + this.myPrgmId].save();
var validCheck = true;
if (dataArr.length > 0) {
dataArr.forEach(item => {
if (
item.upMenuId == '' ||
item.menuNm == '' ||
item.sortSeq == null
) {
validCheck = false;
alert('필수 입력값을 입력해주세요.');
}
});
if (validCheck) {
const sendParam = {
datas: {
dsMenu: dataArr.map(item => ({
...item,
useFg: item.useFg == true ? '1' : '0',
comId: this.comId,
})),
},
params: {},
};
await this.postUpdateApi({
apiKey: 'saveMenu',
sendParam: sendParam,
});
this.loadTree = false;
this.$nextTick(() => {
this.setPageData({ isFind: true });
});
this.loadTree = true;
}
} else {
alert('저장할 내용이 없습니다.');
}
break;
default:
break;
}
},
gridEditingFinish(data) {
this.$refs[this.gridName + this.myPrgmId].editingFinish(data);
},
},
};
const defaultData = {
isFind: false, // true 경우 조회
/* 검색옵션 */
sysDivCd: '',
sysDivCdList: [],
useFg: '',
useFgList: [],
// 선택된 그룹코드 상세 데이터
rowGridSelectKey: 0,
rowGridSelectData: null,
/* data 세팅 */
treeGrid: {
data: [],
column: [],
option: {},
defaultRow: {
upMenuId: '',
menuId: '',
menuNm: '',
prgmId: '',
sysDivCd: '',
useFg: '1',
sortSeq: '',
regUserNo: '',
regDttm: '',
procUserNo: '',
procDttm: '',
rowStat: '',
},
buttonAuth: {
add: true,
remove: true,
save: true,
excel: false,
},
},
};
const myDetail = [
{
type: 'InputText',
label: '메뉴코드',
valueNm: 'menuId',
readonly: true,
cols: 6,
class: 'py-2',
required: false,
placeholder: '시스템 자동입력',
},
{
type: 'InputText',
label: '상위메뉴코드',
valueNm: 'upMenuId',
disabled: false,
cols: 6,
class: 'py-2',
required: true,
},
{
type: 'InputText',
label: '메뉴명',
valueNm: 'menuNm',
disabled: false,
cols: 6,
class: 'py-2',
required: true,
},
{
type: 'InputText',
label: '프로그램ID',
valueNm: 'prgmId',
disabled: false,
cols: 6,
class: 'py-2',
},
{
type: 'SelectBox',
label: '시스템구분',
valueNm: 'sysDivCd',
disabled: false,
cols: 6,
class: 'py-2',
list: 'sysDivCdList',
itemText: 'commCdNm',
itemValue: 'commCd',
},
{
type: 'CheckBox',
label: '사용여부',
valueNm: 'useFg',
disabled: false,
cols: 6,
class: 'py-2',
value: { '1': true, '0': false },
required: true,
},
{
type: 'InputText',
label: '정렬순서',
valueNm: 'sortSeq',
disabled: false,
cols: 6,
class: 'py-2',
required: true,
},
{
type: 'InputText',
label: '등록자No',
valueNm: 'regUserNo',
disabled: true,
cols: 6,
class: 'py-2',
placeholder: '시스템 자동입력',
},
{
type: 'InputText',
label: '등록일시',
valueNm: 'regDttm',
disabled: true,
cols: 6,
class: 'py-2',
placeholder: '시스템 자동입력',
},
{
type: 'InputText',
label: '수정자No',
valueNm: 'procUserNo',
disabled: true,
cols: 6,
class: 'py-2',
placeholder: '시스템 자동입력',
},
{
type: 'InputText',
label: '수정일시',
valueNm: 'procDttm',
disabled: true,
cols: 6,
class: 'py-2',
placeholder: '시스템 자동입력',
},
];
</script>
<style lang="scss">
@import '@/assets/scss/common.scss';
</style>