地质所 沉降监测网建设项目
zmk
2024-07-18 280001d476b92bf2d14052518e6f69bee9dee43d
javaweb-plus/javaweb-cms/src/main/resources/templates/geo/project/project.html
@@ -20,6 +20,13 @@
                                <input type="text" name="code"/>
                            </li>
                            <li>
                                <p>项目状态:</p>
                                <select name="status" th:with="type=${@dict.getType('project_status')}">
                                    <option value="">所有</option>
                                    <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
                                </select>
                            </li>
                            <li>
                                <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
                                <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
                            </li>
@@ -48,6 +55,7 @@
    <script th:inline="javascript">
        var editFlag = [[${@permission.hasPermi('geo:project:edit')}]];
        var removeFlag = [[${@permission.hasPermi('geo:project:remove')}]];
        var statusDatas = [[${@dict.getType('project_status')}]];
        var prefix = ctx + "geo/project";
        $(function() {
@@ -62,6 +70,11 @@
                columns: [{
                    checkbox: true
                },
                    {
                        field : 'ids',
                        title : '主键',
                        visible: false
                    },
                {
                        field : 'code',
                        title : '场地编号',
@@ -71,37 +84,33 @@
                    field : 'fullName', 
                    title : '场地名称',
                    formatter: function(value, row, index) {
                      return '<a onclick="navigate(\'' + row.ids + '\')">'+row.fullName+'</a>'
                        var id = row.ids;
                        var code = row.code;
                        var str = id + "," + code;
                      return '<a onclick="navigate(\'' + str + '\')">'+row.fullName+'</a>'
                   },           
                   sortable:true           
                },
                {
                    field : 'laborUnit', 
                    title : '劳务单位'
                    title : '劳务单位',
                    visible: false
                },
                {
                    field : 'district',
                    title : '区县',
                },
                {
                    field : 'leaderName',
                    field : 'leader',
                    title : '场地负责人'
                },
                {
                    field : 'createTime',
                    title : '创建时间'
                },
                {
                    field : 'status',
                    title : '场地状态',
                    formatter: function(value, row, index) {
                       if(row.status =='0'){
                           return "未验收";
                       }else{
                           return "验收";
                       }
                    }
                },
                    {
                        field : 'status',
                        title : '场地状态',
                        formatter: function(value, row, index) {
                            return $.table.selectDictLabel(statusDatas, value);
                        }
                    },
                {
                    title: '操作',
                    align: 'center',
@@ -117,9 +126,11 @@
        });
        
        
       function navigate(id){
            $.modal.openTab("场地导航",ctx+"/geo/project/navigate?ids="+id);
       function navigate(idcode){
            var strs = idcode.split(",");
            var id =strs[0];
            var code = strs[1];
            $.modal.openTab(code + " 场地导航",ctx+"/geo/project/navigate?ids="+id);
        }
    </script>
</body>