admin_chrg 수정,삭제부분

This commit is contained in:
2023-03-27 16:56:25 +09:00
parent 0629923f29
commit bcc10f0947
13 changed files with 589 additions and 61 deletions

View File

@@ -97,6 +97,7 @@
</div>
<insert-chrg-modal ref="insertChrgModal"></insert-chrg-modal>
<chrg-detail-pop ref="chrgDetailPop" />
<common-modal ref="commonModal" />
</div>
</div>
</template>
@@ -107,6 +108,7 @@ import customGrid from '@/components/CustomGrid';
import moment from 'moment';
import InsertChrgModal from '../components/InsertChrgModal';
import chrgDetailPop from '../components/ChrgDetailPop.vue';
import commonModal from "@/components/modal/commonModal";
class CustomATagRenderer {
constructor(props) {
@@ -149,7 +151,10 @@ export default {
endYear: '',
endMonth: '',
searchType1: '01',
chrgSeq : '',
useYn: '',
// 테이블 리스트 데이터
perPageCnt: 50,
@@ -168,6 +173,7 @@ export default {
addCls: 'box_OFvis',
columns:[
{name: 'chrgSeq', header: 'chrgSeq', align: 'center', width: 60},
{name: 'no', header: 'No', align: 'center', width: 60},
{
name: 'custNm', header: '고객사명', align: 'center', width: 130,
@@ -193,6 +199,7 @@ export default {
vuejsDatepicker,
InsertChrgModal,
chrgDetailPop,
commonModal,
},
created() {
this.setPeriodDay(0);
@@ -342,7 +349,11 @@ export default {
insertChrg () {
this.$refs.insertChrgModal.insertChrgOpen();
}
},
alertInsert(props) {
this.$refs.commonModal.alertModalOpen(props);
},
}
}
</script>