diff --git a/src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue b/src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue index 7e583b95e..6c912caf3 100644 --- a/src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue +++ b/src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue @@ -35,14 +35,14 @@ element-loading-spinner="el-icon-loading" element-loading-text="加载中..."> - - + + - + - +
- - <SelfInspectionScore/> + <Title text="不满意人数统计及自查得分" > + <el-date-picker + size="small" + popper-class="date-current-weiyi" + :append-to-body="false" + v-model="scoreMonth" type="month" + value-format="yyyy-MM-dd HH:mm:ss" + value="yyyy-MM" + placeholder="按月度" + style="width: 118px" + /> + +
@@ -78,7 +89,8 @@ export default { index: 0, type: 0, time: 0, - }; + scoreMonth: "" + } }, methods: { goToPage(url) { @@ -94,7 +106,7 @@ export default { diff --git a/src/views/dataBoard/satisfactionEval/modules/SelfInspectionScore/index.vue b/src/views/dataBoard/satisfactionEval/modules/SelfInspectionScore/index.vue index 3633660d4..3952a97b7 100644 --- a/src/views/dataBoard/satisfactionEval/modules/SelfInspectionScore/index.vue +++ b/src/views/dataBoard/satisfactionEval/modules/SelfInspectionScore/index.vue @@ -32,6 +32,30 @@ export default { return { data: [] } + }, + props: { + date: { + type: String, + default: '', + }, + }, + watch: { + "$store.state.chooseArea.chooseName"(val) { + if (val.orgId) { + this.getList(); + } + }, + date() { + this.getList(); + }, + }, + mounted() { + this.getList() + }, + methods: { + getList() { + console.log(this.date) + } } } @@ -41,4 +65,5 @@ export default { .table { padding: 10px; } + \ No newline at end of file