Commit 5a1d865cb2ae72a313a3d82031986ffd9f9514a6
1 parent
10061249
Signed-off-by: yrf123456 <463058651@qq.com>
Showing
1 changed file
with
0 additions
and
2525 deletions
src/main/resources/static/pages/base/line/add.html
| ... | ... | @@ -503,2529 +503,4 @@ |
| 503 | 503 | <!-- 信息容器组件 END --> |
| 504 | 504 | |
| 505 | 505 | <!-- 线路信息添加片段JS模块 --> |
| 506 | -<script src="/pages/base/line/js/line-add-form.js"></script><!-- 片段标题 START --> | |
| 507 | -<div class="page-head"> | |
| 508 | - <div class="page-title"> | |
| 509 | - <h1>添加线路</h1> | |
| 510 | - </div> | |
| 511 | -</div> | |
| 512 | -<!-- 片段标题 END --> | |
| 513 | - | |
| 514 | -<!-- 线路信息导航栏组件 START --> | |
| 515 | -<ul class="page-breadcrumb breadcrumb"> | |
| 516 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 517 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 518 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 519 | - <li><span class="active">添加线路</span></li> | |
| 520 | -</ul> | |
| 521 | -<!-- 线路信息导航栏组件 END --> | |
| 522 | - | |
| 523 | -<!-- 信息容器组件 START --> | |
| 524 | -<div class="portlet light bordered"> | |
| 525 | - | |
| 526 | - <!-- 信息容器组件标题 START --> | |
| 527 | - <div class="portlet-title"> | |
| 528 | - <div class="caption"> | |
| 529 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 530 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 531 | - </div> | |
| 532 | - </div> | |
| 533 | - <!-- 信息容器组件标题 END --> | |
| 534 | - | |
| 535 | - <!-- 表单容器组件 START --> | |
| 536 | - <div class="portlet-body form"> | |
| 537 | - | |
| 538 | - <!-- line_add_form FORM START --> | |
| 539 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 540 | - | |
| 541 | - <!-- 表单验证错误提示组件 START --> | |
| 542 | - <div class="alert alert-danger display-hide"> | |
| 543 | - <button class="close" data-close="alert"></button> | |
| 544 | - 您的输入有误,请检查下面的输入项 | |
| 545 | - </div> | |
| 546 | - <!-- 表单验证错误提示组件 END --> | |
| 547 | - | |
| 548 | - <!-- 表单字段内容 START --> | |
| 549 | - <div class="form-body"> | |
| 550 | - | |
| 551 | - <!-- 表单分组组件 form-group START --> | |
| 552 | - <div class="form-group"> | |
| 553 | - <!-- 线路编码 (* 必填项) START --> | |
| 554 | - <div class="col-md-6"> | |
| 555 | - <label class="control-label col-md-5"> | |
| 556 | - <span class="required"> * </span>线路编码 : | |
| 557 | - </label> | |
| 558 | - <div class="col-md-4"> | |
| 559 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 560 | - </div> | |
| 561 | - </div> | |
| 562 | - <!-- 线路编码 (* 必填项) END --> | |
| 563 | - | |
| 564 | - <!-- 线路名称 (* 必填项) START --> | |
| 565 | - <div class="col-md-6"> | |
| 566 | - <label class="control-label col-md-5"> | |
| 567 | - <span class="required"> * </span>线路名称 : | |
| 568 | - </label> | |
| 569 | - <div class="col-md-4"> | |
| 570 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 571 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 572 | - </div> | |
| 573 | - </div> | |
| 574 | - <!-- 线路名称 (* 必填项) END --> | |
| 575 | - </div> | |
| 576 | - <!-- 表单分组组件 form-group END --> | |
| 577 | - | |
| 578 | - <!-- 表单分组组件 form-group START --> | |
| 579 | - <div class="form-group"> | |
| 580 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 581 | - <div class="col-md-6"> | |
| 582 | - <label class="control-label col-md-5"> | |
| 583 | - <span class="required"> * </span>所属公司 : | |
| 584 | - </label> | |
| 585 | - <div class="col-md-4"> | |
| 586 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 587 | - </div> | |
| 588 | - </div> | |
| 589 | - <!-- 所属公司 END --> | |
| 590 | - | |
| 591 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 592 | - <div class="col-md-6"> | |
| 593 | - <label class="control-label col-md-5"> | |
| 594 | - <span class="required"> * </span>所属分公司 : | |
| 595 | - </label> | |
| 596 | - <div class="col-md-4"> | |
| 597 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 598 | - </div> | |
| 599 | - </div> | |
| 600 | - <!-- 所属分公司 END --> | |
| 601 | - </div> | |
| 602 | - <!-- 表单分组组件 form-group END --> | |
| 603 | - | |
| 604 | - <!-- 表单分组组件 form-group START --> | |
| 605 | - <div class="form-group"> | |
| 606 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 607 | - <div class="col-md-6"> | |
| 608 | - <label class="control-label col-md-5"> | |
| 609 | - <span class="required"> * </span>线路等级 : | |
| 610 | - </label> | |
| 611 | - <div class="col-md-4"> | |
| 612 | - <select name="level" class="form-control" id="levelSelect"> | |
| 613 | - <option value="">-- 请选择线路等级 --</option> | |
| 614 | - <option value="1">一级线路</option> | |
| 615 | - <option value="2">二级线路</option> | |
| 616 | - <option value="0">未知等级</option> | |
| 617 | - </select> | |
| 618 | - </div> | |
| 619 | - </div> | |
| 620 | - <!-- 线路等级 END --> | |
| 621 | - | |
| 622 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 623 | - <div class="col-md-6"> | |
| 624 | - <label class="control-label col-md-5"> | |
| 625 | - <span class="required"> * </span>线路性质 : | |
| 626 | - </label> | |
| 627 | - <div class="col-md-4"> | |
| 628 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 629 | - <option value="">-- 请选择线路性质 --</option> | |
| 630 | - <option value="lj">路救</option> | |
| 631 | - <option value="bc">备车</option> | |
| 632 | - <option value="dbc">定班车</option> | |
| 633 | - <option value="yxl">夜宵路</option> | |
| 634 | - <option value="cgxl">常规线路</option> | |
| 635 | - <option value="gjxl">过江线路</option> | |
| 636 | - <option value="csbs">穿梭巴士</option> | |
| 637 | - <option value="tyxl">特约线路</option> | |
| 638 | - <option value="cctxl">村村通线路</option> | |
| 639 | - <option value="qt">其他</option> | |
| 640 | - </select> | |
| 641 | - </div> | |
| 642 | - </div> | |
| 643 | - <!-- 线路性质 END --> | |
| 644 | - </div> | |
| 645 | - <!-- 表单分组组件 form-group END --> | |
| 646 | - | |
| 647 | - <!-- 表单分组组件 form-group START --> | |
| 648 | - <div class="form-group"> | |
| 649 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 650 | - <div class="col-md-6"> | |
| 651 | - <label class="control-label col-md-5"> | |
| 652 | - <span class="required"> * </span>是否宵夜 : | |
| 653 | - </label> | |
| 654 | - <div class="col-md-4"> | |
| 655 | - <div class="md-radio-inline"> | |
| 656 | - <div class="md-radio"> | |
| 657 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 658 | - <label for="radio16"> | |
| 659 | - <span></span> | |
| 660 | - <span class="check"></span> | |
| 661 | - <span class="box"></span> 是 | |
| 662 | - </label> | |
| 663 | - </div> | |
| 664 | - <div class="md-radio has-error"> | |
| 665 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 666 | - <label for="radio17" style="color:#FFC0CB"> | |
| 667 | - <span></span> | |
| 668 | - <span class="check"></span> | |
| 669 | - <span class="box"></span> 否 | |
| 670 | - </label> | |
| 671 | - </div> | |
| 672 | - </div> | |
| 673 | - </div> | |
| 674 | - </div> | |
| 675 | - <!-- 是否宵夜 END --> | |
| 676 | - | |
| 677 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 678 | - <div class="col-md-6"> | |
| 679 | - <label class="control-label col-md-5"> | |
| 680 | - <span class="required"> * </span>是否撤销 : | |
| 681 | - </label> | |
| 682 | - <div class="col-md-4"> | |
| 683 | - <div class="md-radio-inline"> | |
| 684 | - <div class="md-radio"> | |
| 685 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 686 | - <label for="radio14"> | |
| 687 | - <span></span> | |
| 688 | - <span class="check"></span> | |
| 689 | - <span class="box"></span> 是 | |
| 690 | - </label> | |
| 691 | - </div> | |
| 692 | - <div class="md-radio has-error"> | |
| 693 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 694 | - <label for="radio15" style="color:#FFC0CB"> | |
| 695 | - <span></span> | |
| 696 | - <span class="check"></span> | |
| 697 | - <span class="box"></span> 否 | |
| 698 | - </label> | |
| 699 | - </div> | |
| 700 | - </div> | |
| 701 | - </div> | |
| 702 | - </div> | |
| 703 | - <!-- 是否撤销 START --> | |
| 704 | - </div> | |
| 705 | - <!-- 表单分组组件 form-group END --> | |
| 706 | - | |
| 707 | - <!-- 表单分组组件 form-group START --> | |
| 708 | - <div class="form-group"> | |
| 709 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 710 | - <div class="col-md-6"> | |
| 711 | - <label class="control-label col-md-5"> | |
| 712 | - <span class="required"> * </span>是否营运线路 : | |
| 713 | - </label> | |
| 714 | - <div class="col-md-4"> | |
| 715 | - <div class="md-radio-inline"> | |
| 716 | - <div class="md-radio"> | |
| 717 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 718 | - <label for="radio18"> | |
| 719 | - <span></span> | |
| 720 | - <span class="check"></span> | |
| 721 | - <span class="box"></span> 是 | |
| 722 | - </label> | |
| 723 | - </div> | |
| 724 | - <div class="md-radio has-error"> | |
| 725 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 726 | - <label for="radio19" style="color:#FFC0CB"> | |
| 727 | - <span></span> | |
| 728 | - <span class="check"></span> | |
| 729 | - <span class="box"></span> 否 | |
| 730 | - </label> | |
| 731 | - </div> | |
| 732 | - </div> | |
| 733 | - </div> | |
| 734 | - </div> | |
| 735 | - <!-- 是否营运 END --> | |
| 736 | - <!-- 权证车辆数 START --> | |
| 737 | - <div class="col-md-6"> | |
| 738 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 739 | - <div class="col-md-4"> | |
| 740 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 741 | - </div> | |
| 742 | - </div> | |
| 743 | - <!-- 权证车辆数 END --> | |
| 744 | - | |
| 745 | - </div> | |
| 746 | - <!-- 表单分组组件 form-group END --> | |
| 747 | - | |
| 748 | - <!-- 表单分组组件 form-group START --> | |
| 749 | - <div class="form-group"> | |
| 750 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 751 | - <div class="col-md-6"> | |
| 752 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 753 | - 起始站名称 : | |
| 754 | - </label> | |
| 755 | - <div class="col-md-4"> | |
| 756 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 757 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 758 | - </div> | |
| 759 | - </div> | |
| 760 | - <!-- 起始站名称 END --> | |
| 761 | - | |
| 762 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 763 | - <div class="col-md-6"> | |
| 764 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 765 | - <div class="col-md-4"> | |
| 766 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 767 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 768 | - </div> | |
| 769 | - </div> | |
| 770 | - <!-- 终点站名称 END --> | |
| 771 | - </div> | |
| 772 | - <!-- 表单分组组件 form-group END --> | |
| 773 | - | |
| 774 | - <!-- 表单分组组件 form-group START --> | |
| 775 | - <div class="form-group"> | |
| 776 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 777 | - <div class="col-md-6"> | |
| 778 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 779 | - <div class="col-md-4"> | |
| 780 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 781 | - <span class="help-block"> 例如 :06:00 </span> | |
| 782 | - </div> | |
| 783 | - </div> | |
| 784 | - <!-- 起始站首班车时间 END --> | |
| 785 | - | |
| 786 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 787 | - <div class="col-md-6"> | |
| 788 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 789 | - <div class="col-md-4"> | |
| 790 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 791 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 792 | - <span class="help-block"> 例如 :17:00 </span> | |
| 793 | - </div> | |
| 794 | - </div> | |
| 795 | - <!-- 起始站末班车时间 END --> | |
| 796 | - </div> | |
| 797 | - <!-- 表单分组组件 form-group END --> | |
| 798 | - | |
| 799 | - <!-- 表单分组组件 form-group START --> | |
| 800 | - <div class="form-group"> | |
| 801 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 802 | - <div class="col-md-6"> | |
| 803 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 804 | - <div class="col-md-4"> | |
| 805 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 806 | - <span class="help-block"> 例如 :05:00 </span> | |
| 807 | - </div> | |
| 808 | - </div> | |
| 809 | - <!-- 终点站首班车时间 END --> | |
| 810 | - | |
| 811 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 812 | - <div class="col-md-6"> | |
| 813 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 814 | - <div class="col-md-4"> | |
| 815 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 816 | - <span class="help-block"> 例如 :18:00 </span> | |
| 817 | - </div> | |
| 818 | - </div> | |
| 819 | - <!-- 终点站末班车时间 END --> | |
| 820 | - </div> | |
| 821 | - <!-- 表单分组组件 form-group END --> | |
| 822 | - | |
| 823 | - <!-- 表单分组组件 form-group START --> | |
| 824 | - <div class="form-group"> | |
| 825 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 826 | - <div class="col-md-6"> | |
| 827 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 828 | - <div class="col-md-4"> | |
| 829 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 830 | - <option value="">-- 请选择线路类型 --</option> | |
| 831 | - <option value="0">双向</option> | |
| 832 | - <option value="1">环线</option> | |
| 833 | - </select> | |
| 834 | - </div> | |
| 835 | - </div> | |
| 836 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 837 | - | |
| 838 | - <!--大间隔等级 START --> | |
| 839 | - <div class="col-md-6"> | |
| 840 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 841 | - <div class="col-md-4"> | |
| 842 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 843 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 844 | - <option value="1">一级</option> | |
| 845 | - <option value="2">二级</option> | |
| 846 | - <option value="3">三级</option> | |
| 847 | - <option value="4">四级</option> | |
| 848 | - </select> | |
| 849 | - </div> | |
| 850 | - </div> | |
| 851 | - <!-- 大间隔等级END --> | |
| 852 | - </div> | |
| 853 | - <!-- 表单分组组件 form-group START --> | |
| 854 | - | |
| 855 | - <!-- 表单分组组件 form-group START --> | |
| 856 | - <div class="form-group"> | |
| 857 | - <!-- 线路简称 START --> | |
| 858 | - <div class="col-md-6"> | |
| 859 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 860 | - <div class="col-md-4"> | |
| 861 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 862 | - </div> | |
| 863 | - </div> | |
| 864 | - <!-- 线路简称 END --> | |
| 865 | - | |
| 866 | - <!-- 英文名称 START --> | |
| 867 | - <div class="col-md-6"> | |
| 868 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 869 | - <div class="col-md-4"> | |
| 870 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 871 | - </div> | |
| 872 | - </div> | |
| 873 | - <!-- 英文名称 END --> | |
| 874 | - </div> | |
| 875 | - <!-- 表单分组组件 form-group END --> | |
| 876 | - | |
| 877 | - <!-- 表单分组组件 form-group START --> | |
| 878 | - <div class="form-group"> | |
| 879 | - <!-- 上海市线路编码 START --> | |
| 880 | - <div class="col-md-6"> | |
| 881 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 882 | - <div class="col-md-4"> | |
| 883 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 884 | - </div> | |
| 885 | - </div> | |
| 886 | - <!-- 上海市线路编码 END --> | |
| 887 | - | |
| 888 | - <!--设备线路编码 START --> | |
| 889 | - <div class="col-md-6"> | |
| 890 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 891 | - <div class="col-md-4"> | |
| 892 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 893 | - </div> | |
| 894 | - </div> | |
| 895 | - <!--设备线路编码 END --> | |
| 896 | - </div> | |
| 897 | - <!-- 表单分组组件 form-group END --> | |
| 898 | - | |
| 899 | - <!-- 表单分组组件 form-group START --> | |
| 900 | - <div class="form-group"> | |
| 901 | - <!-- 起始站调度电话 START --> | |
| 902 | - <div class="col-md-6"> | |
| 903 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 904 | - <div class="col-md-4"> | |
| 905 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 906 | - </div> | |
| 907 | - </div> | |
| 908 | - <!-- 起始站调度电话 END --> | |
| 909 | - | |
| 910 | - <!-- 终点站调度电话 START --> | |
| 911 | - <div class="col-md-6"> | |
| 912 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 913 | - <div class="col-md-4"> | |
| 914 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 915 | - </div> | |
| 916 | - </div> | |
| 917 | - <!-- 终点站调度电话 START --> | |
| 918 | - </div> | |
| 919 | - <!-- 表单分组组件 form-group END --> | |
| 920 | - | |
| 921 | - <!-- 表单分组组件 form-group START --> | |
| 922 | - <div class="form-group"> | |
| 923 | - <!-- 车辆总数 START --> | |
| 924 | - <div class="col-md-6"> | |
| 925 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 926 | - <div class="col-md-4"> | |
| 927 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 928 | - </div> | |
| 929 | - </div> | |
| 930 | - <!-- 车辆总数 END --> | |
| 931 | - | |
| 932 | - <!-- 普通车辆数 START --> | |
| 933 | - <div class="col-md-6"> | |
| 934 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 935 | - <div class="col-md-4"> | |
| 936 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 937 | - </div> | |
| 938 | - </div> | |
| 939 | - <!-- 普通车辆数 END --> | |
| 940 | - </div> | |
| 941 | - <!-- 表单分组组件 form-group END --> | |
| 942 | - | |
| 943 | - <!-- 表单分组组件 form-group START --> | |
| 944 | - <div class="form-group"> | |
| 945 | - <!-- 空调车辆数 START --> | |
| 946 | - <div class="col-md-6"> | |
| 947 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 948 | - <div class="col-md-4"> | |
| 949 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 950 | - </div> | |
| 951 | - </div> | |
| 952 | - <!-- 空调车辆数 END --> | |
| 953 | - | |
| 954 | - <!-- 开辟日期 START --> | |
| 955 | - <div class="col-md-6"> | |
| 956 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 957 | - <div class="col-md-4"> | |
| 958 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 959 | - </div> | |
| 960 | - </div> | |
| 961 | - <!-- 开辟日期 END --> | |
| 962 | - </div> | |
| 963 | - <!-- 表单分组组件 form-group END --> | |
| 964 | - | |
| 965 | - <!-- 表单分组组件 form-group START --> | |
| 966 | - <div class="form-group"> | |
| 967 | - <!-- 线路沿革 START --> | |
| 968 | - <div class="col-md-6"> | |
| 969 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 970 | - <div class="col-md-4"> | |
| 971 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 972 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 973 | - </div> | |
| 974 | - </div> | |
| 975 | - <!-- 线路沿革 END --> | |
| 976 | - | |
| 977 | - <!-- 描述/说明 START --> | |
| 978 | - <div class="col-md-6"> | |
| 979 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 980 | - <div class="col-md-4"> | |
| 981 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 982 | - </div> | |
| 983 | - </div> | |
| 984 | - <!-- 描述/说明 END --> | |
| 985 | - </div> | |
| 986 | - <!-- 表单分组组件 form-group END --> | |
| 987 | - </div> | |
| 988 | - <!-- 表单字段内容 END --> | |
| 989 | - | |
| 990 | - <!-- 表单按钮组件 START --> | |
| 991 | - <div class="form-actions"> | |
| 992 | - <div class="row"> | |
| 993 | - <div class="col-md-offset-5 col-md-7"> | |
| 994 | - <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | |
| 995 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 996 | - </div> | |
| 997 | - </div> | |
| 998 | - </div> | |
| 999 | - <!-- 表单按钮组件 END --> | |
| 1000 | - | |
| 1001 | - </form> | |
| 1002 | - <!-- line_add_form FORM END --> | |
| 1003 | - | |
| 1004 | - </div> | |
| 1005 | - <!-- 表单组件 END --> | |
| 1006 | - | |
| 1007 | -</div> | |
| 1008 | -<!-- 信息容器组件 END --> | |
| 1009 | - | |
| 1010 | -<!-- 线路信息添加片段JS模块 --> | |
| 1011 | -<script src="/pages/base/line/js/line-add-form.js"></script><!-- 片段标题 START --> | |
| 1012 | -<div class="page-head"> | |
| 1013 | - <div class="page-title"> | |
| 1014 | - <h1>添加线路</h1> | |
| 1015 | - </div> | |
| 1016 | -</div> | |
| 1017 | -<!-- 片段标题 END --> | |
| 1018 | - | |
| 1019 | -<!-- 线路信息导航栏组件 START --> | |
| 1020 | -<ul class="page-breadcrumb breadcrumb"> | |
| 1021 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 1022 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 1023 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 1024 | - <li><span class="active">添加线路</span></li> | |
| 1025 | -</ul> | |
| 1026 | -<!-- 线路信息导航栏组件 END --> | |
| 1027 | - | |
| 1028 | -<!-- 信息容器组件 START --> | |
| 1029 | -<div class="portlet light bordered"> | |
| 1030 | - | |
| 1031 | - <!-- 信息容器组件标题 START --> | |
| 1032 | - <div class="portlet-title"> | |
| 1033 | - <div class="caption"> | |
| 1034 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 1035 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 1036 | - </div> | |
| 1037 | - </div> | |
| 1038 | - <!-- 信息容器组件标题 END --> | |
| 1039 | - | |
| 1040 | - <!-- 表单容器组件 START --> | |
| 1041 | - <div class="portlet-body form"> | |
| 1042 | - | |
| 1043 | - <!-- line_add_form FORM START --> | |
| 1044 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 1045 | - | |
| 1046 | - <!-- 表单验证错误提示组件 START --> | |
| 1047 | - <div class="alert alert-danger display-hide"> | |
| 1048 | - <button class="close" data-close="alert"></button> | |
| 1049 | - 您的输入有误,请检查下面的输入项 | |
| 1050 | - </div> | |
| 1051 | - <!-- 表单验证错误提示组件 END --> | |
| 1052 | - | |
| 1053 | - <!-- 表单字段内容 START --> | |
| 1054 | - <div class="form-body"> | |
| 1055 | - | |
| 1056 | - <!-- 表单分组组件 form-group START --> | |
| 1057 | - <div class="form-group"> | |
| 1058 | - <!-- 线路编码 (* 必填项) START --> | |
| 1059 | - <div class="col-md-6"> | |
| 1060 | - <label class="control-label col-md-5"> | |
| 1061 | - <span class="required"> * </span>线路编码 : | |
| 1062 | - </label> | |
| 1063 | - <div class="col-md-4"> | |
| 1064 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 1065 | - </div> | |
| 1066 | - </div> | |
| 1067 | - <!-- 线路编码 (* 必填项) END --> | |
| 1068 | - | |
| 1069 | - <!-- 线路名称 (* 必填项) START --> | |
| 1070 | - <div class="col-md-6"> | |
| 1071 | - <label class="control-label col-md-5"> | |
| 1072 | - <span class="required"> * </span>线路名称 : | |
| 1073 | - </label> | |
| 1074 | - <div class="col-md-4"> | |
| 1075 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 1076 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 1077 | - </div> | |
| 1078 | - </div> | |
| 1079 | - <!-- 线路名称 (* 必填项) END --> | |
| 1080 | - </div> | |
| 1081 | - <!-- 表单分组组件 form-group END --> | |
| 1082 | - | |
| 1083 | - <!-- 表单分组组件 form-group START --> | |
| 1084 | - <div class="form-group"> | |
| 1085 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 1086 | - <div class="col-md-6"> | |
| 1087 | - <label class="control-label col-md-5"> | |
| 1088 | - <span class="required"> * </span>所属公司 : | |
| 1089 | - </label> | |
| 1090 | - <div class="col-md-4"> | |
| 1091 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 1092 | - </div> | |
| 1093 | - </div> | |
| 1094 | - <!-- 所属公司 END --> | |
| 1095 | - | |
| 1096 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 1097 | - <div class="col-md-6"> | |
| 1098 | - <label class="control-label col-md-5"> | |
| 1099 | - <span class="required"> * </span>所属分公司 : | |
| 1100 | - </label> | |
| 1101 | - <div class="col-md-4"> | |
| 1102 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 1103 | - </div> | |
| 1104 | - </div> | |
| 1105 | - <!-- 所属分公司 END --> | |
| 1106 | - </div> | |
| 1107 | - <!-- 表单分组组件 form-group END --> | |
| 1108 | - | |
| 1109 | - <!-- 表单分组组件 form-group START --> | |
| 1110 | - <div class="form-group"> | |
| 1111 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1112 | - <div class="col-md-6"> | |
| 1113 | - <label class="control-label col-md-5"> | |
| 1114 | - <span class="required"> * </span>线路等级 : | |
| 1115 | - </label> | |
| 1116 | - <div class="col-md-4"> | |
| 1117 | - <select name="level" class="form-control" id="levelSelect"> | |
| 1118 | - <option value="">-- 请选择线路等级 --</option> | |
| 1119 | - <option value="1">一级线路</option> | |
| 1120 | - <option value="2">二级线路</option> | |
| 1121 | - <option value="0">未知等级</option> | |
| 1122 | - </select> | |
| 1123 | - </div> | |
| 1124 | - </div> | |
| 1125 | - <!-- 线路等级 END --> | |
| 1126 | - | |
| 1127 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1128 | - <div class="col-md-6"> | |
| 1129 | - <label class="control-label col-md-5"> | |
| 1130 | - <span class="required"> * </span>线路性质 : | |
| 1131 | - </label> | |
| 1132 | - <div class="col-md-4"> | |
| 1133 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 1134 | - <option value="">-- 请选择线路性质 --</option> | |
| 1135 | - <option value="lj">路救</option> | |
| 1136 | - <option value="bc">备车</option> | |
| 1137 | - <option value="dbc">定班车</option> | |
| 1138 | - <option value="yxl">夜宵路</option> | |
| 1139 | - <option value="cgxl">常规线路</option> | |
| 1140 | - <option value="gjxl">过江线路</option> | |
| 1141 | - <option value="csbs">穿梭巴士</option> | |
| 1142 | - <option value="tyxl">特约线路</option> | |
| 1143 | - <option value="cctxl">村村通线路</option> | |
| 1144 | - <option value="qt">其他</option> | |
| 1145 | - </select> | |
| 1146 | - </div> | |
| 1147 | - </div> | |
| 1148 | - <!-- 线路性质 END --> | |
| 1149 | - </div> | |
| 1150 | - <!-- 表单分组组件 form-group END --> | |
| 1151 | - | |
| 1152 | - <!-- 表单分组组件 form-group START --> | |
| 1153 | - <div class="form-group"> | |
| 1154 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1155 | - <div class="col-md-6"> | |
| 1156 | - <label class="control-label col-md-5"> | |
| 1157 | - <span class="required"> * </span>是否宵夜 : | |
| 1158 | - </label> | |
| 1159 | - <div class="col-md-4"> | |
| 1160 | - <div class="md-radio-inline"> | |
| 1161 | - <div class="md-radio"> | |
| 1162 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 1163 | - <label for="radio16"> | |
| 1164 | - <span></span> | |
| 1165 | - <span class="check"></span> | |
| 1166 | - <span class="box"></span> 是 | |
| 1167 | - </label> | |
| 1168 | - </div> | |
| 1169 | - <div class="md-radio has-error"> | |
| 1170 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 1171 | - <label for="radio17" style="color:#FFC0CB"> | |
| 1172 | - <span></span> | |
| 1173 | - <span class="check"></span> | |
| 1174 | - <span class="box"></span> 否 | |
| 1175 | - </label> | |
| 1176 | - </div> | |
| 1177 | - </div> | |
| 1178 | - </div> | |
| 1179 | - </div> | |
| 1180 | - <!-- 是否宵夜 END --> | |
| 1181 | - | |
| 1182 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1183 | - <div class="col-md-6"> | |
| 1184 | - <label class="control-label col-md-5"> | |
| 1185 | - <span class="required"> * </span>是否撤销 : | |
| 1186 | - </label> | |
| 1187 | - <div class="col-md-4"> | |
| 1188 | - <div class="md-radio-inline"> | |
| 1189 | - <div class="md-radio"> | |
| 1190 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 1191 | - <label for="radio14"> | |
| 1192 | - <span></span> | |
| 1193 | - <span class="check"></span> | |
| 1194 | - <span class="box"></span> 是 | |
| 1195 | - </label> | |
| 1196 | - </div> | |
| 1197 | - <div class="md-radio has-error"> | |
| 1198 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 1199 | - <label for="radio15" style="color:#FFC0CB"> | |
| 1200 | - <span></span> | |
| 1201 | - <span class="check"></span> | |
| 1202 | - <span class="box"></span> 否 | |
| 1203 | - </label> | |
| 1204 | - </div> | |
| 1205 | - </div> | |
| 1206 | - </div> | |
| 1207 | - </div> | |
| 1208 | - <!-- 是否撤销 START --> | |
| 1209 | - </div> | |
| 1210 | - <!-- 表单分组组件 form-group END --> | |
| 1211 | - | |
| 1212 | - <!-- 表单分组组件 form-group START --> | |
| 1213 | - <div class="form-group"> | |
| 1214 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1215 | - <div class="col-md-6"> | |
| 1216 | - <label class="control-label col-md-5"> | |
| 1217 | - <span class="required"> * </span>是否营运线路 : | |
| 1218 | - </label> | |
| 1219 | - <div class="col-md-4"> | |
| 1220 | - <div class="md-radio-inline"> | |
| 1221 | - <div class="md-radio"> | |
| 1222 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 1223 | - <label for="radio18"> | |
| 1224 | - <span></span> | |
| 1225 | - <span class="check"></span> | |
| 1226 | - <span class="box"></span> 是 | |
| 1227 | - </label> | |
| 1228 | - </div> | |
| 1229 | - <div class="md-radio has-error"> | |
| 1230 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 1231 | - <label for="radio19" style="color:#FFC0CB"> | |
| 1232 | - <span></span> | |
| 1233 | - <span class="check"></span> | |
| 1234 | - <span class="box"></span> 否 | |
| 1235 | - </label> | |
| 1236 | - </div> | |
| 1237 | - </div> | |
| 1238 | - </div> | |
| 1239 | - </div> | |
| 1240 | - <!-- 是否营运 END --> | |
| 1241 | - <!-- 权证车辆数 START --> | |
| 1242 | - <div class="col-md-6"> | |
| 1243 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 1244 | - <div class="col-md-4"> | |
| 1245 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 1246 | - </div> | |
| 1247 | - </div> | |
| 1248 | - <!-- 权证车辆数 END --> | |
| 1249 | - | |
| 1250 | - </div> | |
| 1251 | - <!-- 表单分组组件 form-group END --> | |
| 1252 | - | |
| 1253 | - <!-- 表单分组组件 form-group START --> | |
| 1254 | - <div class="form-group"> | |
| 1255 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 1256 | - <div class="col-md-6"> | |
| 1257 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 1258 | - 起始站名称 : | |
| 1259 | - </label> | |
| 1260 | - <div class="col-md-4"> | |
| 1261 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 1262 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 1263 | - </div> | |
| 1264 | - </div> | |
| 1265 | - <!-- 起始站名称 END --> | |
| 1266 | - | |
| 1267 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 1268 | - <div class="col-md-6"> | |
| 1269 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 1270 | - <div class="col-md-4"> | |
| 1271 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 1272 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 1273 | - </div> | |
| 1274 | - </div> | |
| 1275 | - <!-- 终点站名称 END --> | |
| 1276 | - </div> | |
| 1277 | - <!-- 表单分组组件 form-group END --> | |
| 1278 | - | |
| 1279 | - <!-- 表单分组组件 form-group START --> | |
| 1280 | - <div class="form-group"> | |
| 1281 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 1282 | - <div class="col-md-6"> | |
| 1283 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 1284 | - <div class="col-md-4"> | |
| 1285 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 1286 | - <span class="help-block"> 例如 :06:00 </span> | |
| 1287 | - </div> | |
| 1288 | - </div> | |
| 1289 | - <!-- 起始站首班车时间 END --> | |
| 1290 | - | |
| 1291 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 1292 | - <div class="col-md-6"> | |
| 1293 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 1294 | - <div class="col-md-4"> | |
| 1295 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 1296 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 1297 | - <span class="help-block"> 例如 :17:00 </span> | |
| 1298 | - </div> | |
| 1299 | - </div> | |
| 1300 | - <!-- 起始站末班车时间 END --> | |
| 1301 | - </div> | |
| 1302 | - <!-- 表单分组组件 form-group END --> | |
| 1303 | - | |
| 1304 | - <!-- 表单分组组件 form-group START --> | |
| 1305 | - <div class="form-group"> | |
| 1306 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 1307 | - <div class="col-md-6"> | |
| 1308 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 1309 | - <div class="col-md-4"> | |
| 1310 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 1311 | - <span class="help-block"> 例如 :05:00 </span> | |
| 1312 | - </div> | |
| 1313 | - </div> | |
| 1314 | - <!-- 终点站首班车时间 END --> | |
| 1315 | - | |
| 1316 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 1317 | - <div class="col-md-6"> | |
| 1318 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 1319 | - <div class="col-md-4"> | |
| 1320 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 1321 | - <span class="help-block"> 例如 :18:00 </span> | |
| 1322 | - </div> | |
| 1323 | - </div> | |
| 1324 | - <!-- 终点站末班车时间 END --> | |
| 1325 | - </div> | |
| 1326 | - <!-- 表单分组组件 form-group END --> | |
| 1327 | - | |
| 1328 | - <!-- 表单分组组件 form-group START --> | |
| 1329 | - <div class="form-group"> | |
| 1330 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1331 | - <div class="col-md-6"> | |
| 1332 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 1333 | - <div class="col-md-4"> | |
| 1334 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 1335 | - <option value="">-- 请选择线路类型 --</option> | |
| 1336 | - <option value="0">双向</option> | |
| 1337 | - <option value="1">环线</option> | |
| 1338 | - </select> | |
| 1339 | - </div> | |
| 1340 | - </div> | |
| 1341 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 1342 | - | |
| 1343 | - <!--大间隔等级 START --> | |
| 1344 | - <div class="col-md-6"> | |
| 1345 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 1346 | - <div class="col-md-4"> | |
| 1347 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 1348 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 1349 | - <option value="1">一级</option> | |
| 1350 | - <option value="2">二级</option> | |
| 1351 | - <option value="3">三级</option> | |
| 1352 | - <option value="4">四级</option> | |
| 1353 | - </select> | |
| 1354 | - </div> | |
| 1355 | - </div> | |
| 1356 | - <!-- 大间隔等级END --> | |
| 1357 | - </div> | |
| 1358 | - <!-- 表单分组组件 form-group START --> | |
| 1359 | - | |
| 1360 | - <!-- 表单分组组件 form-group START --> | |
| 1361 | - <div class="form-group"> | |
| 1362 | - <!-- 线路简称 START --> | |
| 1363 | - <div class="col-md-6"> | |
| 1364 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 1365 | - <div class="col-md-4"> | |
| 1366 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 1367 | - </div> | |
| 1368 | - </div> | |
| 1369 | - <!-- 线路简称 END --> | |
| 1370 | - | |
| 1371 | - <!-- 英文名称 START --> | |
| 1372 | - <div class="col-md-6"> | |
| 1373 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 1374 | - <div class="col-md-4"> | |
| 1375 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 1376 | - </div> | |
| 1377 | - </div> | |
| 1378 | - <!-- 英文名称 END --> | |
| 1379 | - </div> | |
| 1380 | - <!-- 表单分组组件 form-group END --> | |
| 1381 | - | |
| 1382 | - <!-- 表单分组组件 form-group START --> | |
| 1383 | - <div class="form-group"> | |
| 1384 | - <!-- 上海市线路编码 START --> | |
| 1385 | - <div class="col-md-6"> | |
| 1386 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 1387 | - <div class="col-md-4"> | |
| 1388 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 1389 | - </div> | |
| 1390 | - </div> | |
| 1391 | - <!-- 上海市线路编码 END --> | |
| 1392 | - | |
| 1393 | - <!--设备线路编码 START --> | |
| 1394 | - <div class="col-md-6"> | |
| 1395 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 1396 | - <div class="col-md-4"> | |
| 1397 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 1398 | - </div> | |
| 1399 | - </div> | |
| 1400 | - <!--设备线路编码 END --> | |
| 1401 | - </div> | |
| 1402 | - <!-- 表单分组组件 form-group END --> | |
| 1403 | - | |
| 1404 | - <!-- 表单分组组件 form-group START --> | |
| 1405 | - <div class="form-group"> | |
| 1406 | - <!-- 起始站调度电话 START --> | |
| 1407 | - <div class="col-md-6"> | |
| 1408 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 1409 | - <div class="col-md-4"> | |
| 1410 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 1411 | - </div> | |
| 1412 | - </div> | |
| 1413 | - <!-- 起始站调度电话 END --> | |
| 1414 | - | |
| 1415 | - <!-- 终点站调度电话 START --> | |
| 1416 | - <div class="col-md-6"> | |
| 1417 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 1418 | - <div class="col-md-4"> | |
| 1419 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 1420 | - </div> | |
| 1421 | - </div> | |
| 1422 | - <!-- 终点站调度电话 START --> | |
| 1423 | - </div> | |
| 1424 | - <!-- 表单分组组件 form-group END --> | |
| 1425 | - | |
| 1426 | - <!-- 表单分组组件 form-group START --> | |
| 1427 | - <div class="form-group"> | |
| 1428 | - <!-- 车辆总数 START --> | |
| 1429 | - <div class="col-md-6"> | |
| 1430 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 1431 | - <div class="col-md-4"> | |
| 1432 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 1433 | - </div> | |
| 1434 | - </div> | |
| 1435 | - <!-- 车辆总数 END --> | |
| 1436 | - | |
| 1437 | - <!-- 普通车辆数 START --> | |
| 1438 | - <div class="col-md-6"> | |
| 1439 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 1440 | - <div class="col-md-4"> | |
| 1441 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 1442 | - </div> | |
| 1443 | - </div> | |
| 1444 | - <!-- 普通车辆数 END --> | |
| 1445 | - </div> | |
| 1446 | - <!-- 表单分组组件 form-group END --> | |
| 1447 | - | |
| 1448 | - <!-- 表单分组组件 form-group START --> | |
| 1449 | - <div class="form-group"> | |
| 1450 | - <!-- 空调车辆数 START --> | |
| 1451 | - <div class="col-md-6"> | |
| 1452 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 1453 | - <div class="col-md-4"> | |
| 1454 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 1455 | - </div> | |
| 1456 | - </div> | |
| 1457 | - <!-- 空调车辆数 END --> | |
| 1458 | - | |
| 1459 | - <!-- 开辟日期 START --> | |
| 1460 | - <div class="col-md-6"> | |
| 1461 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 1462 | - <div class="col-md-4"> | |
| 1463 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 1464 | - </div> | |
| 1465 | - </div> | |
| 1466 | - <!-- 开辟日期 END --> | |
| 1467 | - </div> | |
| 1468 | - <!-- 表单分组组件 form-group END --> | |
| 1469 | - | |
| 1470 | - <!-- 表单分组组件 form-group START --> | |
| 1471 | - <div class="form-group"> | |
| 1472 | - <!-- 线路沿革 START --> | |
| 1473 | - <div class="col-md-6"> | |
| 1474 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 1475 | - <div class="col-md-4"> | |
| 1476 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 1477 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 1478 | - </div> | |
| 1479 | - </div> | |
| 1480 | - <!-- 线路沿革 END --> | |
| 1481 | - | |
| 1482 | - <!-- 描述/说明 START --> | |
| 1483 | - <div class="col-md-6"> | |
| 1484 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 1485 | - <div class="col-md-4"> | |
| 1486 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 1487 | - </div> | |
| 1488 | - </div> | |
| 1489 | - <!-- 描述/说明 END --> | |
| 1490 | - </div> | |
| 1491 | - <!-- 表单分组组件 form-group END --> | |
| 1492 | - </div> | |
| 1493 | - <!-- 表单字段内容 END --> | |
| 1494 | - | |
| 1495 | - <!-- 表单按钮组件 START --> | |
| 1496 | - <div class="form-actions"> | |
| 1497 | - <div class="row"> | |
| 1498 | - <div class="col-md-offset-5 col-md-7"> | |
| 1499 | - <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | |
| 1500 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 1501 | - </div> | |
| 1502 | - </div> | |
| 1503 | - </div> | |
| 1504 | - <!-- 表单按钮组件 END --> | |
| 1505 | - | |
| 1506 | - </form> | |
| 1507 | - <!-- line_add_form FORM END --> | |
| 1508 | - | |
| 1509 | - </div> | |
| 1510 | - <!-- 表单组件 END --> | |
| 1511 | - | |
| 1512 | -</div> | |
| 1513 | -<!-- 信息容器组件 END --> | |
| 1514 | - | |
| 1515 | -<!-- 线路信息添加片段JS模块 --> | |
| 1516 | -<script src="/pages/base/line/js/line-add-form.js"></script><!-- 片段标题 START --> | |
| 1517 | -<div class="page-head"> | |
| 1518 | - <div class="page-title"> | |
| 1519 | - <h1>添加线路</h1> | |
| 1520 | - </div> | |
| 1521 | -</div> | |
| 1522 | -<!-- 片段标题 END --> | |
| 1523 | - | |
| 1524 | -<!-- 线路信息导航栏组件 START --> | |
| 1525 | -<ul class="page-breadcrumb breadcrumb"> | |
| 1526 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 1527 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 1528 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 1529 | - <li><span class="active">添加线路</span></li> | |
| 1530 | -</ul> | |
| 1531 | -<!-- 线路信息导航栏组件 END --> | |
| 1532 | - | |
| 1533 | -<!-- 信息容器组件 START --> | |
| 1534 | -<div class="portlet light bordered"> | |
| 1535 | - | |
| 1536 | - <!-- 信息容器组件标题 START --> | |
| 1537 | - <div class="portlet-title"> | |
| 1538 | - <div class="caption"> | |
| 1539 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 1540 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 1541 | - </div> | |
| 1542 | - </div> | |
| 1543 | - <!-- 信息容器组件标题 END --> | |
| 1544 | - | |
| 1545 | - <!-- 表单容器组件 START --> | |
| 1546 | - <div class="portlet-body form"> | |
| 1547 | - | |
| 1548 | - <!-- line_add_form FORM START --> | |
| 1549 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 1550 | - | |
| 1551 | - <!-- 表单验证错误提示组件 START --> | |
| 1552 | - <div class="alert alert-danger display-hide"> | |
| 1553 | - <button class="close" data-close="alert"></button> | |
| 1554 | - 您的输入有误,请检查下面的输入项 | |
| 1555 | - </div> | |
| 1556 | - <!-- 表单验证错误提示组件 END --> | |
| 1557 | - | |
| 1558 | - <!-- 表单字段内容 START --> | |
| 1559 | - <div class="form-body"> | |
| 1560 | - | |
| 1561 | - <!-- 表单分组组件 form-group START --> | |
| 1562 | - <div class="form-group"> | |
| 1563 | - <!-- 线路编码 (* 必填项) START --> | |
| 1564 | - <div class="col-md-6"> | |
| 1565 | - <label class="control-label col-md-5"> | |
| 1566 | - <span class="required"> * </span>线路编码 : | |
| 1567 | - </label> | |
| 1568 | - <div class="col-md-4"> | |
| 1569 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 1570 | - </div> | |
| 1571 | - </div> | |
| 1572 | - <!-- 线路编码 (* 必填项) END --> | |
| 1573 | - | |
| 1574 | - <!-- 线路名称 (* 必填项) START --> | |
| 1575 | - <div class="col-md-6"> | |
| 1576 | - <label class="control-label col-md-5"> | |
| 1577 | - <span class="required"> * </span>线路名称 : | |
| 1578 | - </label> | |
| 1579 | - <div class="col-md-4"> | |
| 1580 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 1581 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 1582 | - </div> | |
| 1583 | - </div> | |
| 1584 | - <!-- 线路名称 (* 必填项) END --> | |
| 1585 | - </div> | |
| 1586 | - <!-- 表单分组组件 form-group END --> | |
| 1587 | - | |
| 1588 | - <!-- 表单分组组件 form-group START --> | |
| 1589 | - <div class="form-group"> | |
| 1590 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 1591 | - <div class="col-md-6"> | |
| 1592 | - <label class="control-label col-md-5"> | |
| 1593 | - <span class="required"> * </span>所属公司 : | |
| 1594 | - </label> | |
| 1595 | - <div class="col-md-4"> | |
| 1596 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 1597 | - </div> | |
| 1598 | - </div> | |
| 1599 | - <!-- 所属公司 END --> | |
| 1600 | - | |
| 1601 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 1602 | - <div class="col-md-6"> | |
| 1603 | - <label class="control-label col-md-5"> | |
| 1604 | - <span class="required"> * </span>所属分公司 : | |
| 1605 | - </label> | |
| 1606 | - <div class="col-md-4"> | |
| 1607 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 1608 | - </div> | |
| 1609 | - </div> | |
| 1610 | - <!-- 所属分公司 END --> | |
| 1611 | - </div> | |
| 1612 | - <!-- 表单分组组件 form-group END --> | |
| 1613 | - | |
| 1614 | - <!-- 表单分组组件 form-group START --> | |
| 1615 | - <div class="form-group"> | |
| 1616 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1617 | - <div class="col-md-6"> | |
| 1618 | - <label class="control-label col-md-5"> | |
| 1619 | - <span class="required"> * </span>线路等级 : | |
| 1620 | - </label> | |
| 1621 | - <div class="col-md-4"> | |
| 1622 | - <select name="level" class="form-control" id="levelSelect"> | |
| 1623 | - <option value="">-- 请选择线路等级 --</option> | |
| 1624 | - <option value="1">一级线路</option> | |
| 1625 | - <option value="2">二级线路</option> | |
| 1626 | - <option value="0">未知等级</option> | |
| 1627 | - </select> | |
| 1628 | - </div> | |
| 1629 | - </div> | |
| 1630 | - <!-- 线路等级 END --> | |
| 1631 | - | |
| 1632 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1633 | - <div class="col-md-6"> | |
| 1634 | - <label class="control-label col-md-5"> | |
| 1635 | - <span class="required"> * </span>线路性质 : | |
| 1636 | - </label> | |
| 1637 | - <div class="col-md-4"> | |
| 1638 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 1639 | - <option value="">-- 请选择线路性质 --</option> | |
| 1640 | - <option value="lj">路救</option> | |
| 1641 | - <option value="bc">备车</option> | |
| 1642 | - <option value="dbc">定班车</option> | |
| 1643 | - <option value="yxl">夜宵路</option> | |
| 1644 | - <option value="cgxl">常规线路</option> | |
| 1645 | - <option value="gjxl">过江线路</option> | |
| 1646 | - <option value="csbs">穿梭巴士</option> | |
| 1647 | - <option value="tyxl">特约线路</option> | |
| 1648 | - <option value="cctxl">村村通线路</option> | |
| 1649 | - <option value="qt">其他</option> | |
| 1650 | - </select> | |
| 1651 | - </div> | |
| 1652 | - </div> | |
| 1653 | - <!-- 线路性质 END --> | |
| 1654 | - </div> | |
| 1655 | - <!-- 表单分组组件 form-group END --> | |
| 1656 | - | |
| 1657 | - <!-- 表单分组组件 form-group START --> | |
| 1658 | - <div class="form-group"> | |
| 1659 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1660 | - <div class="col-md-6"> | |
| 1661 | - <label class="control-label col-md-5"> | |
| 1662 | - <span class="required"> * </span>是否宵夜 : | |
| 1663 | - </label> | |
| 1664 | - <div class="col-md-4"> | |
| 1665 | - <div class="md-radio-inline"> | |
| 1666 | - <div class="md-radio"> | |
| 1667 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 1668 | - <label for="radio16"> | |
| 1669 | - <span></span> | |
| 1670 | - <span class="check"></span> | |
| 1671 | - <span class="box"></span> 是 | |
| 1672 | - </label> | |
| 1673 | - </div> | |
| 1674 | - <div class="md-radio has-error"> | |
| 1675 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 1676 | - <label for="radio17" style="color:#FFC0CB"> | |
| 1677 | - <span></span> | |
| 1678 | - <span class="check"></span> | |
| 1679 | - <span class="box"></span> 否 | |
| 1680 | - </label> | |
| 1681 | - </div> | |
| 1682 | - </div> | |
| 1683 | - </div> | |
| 1684 | - </div> | |
| 1685 | - <!-- 是否宵夜 END --> | |
| 1686 | - | |
| 1687 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1688 | - <div class="col-md-6"> | |
| 1689 | - <label class="control-label col-md-5"> | |
| 1690 | - <span class="required"> * </span>是否撤销 : | |
| 1691 | - </label> | |
| 1692 | - <div class="col-md-4"> | |
| 1693 | - <div class="md-radio-inline"> | |
| 1694 | - <div class="md-radio"> | |
| 1695 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 1696 | - <label for="radio14"> | |
| 1697 | - <span></span> | |
| 1698 | - <span class="check"></span> | |
| 1699 | - <span class="box"></span> 是 | |
| 1700 | - </label> | |
| 1701 | - </div> | |
| 1702 | - <div class="md-radio has-error"> | |
| 1703 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 1704 | - <label for="radio15" style="color:#FFC0CB"> | |
| 1705 | - <span></span> | |
| 1706 | - <span class="check"></span> | |
| 1707 | - <span class="box"></span> 否 | |
| 1708 | - </label> | |
| 1709 | - </div> | |
| 1710 | - </div> | |
| 1711 | - </div> | |
| 1712 | - </div> | |
| 1713 | - <!-- 是否撤销 START --> | |
| 1714 | - </div> | |
| 1715 | - <!-- 表单分组组件 form-group END --> | |
| 1716 | - | |
| 1717 | - <!-- 表单分组组件 form-group START --> | |
| 1718 | - <div class="form-group"> | |
| 1719 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1720 | - <div class="col-md-6"> | |
| 1721 | - <label class="control-label col-md-5"> | |
| 1722 | - <span class="required"> * </span>是否营运线路 : | |
| 1723 | - </label> | |
| 1724 | - <div class="col-md-4"> | |
| 1725 | - <div class="md-radio-inline"> | |
| 1726 | - <div class="md-radio"> | |
| 1727 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 1728 | - <label for="radio18"> | |
| 1729 | - <span></span> | |
| 1730 | - <span class="check"></span> | |
| 1731 | - <span class="box"></span> 是 | |
| 1732 | - </label> | |
| 1733 | - </div> | |
| 1734 | - <div class="md-radio has-error"> | |
| 1735 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 1736 | - <label for="radio19" style="color:#FFC0CB"> | |
| 1737 | - <span></span> | |
| 1738 | - <span class="check"></span> | |
| 1739 | - <span class="box"></span> 否 | |
| 1740 | - </label> | |
| 1741 | - </div> | |
| 1742 | - </div> | |
| 1743 | - </div> | |
| 1744 | - </div> | |
| 1745 | - <!-- 是否营运 END --> | |
| 1746 | - <!-- 权证车辆数 START --> | |
| 1747 | - <div class="col-md-6"> | |
| 1748 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 1749 | - <div class="col-md-4"> | |
| 1750 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 1751 | - </div> | |
| 1752 | - </div> | |
| 1753 | - <!-- 权证车辆数 END --> | |
| 1754 | - | |
| 1755 | - </div> | |
| 1756 | - <!-- 表单分组组件 form-group END --> | |
| 1757 | - | |
| 1758 | - <!-- 表单分组组件 form-group START --> | |
| 1759 | - <div class="form-group"> | |
| 1760 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 1761 | - <div class="col-md-6"> | |
| 1762 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 1763 | - 起始站名称 : | |
| 1764 | - </label> | |
| 1765 | - <div class="col-md-4"> | |
| 1766 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 1767 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 1768 | - </div> | |
| 1769 | - </div> | |
| 1770 | - <!-- 起始站名称 END --> | |
| 1771 | - | |
| 1772 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 1773 | - <div class="col-md-6"> | |
| 1774 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 1775 | - <div class="col-md-4"> | |
| 1776 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 1777 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 1778 | - </div> | |
| 1779 | - </div> | |
| 1780 | - <!-- 终点站名称 END --> | |
| 1781 | - </div> | |
| 1782 | - <!-- 表单分组组件 form-group END --> | |
| 1783 | - | |
| 1784 | - <!-- 表单分组组件 form-group START --> | |
| 1785 | - <div class="form-group"> | |
| 1786 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 1787 | - <div class="col-md-6"> | |
| 1788 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 1789 | - <div class="col-md-4"> | |
| 1790 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 1791 | - <span class="help-block"> 例如 :06:00 </span> | |
| 1792 | - </div> | |
| 1793 | - </div> | |
| 1794 | - <!-- 起始站首班车时间 END --> | |
| 1795 | - | |
| 1796 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 1797 | - <div class="col-md-6"> | |
| 1798 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 1799 | - <div class="col-md-4"> | |
| 1800 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 1801 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 1802 | - <span class="help-block"> 例如 :17:00 </span> | |
| 1803 | - </div> | |
| 1804 | - </div> | |
| 1805 | - <!-- 起始站末班车时间 END --> | |
| 1806 | - </div> | |
| 1807 | - <!-- 表单分组组件 form-group END --> | |
| 1808 | - | |
| 1809 | - <!-- 表单分组组件 form-group START --> | |
| 1810 | - <div class="form-group"> | |
| 1811 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 1812 | - <div class="col-md-6"> | |
| 1813 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 1814 | - <div class="col-md-4"> | |
| 1815 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 1816 | - <span class="help-block"> 例如 :05:00 </span> | |
| 1817 | - </div> | |
| 1818 | - </div> | |
| 1819 | - <!-- 终点站首班车时间 END --> | |
| 1820 | - | |
| 1821 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 1822 | - <div class="col-md-6"> | |
| 1823 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 1824 | - <div class="col-md-4"> | |
| 1825 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 1826 | - <span class="help-block"> 例如 :18:00 </span> | |
| 1827 | - </div> | |
| 1828 | - </div> | |
| 1829 | - <!-- 终点站末班车时间 END --> | |
| 1830 | - </div> | |
| 1831 | - <!-- 表单分组组件 form-group END --> | |
| 1832 | - | |
| 1833 | - <!-- 表单分组组件 form-group START --> | |
| 1834 | - <div class="form-group"> | |
| 1835 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 1836 | - <div class="col-md-6"> | |
| 1837 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 1838 | - <div class="col-md-4"> | |
| 1839 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 1840 | - <option value="">-- 请选择线路类型 --</option> | |
| 1841 | - <option value="0">双向</option> | |
| 1842 | - <option value="1">环线</option> | |
| 1843 | - </select> | |
| 1844 | - </div> | |
| 1845 | - </div> | |
| 1846 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 1847 | - | |
| 1848 | - <!--大间隔等级 START --> | |
| 1849 | - <div class="col-md-6"> | |
| 1850 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 1851 | - <div class="col-md-4"> | |
| 1852 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 1853 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 1854 | - <option value="1">一级</option> | |
| 1855 | - <option value="2">二级</option> | |
| 1856 | - <option value="3">三级</option> | |
| 1857 | - <option value="4">四级</option> | |
| 1858 | - </select> | |
| 1859 | - </div> | |
| 1860 | - </div> | |
| 1861 | - <!-- 大间隔等级END --> | |
| 1862 | - </div> | |
| 1863 | - <!-- 表单分组组件 form-group START --> | |
| 1864 | - | |
| 1865 | - <!-- 表单分组组件 form-group START --> | |
| 1866 | - <div class="form-group"> | |
| 1867 | - <!-- 线路简称 START --> | |
| 1868 | - <div class="col-md-6"> | |
| 1869 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 1870 | - <div class="col-md-4"> | |
| 1871 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 1872 | - </div> | |
| 1873 | - </div> | |
| 1874 | - <!-- 线路简称 END --> | |
| 1875 | - | |
| 1876 | - <!-- 英文名称 START --> | |
| 1877 | - <div class="col-md-6"> | |
| 1878 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 1879 | - <div class="col-md-4"> | |
| 1880 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 1881 | - </div> | |
| 1882 | - </div> | |
| 1883 | - <!-- 英文名称 END --> | |
| 1884 | - </div> | |
| 1885 | - <!-- 表单分组组件 form-group END --> | |
| 1886 | - | |
| 1887 | - <!-- 表单分组组件 form-group START --> | |
| 1888 | - <div class="form-group"> | |
| 1889 | - <!-- 上海市线路编码 START --> | |
| 1890 | - <div class="col-md-6"> | |
| 1891 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 1892 | - <div class="col-md-4"> | |
| 1893 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 1894 | - </div> | |
| 1895 | - </div> | |
| 1896 | - <!-- 上海市线路编码 END --> | |
| 1897 | - | |
| 1898 | - <!--设备线路编码 START --> | |
| 1899 | - <div class="col-md-6"> | |
| 1900 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 1901 | - <div class="col-md-4"> | |
| 1902 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 1903 | - </div> | |
| 1904 | - </div> | |
| 1905 | - <!--设备线路编码 END --> | |
| 1906 | - </div> | |
| 1907 | - <!-- 表单分组组件 form-group END --> | |
| 1908 | - | |
| 1909 | - <!-- 表单分组组件 form-group START --> | |
| 1910 | - <div class="form-group"> | |
| 1911 | - <!-- 起始站调度电话 START --> | |
| 1912 | - <div class="col-md-6"> | |
| 1913 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 1914 | - <div class="col-md-4"> | |
| 1915 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 1916 | - </div> | |
| 1917 | - </div> | |
| 1918 | - <!-- 起始站调度电话 END --> | |
| 1919 | - | |
| 1920 | - <!-- 终点站调度电话 START --> | |
| 1921 | - <div class="col-md-6"> | |
| 1922 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 1923 | - <div class="col-md-4"> | |
| 1924 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 1925 | - </div> | |
| 1926 | - </div> | |
| 1927 | - <!-- 终点站调度电话 START --> | |
| 1928 | - </div> | |
| 1929 | - <!-- 表单分组组件 form-group END --> | |
| 1930 | - | |
| 1931 | - <!-- 表单分组组件 form-group START --> | |
| 1932 | - <div class="form-group"> | |
| 1933 | - <!-- 车辆总数 START --> | |
| 1934 | - <div class="col-md-6"> | |
| 1935 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 1936 | - <div class="col-md-4"> | |
| 1937 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 1938 | - </div> | |
| 1939 | - </div> | |
| 1940 | - <!-- 车辆总数 END --> | |
| 1941 | - | |
| 1942 | - <!-- 普通车辆数 START --> | |
| 1943 | - <div class="col-md-6"> | |
| 1944 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 1945 | - <div class="col-md-4"> | |
| 1946 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 1947 | - </div> | |
| 1948 | - </div> | |
| 1949 | - <!-- 普通车辆数 END --> | |
| 1950 | - </div> | |
| 1951 | - <!-- 表单分组组件 form-group END --> | |
| 1952 | - | |
| 1953 | - <!-- 表单分组组件 form-group START --> | |
| 1954 | - <div class="form-group"> | |
| 1955 | - <!-- 空调车辆数 START --> | |
| 1956 | - <div class="col-md-6"> | |
| 1957 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 1958 | - <div class="col-md-4"> | |
| 1959 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 1960 | - </div> | |
| 1961 | - </div> | |
| 1962 | - <!-- 空调车辆数 END --> | |
| 1963 | - | |
| 1964 | - <!-- 开辟日期 START --> | |
| 1965 | - <div class="col-md-6"> | |
| 1966 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 1967 | - <div class="col-md-4"> | |
| 1968 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 1969 | - </div> | |
| 1970 | - </div> | |
| 1971 | - <!-- 开辟日期 END --> | |
| 1972 | - </div> | |
| 1973 | - <!-- 表单分组组件 form-group END --> | |
| 1974 | - | |
| 1975 | - <!-- 表单分组组件 form-group START --> | |
| 1976 | - <div class="form-group"> | |
| 1977 | - <!-- 线路沿革 START --> | |
| 1978 | - <div class="col-md-6"> | |
| 1979 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 1980 | - <div class="col-md-4"> | |
| 1981 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 1982 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 1983 | - </div> | |
| 1984 | - </div> | |
| 1985 | - <!-- 线路沿革 END --> | |
| 1986 | - | |
| 1987 | - <!-- 描述/说明 START --> | |
| 1988 | - <div class="col-md-6"> | |
| 1989 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 1990 | - <div class="col-md-4"> | |
| 1991 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 1992 | - </div> | |
| 1993 | - </div> | |
| 1994 | - <!-- 描述/说明 END --> | |
| 1995 | - </div> | |
| 1996 | - <!-- 表单分组组件 form-group END --> | |
| 1997 | - </div> | |
| 1998 | - <!-- 表单字段内容 END --> | |
| 1999 | - | |
| 2000 | - <!-- 表单按钮组件 START --> | |
| 2001 | - <div class="form-actions"> | |
| 2002 | - <div class="row"> | |
| 2003 | - <div class="col-md-offset-5 col-md-7"> | |
| 2004 | - <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | |
| 2005 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 2006 | - </div> | |
| 2007 | - </div> | |
| 2008 | - </div> | |
| 2009 | - <!-- 表单按钮组件 END --> | |
| 2010 | - | |
| 2011 | - </form> | |
| 2012 | - <!-- line_add_form FORM END --> | |
| 2013 | - | |
| 2014 | - </div> | |
| 2015 | - <!-- 表单组件 END --> | |
| 2016 | - | |
| 2017 | -</div> | |
| 2018 | -<!-- 信息容器组件 END --> | |
| 2019 | - | |
| 2020 | -<!-- 线路信息添加片段JS模块 --> | |
| 2021 | -<script src="/pages/base/line/js/line-add-form.js"></script><!-- 片段标题 START --> | |
| 2022 | -<div class="page-head"> | |
| 2023 | - <div class="page-title"> | |
| 2024 | - <h1>添加线路</h1> | |
| 2025 | - </div> | |
| 2026 | -</div> | |
| 2027 | -<!-- 片段标题 END --> | |
| 2028 | - | |
| 2029 | -<!-- 线路信息导航栏组件 START --> | |
| 2030 | -<ul class="page-breadcrumb breadcrumb"> | |
| 2031 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 2032 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 2033 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 2034 | - <li><span class="active">添加线路</span></li> | |
| 2035 | -</ul> | |
| 2036 | -<!-- 线路信息导航栏组件 END --> | |
| 2037 | - | |
| 2038 | -<!-- 信息容器组件 START --> | |
| 2039 | -<div class="portlet light bordered"> | |
| 2040 | - | |
| 2041 | - <!-- 信息容器组件标题 START --> | |
| 2042 | - <div class="portlet-title"> | |
| 2043 | - <div class="caption"> | |
| 2044 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 2045 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 2046 | - </div> | |
| 2047 | - </div> | |
| 2048 | - <!-- 信息容器组件标题 END --> | |
| 2049 | - | |
| 2050 | - <!-- 表单容器组件 START --> | |
| 2051 | - <div class="portlet-body form"> | |
| 2052 | - | |
| 2053 | - <!-- line_add_form FORM START --> | |
| 2054 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 2055 | - | |
| 2056 | - <!-- 表单验证错误提示组件 START --> | |
| 2057 | - <div class="alert alert-danger display-hide"> | |
| 2058 | - <button class="close" data-close="alert"></button> | |
| 2059 | - 您的输入有误,请检查下面的输入项 | |
| 2060 | - </div> | |
| 2061 | - <!-- 表单验证错误提示组件 END --> | |
| 2062 | - | |
| 2063 | - <!-- 表单字段内容 START --> | |
| 2064 | - <div class="form-body"> | |
| 2065 | - | |
| 2066 | - <!-- 表单分组组件 form-group START --> | |
| 2067 | - <div class="form-group"> | |
| 2068 | - <!-- 线路编码 (* 必填项) START --> | |
| 2069 | - <div class="col-md-6"> | |
| 2070 | - <label class="control-label col-md-5"> | |
| 2071 | - <span class="required"> * </span>线路编码 : | |
| 2072 | - </label> | |
| 2073 | - <div class="col-md-4"> | |
| 2074 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 2075 | - </div> | |
| 2076 | - </div> | |
| 2077 | - <!-- 线路编码 (* 必填项) END --> | |
| 2078 | - | |
| 2079 | - <!-- 线路名称 (* 必填项) START --> | |
| 2080 | - <div class="col-md-6"> | |
| 2081 | - <label class="control-label col-md-5"> | |
| 2082 | - <span class="required"> * </span>线路名称 : | |
| 2083 | - </label> | |
| 2084 | - <div class="col-md-4"> | |
| 2085 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 2086 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 2087 | - </div> | |
| 2088 | - </div> | |
| 2089 | - <!-- 线路名称 (* 必填项) END --> | |
| 2090 | - </div> | |
| 2091 | - <!-- 表单分组组件 form-group END --> | |
| 2092 | - | |
| 2093 | - <!-- 表单分组组件 form-group START --> | |
| 2094 | - <div class="form-group"> | |
| 2095 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 2096 | - <div class="col-md-6"> | |
| 2097 | - <label class="control-label col-md-5"> | |
| 2098 | - <span class="required"> * </span>所属公司 : | |
| 2099 | - </label> | |
| 2100 | - <div class="col-md-4"> | |
| 2101 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 2102 | - </div> | |
| 2103 | - </div> | |
| 2104 | - <!-- 所属公司 END --> | |
| 2105 | - | |
| 2106 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 2107 | - <div class="col-md-6"> | |
| 2108 | - <label class="control-label col-md-5"> | |
| 2109 | - <span class="required"> * </span>所属分公司 : | |
| 2110 | - </label> | |
| 2111 | - <div class="col-md-4"> | |
| 2112 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 2113 | - </div> | |
| 2114 | - </div> | |
| 2115 | - <!-- 所属分公司 END --> | |
| 2116 | - </div> | |
| 2117 | - <!-- 表单分组组件 form-group END --> | |
| 2118 | - | |
| 2119 | - <!-- 表单分组组件 form-group START --> | |
| 2120 | - <div class="form-group"> | |
| 2121 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2122 | - <div class="col-md-6"> | |
| 2123 | - <label class="control-label col-md-5"> | |
| 2124 | - <span class="required"> * </span>线路等级 : | |
| 2125 | - </label> | |
| 2126 | - <div class="col-md-4"> | |
| 2127 | - <select name="level" class="form-control" id="levelSelect"> | |
| 2128 | - <option value="">-- 请选择线路等级 --</option> | |
| 2129 | - <option value="1">一级线路</option> | |
| 2130 | - <option value="2">二级线路</option> | |
| 2131 | - <option value="0">未知等级</option> | |
| 2132 | - </select> | |
| 2133 | - </div> | |
| 2134 | - </div> | |
| 2135 | - <!-- 线路等级 END --> | |
| 2136 | - | |
| 2137 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2138 | - <div class="col-md-6"> | |
| 2139 | - <label class="control-label col-md-5"> | |
| 2140 | - <span class="required"> * </span>线路性质 : | |
| 2141 | - </label> | |
| 2142 | - <div class="col-md-4"> | |
| 2143 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 2144 | - <option value="">-- 请选择线路性质 --</option> | |
| 2145 | - <option value="lj">路救</option> | |
| 2146 | - <option value="bc">备车</option> | |
| 2147 | - <option value="dbc">定班车</option> | |
| 2148 | - <option value="yxl">夜宵路</option> | |
| 2149 | - <option value="cgxl">常规线路</option> | |
| 2150 | - <option value="gjxl">过江线路</option> | |
| 2151 | - <option value="csbs">穿梭巴士</option> | |
| 2152 | - <option value="tyxl">特约线路</option> | |
| 2153 | - <option value="cctxl">村村通线路</option> | |
| 2154 | - <option value="qt">其他</option> | |
| 2155 | - </select> | |
| 2156 | - </div> | |
| 2157 | - </div> | |
| 2158 | - <!-- 线路性质 END --> | |
| 2159 | - </div> | |
| 2160 | - <!-- 表单分组组件 form-group END --> | |
| 2161 | - | |
| 2162 | - <!-- 表单分组组件 form-group START --> | |
| 2163 | - <div class="form-group"> | |
| 2164 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2165 | - <div class="col-md-6"> | |
| 2166 | - <label class="control-label col-md-5"> | |
| 2167 | - <span class="required"> * </span>是否宵夜 : | |
| 2168 | - </label> | |
| 2169 | - <div class="col-md-4"> | |
| 2170 | - <div class="md-radio-inline"> | |
| 2171 | - <div class="md-radio"> | |
| 2172 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 2173 | - <label for="radio16"> | |
| 2174 | - <span></span> | |
| 2175 | - <span class="check"></span> | |
| 2176 | - <span class="box"></span> 是 | |
| 2177 | - </label> | |
| 2178 | - </div> | |
| 2179 | - <div class="md-radio has-error"> | |
| 2180 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 2181 | - <label for="radio17" style="color:#FFC0CB"> | |
| 2182 | - <span></span> | |
| 2183 | - <span class="check"></span> | |
| 2184 | - <span class="box"></span> 否 | |
| 2185 | - </label> | |
| 2186 | - </div> | |
| 2187 | - </div> | |
| 2188 | - </div> | |
| 2189 | - </div> | |
| 2190 | - <!-- 是否宵夜 END --> | |
| 2191 | - | |
| 2192 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2193 | - <div class="col-md-6"> | |
| 2194 | - <label class="control-label col-md-5"> | |
| 2195 | - <span class="required"> * </span>是否撤销 : | |
| 2196 | - </label> | |
| 2197 | - <div class="col-md-4"> | |
| 2198 | - <div class="md-radio-inline"> | |
| 2199 | - <div class="md-radio"> | |
| 2200 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 2201 | - <label for="radio14"> | |
| 2202 | - <span></span> | |
| 2203 | - <span class="check"></span> | |
| 2204 | - <span class="box"></span> 是 | |
| 2205 | - </label> | |
| 2206 | - </div> | |
| 2207 | - <div class="md-radio has-error"> | |
| 2208 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 2209 | - <label for="radio15" style="color:#FFC0CB"> | |
| 2210 | - <span></span> | |
| 2211 | - <span class="check"></span> | |
| 2212 | - <span class="box"></span> 否 | |
| 2213 | - </label> | |
| 2214 | - </div> | |
| 2215 | - </div> | |
| 2216 | - </div> | |
| 2217 | - </div> | |
| 2218 | - <!-- 是否撤销 START --> | |
| 2219 | - </div> | |
| 2220 | - <!-- 表单分组组件 form-group END --> | |
| 2221 | - | |
| 2222 | - <!-- 表单分组组件 form-group START --> | |
| 2223 | - <div class="form-group"> | |
| 2224 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2225 | - <div class="col-md-6"> | |
| 2226 | - <label class="control-label col-md-5"> | |
| 2227 | - <span class="required"> * </span>是否营运线路 : | |
| 2228 | - </label> | |
| 2229 | - <div class="col-md-4"> | |
| 2230 | - <div class="md-radio-inline"> | |
| 2231 | - <div class="md-radio"> | |
| 2232 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 2233 | - <label for="radio18"> | |
| 2234 | - <span></span> | |
| 2235 | - <span class="check"></span> | |
| 2236 | - <span class="box"></span> 是 | |
| 2237 | - </label> | |
| 2238 | - </div> | |
| 2239 | - <div class="md-radio has-error"> | |
| 2240 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 2241 | - <label for="radio19" style="color:#FFC0CB"> | |
| 2242 | - <span></span> | |
| 2243 | - <span class="check"></span> | |
| 2244 | - <span class="box"></span> 否 | |
| 2245 | - </label> | |
| 2246 | - </div> | |
| 2247 | - </div> | |
| 2248 | - </div> | |
| 2249 | - </div> | |
| 2250 | - <!-- 是否营运 END --> | |
| 2251 | - <!-- 权证车辆数 START --> | |
| 2252 | - <div class="col-md-6"> | |
| 2253 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 2254 | - <div class="col-md-4"> | |
| 2255 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 2256 | - </div> | |
| 2257 | - </div> | |
| 2258 | - <!-- 权证车辆数 END --> | |
| 2259 | - | |
| 2260 | - </div> | |
| 2261 | - <!-- 表单分组组件 form-group END --> | |
| 2262 | - | |
| 2263 | - <!-- 表单分组组件 form-group START --> | |
| 2264 | - <div class="form-group"> | |
| 2265 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 2266 | - <div class="col-md-6"> | |
| 2267 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 2268 | - 起始站名称 : | |
| 2269 | - </label> | |
| 2270 | - <div class="col-md-4"> | |
| 2271 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 2272 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 2273 | - </div> | |
| 2274 | - </div> | |
| 2275 | - <!-- 起始站名称 END --> | |
| 2276 | - | |
| 2277 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 2278 | - <div class="col-md-6"> | |
| 2279 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 2280 | - <div class="col-md-4"> | |
| 2281 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 2282 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 2283 | - </div> | |
| 2284 | - </div> | |
| 2285 | - <!-- 终点站名称 END --> | |
| 2286 | - </div> | |
| 2287 | - <!-- 表单分组组件 form-group END --> | |
| 2288 | - | |
| 2289 | - <!-- 表单分组组件 form-group START --> | |
| 2290 | - <div class="form-group"> | |
| 2291 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 2292 | - <div class="col-md-6"> | |
| 2293 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 2294 | - <div class="col-md-4"> | |
| 2295 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 2296 | - <span class="help-block"> 例如 :06:00 </span> | |
| 2297 | - </div> | |
| 2298 | - </div> | |
| 2299 | - <!-- 起始站首班车时间 END --> | |
| 2300 | - | |
| 2301 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 2302 | - <div class="col-md-6"> | |
| 2303 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 2304 | - <div class="col-md-4"> | |
| 2305 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 2306 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 2307 | - <span class="help-block"> 例如 :17:00 </span> | |
| 2308 | - </div> | |
| 2309 | - </div> | |
| 2310 | - <!-- 起始站末班车时间 END --> | |
| 2311 | - </div> | |
| 2312 | - <!-- 表单分组组件 form-group END --> | |
| 2313 | - | |
| 2314 | - <!-- 表单分组组件 form-group START --> | |
| 2315 | - <div class="form-group"> | |
| 2316 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 2317 | - <div class="col-md-6"> | |
| 2318 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 2319 | - <div class="col-md-4"> | |
| 2320 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 2321 | - <span class="help-block"> 例如 :05:00 </span> | |
| 2322 | - </div> | |
| 2323 | - </div> | |
| 2324 | - <!-- 终点站首班车时间 END --> | |
| 2325 | - | |
| 2326 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 2327 | - <div class="col-md-6"> | |
| 2328 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 2329 | - <div class="col-md-4"> | |
| 2330 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 2331 | - <span class="help-block"> 例如 :18:00 </span> | |
| 2332 | - </div> | |
| 2333 | - </div> | |
| 2334 | - <!-- 终点站末班车时间 END --> | |
| 2335 | - </div> | |
| 2336 | - <!-- 表单分组组件 form-group END --> | |
| 2337 | - | |
| 2338 | - <!-- 表单分组组件 form-group START --> | |
| 2339 | - <div class="form-group"> | |
| 2340 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2341 | - <div class="col-md-6"> | |
| 2342 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 2343 | - <div class="col-md-4"> | |
| 2344 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 2345 | - <option value="">-- 请选择线路类型 --</option> | |
| 2346 | - <option value="0">双向</option> | |
| 2347 | - <option value="1">环线</option> | |
| 2348 | - </select> | |
| 2349 | - </div> | |
| 2350 | - </div> | |
| 2351 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 2352 | - | |
| 2353 | - <!--大间隔等级 START --> | |
| 2354 | - <div class="col-md-6"> | |
| 2355 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 2356 | - <div class="col-md-4"> | |
| 2357 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 2358 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 2359 | - <option value="1">一级</option> | |
| 2360 | - <option value="2">二级</option> | |
| 2361 | - <option value="3">三级</option> | |
| 2362 | - <option value="4">四级</option> | |
| 2363 | - </select> | |
| 2364 | - </div> | |
| 2365 | - </div> | |
| 2366 | - <!-- 大间隔等级END --> | |
| 2367 | - </div> | |
| 2368 | - <!-- 表单分组组件 form-group START --> | |
| 2369 | - | |
| 2370 | - <!-- 表单分组组件 form-group START --> | |
| 2371 | - <div class="form-group"> | |
| 2372 | - <!-- 线路简称 START --> | |
| 2373 | - <div class="col-md-6"> | |
| 2374 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 2375 | - <div class="col-md-4"> | |
| 2376 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 2377 | - </div> | |
| 2378 | - </div> | |
| 2379 | - <!-- 线路简称 END --> | |
| 2380 | - | |
| 2381 | - <!-- 英文名称 START --> | |
| 2382 | - <div class="col-md-6"> | |
| 2383 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 2384 | - <div class="col-md-4"> | |
| 2385 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 2386 | - </div> | |
| 2387 | - </div> | |
| 2388 | - <!-- 英文名称 END --> | |
| 2389 | - </div> | |
| 2390 | - <!-- 表单分组组件 form-group END --> | |
| 2391 | - | |
| 2392 | - <!-- 表单分组组件 form-group START --> | |
| 2393 | - <div class="form-group"> | |
| 2394 | - <!-- 上海市线路编码 START --> | |
| 2395 | - <div class="col-md-6"> | |
| 2396 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 2397 | - <div class="col-md-4"> | |
| 2398 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 2399 | - </div> | |
| 2400 | - </div> | |
| 2401 | - <!-- 上海市线路编码 END --> | |
| 2402 | - | |
| 2403 | - <!--设备线路编码 START --> | |
| 2404 | - <div class="col-md-6"> | |
| 2405 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 2406 | - <div class="col-md-4"> | |
| 2407 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 2408 | - </div> | |
| 2409 | - </div> | |
| 2410 | - <!--设备线路编码 END --> | |
| 2411 | - </div> | |
| 2412 | - <!-- 表单分组组件 form-group END --> | |
| 2413 | - | |
| 2414 | - <!-- 表单分组组件 form-group START --> | |
| 2415 | - <div class="form-group"> | |
| 2416 | - <!-- 起始站调度电话 START --> | |
| 2417 | - <div class="col-md-6"> | |
| 2418 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 2419 | - <div class="col-md-4"> | |
| 2420 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 2421 | - </div> | |
| 2422 | - </div> | |
| 2423 | - <!-- 起始站调度电话 END --> | |
| 2424 | - | |
| 2425 | - <!-- 终点站调度电话 START --> | |
| 2426 | - <div class="col-md-6"> | |
| 2427 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 2428 | - <div class="col-md-4"> | |
| 2429 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 2430 | - </div> | |
| 2431 | - </div> | |
| 2432 | - <!-- 终点站调度电话 START --> | |
| 2433 | - </div> | |
| 2434 | - <!-- 表单分组组件 form-group END --> | |
| 2435 | - | |
| 2436 | - <!-- 表单分组组件 form-group START --> | |
| 2437 | - <div class="form-group"> | |
| 2438 | - <!-- 车辆总数 START --> | |
| 2439 | - <div class="col-md-6"> | |
| 2440 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 2441 | - <div class="col-md-4"> | |
| 2442 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 2443 | - </div> | |
| 2444 | - </div> | |
| 2445 | - <!-- 车辆总数 END --> | |
| 2446 | - | |
| 2447 | - <!-- 普通车辆数 START --> | |
| 2448 | - <div class="col-md-6"> | |
| 2449 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 2450 | - <div class="col-md-4"> | |
| 2451 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 2452 | - </div> | |
| 2453 | - </div> | |
| 2454 | - <!-- 普通车辆数 END --> | |
| 2455 | - </div> | |
| 2456 | - <!-- 表单分组组件 form-group END --> | |
| 2457 | - | |
| 2458 | - <!-- 表单分组组件 form-group START --> | |
| 2459 | - <div class="form-group"> | |
| 2460 | - <!-- 空调车辆数 START --> | |
| 2461 | - <div class="col-md-6"> | |
| 2462 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 2463 | - <div class="col-md-4"> | |
| 2464 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 2465 | - </div> | |
| 2466 | - </div> | |
| 2467 | - <!-- 空调车辆数 END --> | |
| 2468 | - | |
| 2469 | - <!-- 开辟日期 START --> | |
| 2470 | - <div class="col-md-6"> | |
| 2471 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 2472 | - <div class="col-md-4"> | |
| 2473 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 2474 | - </div> | |
| 2475 | - </div> | |
| 2476 | - <!-- 开辟日期 END --> | |
| 2477 | - </div> | |
| 2478 | - <!-- 表单分组组件 form-group END --> | |
| 2479 | - | |
| 2480 | - <!-- 表单分组组件 form-group START --> | |
| 2481 | - <div class="form-group"> | |
| 2482 | - <!-- 线路沿革 START --> | |
| 2483 | - <div class="col-md-6"> | |
| 2484 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 2485 | - <div class="col-md-4"> | |
| 2486 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 2487 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 2488 | - </div> | |
| 2489 | - </div> | |
| 2490 | - <!-- 线路沿革 END --> | |
| 2491 | - | |
| 2492 | - <!-- 描述/说明 START --> | |
| 2493 | - <div class="col-md-6"> | |
| 2494 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 2495 | - <div class="col-md-4"> | |
| 2496 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 2497 | - </div> | |
| 2498 | - </div> | |
| 2499 | - <!-- 描述/说明 END --> | |
| 2500 | - </div> | |
| 2501 | - <!-- 表单分组组件 form-group END --> | |
| 2502 | - </div> | |
| 2503 | - <!-- 表单字段内容 END --> | |
| 2504 | - | |
| 2505 | - <!-- 表单按钮组件 START --> | |
| 2506 | - <div class="form-actions"> | |
| 2507 | - <div class="row"> | |
| 2508 | - <div class="col-md-offset-5 col-md-7"> | |
| 2509 | - <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | |
| 2510 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 2511 | - </div> | |
| 2512 | - </div> | |
| 2513 | - </div> | |
| 2514 | - <!-- 表单按钮组件 END --> | |
| 2515 | - | |
| 2516 | - </form> | |
| 2517 | - <!-- line_add_form FORM END --> | |
| 2518 | - | |
| 2519 | - </div> | |
| 2520 | - <!-- 表单组件 END --> | |
| 2521 | - | |
| 2522 | -</div> | |
| 2523 | -<!-- 信息容器组件 END --> | |
| 2524 | - | |
| 2525 | -<!-- 线路信息添加片段JS模块 --> | |
| 2526 | -<script src="/pages/base/line/js/line-add-form.js"></script><!-- 片段标题 START --> | |
| 2527 | -<div class="page-head"> | |
| 2528 | - <div class="page-title"> | |
| 2529 | - <h1>添加线路</h1> | |
| 2530 | - </div> | |
| 2531 | -</div> | |
| 2532 | -<!-- 片段标题 END --> | |
| 2533 | - | |
| 2534 | -<!-- 线路信息导航栏组件 START --> | |
| 2535 | -<ul class="page-breadcrumb breadcrumb"> | |
| 2536 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 2537 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 2538 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 2539 | - <li><span class="active">添加线路</span></li> | |
| 2540 | -</ul> | |
| 2541 | -<!-- 线路信息导航栏组件 END --> | |
| 2542 | - | |
| 2543 | -<!-- 信息容器组件 START --> | |
| 2544 | -<div class="portlet light bordered"> | |
| 2545 | - | |
| 2546 | - <!-- 信息容器组件标题 START --> | |
| 2547 | - <div class="portlet-title"> | |
| 2548 | - <div class="caption"> | |
| 2549 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 2550 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 2551 | - </div> | |
| 2552 | - </div> | |
| 2553 | - <!-- 信息容器组件标题 END --> | |
| 2554 | - | |
| 2555 | - <!-- 表单容器组件 START --> | |
| 2556 | - <div class="portlet-body form"> | |
| 2557 | - | |
| 2558 | - <!-- line_add_form FORM START --> | |
| 2559 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 2560 | - | |
| 2561 | - <!-- 表单验证错误提示组件 START --> | |
| 2562 | - <div class="alert alert-danger display-hide"> | |
| 2563 | - <button class="close" data-close="alert"></button> | |
| 2564 | - 您的输入有误,请检查下面的输入项 | |
| 2565 | - </div> | |
| 2566 | - <!-- 表单验证错误提示组件 END --> | |
| 2567 | - | |
| 2568 | - <!-- 表单字段内容 START --> | |
| 2569 | - <div class="form-body"> | |
| 2570 | - | |
| 2571 | - <!-- 表单分组组件 form-group START --> | |
| 2572 | - <div class="form-group"> | |
| 2573 | - <!-- 线路编码 (* 必填项) START --> | |
| 2574 | - <div class="col-md-6"> | |
| 2575 | - <label class="control-label col-md-5"> | |
| 2576 | - <span class="required"> * </span>线路编码 : | |
| 2577 | - </label> | |
| 2578 | - <div class="col-md-4"> | |
| 2579 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 2580 | - </div> | |
| 2581 | - </div> | |
| 2582 | - <!-- 线路编码 (* 必填项) END --> | |
| 2583 | - | |
| 2584 | - <!-- 线路名称 (* 必填项) START --> | |
| 2585 | - <div class="col-md-6"> | |
| 2586 | - <label class="control-label col-md-5"> | |
| 2587 | - <span class="required"> * </span>线路名称 : | |
| 2588 | - </label> | |
| 2589 | - <div class="col-md-4"> | |
| 2590 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 2591 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 2592 | - </div> | |
| 2593 | - </div> | |
| 2594 | - <!-- 线路名称 (* 必填项) END --> | |
| 2595 | - </div> | |
| 2596 | - <!-- 表单分组组件 form-group END --> | |
| 2597 | - | |
| 2598 | - <!-- 表单分组组件 form-group START --> | |
| 2599 | - <div class="form-group"> | |
| 2600 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 2601 | - <div class="col-md-6"> | |
| 2602 | - <label class="control-label col-md-5"> | |
| 2603 | - <span class="required"> * </span>所属公司 : | |
| 2604 | - </label> | |
| 2605 | - <div class="col-md-4"> | |
| 2606 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 2607 | - </div> | |
| 2608 | - </div> | |
| 2609 | - <!-- 所属公司 END --> | |
| 2610 | - | |
| 2611 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 2612 | - <div class="col-md-6"> | |
| 2613 | - <label class="control-label col-md-5"> | |
| 2614 | - <span class="required"> * </span>所属分公司 : | |
| 2615 | - </label> | |
| 2616 | - <div class="col-md-4"> | |
| 2617 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 2618 | - </div> | |
| 2619 | - </div> | |
| 2620 | - <!-- 所属分公司 END --> | |
| 2621 | - </div> | |
| 2622 | - <!-- 表单分组组件 form-group END --> | |
| 2623 | - | |
| 2624 | - <!-- 表单分组组件 form-group START --> | |
| 2625 | - <div class="form-group"> | |
| 2626 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2627 | - <div class="col-md-6"> | |
| 2628 | - <label class="control-label col-md-5"> | |
| 2629 | - <span class="required"> * </span>线路等级 : | |
| 2630 | - </label> | |
| 2631 | - <div class="col-md-4"> | |
| 2632 | - <select name="level" class="form-control" id="levelSelect"> | |
| 2633 | - <option value="">-- 请选择线路等级 --</option> | |
| 2634 | - <option value="1">一级线路</option> | |
| 2635 | - <option value="2">二级线路</option> | |
| 2636 | - <option value="0">未知等级</option> | |
| 2637 | - </select> | |
| 2638 | - </div> | |
| 2639 | - </div> | |
| 2640 | - <!-- 线路等级 END --> | |
| 2641 | - | |
| 2642 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2643 | - <div class="col-md-6"> | |
| 2644 | - <label class="control-label col-md-5"> | |
| 2645 | - <span class="required"> * </span>线路性质 : | |
| 2646 | - </label> | |
| 2647 | - <div class="col-md-4"> | |
| 2648 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 2649 | - <option value="">-- 请选择线路性质 --</option> | |
| 2650 | - <option value="lj">路救</option> | |
| 2651 | - <option value="bc">备车</option> | |
| 2652 | - <option value="dbc">定班车</option> | |
| 2653 | - <option value="yxl">夜宵路</option> | |
| 2654 | - <option value="cgxl">常规线路</option> | |
| 2655 | - <option value="gjxl">过江线路</option> | |
| 2656 | - <option value="csbs">穿梭巴士</option> | |
| 2657 | - <option value="tyxl">特约线路</option> | |
| 2658 | - <option value="cctxl">村村通线路</option> | |
| 2659 | - <option value="qt">其他</option> | |
| 2660 | - </select> | |
| 2661 | - </div> | |
| 2662 | - </div> | |
| 2663 | - <!-- 线路性质 END --> | |
| 2664 | - </div> | |
| 2665 | - <!-- 表单分组组件 form-group END --> | |
| 2666 | - | |
| 2667 | - <!-- 表单分组组件 form-group START --> | |
| 2668 | - <div class="form-group"> | |
| 2669 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2670 | - <div class="col-md-6"> | |
| 2671 | - <label class="control-label col-md-5"> | |
| 2672 | - <span class="required"> * </span>是否宵夜 : | |
| 2673 | - </label> | |
| 2674 | - <div class="col-md-4"> | |
| 2675 | - <div class="md-radio-inline"> | |
| 2676 | - <div class="md-radio"> | |
| 2677 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 2678 | - <label for="radio16"> | |
| 2679 | - <span></span> | |
| 2680 | - <span class="check"></span> | |
| 2681 | - <span class="box"></span> 是 | |
| 2682 | - </label> | |
| 2683 | - </div> | |
| 2684 | - <div class="md-radio has-error"> | |
| 2685 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 2686 | - <label for="radio17" style="color:#FFC0CB"> | |
| 2687 | - <span></span> | |
| 2688 | - <span class="check"></span> | |
| 2689 | - <span class="box"></span> 否 | |
| 2690 | - </label> | |
| 2691 | - </div> | |
| 2692 | - </div> | |
| 2693 | - </div> | |
| 2694 | - </div> | |
| 2695 | - <!-- 是否宵夜 END --> | |
| 2696 | - | |
| 2697 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2698 | - <div class="col-md-6"> | |
| 2699 | - <label class="control-label col-md-5"> | |
| 2700 | - <span class="required"> * </span>是否撤销 : | |
| 2701 | - </label> | |
| 2702 | - <div class="col-md-4"> | |
| 2703 | - <div class="md-radio-inline"> | |
| 2704 | - <div class="md-radio"> | |
| 2705 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 2706 | - <label for="radio14"> | |
| 2707 | - <span></span> | |
| 2708 | - <span class="check"></span> | |
| 2709 | - <span class="box"></span> 是 | |
| 2710 | - </label> | |
| 2711 | - </div> | |
| 2712 | - <div class="md-radio has-error"> | |
| 2713 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 2714 | - <label for="radio15" style="color:#FFC0CB"> | |
| 2715 | - <span></span> | |
| 2716 | - <span class="check"></span> | |
| 2717 | - <span class="box"></span> 否 | |
| 2718 | - </label> | |
| 2719 | - </div> | |
| 2720 | - </div> | |
| 2721 | - </div> | |
| 2722 | - </div> | |
| 2723 | - <!-- 是否撤销 START --> | |
| 2724 | - </div> | |
| 2725 | - <!-- 表单分组组件 form-group END --> | |
| 2726 | - | |
| 2727 | - <!-- 表单分组组件 form-group START --> | |
| 2728 | - <div class="form-group"> | |
| 2729 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2730 | - <div class="col-md-6"> | |
| 2731 | - <label class="control-label col-md-5"> | |
| 2732 | - <span class="required"> * </span>是否营运线路 : | |
| 2733 | - </label> | |
| 2734 | - <div class="col-md-4"> | |
| 2735 | - <div class="md-radio-inline"> | |
| 2736 | - <div class="md-radio"> | |
| 2737 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 2738 | - <label for="radio18"> | |
| 2739 | - <span></span> | |
| 2740 | - <span class="check"></span> | |
| 2741 | - <span class="box"></span> 是 | |
| 2742 | - </label> | |
| 2743 | - </div> | |
| 2744 | - <div class="md-radio has-error"> | |
| 2745 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 2746 | - <label for="radio19" style="color:#FFC0CB"> | |
| 2747 | - <span></span> | |
| 2748 | - <span class="check"></span> | |
| 2749 | - <span class="box"></span> 否 | |
| 2750 | - </label> | |
| 2751 | - </div> | |
| 2752 | - </div> | |
| 2753 | - </div> | |
| 2754 | - </div> | |
| 2755 | - <!-- 是否营运 END --> | |
| 2756 | - <!-- 权证车辆数 START --> | |
| 2757 | - <div class="col-md-6"> | |
| 2758 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 2759 | - <div class="col-md-4"> | |
| 2760 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 2761 | - </div> | |
| 2762 | - </div> | |
| 2763 | - <!-- 权证车辆数 END --> | |
| 2764 | - | |
| 2765 | - </div> | |
| 2766 | - <!-- 表单分组组件 form-group END --> | |
| 2767 | - | |
| 2768 | - <!-- 表单分组组件 form-group START --> | |
| 2769 | - <div class="form-group"> | |
| 2770 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 2771 | - <div class="col-md-6"> | |
| 2772 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 2773 | - 起始站名称 : | |
| 2774 | - </label> | |
| 2775 | - <div class="col-md-4"> | |
| 2776 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 2777 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 2778 | - </div> | |
| 2779 | - </div> | |
| 2780 | - <!-- 起始站名称 END --> | |
| 2781 | - | |
| 2782 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 2783 | - <div class="col-md-6"> | |
| 2784 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 2785 | - <div class="col-md-4"> | |
| 2786 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 2787 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 2788 | - </div> | |
| 2789 | - </div> | |
| 2790 | - <!-- 终点站名称 END --> | |
| 2791 | - </div> | |
| 2792 | - <!-- 表单分组组件 form-group END --> | |
| 2793 | - | |
| 2794 | - <!-- 表单分组组件 form-group START --> | |
| 2795 | - <div class="form-group"> | |
| 2796 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 2797 | - <div class="col-md-6"> | |
| 2798 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 2799 | - <div class="col-md-4"> | |
| 2800 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 2801 | - <span class="help-block"> 例如 :06:00 </span> | |
| 2802 | - </div> | |
| 2803 | - </div> | |
| 2804 | - <!-- 起始站首班车时间 END --> | |
| 2805 | - | |
| 2806 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 2807 | - <div class="col-md-6"> | |
| 2808 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 2809 | - <div class="col-md-4"> | |
| 2810 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 2811 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 2812 | - <span class="help-block"> 例如 :17:00 </span> | |
| 2813 | - </div> | |
| 2814 | - </div> | |
| 2815 | - <!-- 起始站末班车时间 END --> | |
| 2816 | - </div> | |
| 2817 | - <!-- 表单分组组件 form-group END --> | |
| 2818 | - | |
| 2819 | - <!-- 表单分组组件 form-group START --> | |
| 2820 | - <div class="form-group"> | |
| 2821 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 2822 | - <div class="col-md-6"> | |
| 2823 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 2824 | - <div class="col-md-4"> | |
| 2825 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 2826 | - <span class="help-block"> 例如 :05:00 </span> | |
| 2827 | - </div> | |
| 2828 | - </div> | |
| 2829 | - <!-- 终点站首班车时间 END --> | |
| 2830 | - | |
| 2831 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 2832 | - <div class="col-md-6"> | |
| 2833 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 2834 | - <div class="col-md-4"> | |
| 2835 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 2836 | - <span class="help-block"> 例如 :18:00 </span> | |
| 2837 | - </div> | |
| 2838 | - </div> | |
| 2839 | - <!-- 终点站末班车时间 END --> | |
| 2840 | - </div> | |
| 2841 | - <!-- 表单分组组件 form-group END --> | |
| 2842 | - | |
| 2843 | - <!-- 表单分组组件 form-group START --> | |
| 2844 | - <div class="form-group"> | |
| 2845 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 2846 | - <div class="col-md-6"> | |
| 2847 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 2848 | - <div class="col-md-4"> | |
| 2849 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 2850 | - <option value="">-- 请选择线路类型 --</option> | |
| 2851 | - <option value="0">双向</option> | |
| 2852 | - <option value="1">环线</option> | |
| 2853 | - </select> | |
| 2854 | - </div> | |
| 2855 | - </div> | |
| 2856 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 2857 | - | |
| 2858 | - <!--大间隔等级 START --> | |
| 2859 | - <div class="col-md-6"> | |
| 2860 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 2861 | - <div class="col-md-4"> | |
| 2862 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 2863 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 2864 | - <option value="1">一级</option> | |
| 2865 | - <option value="2">二级</option> | |
| 2866 | - <option value="3">三级</option> | |
| 2867 | - <option value="4">四级</option> | |
| 2868 | - </select> | |
| 2869 | - </div> | |
| 2870 | - </div> | |
| 2871 | - <!-- 大间隔等级END --> | |
| 2872 | - </div> | |
| 2873 | - <!-- 表单分组组件 form-group START --> | |
| 2874 | - | |
| 2875 | - <!-- 表单分组组件 form-group START --> | |
| 2876 | - <div class="form-group"> | |
| 2877 | - <!-- 线路简称 START --> | |
| 2878 | - <div class="col-md-6"> | |
| 2879 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 2880 | - <div class="col-md-4"> | |
| 2881 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 2882 | - </div> | |
| 2883 | - </div> | |
| 2884 | - <!-- 线路简称 END --> | |
| 2885 | - | |
| 2886 | - <!-- 英文名称 START --> | |
| 2887 | - <div class="col-md-6"> | |
| 2888 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 2889 | - <div class="col-md-4"> | |
| 2890 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 2891 | - </div> | |
| 2892 | - </div> | |
| 2893 | - <!-- 英文名称 END --> | |
| 2894 | - </div> | |
| 2895 | - <!-- 表单分组组件 form-group END --> | |
| 2896 | - | |
| 2897 | - <!-- 表单分组组件 form-group START --> | |
| 2898 | - <div class="form-group"> | |
| 2899 | - <!-- 上海市线路编码 START --> | |
| 2900 | - <div class="col-md-6"> | |
| 2901 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 2902 | - <div class="col-md-4"> | |
| 2903 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 2904 | - </div> | |
| 2905 | - </div> | |
| 2906 | - <!-- 上海市线路编码 END --> | |
| 2907 | - | |
| 2908 | - <!--设备线路编码 START --> | |
| 2909 | - <div class="col-md-6"> | |
| 2910 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 2911 | - <div class="col-md-4"> | |
| 2912 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 2913 | - </div> | |
| 2914 | - </div> | |
| 2915 | - <!--设备线路编码 END --> | |
| 2916 | - </div> | |
| 2917 | - <!-- 表单分组组件 form-group END --> | |
| 2918 | - | |
| 2919 | - <!-- 表单分组组件 form-group START --> | |
| 2920 | - <div class="form-group"> | |
| 2921 | - <!-- 起始站调度电话 START --> | |
| 2922 | - <div class="col-md-6"> | |
| 2923 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 2924 | - <div class="col-md-4"> | |
| 2925 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 2926 | - </div> | |
| 2927 | - </div> | |
| 2928 | - <!-- 起始站调度电话 END --> | |
| 2929 | - | |
| 2930 | - <!-- 终点站调度电话 START --> | |
| 2931 | - <div class="col-md-6"> | |
| 2932 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 2933 | - <div class="col-md-4"> | |
| 2934 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 2935 | - </div> | |
| 2936 | - </div> | |
| 2937 | - <!-- 终点站调度电话 START --> | |
| 2938 | - </div> | |
| 2939 | - <!-- 表单分组组件 form-group END --> | |
| 2940 | - | |
| 2941 | - <!-- 表单分组组件 form-group START --> | |
| 2942 | - <div class="form-group"> | |
| 2943 | - <!-- 车辆总数 START --> | |
| 2944 | - <div class="col-md-6"> | |
| 2945 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 2946 | - <div class="col-md-4"> | |
| 2947 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 2948 | - </div> | |
| 2949 | - </div> | |
| 2950 | - <!-- 车辆总数 END --> | |
| 2951 | - | |
| 2952 | - <!-- 普通车辆数 START --> | |
| 2953 | - <div class="col-md-6"> | |
| 2954 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 2955 | - <div class="col-md-4"> | |
| 2956 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 2957 | - </div> | |
| 2958 | - </div> | |
| 2959 | - <!-- 普通车辆数 END --> | |
| 2960 | - </div> | |
| 2961 | - <!-- 表单分组组件 form-group END --> | |
| 2962 | - | |
| 2963 | - <!-- 表单分组组件 form-group START --> | |
| 2964 | - <div class="form-group"> | |
| 2965 | - <!-- 空调车辆数 START --> | |
| 2966 | - <div class="col-md-6"> | |
| 2967 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 2968 | - <div class="col-md-4"> | |
| 2969 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 2970 | - </div> | |
| 2971 | - </div> | |
| 2972 | - <!-- 空调车辆数 END --> | |
| 2973 | - | |
| 2974 | - <!-- 开辟日期 START --> | |
| 2975 | - <div class="col-md-6"> | |
| 2976 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 2977 | - <div class="col-md-4"> | |
| 2978 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 2979 | - </div> | |
| 2980 | - </div> | |
| 2981 | - <!-- 开辟日期 END --> | |
| 2982 | - </div> | |
| 2983 | - <!-- 表单分组组件 form-group END --> | |
| 2984 | - | |
| 2985 | - <!-- 表单分组组件 form-group START --> | |
| 2986 | - <div class="form-group"> | |
| 2987 | - <!-- 线路沿革 START --> | |
| 2988 | - <div class="col-md-6"> | |
| 2989 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 2990 | - <div class="col-md-4"> | |
| 2991 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 2992 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 2993 | - </div> | |
| 2994 | - </div> | |
| 2995 | - <!-- 线路沿革 END --> | |
| 2996 | - | |
| 2997 | - <!-- 描述/说明 START --> | |
| 2998 | - <div class="col-md-6"> | |
| 2999 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 3000 | - <div class="col-md-4"> | |
| 3001 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 3002 | - </div> | |
| 3003 | - </div> | |
| 3004 | - <!-- 描述/说明 END --> | |
| 3005 | - </div> | |
| 3006 | - <!-- 表单分组组件 form-group END --> | |
| 3007 | - </div> | |
| 3008 | - <!-- 表单字段内容 END --> | |
| 3009 | - | |
| 3010 | - <!-- 表单按钮组件 START --> | |
| 3011 | - <div class="form-actions"> | |
| 3012 | - <div class="row"> | |
| 3013 | - <div class="col-md-offset-5 col-md-7"> | |
| 3014 | - <button type="submit" class="btn green" ><i class="fa fa-check"></i> 提交</button> | |
| 3015 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 3016 | - </div> | |
| 3017 | - </div> | |
| 3018 | - </div> | |
| 3019 | - <!-- 表单按钮组件 END --> | |
| 3020 | - | |
| 3021 | - </form> | |
| 3022 | - <!-- line_add_form FORM END --> | |
| 3023 | - | |
| 3024 | - </div> | |
| 3025 | - <!-- 表单组件 END --> | |
| 3026 | - | |
| 3027 | -</div> | |
| 3028 | -<!-- 信息容器组件 END --> | |
| 3029 | - | |
| 3030 | -<!-- 线路信息添加片段JS模块 --> | |
| 3031 | 506 | <script src="/pages/base/line/js/line-add-form.js"></script> |
| 3032 | 507 | \ No newline at end of file | ... | ... |