diff --git a/src/views/baseSpecialhandle/index.vue b/src/views/baseSpecialhandle/index.vue
index 7574def..f73be0f 100644
--- a/src/views/baseSpecialhandle/index.vue
+++ b/src/views/baseSpecialhandle/index.vue
@@ -34,12 +34,19 @@
-
-
+
+
+ {{ scope.row.state }}
+
+
+
+
+ {{ ncc.tableDateFormat(scope.row, 'deadline', scope.row.deadline) }}
+
+
- {{scope.row.state == '已填写' ? '修改' : '处理'}}
+ {{scope.row.state == '已填写' ? '修改' : '处理'}}
diff --git a/src/views/baseSystemInfo/DetailForm.vue b/src/views/baseSystemInfo/DetailForm.vue
new file mode 100644
index 0000000..9420b1b
--- /dev/null
+++ b/src/views/baseSystemInfo/DetailForm.vue
@@ -0,0 +1,371 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 核查处置记录
+ 网信执法记录
+
+
+
+
+
+
+
+
{{ item }}
+
+
+
{{ v.describe }}
+
+ {{ v.creatorUserId }} 提交于 {{ v.updataTime }}
+
+
+
+
加载中...
+
没有更多了
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/baseSystemInfo/index.vue b/src/views/baseSystemInfo/index.vue
index 8d5a291..2bf0f6e 100644
--- a/src/views/baseSystemInfo/index.vue
+++ b/src/views/baseSystemInfo/index.vue
@@ -123,9 +123,6 @@
-
- 查看
-
修改
+ 查看
上报
- 整改清单
+ > -->
@@ -215,6 +213,7 @@
@refresh="refresh"
/>
+
@@ -225,14 +224,13 @@ import { getInfoList } from "@/api/baseData/info";
import { applnyChageArea } from "@/api/baseData/info";
import infoMixin from "@/mixins/info";
import InspectionForm from "./InspectForm.vue";
+import DetailForm from './DetailForm.vue'
import ChangeRecord from "./ChangeRecord.vue";
export default {
name: "SystemInfo",
mixins: [infoMixin],
- components: {
- InspectionForm, ChangeRecord
- },
+ components: { InspectionForm, ChangeRecord, DetailForm },
data() {
return {
loading: false,
@@ -274,6 +272,9 @@ export default {
InspectionFormVisible: false,
ChangeRecordVisible: false,
btnLoading: false,
+
+ // 详情
+ DetailFormVisible: false,
};
},
created() {
@@ -345,6 +346,14 @@ export default {
this.loading = false;
});
},
+ toDetail(row) {
+ console.log(row);
+
+ this.DetailFormVisible = true;
+ this.$nextTick(() => {
+ this.$refs.DetailForm.init(row);
+ });
+ },
// 上报
toInspection(row) {
this.InspectionFormVisible = true;
diff --git a/src/views/homePage/HomePage.vue b/src/views/homePage/HomePage.vue
index e2587d3..f3c40ce 100644
--- a/src/views/homePage/HomePage.vue
+++ b/src/views/homePage/HomePage.vue
@@ -22,9 +22,6 @@
新增
- 更多
diff --git a/src/views/homePage/components/Header.vue b/src/views/homePage/components/Header.vue
index af6bf94..94699ce 100644
--- a/src/views/homePage/components/Header.vue
+++ b/src/views/homePage/components/Header.vue
@@ -88,7 +88,7 @@ header {
.user {
position: absolute;
right: 33px;
- top: 25px;
+ top: 13px;
display: flex;
align-items: center;
flex-direction: row;
diff --git a/src/views/homePage/components/news/NewsDialog.vue b/src/views/homePage/components/news/NewsDialog.vue
index 9545774..5193356 100644
--- a/src/views/homePage/components/news/NewsDialog.vue
+++ b/src/views/homePage/components/news/NewsDialog.vue
@@ -158,7 +158,7 @@ export default {
flex-direction: row;
justify-content: space-between;
align-items: center;
- color: #ccc;
+ color: #454040;
font-size: 12px;
line-height: 30px;
}
diff --git a/src/views/homePage/components/news/index.vue b/src/views/homePage/components/news/index.vue
index 97e6214..bfd0d4d 100644
--- a/src/views/homePage/components/news/index.vue
+++ b/src/views/homePage/components/news/index.vue
@@ -44,6 +44,7 @@ export default {
methods: {
changeMagNum(val) {
this.isHaveMsg = val ? true : false;
+ this.messageCount = val;
},
initWebSocket() {
console.log("1");
@@ -69,8 +70,6 @@ export default {
let data = JSON.parse(event.data);
console.log(data, "event.data");
if (data.method == "initMessage") {
- this.messageCount =
- data.unreadMessageCount + data.unreadNoticeCount;
this.isTwinkle = !!data.unreadNums.length;
this.$refs.MessageDialog.init();
}
@@ -82,9 +81,12 @@ export default {
}
//消息推送(消息公告用的)
if (data.method == "messagePush") {
- console.log("messagePush", "消息推送(消息公告用的)", data);
- this.messageCount += data.unreadNoticeCount;
- if (this.$refs.MessageList.visible) this.$refs.MessageList.init();
+ this.$refs.MessageDialog.init();
+ this.$notify({
+ title: '消息推送',
+ message: data.title,
+ position: 'bottom-right'
+ });
}
//用户过期
if (data.method == "logout") {
diff --git a/src/views/homePage/homePage.scss b/src/views/homePage/homePage.scss
index e9651c5..2d2cccf 100644
--- a/src/views/homePage/homePage.scss
+++ b/src/views/homePage/homePage.scss
@@ -7,7 +7,7 @@
background-repeat: no-repeat; /* 不重复背景图片 */
}
.content {
- margin-top: 56px;
+ margin-top: 13px;
position: relative;
.navs {
position: absolute;
diff --git a/src/views/overView/Overview.vue b/src/views/overView/Overview.vue
index fee0941..da7cbe2 100644
--- a/src/views/overView/Overview.vue
+++ b/src/views/overView/Overview.vue
@@ -20,7 +20,11 @@
-
+
+
+ {{ ncc.tableDateFormat(scope.row, 'deadLine', scope.row.deadLine) }}
+
+
处理
@@ -119,7 +123,7 @@