You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

143 lines
6.3 KiB

<?php
include_once "../header.php";
require_once "../mkt/conn.php";
?>
<link rel="stylesheet" href="./css/pricereview.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.5.0/axios.min.js" integrity="sha512-aoTNnqZcT8B4AmeCFmiSnDlc4Nj/KPaZyB5G7JnOnUEkdNpCZs1LCankiYi01sLTyWy+m2P+W4XM+BuQ3Q4/Dg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="./js/alpinejs/cdn.min.js"></script>
<script src="./js/pricereviewAlpine.js"></script>
<div id="pricereviewCreate" x-data=pricereviewCreate()>
<div class="container">
<table class="table" border="1">
<thead >
<tr class="" >
<th scope="col" class="text-center " colspan="8">有望客戶(契約)基本資料</th>
</tr>
</thead>
<tbody>
<tr>
<th>評審單號</th>
<td><input class="form-control" type="text" disabled value="" /></td>
<th>卷號</th>
<td><input class="form-control" type="text" disabled value="" /></td>
<th>現場地址</th>
<td><input class="form-control" type="text" disabled value="" /></td>
<th>現場名稱</th>
<td><input class="form-control" type="text" disabled value="" /></td>
</tr>
<tr>
<th>電梯品牌</th>
<td><input class="form-control" type="text" disabled value="" /></td>
<th>數量</th>
<td><input class="form-control" type="number" disabled value="" /></td>
<th>營業員</th>
<td><input class="form-control" type="text" disabled value="" /></td>
<th>保養方式</th>
<td>
<select class="form-control" disabled>
<option value=""></option>
</select>
</td>
</tr>
<tr>
<th>契約期限開始</th>
<td><input class="form-control" type="date" disabled value="" /></td>
<th>契約期限結束</th>
<td><input class="form-control" type="date" disabled value="" /></td>
<th>契約性質</th>
<td>
<select class="form-control" disabled>
<option value=""></option>
<option value="">新簽約</option>
<option value="">免保轉有費</option>
<option value="">續約</option>
</select>
</td>
<th>介紹人</th>
<td><input class="form-control" type="text" disabled value="" /></td>
</tr>
<tr>
<th>付款方式</th>
<td>
<select class="form-control" disabled>
<option value=""></option>
<option value="">月付</option>
<option value="">季付</option>
<option value="">半年付</option>
<option value="">年付</option>
</select>
</td>
<th></th>
<td></td>
<th></th>
<td></td>
<th></th>
<td></td>
</tr>
</tbody>
</table>
<table class="table" border="1">
<thead >
<tr class="" >
<th scope="col" class="text-center " colspan="8">洽商進度</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan=8>
<textarea class="form-control" name="progress" id="progress" cols="20" rows="5" disabled ></textarea>
</td>
</tr>
</tbody>
</table>
<table class="table" border="1">
<thead >
<tr class="" >
<th scope="col" class="text-center " colspan="8">電梯詳細資料</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan=8>
<textarea class="form-control" name="progress" id="progress" cols="20" rows="6" disabled>註意事項:
1.速度單位是 米/分.
2.選擇贈送M1,保養月數需填寫60.
3.標準價格未帶出,請聯係業務部建立該規格報價.
4.無機房速度20~60米 以60米為標準.
</textarea>
</td>
</tr>
</tbody>
</table>
<div class="pricreviewmain container">
<div class="divitem">
<div class="title">
<h4>整機單價</h4>
<button class="addbtn btn" x-ref="addElevatorBtn" @click="openCreateElevatorModal()" >+</button>
</div>
<table class="table" border=1>
<thead>
<tr>
<th>項次</th>
<th>電梯</th>
<th>人乘</th>
<th>載重(KG)</th>
<th>停數</th>
<th>速度(m/min)</th>
<th>開門方式</th>
<th>規格</th>
<th>公司發布價(台)</th>
<th>數量</th>
<th>公司發布價(總價)</th>
<th>售價(台)</th>
<th>售價(總價) </th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>