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="加载中...">
-
-
+
+
-
+
-
+
- {{ $sensitive(scope.row.mobile, 3, 7) }}
+ {{ $sensitive(scope.row.reporterMobile, 3, 7) }}
-
-
+
+
+
+
@@ -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