update code
This commit is contained in:

parent
d4c39c577f
commit
b2a0f1cde2
@ -43,16 +43,16 @@
|
||||
<!-- </div>-->
|
||||
<!-- </v-list-item>-->
|
||||
<v-list-item>
|
||||
<v-btn @click="pswdChange" small elevation="0">
|
||||
<v-list-item-title @click="pswdChange" class="body-2">
|
||||
<v-icon class="mr-1" size="20">mdi-account-outline</v-icon>
|
||||
<span class="body-2">비밀번호 변경</span>
|
||||
</v-btn>
|
||||
</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item>
|
||||
<v-btn @click="logout" small elevation="0">
|
||||
<v-list-item-title @click="logout" class="body-2">
|
||||
<v-icon class="mr-1" size="20">mdi-logout</v-icon>
|
||||
<span class="body-2">로그아웃</span>
|
||||
</v-btn>
|
||||
</v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-menu>
|
||||
@ -105,7 +105,7 @@ export default {
|
||||
});
|
||||
},
|
||||
pswdChange() {
|
||||
this.$parent.$parent.$parent.$parent.$refs['changePswdPop'].dialog = true;
|
||||
this.$parent.$parent.$parent.$refs['changePswdPop'].dialog = true;
|
||||
},
|
||||
},
|
||||
mounted() {},
|
||||
|
@ -104,7 +104,6 @@ export default {
|
||||
},
|
||||
watch: {
|
||||
async chkDialog(val) {
|
||||
//console.log("watch : ", val)
|
||||
if (val) {
|
||||
this.openDialog();
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
||||
</v-col>
|
||||
</v-row>
|
||||
<!-- <div :style="'height: calc(65vh)'"> -->
|
||||
<div :style="'height: 600px'" class="px-5">
|
||||
<div :style="'height: 620px'" class="px-5">
|
||||
<!-- <div :style="{ height: 'calc(100% - 213px)' }"> -->
|
||||
<div ref="modalGridParent" class="h100 py-3">
|
||||
<!-- :is="loadGrid && dialog ? 'Grid' : null" -->
|
||||
|
@ -33,6 +33,7 @@ import Form from '~/components/common/form/Form';
|
||||
import mixinGlobal from '@/mixin/global.js';
|
||||
import { NewCustomRenderer } from '~/plugins/gridUtility';
|
||||
import { NewCustomEditor } from '~/plugins/gridUtility';
|
||||
import { CustomEditorCheckbox } from '~/plugins/gridUtility';
|
||||
export default {
|
||||
mixins: [mixinGlobal],
|
||||
components: {
|
||||
@ -122,7 +123,6 @@ export default {
|
||||
gridKey: this.gridName,
|
||||
value: myOptions,
|
||||
});
|
||||
|
||||
const _this = this;
|
||||
let useFgSelectList = [];
|
||||
this.pageData.useFgList.forEach(item => {
|
||||
@ -310,7 +310,7 @@ export default {
|
||||
type: NewCustomRenderer,
|
||||
},
|
||||
editor: {
|
||||
type: NewCustomEditor,
|
||||
type: CustomEditorCheckbox,
|
||||
},
|
||||
formatter(data) {
|
||||
return data.row.addInfoDataKind;
|
||||
|
Reference in New Issue
Block a user