开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 15376|回复: 4
收起左侧

[已解决] 求大神帮忙看一下好像是PHP的东西 不太清楚

 关闭 [复制链接]
结帖率:83% (5/6)
发表于 2019-7-8 23:48:19 | 显示全部楼层 |阅读模式   山西省大同市
5精币
请大神帮忙看一段应该是PHP的代码 好像隐藏了什么东西,想显示出来应该是网页的


最佳答案

查看完整内容

$urole 如果是用户组ID的话 这句加一个 || $urole == Admin 的用户组ID $urole 如果是用户ID的话 这句加一个 || $urole == Admin 的ID

回答提醒:如果本帖被关闭无法回复,您有更好的答案帮助楼主解决,请发表至 源码区 可获得加分喔。
友情提醒:本版被采纳的主题可在 申请荣誉值 页面申请荣誉值,获得 1点 荣誉值,荣誉值可兑换荣誉会员、终身vip用户组。
快捷通道:申请荣誉值无答案申请取消悬赏投诉有答案未采纳为最佳
结帖率:100% (10/10)

签到天数: 5 天

发表于 2019-7-8 23:48:20 | 显示全部楼层   湖北省荆州市
  1. //只有superadmin和jw用户可见
  2.                             if($urole==0||$urole==2){
复制代码
$urole 如果是用户组ID的话
这句加一个 || $urole == Admin 的用户组ID
$urole 如果是用户ID的话
这句加一个 || $urole == Admin 的ID

  1. //只有superadmin和jw用户可见
复制代码

评分

参与人数 1荣誉 +1 收起 理由
笨潴 + 1 热心帮助他人,荣誉+1,希望继续努力(*^__^*) 嘻嘻!

查看全部评分

回复

使用道具 举报

结帖率:83% (5/6)
 楼主| 发表于 2019-7-8 23:48:39 | 显示全部楼层   山西省大同市
<?php
                            //只有superadmin和jw用户可见
                            if($urole==0||$urole==2){
                            ?>
                            <a class="btn btn-sm btn-default" href="<?php if($product=="9018") echo "handtest9018.php";else echo "handtest.php";?>"
                            target="_blank" style="height: 25px;padding: 2px 10px;">
                            <i class="glyphicon glyphicon-refresh"></i> 一键交维测试</a>
                            <?php
                            }
                            ?>
                            <?php
                            //superadmin可见
                            if($urole==0){
                            ?>
                            <button type="button" id="btnsavealarmset" class="btn btn-sm btn-default" style="height: 25px;padding: 2px 10px;">
                            <i class="glyphicon glyphicon-cog"></i> 保存告警使能</button>
                            <?php
                            }
                            ?>
                            </div>
                        </div>
                        <?php
                        //superadmin可见
                        if($urole==0){
                        ?>
                        <div class="alert alert-warning" style="margin-bottom:0;margin-top:10px;margin-left:10px;margin-right:10px;
                        padding:5px;background-color: gray;border-color: #e96506;color: #c8c8c8;font-weight: bold;">
                            <button type="button" id="alertclose" class="close" data-dismiss="alert">×</button>
                            <strong>温馨提示:</strong> “使能”列图标单击可以修改,单个设备修改告警使能后,在切换设备前,请点击右上角“保存告警使能”按钮,否则修改不生效。
                            <span style="font-weight:normal;font-size: 8px;">(<i id="aswait">30</i>s后自动关闭)</span>
                        </div>
                        <?php
                        }
                        ?>
                        <div class="box-content" style="overflow:hidden">
                             <div class="left-tab-device col-md-2" style="width:13%;padding:0px">
                                                                <ul class="tab_link">
                                                                        <?php
                                                                        $d = $overview['device_list'];
                                                                        $lnglatdevid = 0;
                                                                        for($i=0;$i<count($d);$i++){
                                                                            $tmp = "<li><a ";
                                                                            if(substr($d[$i]['device_id'],7,7) == substr($_GET['mm'],7,7)){
                                                                                $tmp .= "class=\"hover\"";
                                                                                $lnglatdevid = substr($_GET['mm'],7,2);
                                                                            }
                                                                            $tmp .= " href=\"intelligentdevice.php?mm=".$d[$i]['device_id']."\">".$d[$i]['device_name']."</a></li>";
                                                                            echo $tmp;
                                                                        }
                                                                        ?>
                                                                </ul>
                                                         </div>
                                                         
                                                         <div id="dataBox" class="right-tab-data col-md-10" style="height:490px; overflow-y:scroll;position:static;width:87%;padding:0px">
                                                         <input type="hidden" name="device_id" value="" />
                                                         <input type="hidden" name="signal_id" id="signal_id" value="<?php echo $_GET['mm'];?>" />
                                                         
                                                                <table id="TabHead" cellspacing="0" cellpadding="0" class="tab_con" style="table-layout:fixed;position: absolute;">
                                                                        <thead>
                                                                                <tr>
                                                                                        <th width="5%">编号</th>
                                                                                        <?php
                                                                                        if ($urole==0){
                                                                                            echo "<th width=\"5%\">使能</th>";
                                                                                        }else{
                                                                                            echo "<th width=\"5%\">图标</th>";
                                                                                        }
                                                                                        ?>
                                                                                        <th width="11%">信号ID</th>
                                                                                        <th width="15%">信号名称</th>
                                                                                        <th width="11%">采集值(单位)</th>
                                                                                        <th width="15%">采集时间</th>
                                                                                        <th width="10%">告警级别</th>
                                                                                        <th width="13%">备注</th>
                                                                                        <th width="8%">历史数据</th>
                                                                                        <th width="5%">操作</th>
                                                                                </tr>
                                                                                </thead>
                                                                        </table>
                                                                <table id="TabData" cellspacing="0" cellpadding="0" class="tab_con" style="table-layout:fixed;">
                                                                        <thead>
                                                                                <tr>
                                                                                        <th width="5%">编号</th>
                                                                                        <?php
                                                                                        if ($urole==0){
                                                                                            echo "<th width=\"5%\">使能</th>";
                                                                                        }else{
                                                                                            echo "<th width=\"5%\">图标</th>";
                                                                                        }
                                                                                        ?>
                                                                                        <th width="11%">信号ID</th>
                                                                                        <th width="15%">信号名称</th>
                                                                                        <th width="11%">采集值(单位)</th>
                                                                                        <th width="15%">采集时间</th>
                                                                                        <th width="10%">告警级别</th>
                                                                                        <th width="13%">备注</th>
                                                                                        <th width="8%">历史数据</th>
                                                                                        <th width="5%">操作</th>
                                                                                </tr>
                                                                        </thead>
                                                                        <tbody>
                                                                             <?php
                                                                                 $signal = $mn['signal_list'];
                                                                                 $number = 0;
                                                                             for($i=0;$i<count($signal);$i++){
                                                                                 if($signal[$i]['signal_type']==2 || $signal[$i]['signal_type']==3){
                                                                                     
                                                                                 }
                                                                                 else{
                                                                                                 $number++;
                                                                                     //$dev_id = substr($_GET['mm'], 7, 7);//设备id
                                                                                     $dev_id = $_GET['mm'];//设备id
                                                                                     $dev_id2 = substr($_GET['mm'], 7, 7);//设备id
                                                                                     $signalid = substr($signal[$i]['signal_id'], 4);
                                                                                     $cksignal = true;//标识是否禁用,默认为true,表示不禁用
                                                                                     foreach ($alarmdisable -> Device as $alarm_device){
                                                                                         $tmpdevid = strval($alarm_device['id']);
                                                                                         if($tmpdevid === $dev_id || $tmpdevid === $dev_id2){
                                                                                             foreach ($alarm_device -> Signal as $alarm_signal){
                                                                                                 if($alarm_signal->Id == $signalid){
                                                                                                     $cksignal = false;
                                                                                                     break;
                                                                                                 }
                                                                                             }
                                                                                             break;
                                                                                         }
                                                                                     }
                                                                                     $tmp = "<tr>";
                                                                                     $tmp .= "<td style=\"word-wrap:break-word;\">".$number."</td>";
                                                                                     $tmp .= "<td style=\"word-wrap:break-word;\">";
                                                                                     if($urole==0){
                                                                                         if($signal[$i]['signal_type']==0){//只有遥信信号可以设置
                                                                                             if($cksignal){
                                                                                                 $tmp .= "<img class=\"btnalarmableset\" type=\"ok_green\" data=\"".$signalid."\" src=\"Public/img/ok_green.png\" title=\"告警上送\" />";
                                                                                             }else{
                                                                                                 $tmp .= "<img class=\"btnalarmableset\" type=\"ko_red\" data=\"".$signalid."\" src=\"Public/img/ko_red.png\" title=\"告警不上送\" />";
                                                                                                 $tmp .= "<input type=\"hidden\" class=\"alarmdisable\" value=\"".$signalid."\" />";
                                                                                             }
                                                                                         }
                                                                                     }else{
                                                                                         switch ($signal[$i]['signal_type']){
                                                                                             case 0:
                                                                                                 $tmp .= "<img src=\"Public/img/ri.png\" title=\"遥信\" />";
                                                                                                 break;
                                                                                             case 1:
                                                                                                 $tmp .= "<img src=\"Public/img/rm.png\" title=\"遥测\" />";
                                                                                                 break;
                                                                                             case 2:
                                                                                                 $tmp .= "<img src=\"Public/img/rc.png\" title=\"遥控\" />";
                                                                                                 break;
                                                                                             case 3:
                                                                                                 $tmp .= "<img src=\"Public/img/ra.png\" title=\"遥调\" />";
                                                                                                 break;
                                                                                         }
                                                                                     }
                                                                                     $tmp .= "</td>";
                                                                                     $tmp .= "<td style=\"word-wrap:break-word;\">".$signal[$i]['signal_id']."</td>";
                                                                                     $tmp .= "<td style=\"word-wrap:break-word;\">".$signal[$i]['signal_name']."</td>";
                                                                                     $tmp .= "<td class=\"td_value\" style=\"word-wrap:break-word;\"> </td>";
                                                                                     $tmp .= "<td class=\"td_stime\" style=\"word-wrap:break-word;\"> </td>";
                                                                                     $tmp .= "<td class=\"td_level\" style=\"word-wrap:break-word;\"><span class=\"warnbtn label-success label label-default td-normal\"></span></td>";
                                                                                     $tmp .= "<td class=\"td_srmark\" style=\"word-wrap:break-word;\"> </td>";
                                                                                     $tmp .= "<td style=\"word-wrap:break-word;\">";
                                                                                     $tmp .= "<a href=\"signalselect.php?signal_id=".$signal[$i]['signal_id']."&device_id=".$signal[$i]['device_id']."\" target=\"_blank\">查看</a>";
                                                                                     //拉远站,电池维护更换告警
                                                                                     if($signal[$i]['signal_id'] == "0444008001"){
                                                                                         if($urole==0||$urole==2){
                                                                                             $tmp .= "<br /><a href=\"javascript:;\" onclick=\"AlarmClear()\">告警消除</a>";
                                                                                         }
                                                                                     }
                                                                                     $tmp .= "</td>";
                                                                                     $tmp .= "<td class=\"td_resend\" style=\"word-wrap:break-word;\"></td>";
                                                                                     $tmp .= "</tr>";
                                                                                     echo $tmp;
                                                                                 }
                                                                             }
                                                                             ?>
                                                                        </tbody>
                                                                </table>
                                                         </div>
                                                         
                                                         <?php
                                                         //铁塔设备,超级管理员可见
                                                         if($lnglatdevid=="37"&&$urole==0){
                                                             $baseconfig = simplexml_load_file($config_path.'base_config.xml');
                                                             $txtlng="";
                                                             $txtlat="";
                                                             if(file_exists($config_path.'lng_lat.xml')){
                                                                 $lnglat = simplexml_load_file($config_path.'lng_lat.xml');
                                                                 foreach ($lnglat->fsu as $tmpfsu) {
                                                                     if (strval($tmpfsu['id'])===strval($baseconfig->fsu_id)) {
                                                                         $txtlng = $tmpfsu['lng'];
                                                                         $txtlat = $tmpfsu['lat'];
                                                                         break;
                                                                     }
                                                                 }
                                                             }
                                                         ?>
                                                         <div class="box col-md-5" style="padding-left:0;padding-right:0;margin-top:20px" >
                                                             <div class="box-inner" style="margin-bottom: 20px">
                                                                 <div class="box-header well" data-original-title="">
                                                                     <h2>
                                                                            <i class="glyphicon glyphicon-edit"></i> 经纬度配置
                                                                     </h2>
                                                              </div>
                                                              <div class="box-content">
                                                        <div class="panel panel-default" style="margin-bottom:0">
                                                                <div class="panel-body ">
                                                                        <div class="form-group col-md-12 has-feedback">
                                                                                <label class="col-sm-2 control-label">经度</label>
                                                                                <div class="col-sm-9">
                                                                                        <input type="text" class="text-left form-control"
                                                                                                id="longitude" name="longitude"
                                                                                                value="<?php echo $txtlng; ?>" />
                                                                                </div>
                                                                        </div>
                                                                        <div class="form-group col-md-12 has-feedback">
                                                                                <label class="col-sm-2 control-label">纬度</label>
                                                                                <div class="col-sm-9">
                                                                                        <input type="text" class="pword text-left form-control"
                                                                                                id="latitude" name="latitude"
                                                                                                value="<?php echo $txtlat; ?>" />
                                                                                </div>
                                                                        </div>
                                                                        <div class="form-group col-md-12 has-feedback">
                                                                                <div class="col-sm-9 col-md-offset-2">
                                                                                        <button type="button" class="btn btn-default btn-sm btnlnglat">
                                                                                        <i class="glyphicon glyphicon-ok"></i> 保存</button>
                                                                                </div>
                                                                        </div>
                                                                </div>
                                                        </div>
                                                </div>
                                                             </div>
                                                         </div>
                                                         <?php }?>
回复

使用道具 举报

结帖率:83% (5/6)
 楼主| 发表于 2019-7-8 23:49:02 | 显示全部楼层   山西省大同市
  
<?php
//只有superadmin和jw用户可见
if ($urole==0||$urole==2){
?>
<a class="btn btn-sm btn-default" href="<?php if ($product=="9018") echo "handtest9018.php";else echo "handtest.php";?>"
target="_blank" style="height: 25px;padding: 2px 10px;">
<i class="glyphicon glyphicon-refresh"></i> 一键交维测试</a>
<?php
}
?>
<?php
//superadmin可见
if ($urole==0){
?>
<button type="button" id="btnsavealarmset" class="btn btn-sm btn-default" style="height: 25px;padding: 2px 10px;">
<i class="glyphicon glyphicon-cog"></i> 保存告警使能</button>
<?php
}
?>
</div>
</div>
<?php
//superadmin可见
if ($urole==0){
?>
<div class="alert alert-warning" style="margin-bottom:0;margin-top:10px;margin-left:10px;margin-right:10px;
padding:5px;background-color: gray;border-color: #e96506 ;color: #c8c8c8 ;font-weight: bold;">
<button type="button" id="alertclose" class="close" data-dismiss="alert">×</button>
<strong>温馨提示:</strong> “使能”列图标单击可以修改,单个设备修改告警使能后,在切换设备前,请点击右上角“保存告警使能”按钮,否则修改不生效。
<span style="font-weight:normal;font-size: 8px;"> (<i id="aswait">30</i>s后自动关闭)</span>
</div>
<?php
}
?>
<div class="box-content" style="overflow:hidden">
<div class="left-tab-device col-md-2" style="width:13%;padding:0px">
<ul class="tab_link">
<?php
$d = $overview[ ' device_list'];
$lnglatdevid = 0;
for ($i=0;$i<count ($d);$i++){
$tmp = "<li><a ";
if (substr ($d[$i][ ' device_id'],7,7) == substr($_GET['mm'],7,7)){
$tmp .= "class=\"hover\"";
$lnglatdevid = substr ($_GET[ ' mm'],7,2);
}
$tmp .= " href=\"intelligentdevice.php?mm=".$d[$i][ ' device_id']."\">".$d[$i]['device_name']."</a></li>";
echo $tmp;
}
?>
</ul>
</div>

<div id="dataBox" class="right-tab-data col-md-10" style="height:490px; overflow-y:scroll;position:static;width:87%;padding:0px">
<input type="hidden" name="device_id" value="" />
<input type="hidden" name="signal_id" id="signal_id" value="<?php echo $_GET[ ' mm'];?>" />

<table id="TabHead" cellspacing="0" cellpadding="0" class="tab_con" style="table-layout:fixed;position: absolute;">
<thead>
<tr>
<th width="5%">编号</th>
<?php
if ($urole==0){
echo "<th width=\"5%\">使能</th>";
}else{
echo "<th width=\"5%\">图标</th>";
}
?>
<th width="11%">信号ID</th>
<th width="15%">信号名称</th>
<th width="11%">采集值 (单位)</th>
<th width="15%">采集时间</th>
<th width="10%">告警级别</th>
<th width="13%">备注</th>
<th width="8%">历史数据</th>
<th width="5%">操作</th>
</tr>
</thead>
</table>
<table id="TabData" cellspacing="0" cellpadding="0" class="tab_con" style="table-layout:fixed;">
<thead>
<tr>
<th width="5%">编号</th>
<?php
if ($urole==0){
echo "<th width=\"5%\">使能</th>";
}else{
echo "<th width=\"5%\">图标</th>";
}
?>
<th width="11%">信号ID</th>
<th width="15%">信号名称</th>
<th width="11%">采集值 (单位)</th>
<th width="15%">采集时间</th>
<th width="10%">告警级别</th>
<th width="13%">备注</th>
<th width="8%">历史数据</th>
<th width="5%">操作</th>
</tr>
</thead>
<tbody>
<?php
$signal = $mn[ ' signal_list'];
$number = 0;
for ($i=0;$i<count ($signal);$i++){
if ($signal[$i][ ' signal_type']==2 || $signal[$i]['signal_type']==3){

}
else{
$number++;
//$dev_id = substr ($_GET[ ' mm'], 7, 7);//设备id
$dev_id = $_GET[ ' mm'];//设备id
$dev_id2 = substr ($_GET[ ' mm'], 7, 7);//设备id
$signalid = substr ($signal[$i][ ' signal_id'], 4);
$cksignal = true;//标识是否禁用,默认为true,表示不禁用
foreach ($alarmdisable -> Device as $alarm_device){
$tmpdevid = strval ($alarm_device[ ' id']);
if ($tmpdevid === $dev_id || $tmpdevid === $dev_id2){
foreach ($alarm_device -> Signal as $alarm_signal){
if ($alarm_signal->Id == $signalid){
$cksignal = false;
break;
}
}
break;
}
}
$tmp = "<tr>";
$tmp .= "<td style=\"word-wrap:break-word;\">".$number."</td>";
$tmp .= "<td style=\"word-wrap:break-word;\">";
if ($urole==0){
if ($signal[$i][ ' signal_type']==0){//只有遥信信号可以设置
if ($cksignal){
$tmp .= "<img class=\"btnalarmableset\" type=\"ok_green\" data=\"".$signalid."\" src=\"Public/img/ok_green.png\" title=\"告警上送\" />";
}else{
$tmp .= "<img class=\"btnalarmableset\" type=\"ko_red\" data=\"".$signalid."\" src=\"Public/img/ko_red.png\" title=\"告警不上送\" />";
$tmp .= "<input type=\"hidden\" class=\"alarmdisable\" value=\"".$signalid."\" />";
}
}
}else{
switch ($signal[$i][ ' signal_type']){
case 0:
$tmp .= "<img src=\"Public/img/ri.png\" title=\"遥信\" />";
break;
case 1:
$tmp .= "<img src=\"Public/img/rm.png\" title=\"遥测\" />";
break;
case 2:
$tmp .= "<img src=\"Public/img/rc.png\" title=\"遥控\" />";
break;
case 3:
$tmp .= "<img src=\"Public/img/ra.png\" title=\"遥调\" />";
break;
}
}
$tmp .= "</td>";
$tmp .= "<td style=\"word-wrap:break-word;\">".$signal[$i][ ' signal_id']."</td>";
$tmp .= "<td style=\"word-wrap:break-word;\">".$signal[$i][ ' signal_name']."</td>";
$tmp .= "<td class=\"td_value\" style=\"word-wrap:break-word;\"> </td>";
$tmp .= "<td class=\"td_stime\" style=\"word-wrap:break-word;\"> </td>";
$tmp .= "<td class=\"td_level\" style=\"word-wrap:break-word;\"><span class=\"warnbtn label-success label label-default td-normal\"></span></td>";
$tmp .= "<td class=\"td_srmark\" style=\"word-wrap:break-word;\"> </td>";
$tmp .= "<td style=\"word-wrap:break-word;\">";
$tmp .= "<a href=\"signalselect.php?signal_id=".$signal[$i][ ' signal_id']."&device_id=".$signal[$i]['device_id']."\" target=\"_blank\">查看</a>";
//拉远站,电池维护更换告警
if ($signal[$i][ ' signal_id'] == "0444008001"){
if ($urole==0||$urole==2){
$tmp .= "<br /><a href=\"javascript:;\" onclick=\"AlarmClear ()\">告警消除</a>";
}
}
$tmp .= "</td>";
$tmp .= "<td class=\"td_resend\" style=\"word-wrap:break-word;\"></td>";
$tmp .= "</tr>";
echo $tmp;
}
}
?>
</tbody>
</table>
</div>

<?php
//铁塔设备,超级管理员可见
if ($lnglatdevid=="37"&&$urole==0){
$baseconfig = simplexml_load_file ($config_path. ' base_config.xml');
$txtlng="";
$txtlat="";
if (file_exists ($config_path. ' lng_lat.xml')){
$lnglat = simplexml_load_file ($config_path. ' lng_lat.xml');
foreach ($lnglat->fsu as $tmpfsu) {
if (strval ($tmpfsu[ ' id'])===strval($baseconfig->fsu_id)) {
$txtlng = $tmpfsu[ ' lng'];
$txtlat = $tmpfsu[ ' lat'];
break;
}
}
}
?>
<div class="box col-md-5" style="padding-left:0;padding-right:0;margin-top:20px" >
<div class="box-inner" style="margin-bottom: 20px">
<div class="box-header well" data-original-title="">
<h2>
<i class="glyphicon glyphicon-edit"></i> 经纬度配置
</h2>
</div>
<div class="box-content">
<div class="panel panel-default" style="margin-bottom:0">
<div class="panel-body ">
<div class="form-group col-md-12 has-feedback">
<label class="col-sm-2 control-label">经度</label>
<div class="col-sm-9">
<input type="text" class="text-left form-control"
id="longitude" name="longitude"
value="<?php echo $txtlng; ?>" onkeyup="if (isNaN (value))execCommand ( ' undo')" onafterpaste="if(isNaN(value))execCommand('undo')" />
</div>
</div>
<div class="form-group col-md-12 has-feedback">
<label class="col-sm-2 control-label">纬度</label>
<div class="col-sm-9">
<input type="text" class="pword text-left form-control"
id="latitude" name="latitude"
value="<?php echo $txtlat; ?>" onkeyup="if (isNaN (value))execCommand ( ' undo')" onafterpaste="if(isNaN(value))execCommand('undo')" />
</div>
</div>
<div class="form-group col-md-12 has-feedback">
<div class="col-sm-9 col-md-offset-2">
<button type="button" class="btn btn-default btn-sm btnlnglat">
<i class="glyphicon glyphicon-ok"></i> 保存</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php }?>
回复

使用道具 举报

结帖率:83% (5/6)
 楼主| 发表于 2019-7-8 23:51:23 | 显示全部楼层   山西省大同市
里边标注 仅superadmin 显示和 jw 显示,想在admin也显示改怎么做

intelligentdevice.7z

6.37 KB, 下载次数: 1

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 诚聘英才| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 800073686,邮箱:800073686@b.qq.com
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表