diff --git a/src/main.js b/src/main.js
index 3acc99f47..d6aa150ef 100644
--- a/src/main.js
+++ b/src/main.js
@@ -48,7 +48,7 @@ import PopTips from "@/components/PopTips/index.vue";
import PopHomeTip from "@/components/PopHomeTip/index.vue";
import NameSplit from "@/components/NameSplit/index.vue";
import RelationGraph from "relation-graph";
-// import dayjs from 'dayjs'
+import dayjs from 'dayjs'
// import AddNodeJw from "@/components/JwTree/addNode.vue";
//按钮
@@ -104,7 +104,7 @@ Vue.directive("fixed", {
// 挂载全局
Vue.prototype.$http = http;
Vue.prototype.$sensitive = desensitization;
-// Vue.prototype.$dayjs = dayjs
+Vue.prototype.$dayjs = dayjs
// el-uploader的header配置
Vue.prototype.$getElUploadHeaders = () => ({
Authorization: localStorage.getItem("token") || "",
diff --git a/src/views/modules/shequzhili/Delivery/index.vue b/src/views/modules/shequzhili/Delivery/index.vue
index 8f84faadf..f0d4912ca 100644
--- a/src/views/modules/shequzhili/Delivery/index.vue
+++ b/src/views/modules/shequzhili/Delivery/index.vue
@@ -151,8 +151,8 @@
查看
- 处理
- 派件
+ 处理
+ 派件
审核
diff --git a/src/views/modules/shequzhili/event/cpts/event-detail.vue b/src/views/modules/shequzhili/event/cpts/event-detail.vue
index 30c0d1fe0..18d49076f 100644
--- a/src/views/modules/shequzhili/event/cpts/event-detail.vue
+++ b/src/views/modules/shequzhili/event/cpts/event-detail.vue
@@ -66,7 +66,7 @@
转办意见
-
{{ info.transferAdvice }}
+
{{ info.content }}
办理要求
@@ -162,7 +162,7 @@ export default {
}
this.$EventBus.$on('handelInputEventContent', ({ type, value }) => {
if (type === 'opinion') {
- this.info.transferAdvice = value;
+ this.info.content = value;
} else if (type === 'handlingReq') {
this.info.handlingReq = value;
}
diff --git a/src/views/modules/shequzhili/event/cpts/process-form-assign.vue b/src/views/modules/shequzhili/event/cpts/process-form-assign.vue
index 14cfadb01..6b51ada3a 100644
--- a/src/views/modules/shequzhili/event/cpts/process-form-assign.vue
+++ b/src/views/modules/shequzhili/event/cpts/process-form-assign.vue
@@ -38,11 +38,11 @@
-
@@ -75,7 +75,7 @@ export default {
formData: {
operationType: "5", //处理方式[0:已回复 5、指派 6、完成并回复]
handlingReq:'',//办理要求
- transferAdvice:'',//转办意见
+ content:'',//转办意见
createdTime: '',
contactTime:'',
timeLimit:'',//办结时限
@@ -157,7 +157,7 @@ export default {
if (this.eventId) {
this.eventDetailCopy = JSON.parse(JSON.stringify(this.eventDetailData));
this.formData.handlingReq = this.eventDetailCopy.handlingReq;
- this.formData.transferAdvice = this.eventDetailCopy.transferAdvice;
+ this.formData.content = this.eventDetailCopy.content;
}
},
methods: {