mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
完善疫情管控
This commit is contained in:
parent
5b2badca4d
commit
784eae59b5
@ -1,15 +1,58 @@
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="ibox ">
|
||||
<div class="ibox-title">
|
||||
<h5>查询条件</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入提交着名称"
|
||||
v-model="reportInfoAnswerValueManageInfo.conditions.userName" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入项目名称"
|
||||
v-model="reportInfoAnswerValueManageInfo.conditions.repName" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入题目"
|
||||
v-model="reportInfoAnswerValueManageInfo.conditions.repTitle" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入内容"
|
||||
v-model="reportInfoAnswerValueManageInfo.conditions.valueContent" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-1">
|
||||
<button type="button" class="btn btn-primary btn-sm"
|
||||
v-on:click="_queryReportInfoAnswerValueMethod()">
|
||||
<i class="glyphicon glyphicon-search"></i> 查询
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="ibox">
|
||||
<div class="ibox-title">
|
||||
<h5>简答题</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
<button type="button" class="btn btn-primary btn-sm"
|
||||
v-on:click="_goBack()">
|
||||
返回
|
||||
</button>
|
||||
</div>
|
||||
<h5>疫情上报</h5>
|
||||
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
|
||||
|
||||
@ -12,11 +12,17 @@
|
||||
records: 1,
|
||||
moreCondition: false,
|
||||
titleId: '',
|
||||
conditions:{
|
||||
userName:'',
|
||||
repName:'',
|
||||
repTitle:'',
|
||||
valueContent:'',
|
||||
communityId:vc.getCurrentCommunity().communityId
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
_initMethod: function () {
|
||||
let _titleId = vc.getParam('titleId');
|
||||
$that.reportInfoAnswerValueManageInfo.titleId = _titleId;
|
||||
vc.component._listQuestionAnswerTitles(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
},
|
||||
_initEvent: function () {
|
||||
@ -26,13 +32,11 @@
|
||||
},
|
||||
methods: {
|
||||
_listQuestionAnswerTitles: function (_page, _rows) {
|
||||
let param = {
|
||||
params: {
|
||||
page:_page,
|
||||
row:_rows,
|
||||
titleId:$that.reportInfoAnswerValueManageInfo.titleId,
|
||||
communityId:vc.getCurrentCommunity().communityId
|
||||
}
|
||||
|
||||
vc.component.reportInfoAnswerValueManageInfo.conditions.page = _page;
|
||||
vc.component.reportInfoAnswerValueManageInfo.conditions.row = _rows;
|
||||
var param = {
|
||||
params: vc.component.reportInfoAnswerValueManageInfo.conditions
|
||||
};
|
||||
|
||||
//发送get请求
|
||||
@ -53,7 +57,9 @@
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
_queryReportInfoAnswerValueMethod: function(){
|
||||
vc.component._listQuestionAnswerTitles(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
},
|
||||
_goBack: function () {
|
||||
vc.goBack();
|
||||
}
|
||||
|
||||
@ -79,14 +79,14 @@
|
||||
<td class="text-center">{{reportInfoSettingTitle.title}}</td>
|
||||
<td class="text-center">{{reportInfoSettingTitle.seq}}</td>
|
||||
<td class="text-center">
|
||||
<div class="btn-group" v-if="reportInfoSettingTitle.titleType != '3003'">
|
||||
<!--<div class="btn-group" v-if="reportInfoSettingTitle.titleType != '3003'">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openQuestionValueModel(reportInfoSettingTitle)">结果</button>
|
||||
</div>
|
||||
<div class="btn-group" v-else>
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_toQuestionValueModel(reportInfoSettingTitle)">结果</button>
|
||||
</div>
|
||||
</div>-->
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openEditReportInfoSettingTitleModel(reportInfoSettingTitle)">修改</button>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user