Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/067dd41f3c61647018210bc0332d6425afd2f590?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
7 deletions
@ -74,10 +74,10 @@
< div class = "form-group" >
< div class = "form-group" >
< label class = "col-sm-4 control-label" > 维修单位状态:< / label >
< label class = "col-sm-4 control-label" > 维修单位状态:< / label >
< div class = "col-sm-8" >
< div class = "col-sm-8" >
< select name = "indentureState" class = "form-control" th:with = "type= ${@dict.getType('sys_normal_disable')}">
< div class = "radio-box" th:each = "dict : ${@dict.getType('sys_normal_disable')}">
< option value = "" > ---请选择---< / option >
< input type = "radio" th:id = "${dict.dictCode}" name = "indentureState" th:value = "${dict.dictValue}" th:checked = "${dict.default}" >
< option th:each = "dict : ${type}" th:text = "${dict.dictLabel}" th:value = "${dict.dictValue}" > < / option >
< label th:for = "${dict.dictCode}" th:text = "${dict.dictLabel}" > < / label >
< / select >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
@ -75,9 +75,10 @@
< div class = "form-group" >
< div class = "form-group" >
< label class = "col-sm-4 control-label" > 维修单位状态:< / label >
< label class = "col-sm-4 control-label" > 维修单位状态:< / label >
< div class = "col-sm-8" >
< div class = "col-sm-8" >
< select name = "indentureState" class = "form-control" th:with = "type=${@dict.getType('sys_normal_disable')}" >
< div class = "radio-box" th:each = "dict : ${@dict.getType('sys_normal_disable')}" >
< option th:each = "dict : ${type}" th:text = "${dict.dictLabel}" th:value = "${dict.dictValue}" th:field = "*{indentureState}" > < / option >
< input type = "radio" th:id = "${dict.dictCode}" name = "indentureState" th:value = "${dict.dictValue}" th:field = "*{indentureState}" >
< / select >
< label th:for = "${dict.dictCode}" th:text = "${dict.dictLabel}" > < / label >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >