mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 05:39:35 +09:00
유치채널관리 수정 / 정산관리 추가,수정 / 채널관리 수정 / 고객관리 수정 / 모니터링 추가 / 리스크관리 수정 / 발신번호관리
추가,수정 / 서비스관리 수정 / 발송통계 수정
This commit is contained in:
@@ -17,10 +17,7 @@
|
||||
<div class="input_box cal">
|
||||
<label for="right" class="label txt">날짜</label>
|
||||
<p> 최대 3개월까지 조회 가능합니다.</p>
|
||||
<div class="term">
|
||||
|
||||
<!-- <div class="group" style="width:500px;">-->
|
||||
|
||||
<div class="term">
|
||||
<span class="custom_input icon_date">
|
||||
<vuejs-datepicker
|
||||
:language="ko"
|
||||
@@ -46,12 +43,9 @@
|
||||
></vuejs-datepicker>
|
||||
</span>
|
||||
|
||||
<button type="button" class="button grey" @click="search">조회</button>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</div>
|
||||
<button type="button" class="button grey" @click="search">조회</button>
|
||||
<!--<button type="button" class="button grey">조회</button>-->
|
||||
</div>
|
||||
</form>
|
||||
@@ -204,35 +198,6 @@ export default {
|
||||
//this.$router.push({ name: routeName, params: { page: 1, searchText: '' } });
|
||||
this.$router.push({ name: routeName, params: {} });
|
||||
},
|
||||
|
||||
// disabledStDate(date) {
|
||||
// date = moment(String(date)).format('YYYYMMDD');
|
||||
// return date > moment().format('YYYYMMDD') || date < moment().add(-1, 'years').format('YYYYMMDD');
|
||||
// },
|
||||
// disabledEdDate(date) {
|
||||
// date = moment(String(date)).format('YYYYMMDD')
|
||||
// return date > moment().format('YYYYMMDD') || date < this.searchData.startDate ;
|
||||
// },
|
||||
// changeDate(type) {
|
||||
// if (type === 'start') {
|
||||
// if (this.endDate === null || this.startDate > this.endDate) {
|
||||
// this.endDate = this.startDate;
|
||||
// }
|
||||
// if (moment(this.startDate).isBefore(moment(this.endDate).subtract(2, 'months').format('YYYYMMDD'))) {
|
||||
// alert('검색 기간은 최대 3개월까지 선택 가능 합니다.');
|
||||
// this.startDate = moment(this.endDate).subtract(2, 'months').format('YYYYMMDD');
|
||||
// }
|
||||
// } else if (type === 'end') {
|
||||
// if (this.startDate === null || this.startDate > this.endDate) {
|
||||
// this.startDate = this.endDate;
|
||||
// }
|
||||
// if (moment(this.endDate).isAfter(moment(this.startDate).add(2, 'months').format('YYYYMMDD'))) {
|
||||
// alert('검색 기간은 최대 3개월까지 선택 가능 합니다.')
|
||||
// this.endDate = moment(this.startDate).add(2, 'months').format('YYYYMMDD');
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
|
||||
setPeriodDay(day) {
|
||||
this.periodDay = day;
|
||||
this.endDate = new Date();
|
||||
|
||||
Reference in New Issue
Block a user