赣州市洪水风险预警系统二维版本
xiebin
2023-03-02 b39483c96ae572121d3c619c0b9d37634e682cc4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<div id="ImportAndExportWidget" class="ImportAndExportWidget">
 
    <!-- 数据导入 -->
    <div id="adddata" class="adddata">
        <div class="head">
            <label>数据导入</label><a class="adddataHide">X</a>
        </div>
        <div class="tab">
            <div class="tabCon">
                <div class="cur" style="width:350px;height: 170px;">
                    <ul id="file_imp" style="width:86%;height:37px;margin:0px auto;">
                        <li style="width:80px;float:left;">文件类型:</li>
                        <li id="txt_imp" class="check" title="txt"
                            style="background:url('assets/images/txt.png') no-repeat center;height:30px;width:30px;margin-right:24px; float:left;padding: 2px 4px 2px 0px;"></li>
                        <li id="excel_imp" title="excel"
                            style="background:url('assets/images/excel.png') no-repeat center;height:30px;width:30px;margin-right:24px;float:left;padding: 2px 4px 2px 0px;"></li>
                        <li id="kml_imp" title="kml"
                            style="background:url('assets/images/kml.png') no-repeat center;height:30px;width:30px;margin-right:24px;float:left;padding: 2px 4px 2px 0px;"></li>
                        <li id="shp_imp" title="shp"
                            style="background:url('assets/images/shp.png') no-repeat center;height:30px;width:30px;float:left;padding: 2px 4px 2px 0px;"></li>
                    </ul>
                    <form class="upload ups">
                        <div id="dis_imp" style="opacity: 10;position: inherit;padding: 0px;height: 113px;width: 97%;">
                            <ul style="width:86%;height:20px;margin:0px auto;margin-top:10px">
                                <li style="width:80px;float:left;">几何类型:</li>
                                <li style="width:80px;float:left;"><input name="type" type="radio" value="dian"/>点</li>
                                <li style="width:80px;float:left;"><input name="type" type="radio" value="xian"/>线</li>
                                <li style="width:30px;float:left;"><input name="type" type="radio" value="mian"/>面</li>
                            </ul>
                            <ul id="coordinateSystems_imp"
                                style="width:86%;height:20px;margin:0px auto;margin-top:10px">
                                <li style="width:80px;float:left;">空间参考:</li>
                                <li style="width:80px;float:left;"><input name="coordinateSystems" value="CGCS2000"
                                                                          type="radio"/>CGCS2000
                                </li>
                                <li style="width:80px;float:left;"><input name="coordinateSystems" value="WGS84"
                                                                          type="radio"/>WGS84
                                </li>
                                <li style="float:left;"><input name="coordinateSystems" value="西安80" type="radio"/>西安80
                                </li>
                            </ul>
                            <ul id="projectMethod_imp" style="width:86%;height:20px;margin:0px auto;margin-top:10px">
                                <li style="width:80px;float:left;">投影方式:</li>
                                <li style="width:80px;float:left;"><input name="projectMethod" value="地理坐标"
                                                                          type="radio"/>地理坐标
                                </li>
                                <li style="width:80px;float:left;"><input name="projectMethod" value="平面坐标"
                                                                          type="radio"/>平面坐标
                                </li>
                            </ul>
                            <ul style="width:136px;height:30px;margin:0px auto;margin-top:10px;">
                                <li style="float:left;line-height:30px"><input type="file" name="myFile"
                                                                               style="width:202px;"></input></li>
                            </ul>
                        </div>
                    </form>
                    <form id="upload_kml_imp" class="ups" style="display:none;">
                        <ul style="width:39%;height:30px;margin:0px auto;margin-top: 25px;">
                            <li style="float:left;line-height:30px">
                                <input name="myFile" style="width:202px;" type="file"/></li>
                        </ul>
                    </form>
                    <form id="upload_shp_imp" class="ups" style="display:none;" enctype="multipart/form-data">
                        <ul style="width:39%;height:30px;margin:0px auto;margin-top: 25px;">
                            <li style="float:left;line-height:30px">
                                <input name="myFile" style="width:202px;" type="file"/></li>
                        </ul>
                    </form>
                </div>
            </div>
        </div>
        <div class="foot">
            <input type="button" value="取消" class="adddataHide"/>
            <input id="okBtn" type="button" value="确认"/>
        </div>
    </div>
</div>