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,115 @@
<template>
<v-row class="search-box">
<v-col v-if="label" :cols="labelCols">
<label for="" class="search-box-label">
<v-icon x-small color="primary" class="mr-1">mdi-record-circle</v-icon>
{{ label }}
</label>
</v-col>
<v-col :cols="label ? textCols : ''">
<v-select
v-model="selectValue"
:items="searchParam[parentPrgmId].compKindCdList"
item-text="commCdNm"
item-value="idx"
solo
outlined
:hide-details="true"
append-icon="mdi-chevron-down"
class="v-select__custom"
></v-select>
</v-col>
</v-row>
</template>
<script>
import { mapState, mapMutations, mapActions } from 'vuex';
export default {
props: {
parentPrgmId: {
type: String,
require: true,
},
autoLoad: {
type: Boolean,
require: false,
default: true,
},
label: {
type: String,
require: false,
default: '비교 연산자',
},
addAll: {
type: Boolean,
require: false,
default: false,
},
textCols: {
type: Number,
require: false,
default: 7,
},
labelCols: {
type: Number,
require: false,
default: 4,
},
},
data() {
return {};
},
computed: {
...mapState({
searchParam: state => state.pageData,
}),
selectValue: {
get() {
return this.searchParam[this.parentPrgmId].compKindCd;
},
set(value) {
return this.setPageData({ compKindCd: value });
},
},
},
async created() {
if (this.autoLoad) {
await this.initData();
}
},
methods: {
...mapMutations({ setPageData: 'setPageData' }),
...mapActions({
postApi: 'modules/list/postApi',
postUpdateApi: 'modules/list/postUpdateApi',
postApiReturn: 'modules/list/postApiReturn',
setTree: 'modules/list/setTree',
chkOpenTabList: 'chkOpenTabList',
}),
async initData() {
var compKindCdList = await this.postApiReturn({
apiKey: 'selectCommCd',
resKey: 'commCdData',
sendParam: {
commGrpCd: 'BM_SVCT_OPERATOR',
},
});
if (this.addAll) {
compKindCdList.unshift({
commCd: '',
commCdNm: '전체',
});
}
var tempIdx = 0;
compKindCdList.map(item => {
item.idx = tempIdx++;
});
this.setPageData({ compKindCd: 0, compKindCdList: compKindCdList });
},
},
};
</script>
<style></style>