상세 레이아웃 수정 #41

Merged
owrainfo merged 1 commits from feature/template into master 2026-01-27 15:48:23 +09:00
15 changed files with 148 additions and 131 deletions
Showing only changes of commit b51f2fddcf - Show all commits

4
.gitignore vendored
View File

@@ -172,3 +172,7 @@ _modules/*
/node_modules/ /node_modules/
.env .env
**/logs/ **/logs/
# 6. 기타 개인 설정 파일 (선택적)
.github/copilot-instructions.md

View File

@@ -21,7 +21,7 @@
<div class="modal-body"> <div class="modal-body">
<!-- 규칙 박스 --> <!-- 규칙 박스 -->
<div class="border rounded-3 p-3 mb-3 bg-light"> <div class="border rounded-3 p-3 mb-3">
<fieldset class="mb-0"> <fieldset class="mb-0">
<legend class="fs-6 fw-semibold mb-2">컨펌스 시스템 비밀번호 작성규칙</legend> <legend class="fs-6 fw-semibold mb-2">컨펌스 시스템 비밀번호 작성규칙</legend>
<ul class="mb-0 ps-3"> <ul class="mb-0 ps-3">

View File

@@ -1118,7 +1118,7 @@ $usr_level = session('usr_level');
</label> </label>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
$arrI1 = array(); $arrI1 = array();
reset($images); reset($images);
@@ -1166,7 +1166,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I10', '')">파일</button> onclick="viewFilePop('I10', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) { if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1209,7 +1209,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I2', '')">파일</button> onclick="viewFilePop('I2', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) { if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1372,7 +1372,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('V1', '')">파일</button> onclick="viewFilePop('V1', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) { if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1412,7 +1412,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I5', '')">파일</button> onclick="viewFilePop('I5', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) { if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1447,7 +1447,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I11', '')">파일</button> onclick="viewFilePop('I11', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) { if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1489,7 +1489,7 @@ $usr_level = session('usr_level');
<div class="vstack gap-2"> <div class="vstack gap-2">
<?php $numbering = 1; <?php $numbering = 1;
foreach ($dupleGroundPlan as $row): ?> foreach ($dupleGroundPlan as $row): ?>
<div class="border rounded-3 p-2 bg-light"> <div class="border rounded-3 p-2">
<div class="d-flex align-items-center justify-content-between"> <div class="d-flex align-items-center justify-content-between">
<div class="fw-semibold"> <div class="fw-semibold">
<span class="badge bg-dark me-2">중복 <?= $numbering ?></span> <span class="badge bg-dark me-2">중복 <?= $numbering ?></span>
@@ -1883,8 +1883,8 @@ $usr_level = session('usr_level');
href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>"> href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>">
<?= esc($record['record_orignm']) ?> <?= esc($record['record_orignm']) ?>
</a> </a>
<span class="badge bg-light text-dark border"><?= esc($record['record_size']) ?> KB</span> <span class="badge text-dark border"><?= esc($record['record_size']) ?> KB</span>
<span class="badge bg-light text-dark border"><?= esc($record['insert_tm']) ?></span> <span class="badge text-dark border"><?= esc($record['insert_tm']) ?></span>
</div> </div>
<?php else: ?> <?php else: ?>
<span class="text-muted small">등록된 파일 없음</span> <span class="text-muted small">등록된 파일 없음</span>

View File

@@ -1118,7 +1118,7 @@ $usr_level = session('usr_level');
</label> </label>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
$arrI1 = array(); $arrI1 = array();
reset($images); reset($images);
@@ -1166,7 +1166,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I10', '')">파일</button> onclick="viewFilePop('I10', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) { if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1209,7 +1209,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I2', '')">파일</button> onclick="viewFilePop('I2', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) { if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1372,7 +1372,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('V1', '')">파일</button> onclick="viewFilePop('V1', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) { if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1412,7 +1412,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I5', '')">파일</button> onclick="viewFilePop('I5', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) { if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1447,7 +1447,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I11', '')">파일</button> onclick="viewFilePop('I11', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) { if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1489,7 +1489,7 @@ $usr_level = session('usr_level');
<div class="vstack gap-2"> <div class="vstack gap-2">
<?php $numbering = 1; <?php $numbering = 1;
foreach ($dupleGroundPlan as $row): ?> foreach ($dupleGroundPlan as $row): ?>
<div class="border rounded-3 p-2 bg-light"> <div class="border rounded-3 p-2">
<div class="d-flex align-items-center justify-content-between"> <div class="d-flex align-items-center justify-content-between">
<div class="fw-semibold"> <div class="fw-semibold">
<span class="badge bg-dark me-2">중복 <?= $numbering ?></span> <span class="badge bg-dark me-2">중복 <?= $numbering ?></span>
@@ -1883,8 +1883,8 @@ $usr_level = session('usr_level');
href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>"> href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>">
<?= esc($record['record_orignm']) ?> <?= esc($record['record_orignm']) ?>
</a> </a>
<span class="badge bg-light text-dark border"><?= esc($record['record_size']) ?> KB</span> <span class="badge text-dark border"><?= esc($record['record_size']) ?> KB</span>
<span class="badge bg-light text-dark border"><?= esc($record['insert_tm']) ?></span> <span class="badge text-dark border"><?= esc($record['insert_tm']) ?></span>
</div> </div>
<?php else: ?> <?php else: ?>
<span class="text-muted small">등록된 파일 없음</span> <span class="text-muted small">등록된 파일 없음</span>

View File

@@ -1118,7 +1118,7 @@ $usr_level = session('usr_level');
</label> </label>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
$arrI1 = array(); $arrI1 = array();
reset($images); reset($images);
@@ -1166,7 +1166,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I10', '')">파일</button> onclick="viewFilePop('I10', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) { if (isset($imgs_count['I10']) && $imgs_count['I10'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1209,7 +1209,7 @@ $usr_level = session('usr_level');
onclick="viewFilePop('I2', '')">파일</button> onclick="viewFilePop('I2', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) { if (isset($imgs_count['I2']) && $imgs_count['I2'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1372,7 +1372,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('V1', '')">파일</button> onclick="viewFilePop('V1', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) { if (isset($imgs_count['V1']) && $imgs_count['V1'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1412,7 +1412,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I5', '')">파일</button> onclick="viewFilePop('I5', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) { if (isset($imgs_count['I5']) && $imgs_count['I5'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1447,7 +1447,7 @@ $usr_level = session('usr_level');
<button type="button" class="btn btn-sm btn-outline-secondary" <button type="button" class="btn btn-sm btn-outline-secondary"
onclick="viewFilePop('I11', '')">파일</button> onclick="viewFilePop('I11', '')">파일</button>
</div> </div>
<div class="ratio ratio-4x3 bg-light rounded-2 overflow-hidden"> <div class="ratio ratio-4x3 rounded-2 overflow-hidden">
<?php <?php
if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) { if (isset($imgs_count['I11']) && $imgs_count['I11'] != 0) {
foreach ($images as $img) { foreach ($images as $img) {
@@ -1489,7 +1489,7 @@ $usr_level = session('usr_level');
<div class="vstack gap-2"> <div class="vstack gap-2">
<?php $numbering = 1; <?php $numbering = 1;
foreach ($dupleGroundPlan as $row): ?> foreach ($dupleGroundPlan as $row): ?>
<div class="border rounded-3 p-2 bg-light"> <div class="border rounded-3 p-2">
<div class="d-flex align-items-center justify-content-between"> <div class="d-flex align-items-center justify-content-between">
<div class="fw-semibold"> <div class="fw-semibold">
<span class="badge bg-dark me-2">중복 <?= $numbering ?></span> <span class="badge bg-dark me-2">중복 <?= $numbering ?></span>
@@ -1883,8 +1883,8 @@ $usr_level = session('usr_level');
href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>"> href="/article/receipt/download_file?record_sq=<?= $record['record_sq'] ?>">
<?= esc($record['record_orignm']) ?> <?= esc($record['record_orignm']) ?>
</a> </a>
<span class="badge bg-light text-dark border"><?= esc($record['record_size']) ?> KB</span> <span class="badge text-dark border"><?= esc($record['record_size']) ?> KB</span>
<span class="badge bg-light text-dark border"><?= esc($record['insert_tm']) ?></span> <span class="badge text-dark border"><?= esc($record['insert_tm']) ?></span>
</div> </div>
<?php else: ?> <?php else: ?>
<span class="text-muted small">등록된 파일 없음</span> <span class="text-muted small">등록된 파일 없음</span>

View File

@@ -145,7 +145,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<div class="card-body"> <div class="card-body">
<h5 class="card-title">매물 정보</h5> <h5 class="card-title">매물 정보</h5>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0 apt-info-table"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0 apt-info-table">
<colgroup> <colgroup>
<col style="width:120px"> <col style="width:120px">
<col style="width:320px"> <col style="width:320px">
@@ -621,7 +621,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>
@@ -652,7 +652,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<tr> <tr>
<th>홍보확인서<br>미확인여부상세</th> <th>홍보확인서<br>미확인여부상세</th>
<td> <td>
<table class="w-100"> <table class="w-100 tbl_basic2 table-bordered">
<tr> <tr>
<?php <?php
$checks = explode('|', $data['comment']); $checks = explode('|', $data['comment']);
@@ -851,7 +851,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none"> <a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none">
<i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?> <i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?>
</a> </a>
<span class="badge bg-light text-dark"><?= $tel['file_size'] ?>kb</span> <span class="badge text-dark"><?= $tel['file_size'] ?>kb</span>
<span class="text-muted"><?= $tel['insert_tm'] ?></span> <span class="text-muted"><?= $tel['insert_tm'] ?></span>
</div> </div>
</div> </div>
@@ -1093,7 +1093,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>

View File

@@ -157,7 +157,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<div class="card-body"> <div class="card-body">
<h5 class="card-title">매물 정보</h5> <h5 class="card-title">매물 정보</h5>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0 apt-info-table"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0 apt-info-table">
<colgroup> <colgroup>
<col style="width:120px"> <col style="width:120px">
<col style="width:320px"> <col style="width:320px">
@@ -167,10 +167,10 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<tbody> <tbody>
<tr> <tr>
<th class="bg-light">등록일</th> <th>등록일</th>
<td><?= $data['rdate'] ?></td> <td><?= $data['rdate'] ?></td>
<th class="bg-light">전화/서류 완료일시</th> <th>전화/서류 완료일시</th>
<td> <td>
<select class="form-select form-select-sm" name="atcl_vrtc_way" id="atcl_vrtc_way" <select class="form-select form-select-sm" name="atcl_vrtc_way" id="atcl_vrtc_way"
disabled> disabled>
@@ -188,10 +188,10 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">등기부등본 확인완료</th> <th>등기부등본 확인완료</th>
<td><?= $data['result_tm'] ?></td> <td><?= $data['result_tm'] ?></td>
<th class="bg-light">의뢰인(매도자)</th> <th>의뢰인(매도자)</th>
<td> <td>
<?php if (in_array($data['stat_cd'], ['19', '60', '69'])): ?> <?php if (in_array($data['stat_cd'], ['19', '60', '69'])): ?>
*** ***
@@ -202,10 +202,10 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">매물구분</th> <th>매물구분</th>
<td><?= $data['atcl_nm'] ?></td> <td><?= $data['atcl_nm'] ?></td>
<th class="bg-light">거래구분</th> <th>거래구분</th>
<td> <td>
<div class="d-flex flex-wrap gap-3"> <div class="d-flex flex-wrap gap-3">
<div class="form-check"> <div class="form-check">
@@ -236,10 +236,10 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light" rowspan="3">지역구분</th> <th rowspan="3">지역구분</th>
<td rowspan="3"><?= $data['region_nm'] ?></td> <td rowspan="3"><?= $data['region_nm'] ?></td>
<th class="bg-light">리 주소</th> <th>리 주소</th>
<td> <td>
<input type="text" class="form-control form-control-sm" id="atcl_addr1a" <input type="text" class="form-control form-control-sm" id="atcl_addr1a"
name="atcl_addr1a" value="<?= $data['address2a'] ?>" disabled> name="atcl_addr1a" value="<?= $data['address2a'] ?>" disabled>
@@ -247,7 +247,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">상세주소</th> <th>상세주소</th>
<td> <td>
<?php if (empty($data['address2b'])): ?> <?php if (empty($data['address2b'])): ?>
<input type="text" class="form-control form-control-sm mb-2" name="atcl_addr1" <input type="text" class="form-control form-control-sm mb-2" name="atcl_addr1"
@@ -267,7 +267,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">기타주소</th> <th>기타주소</th>
<td> <td>
<input type="text" class="form-control form-control-sm" <input type="text" class="form-control form-control-sm"
value="<?= $data['address4'] ?>" disabled> value="<?= $data['address4'] ?>" disabled>
@@ -275,14 +275,14 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">단지명</th> <th>단지명</th>
<td> <td>
<input type="hidden" name="atcl_hscp_nm" id="atcl_hscp_nm" <input type="hidden" name="atcl_hscp_nm" id="atcl_hscp_nm"
value="<?= $data['hscp_nm'] ?>" /> value="<?= $data['hscp_nm'] ?>" />
</td> </td>
<th class="bg-light align-middle">가격</th> <th class="align-middle">가격</th>
<td> <td>
<!-- 기본 가격 --> <!-- 기본 가격 -->
<div class="price-monthly-grid mb-2" id="div_trade_type_price" <div class="price-monthly-grid mb-2" id="div_trade_type_price"
@@ -381,7 +381,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</tr> </tr>
<tr> <tr>
<th class="bg-light">평형</th> <th>평형</th>
<td> <td>
<input type="hidden" name="atcl_ptp_nm" id="atcl_ptp_nm" value=""> <input type="hidden" name="atcl_ptp_nm" id="atcl_ptp_nm" value="">
<select class="form-select form-select-sm" name="atcl_ptp_no" id="atcl_ptp_no" <select class="form-select form-select-sm" name="atcl_ptp_no" id="atcl_ptp_no"
@@ -390,7 +390,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
</select> </select>
</td> </td>
<th class="bg-light">층 / 총층</th> <th>층 / 총층</th>
<td> <td>
<div class="d-flex align-items-center gap-2"> <div class="d-flex align-items-center gap-2">
<input type="text" class="form-control form-control-sm" style="max-width:80px;" <input type="text" class="form-control form-control-sm" style="max-width:80px;"
@@ -404,11 +404,11 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<?php if ($data['hscplqry_lv'] == '3'): ?> <?php if ($data['hscplqry_lv'] == '3'): ?>
<tr> <tr>
<th class="bg-light">공급면적</th> <th>공급면적</th>
<td> <td>
<span style="color:#F21E1E"><?= $data['sply_spc'] ?></span> <span style="color:#F21E1E"><?= $data['sply_spc'] ?></span>
</td> </td>
<th class="bg-light">전용면적</th> <th>전용면적</th>
<td> <td>
<span style="color:#F21E1E"><?= $data['excls_spc'] ?></span> <span style="color:#F21E1E"><?= $data['excls_spc'] ?></span>
</td> </td>
@@ -418,11 +418,11 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<?php if (empty($data['hscp_no'])): ?> <?php if (empty($data['hscp_no'])): ?>
<?php if ($data['rlet_type_cd'] == 'C01' || $data['rlet_type_cd'] == 'C02' || ($data['rlet_type_cd'] == 'C03' and $data['trade_type_cd'] != 'A1') || $data['rlet_type_cd'] == 'D02' || $data['rlet_type_cd'] == 'D01' || $data['rlet_type_cd'] == 'E04'): ?> <?php if ($data['rlet_type_cd'] == 'C01' || $data['rlet_type_cd'] == 'C02' || ($data['rlet_type_cd'] == 'C03' and $data['trade_type_cd'] != 'A1') || $data['rlet_type_cd'] == 'D02' || $data['rlet_type_cd'] == 'D01' || $data['rlet_type_cd'] == 'E04'): ?>
<tr> <tr>
<th class="bg-light">공급면적</th> <th>공급면적</th>
<td> <td>
<span style="color:#002EE7"><?= $data['sply_spc'] ?></span> <span style="color:#002EE7"><?= $data['sply_spc'] ?></span>
</td> </td>
<th class="bg-light">전용면적</th> <th>전용면적</th>
<td> <td>
<span style="color:#002EE7"><?= $data['excls_spc'] ?></span> <span style="color:#002EE7"><?= $data['excls_spc'] ?></span>
</td> </td>
@@ -469,7 +469,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
?> ?>
<tr> <tr>
<th class="bg-light">가주소 여부</th> <th>가주소 여부</th>
<td><span <?= $vir_style ?>><?= $data['vir_addr_yn'] ?></span></td> <td><span <?= $vir_style ?>><?= $data['vir_addr_yn'] ?></span></td>
</tr> </tr>
@@ -560,7 +560,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>
@@ -591,7 +591,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<tr> <tr>
<th>홍보확인서<br>미확인여부상세</th> <th>홍보확인서<br>미확인여부상세</th>
<td> <td>
<table class="w-100"> <table class="w-100 tbl_basic2 table-bordered">
<tr> <tr>
<?php <?php
$checks = explode('|', $data['comment']); $checks = explode('|', $data['comment']);
@@ -790,7 +790,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none"> <a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none">
<i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?> <i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?>
</a> </a>
<span class="badge bg-light text-dark"><?= $tel['file_size'] ?>kb</span> <span class="badge text-dark"><?= $tel['file_size'] ?>kb</span>
<span class="text-muted"><?= $tel['insert_tm'] ?></span> <span class="text-muted"><?= $tel['insert_tm'] ?></span>
</div> </div>
</div> </div>
@@ -1031,7 +1031,7 @@ if (!empty($data['cert_register']) && $data['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>

View File

@@ -2,6 +2,17 @@
<?= $this->section('content') ?> <?= $this->section('content') ?>
<style> <style>
.tbl_basic2 th {
padding: 0 10px;
height: 27px;
border: solid 1px #d8d9de;
background-color: #eff0f4;
letter-spacing: -1px;
font-weight: normal;
color: #5a5f69;
text-align: left;
}
.num { .num {
font-family: Tahoma; font-family: Tahoma;
color: #b68556; color: #b68556;
@@ -42,7 +53,7 @@
<div class="card-body"> <div class="card-body">
<!-- table 유지 + 반응형 --> <!-- table 유지 + 반응형 -->
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -95,21 +106,20 @@
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" <span class="badge text-dark" id="span_current_stat"></span>
id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-2 align-middle"> <table class="table table-sm table-bordered mb-2 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 110px;"> <col style="width: 110px;">
<col> <col>
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th class="text-nowrap bg-light">매물종류</th> <th>매물종류</th>
<td id="write_work_type"> <td id="write_work_type">
<?php <?php
@@ -130,7 +140,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">매물번호</th> <th>매물번호</th>
<td> <td>
<form method="post" id="frmSearchArticle" <form method="post" id="frmSearchArticle"
name="frmSearchArticle" onsubmit="return false;"> name="frmSearchArticle" onsubmit="return false;">
@@ -156,12 +166,12 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">CP ID</th> <th>CP ID</th>
<td><span class="num" <td><span class="num"
id="span_cpid"><?= $article['cpid'] ?></span></td> id="span_cpid"><?= $article['cpid'] ?></span></td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">현재 상태</th> <th>현재 상태</th>
<td><span class="num" <td><span class="num"
id="span_current_stat"><?= $article['current_stat'] ?></span> id="span_current_stat"><?= $article['current_stat'] ?></span>
</td> </td>
@@ -193,26 +203,26 @@
<span class="fw-semibold">공인중개사 정보</span> <span class="fw-semibold">공인중개사 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 align-middle"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th class="text-nowrap bg-light">중개사명</th> <th>중개사명</th>
<td><span <td><span
id="span_realtor_nm"><?= $article['realtor_nm'] ?></span> id="span_realtor_nm"><?= $article['realtor_nm'] ?></span>
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">대표전화/FAX</th> <th>대표전화/FAX</th>
<td><span id="span_realtor_tel_no"> <td><span id="span_realtor_tel_no">
<?= $article['agent_tel'] . (empty($article['agent_fax']) ? '' : ' / ' . $article['agent_fax']) ?> <?= $article['agent_tel'] . (empty($article['agent_fax']) ? '' : ' / ' . $article['agent_fax']) ?>
</span></td> </span></td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">담당자전화</th> <th>담당자전화</th>
<td><span id="span_realtor_tel_no"> <td><span id="span_realtor_tel_no">
<?= $article['realtor_tel_no'] ?> <?= $article['realtor_tel_no'] ?>
</span></td> </span></td>
@@ -229,14 +239,14 @@
<span class="fw-semibold">중개인 요청사항</span> <span class="fw-semibold">중개인 요청사항</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle" id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th class="text-nowrap bg-light">중개인 요청사항</th> <th>중개인 요청사항</th>
<td> <td>
<textarea class="form-control" id="request_msg" <textarea class="form-control" id="request_msg"
name="request_msg" name="request_msg"
@@ -260,35 +270,35 @@
<span class="fw-semibold">매물 정보</span> <span class="fw-semibold">매물 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle" id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th class="text-nowrap bg-light">등록일시</th> <th>등록일시</th>
<td><span id="span_rdate"><?= $article['rdate'] ?></span></td> <td><span id="span_rdate"><?= $article['rdate'] ?></span></td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">의뢰인(매도자)</th> <th>의뢰인(매도자)</th>
<td><span <td><span
id="span_seller_nm"><?= $article['seller_nm'] ?></span> id="span_seller_nm"><?= $article['seller_nm'] ?></span>
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">매물구분</th> <th>매물구분</th>
<td><span <td><span
id="span_rlet_type_nm"><?= $article['rlet_type_nm'] ?></span> id="span_rlet_type_nm"><?= $article['rlet_type_nm'] ?></span>
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">지역구분</th> <th>지역구분</th>
<td><span id="span_address1"><?= $article['address1'] ?></span> <td><span id="span_address1"><?= $article['address1'] ?></span>
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">단지명</th> <th>단지명</th>
<td><span id="span_hscp_nm"> <td><span id="span_hscp_nm">
<?= $article['hscp_nm'] ?> <?= $article['hscp_nm'] ?>
</span></td> </span></td>
@@ -382,7 +392,7 @@
<tr> <tr>
<th class="text-nowrap bg-light">리 주소</th> <th>리 주소</th>
<td> <td>
<input type="text" class="form-control form-control-sm" <input type="text" class="form-control form-control-sm"
name="address2a" id="address2a" name="address2a" id="address2a"
@@ -390,7 +400,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">상세주소</th> <th>상세주소</th>
<td class="d-flex gap-1"> <td class="d-flex gap-1">
<input type="text" class="form-control form-control-sm" <input type="text" class="form-control form-control-sm"
name="address2b" id="address2b" name="address2b" id="address2b"
@@ -402,7 +412,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">기타주소</th> <th>기타주소</th>
<td> <td>
<input type="text" class="form-control form-control-sm" <input type="text" class="form-control form-control-sm"
name="address4" id="address4" name="address4" id="address4"
@@ -411,7 +421,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">거래구분/가격</th> <th>거래구분/가격</th>
<td> <td>
<?php <?php
$isSale = (substr($article['trade_type'] ?? '', 0, 1) === 'A'); // 매매(A*) 여부 $isSale = (substr($article['trade_type'] ?? '', 0, 1) === 'A'); // 매매(A*) 여부
@@ -506,7 +516,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">분양가/프리미엄</th> <th>분양가/프리미엄</th>
<td> <td>
<div class="d-flex flex-wrap gap-1 align-items-center"> <div class="d-flex flex-wrap gap-1 align-items-center">
<span class="text-muted">분양가</span> <span class="text-muted">분양가</span>
@@ -537,7 +547,7 @@
?> ?>
<tr> <tr>
<th class="text-nowrap bg-light"><?= esc($floorLabel) ?></th> <th><?= esc($floorLabel) ?></th>
<!-- ⚠️ td에 d-flex 주면 table-cell 깨질 수 있어서 내부 div로 감싸는 걸 추천 --> <!-- ⚠️ td에 d-flex 주면 table-cell 깨질 수 있어서 내부 div로 감싸는 걸 추천 -->
<td> <td>
@@ -565,7 +575,7 @@
} }
?> ?>
<tr> <tr>
<th class="text-nowrap bg-light">가주소 여부</th> <th>가주소 여부</th>
<td <?= $vir_style ?>> <td <?= $vir_style ?>>
<?= $article['vir_addr_yn'] ?> <?= $article['vir_addr_yn'] ?>
@@ -573,7 +583,7 @@
</tr> </tr>
<?php endif; ?> <?php endif; ?>
<tr> <tr>
<th class="text-nowrap bg-light">소유자명</th> <th>소유자명</th>
<td style="color:#FF0000;"> <td style="color:#FF0000;">
<?php <?php
if ($article['stat_cd'] == '19' || $article['stat_cd'] == '60' || $article['stat_cd'] == '69') { if ($article['stat_cd'] == '19' || $article['stat_cd'] == '60' || $article['stat_cd'] == '69') {
@@ -595,7 +605,7 @@
if (!empty($article['vrfc_type_sub'])): if (!empty($article['vrfc_type_sub'])):
if ($article['vrfc_type_sub'] == 'D2'): ?> if ($article['vrfc_type_sub'] == 'D2'): ?>
<tr> <tr>
<th class="text-nowrap bg-light">소유자명 확인</th> <th>소유자명 확인</th>
<td> <td>
<select class="form-select" name="chkOwnerNm" <select class="form-select" name="chkOwnerNm"
id="chkOwnerNm" onchange="chkOwnerNm_onchange()"> id="chkOwnerNm" onchange="chkOwnerNm_onchange()">
@@ -630,21 +640,21 @@
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-2 align-middle"> <table class="table table-sm table-bordered mb-2 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 140px;"> <col style="width: 140px;">
<col> <col>
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th class="text-nowrap bg-light">확인담당자</th> <th>확인담당자</th>
<td> <td>
<?= session('usr_nm') . ' [' . session('usr_id') . ']'; ?> <?= session('usr_nm') . ' [' . session('usr_id') . ']'; ?>
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">확인여부</th> <th>확인여부</th>
<td> <td>
<select class="form-select form-select-sm" <select class="form-select form-select-sm"
name="result_d11" id="result_d11" name="result_d11" id="result_d11"
@@ -662,10 +672,11 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">홍보확인서<br>미확인 상세</th> <th>홍보확인서<br>미확인 상세</th>
<td> <td>
<!-- 체크박스는 테이블 유지하되 bootstrap spacing만 --> <!-- 체크박스는 테이블 유지하되 bootstrap spacing만 -->
<table class="table table-borderless table-sm mb-0"> <table
class="table table-borderless table-sm mb-0 tbl_basic2">
<tbody> <tbody>
<tr> <tr>
<?php <?php
@@ -726,7 +737,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">확인내용</th> <th>확인내용</th>
<td> <td>
<select class="form-select form-select-sm" <select class="form-select form-select-sm"
name="fax_conf_yn_0" id="fax_conf_yn_0" name="fax_conf_yn_0" id="fax_conf_yn_0"
@@ -739,7 +750,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">매물주소</th> <th>매물주소</th>
<td class="d-flex gap-1"> <td class="d-flex gap-1">
<?php <?php
switch ($confirm['code_d12'] ?? '') { switch ($confirm['code_d12'] ?? '') {
@@ -775,7 +786,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">가격 거래구분</th> <th>가격 거래구분</th>
<td class="d-flex gap-1"> <td class="d-flex gap-1">
<?php <?php
switch ($confirm['code_d13'] ?? '') { switch ($confirm['code_d13'] ?? '') {
@@ -811,7 +822,7 @@
</tr> </tr>
<tr> <tr>
<th class="text-nowrap bg-light">의뢰인정보</th> <th>의뢰인정보</th>
<td class="d-flex gap-1"> <td class="d-flex gap-1">
<?php <?php
switch ($confirm['code_d14'] ?? '') { switch ($confirm['code_d14'] ?? '') {
@@ -848,7 +859,7 @@
<?php if (!empty($article['memo'])): ?> <?php if (!empty($article['memo'])): ?>
<tr> <tr>
<th class="text-nowrap bg-light">메모</th> <th>메모</th>
<td> <td>
<textarea class="form-control form-control-sm" <textarea class="form-control form-control-sm"
name="memo_cal" id="memo_cal" rows="3" name="memo_cal" id="memo_cal" rows="3"
@@ -858,7 +869,7 @@
<?php endif; ?> <?php endif; ?>
<tr id="res_tr" style="display:none"> <tr id="res_tr" style="display:none">
<th class="text-nowrap bg-light">거주여부</th> <th>거주여부</th>
<td> <td>
<?php $resYn = $article['resYn'] ?? ''; ?> <?php $resYn = $article['resYn'] ?? ''; ?>
<select class="form-select form-select-sm" name="resYn" <select class="form-select form-select-sm" name="resYn"
@@ -872,7 +883,7 @@
</tr> </tr>
<tr id="db_tr" style="display:none"> <tr id="db_tr" style="display:none">
<th class="text-nowrap bg-light"> <th>
<div id="db_yn1">DB활용동의여부</div> <div id="db_yn1">DB활용동의여부</div>
</th> </th>
<td> <td>

View File

@@ -589,7 +589,7 @@ if (!empty($regist2)) {
<a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none"> <a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none">
<i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?> <i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?>
</a> </a>
<span class="badge bg-light text-dark"><?= $tel['file_size'] ?>kb</span> <span class="badge text-dark"><?= $tel['file_size'] ?>kb</span>
<span class="text-muted"><?= $tel['insert_tm'] ?></span> <span class="text-muted"><?= $tel['insert_tm'] ?></span>
</div> </div>
</div> </div>

View File

@@ -96,7 +96,7 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
<input type="hidden" name="chk_trade_type" id="chk_trade_type" value="<?= $data['trade_type'] ?>" /> <input type="hidden" name="chk_trade_type" id="chk_trade_type" value="<?= $data['trade_type'] ?>" />
<input type="hidden" name="chk_hscp_no" id="chk_hscp_no" value="<?= $data['chk_hscp_no'] ?>" /> <input type="hidden" name="chk_hscp_no" id="chk_hscp_no" value="<?= $data['chk_hscp_no'] ?>" />
<input type="hidden" name="atcl_no" id="atcl_no" value="<?= $data['atcl_no'] ?>" /> <input type="hidden" name="atcl_no" id="atcl_no" value="<?= $data['atcl_no'] ?>" />
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -181,13 +181,12 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" <span class="badge text-dark" id="span_current_stat"></span>
id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-2 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-2 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 110px;"> <col style="width: 110px;">
<col> <col>
@@ -301,7 +300,7 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -671,7 +670,7 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -691,7 +690,7 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
<tr> <tr>
<th>등기부등본 <br />미확인여부<br />상세</th> <th>등기부등본 <br />미확인여부<br />상세</th>
<td> <td>
<table class="w-100"> <table class="w-100 tbl_basic2 table-bordered">
<tr> <tr>
<?php <?php
$checks = explode('|', $data['comment']); $checks = explode('|', $data['comment']);
@@ -910,7 +909,7 @@ if (!empty($data['confirm_doc_img_url']) && $data['confirm_doc_img_url_save_yn']
</div> --> </div> -->
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>

View File

@@ -493,7 +493,7 @@ if (!empty($list['cert_register']) && $list['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>
@@ -525,7 +525,7 @@ if (!empty($list['cert_register']) && $list['cert_register_save_yn'] != 'Y') { /
<tr> <tr>
<th>홍보확인서<br>미확인여부상세</th> <th>홍보확인서<br>미확인여부상세</th>
<td> <td>
<table class="w-100"> <table class="w-100 tbl_basic2 table-bordered">
<tr> <tr>
<?php <?php
$checks = explode('|', $data['comment']); $checks = explode('|', $data['comment']);
@@ -724,7 +724,7 @@ if (!empty($list['cert_register']) && $list['cert_register_save_yn'] != 'Y') { /
<a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none"> <a href="<?= $tel['file_url'] ?? '#' ?>" class="text-decoration-none">
<i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?> <i class="fa fa-file-audio-o me-1"></i><?= $tel['file_name'] ?>
</a> </a>
<span class="badge bg-light text-dark"><?= $tel['file_size'] ?>kb</span> <span class="badge text-dark"><?= $tel['file_size'] ?>kb</span>
<span class="text-muted"><?= $tel['insert_tm'] ?></span> <span class="text-muted"><?= $tel['insert_tm'] ?></span>
</div> </div>
</div> </div>
@@ -965,7 +965,7 @@ if (!empty($list['cert_register']) && $list['cert_register_save_yn'] != 'Y') { /
<!-- 우측 : 정보 --> <!-- 우측 : 정보 -->
<td valign="top" class="pt-2"> <td valign="top" class="pt-2">
<table class="tbl_basic4 w-100"> <table class="tbl_basic4 w-100 tbl_basic2 table-bordered">
<colgroup> <colgroup>
<col width="30%"> <col width="30%">
<col> <col>

View File

@@ -64,7 +64,7 @@ $usr_level = session('usr_level');
<div class="card-body"> <div class="card-body">
<!-- table 유지 + 반응형 --> <!-- table 유지 + 반응형 -->
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -117,8 +117,7 @@ $usr_level = session('usr_level');
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" <span class="badge text-dark" id="span_current_stat"></span>
id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -64,7 +64,7 @@ $usr_level = session('usr_level');
<div class="card-body"> <div class="card-body">
<!-- table 유지 + 반응형 --> <!-- table 유지 + 반응형 -->
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -117,8 +117,7 @@ $usr_level = session('usr_level');
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" <span class="badge text-dark" id="span_current_stat"></span>
id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -123,7 +123,7 @@ function parseurl($url)
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -202,14 +202,13 @@ function parseurl($url)
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" <span class="badge text-dark" id="span_current_stat"></span>
id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-2 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-2 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 110px;"> <col style="width: 110px;">
<col> <col>
@@ -294,7 +293,8 @@ function parseurl($url)
<span class="fw-semibold">매물 정보</span> <span class="fw-semibold">매물 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -675,7 +675,8 @@ function parseurl($url)
<span class="fw-semibold">확인 정보</span> <span class="fw-semibold">확인 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -942,7 +943,8 @@ function parseurl($url)
<span class="fw-semibold">기타 정보</span> <span class="fw-semibold">기타 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>

View File

@@ -120,7 +120,7 @@ function parseurl($url)
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm align-middle mb-0" style="min-width: 900px;"> <table class="table table-bordered table-sm tbl_basic2 align-middle mb-0" style="min-width: 900px;">
<colgroup> <colgroup>
<col style="width: 60%;"> <col style="width: 60%;">
<col style="width: 40%;"> <col style="width: 40%;">
@@ -197,13 +197,13 @@ function parseurl($url)
<div class="d-flex align-items-center w-100"> <div class="d-flex align-items-center w-100">
<span class="fw-semibold">기본 정보</span> <span class="fw-semibold">기본 정보</span>
<div class="ms-auto"> <div class="ms-auto">
<span class="badge bg-light text-dark" id="span_current_stat"></span> <span class="badge text-dark" id="span_current_stat"></span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-2 tbl_basic2 align-middle"> <table class="table table-sm table-bordered mb-2 tbl_basic2 align-middle">
<colgroup> <colgroup>
<col style="width: 110px;"> <col style="width: 110px;">
<col> <col>
@@ -254,7 +254,8 @@ function parseurl($url)
<span class="fw-semibold">매물 정보</span> <span class="fw-semibold">매물 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -615,7 +616,8 @@ function parseurl($url)
<span class="fw-semibold">확인 정보</span> <span class="fw-semibold">확인 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>
@@ -832,7 +834,8 @@ function parseurl($url)
<span class="fw-semibold">기타 정보</span> <span class="fw-semibold">기타 정보</span>
</div> </div>
<div class="card-body p-2"> <div class="card-body p-2">
<table class="table table-sm mb-0 tbl_basic2 align-middle" id="info_table"> <table class="table table-sm table-bordered mb-0 tbl_basic2 align-middle"
id="info_table">
<colgroup> <colgroup>
<col style="width: 120px;"> <col style="width: 120px;">
<col> <col>