Merge remote-tracking branch 'origin/hangao' into hangao

hangao
wangxy 5 months ago
commit 200cd5bc60

@ -729,7 +729,19 @@ var table = {
} }
}); });
return selects; return selects;
} },
// 获取选中单选框项
radioCheckeds: function(name) {
var radios = "";
$('input:radio[name="' + name + '"]:checked').each(function(i) {
if (0 == i) {
radios = $(this).val();
} else {
radios += ("," + $(this).val());
}
});
return radios;
},
}, },
// 弹出层封装处理 // 弹出层封装处理
modal: { modal: {

@ -4,7 +4,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--360浏览器优先以webkit内核解析--> <!--360浏览器优先以webkit内核解析-->
<title>若依介绍</title> <title>保密业务综合管理系统</title>
<link rel="shortcut icon" href="favicon.ico"> <link rel="shortcut icon" href="favicon.ico">
<link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/> <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
<link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/> <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>

@ -26,7 +26,7 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试状态:{{ item.userTime}} 考试状态:{{ item.stateName}}
</el-col> </el-col>
</el-row> </el-row>
@ -47,25 +47,26 @@
}, },
mounted(){ mounted(){
this.paperList = this.updatedPaperList this.paperList = this.updatedPaperList
this.getCityList()
}, },
computed: { computed: {
updatedPaperList() { updatedPaperList() {
return this.paperList.map(paper => { return this.paperList.map(function(paper) {
const match = this.examStateList.find(function (item){ var match = this.examStateList.find(function(item) {
item.dictValue == paper.state return item.dictValue == paper.state;
}); });
if (match) { if (match) {
var newPaper = {}; var newPaper = {};
for (var key in paper) { for (var key in paper) {
newPaper[key] = paper[key]; if (paper.hasOwnProperty(key)) {
newPaper[key] = paper[key];
}
} }
newPaper.stateName = match.dictLabel; newPaper.stateName = match.dictLabel;
return newPaper; return newPaper;
} else { } else {
return paper; return paper;
} }
}); }.bind(this));
} }
}, },
methods:{ methods:{
@ -79,16 +80,6 @@
const seconds = ('0' + date.getSeconds()).slice(-2); const seconds = ('0' + date.getSeconds()).slice(-2);
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
}, },
getCityList(){
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},
} }
}) })
</script> </script>

@ -92,7 +92,7 @@
<label class="col-sm-4 control-label is-required">角色:</label> <label class="col-sm-4 control-label is-required">角色:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<label th:each="role:${roles}" class="check-box"> <label th:each="role:${roles}" class="check-box">
<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:disabled="${role.status == '1'}" > <input name="role" type="radio" th:value="${role.roleId}" th:text="${role.roleName}" th:disabled="${role.status == '1'}">
</label> </label>
</div> </div>
</div> </div>
@ -363,7 +363,7 @@
if ($.validate.form() && checkpwd(chrtype, password)) { if ($.validate.form() && checkpwd(chrtype, password)) {
var data = $("#form-user-add").serializeArray(); var data = $("#form-user-add").serializeArray();
var status = $("input[id='status']").is(':checked') == true ? 0 : 1; var status = $("input[id='status']").is(':checked') == true ? 0 : 1;
var roleIds = $.form.selectCheckeds("role"); var roleIds = $.form.radioCheckeds("role");
var postIds = $.form.selectSelects("post"); var postIds = $.form.selectSelects("post");
data.push({"name": "status", "value": status}); data.push({"name": "status", "value": status});
data.push({"name": "roleIds", "value": roleIds}); data.push({"name": "roleIds", "value": roleIds});

@ -61,7 +61,7 @@
clickToSelect: true, clickToSelect: true,
maintainSelected: true, maintainSelected: true,
columns: [{ columns: [{
checkbox: true, radio: true,
formatter:function (value, row, index) { formatter:function (value, row, index) {
if($.common.isEmpty(value)) { if($.common.isEmpty(value)) {
return { checked: row.flag }; return { checked: row.flag };

@ -81,8 +81,8 @@
<label class="col-sm-4 control-label is-required">角色:</label> <label class="col-sm-4 control-label is-required">角色:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<label th:each="role:${roles}" required class="check-box"> <label th:each="role:${roles}" required class="check-box">
<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}"> <input name="role" type="radio" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
</label> </label>
</div> </div>
</div> </div>
</div> </div>
@ -308,7 +308,7 @@
if ($.validate.form()) { if ($.validate.form()) {
var data = $("#form-user-edit").serializeArray(); var data = $("#form-user-edit").serializeArray();
/*var status = $("input[id='status']").is(':checked') == true ? 0 : 1;*/ /*var status = $("input[id='status']").is(':checked') == true ? 0 : 1;*/
var roleIds = $.form.selectCheckeds("role"); var roleIds = $.form.radioCheckeds("role");
var postIds = $.form.selectSelects("post"); var postIds = $.form.selectSelects("post");
/*data.push({"name": "status", "value": status});*/ /*data.push({"name": "status", "value": status});*/
data.push({"name": "roleIds", "value": roleIds}); data.push({"name": "roleIds", "value": roleIds});

Loading…
Cancel
Save