Compare commits

...

2 Commits

Author SHA1 Message Date
24a43a5e51 모바일자동검증 추가
Reviewed-on: http://192.168.10.243:3000/owrainfo/confirms/pulls/18
2026-01-12 16:07:40 +09:00
yangsh
2e0130a6dc 모바일자동검증 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled
2026-01-12 16:07:07 +09:00
4 changed files with 135 additions and 0 deletions

View File

@@ -236,6 +236,18 @@ $routes->group('', ['namespace' => 'App\Controllers\V2'], static function ($rout
});
/**
* 모바일 자동검증
*/
$routes->group('m711', static function ($routes) {
$routes->get('m711a/lists', 'M711::lists');
/**
* 모바일 자동검증 - API
*/
$routes->get('m711a/getResultList', 'M711::getResultList');
});
});

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Controllers\V2;
use App\Controllers\BaseController;
class M711 extends BaseController
{
public function __construct()
{
}
public function lists(): string
{
return view("pages/v2/m711/lists", $this->data);
}
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Models\v2;
use CodeIgniter\Model;
class M711Model extends Model
{
}

View File

@@ -0,0 +1,96 @@
<?= $this->extend('layouts/main') ?>
<?= $this->section('content') ?>
<style>
th {
font-size: 11px;
text-align: center;
}
td {
text-align: center;
}
#aptList tbody tr {
cursor: pointer;
}
.blockUI {
z-index: 1500 !important;
}
.swal2-cancel {
background-color: #ff0000 !important;
color: #fff !important;
}
</style>
<h1>모바일 자동검증</h1>
<div class="row">
<div class="col-md-12 col-xl-12">
<div class="main-card mb-3 card">
<div class="card-body">
<form class="row align-items-end" id="frm_srch_info" onsubmit="return false;">
<div class="col-md-2">
<label class="form-label mb-1">매물번호</label>
<input type="text" class="form-control" name="atcl_no">
</div>
<!-- 검색 버튼 -->
<div class="col-md-1 d-grid">
<button type="button" class="btn btn-primary" id="btnSearch">
검색
</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-12 col-xl-12">
<div class="main-card mb-3 card">
<div class="card-header d-flex align-items-center">
<div class="d-flex align-items-center flex-wrap" style="gap: 8px; flex: 1">
</div>
<div class="ml-auto">
<button class="btn btn-sm btn-outline-success" id="excel-download">
<i class="fa fa-fw" aria-hidden="true" title="file-excel-o"></i>
엑셀다운로드
</button>
</div>
</div>
<div class="card-body">
<table id="aptList" class="table table-hover table-striped table-bordered">
<thead>
<tr>
<th>매물번호</th>
<th>매물종류</th>
<th>거래종류</th>
<th>등록시간</th>
<th>노출일시</th>
<th>주소</th>
<th>상세주소</th>
<th>매체사</th>
<th>중개업소명</th>
<th>매물검증방식코드</th>
<th>자동검증통과여부</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript">
</script>
<?= $this->endSection() ?>