37 lines
2.0 KiB
PHP
37 lines
2.0 KiB
PHP
<?php
|
|
include_once "inc/getBasic.inc.php";
|
|
$_REQUEST['ts_code']=$_REQUEST['ts_code']?$_REQUEST['ts_code']:'000001';
|
|
$_REQUEST['t_start']=$_REQUEST['t_start']?$_REQUEST['t_start']:'2015-01-01';
|
|
$_REQUEST['t_end']=$_REQUEST['t_end']?$_REQUEST['t_end']:'';
|
|
$ts_name = tscodeToName(ts_code_conv($_REQUEST['ts_code']));
|
|
$title="股价VS PE/PB/PS 趋势:".$ts_name.'('.$_REQUEST['ts_code'].')';
|
|
include_once "html/head.php";
|
|
?>
|
|
<form name="main" id="main" method="get"> <div style="width:100%;text-align:center">
|
|
股票代码: <input type='text' name='ts_code' id='ts_code' width="30px" value='<?=$_REQUEST['ts_code']?>' >
|
|
开始时间: <input type='date' name='t_start' id='t_start' width='30px' value='<?=$_REQUEST['t_start']?>' >
|
|
结束时间: <input type='date' name='t_end' id='t_end' width='30px' value='<?=$_REQUEST['t_end']?>' >
|
|
<input type='submit' value="给我查!">
|
|
<div > </div>
|
|
<input type='checkbox' id='cb_pe' onclick="hideSwitch(this.id,'pe_ttm')" checked> PE_TTM 市盈率
|
|
<input type='checkbox' id='cb_pb' onclick="hideSwitch(this.id,'pb')" > PB 市净率
|
|
<input type='checkbox' id='cb_ps' onclick="hideSwitch(this.id,'ps')" > PS 市销率
|
|
</div> </form>
|
|
<div > </div>
|
|
<div style="width:100%; text-align:center" id='pe_ttm'>
|
|
<iframe src="https://echart.doorcome.cn/chartFore.php?s=<?=$_REQUEST['t_start']?>&item=pe_ttm&ts_code=<?=$_REQUEST['ts_code']?>&e=<?=$_REQUEST['t_end']?>"
|
|
height="400px" width="1000px"></iframe>
|
|
</div>
|
|
<div > </div>
|
|
<div style="width:100%; text-align:center; display:None;" id='pb'>
|
|
<iframe src="https://echart.doorcome.cn/chartFore.php?s=<?=$_REQUEST['t_start']?>&item=pb&ts_code=<?=$_REQUEST['ts_code']?>&e=<?=$_REQUEST['t_end']?>"
|
|
height="400px" width="1000px"></iframe>
|
|
</div>
|
|
<div > </div>
|
|
<div style="width:100%; text-align:center; display:None;" id='ps'>
|
|
<iframe src="https://echart.doorcome.cn/chartFore.php?s=<?=$_REQUEST['t_start']?>&item=ps&ts_code=<?=$_REQUEST['ts_code']?>&e=<?=$_REQUEST['t_end']?>"
|
|
height="400px" width="1000px"></iframe>
|
|
</div>
|
|
<?php include_once "html/footer.php"; ?>
|
|
|