model-configuration-search.html 2.06 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
<div class="popover">
    <div class="arrow"></div>
    <div class="popover-content model-configuration-scearch">
        <div class="fileds">
            <div class="model-name">
                <label>模型名称:</label>
                <input class="form-control " type="text" id="accountCode" placeholder="" ng-model="filterData.modelName">
            </div>
            <div class="model-type">
                <label>模型类型:</label>
                <label>
                    <input type="checkbox" ng-model="filterData.isSystemModel">
                    <span><i class="fa fa-university"></i></span>
                    <span>  系统公共模型</span>
                </label>
                <label>
                    <input type="checkbox" ng-model="filterData.isCommonModel">
                    <span>  <i class="fa fa-file-text-o"></i></span>
                    <span>  机构公共模型</span>
                </label>
                <label>
                    <input type="checkbox" ng-model="filterData.isCustomModel">
                    <span>  <i class="fa fa-user"></i></span>
                    <span> 机构自定义模型</span>
                </label>
            </div>
            <div class="model-status">
                <label>使用状态:</label>
                <span>
                    <label><input type="checkbox" ng-model="filterData.isEnabledModel">启用</label>
                    <label><input type="checkbox" ng-model="filterData.isDisableModel">禁用</label>
                </span>
            </div>
        </div>
        <div class="buttons">
            <button class="btn btn-default btn-primary" ng-click="doDataFilter()">
                <span class="fa fa-chevron-down" aria-hidden="true"> </span> <span translate="Confirm"></span>
            </button>
            <button class="btn btn-default" style="margin-right:15px" type="button" ng-click="doDataFilterReset()">
                <span class="fa fa-times" aria-hidden="true"> </span> <span translate="Reset"></span>
            </button>
        </div>
    </div>
</div>