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