diff --git a/project/fengdu/app/AppDynamic/components/List.vue b/project/fengdu/app/AppDynamic/components/List.vue
index 63dc3e9b..6d3656ef 100644
--- a/project/fengdu/app/AppDynamic/components/List.vue
+++ b/project/fengdu/app/AppDynamic/components/List.vue
@@ -62,8 +62,8 @@
{ prop: 'title', label: '标题', align: 'left', width: '200px' },
{ prop: 'createUserName', label: '姓名', align: 'center' },
{ prop: 'areaName', label: '所属地区', align: 'center' },
- { prop: 'createUserName', label: '推送人', align: 'center' },
- { prop: 'createTime', label: '推送时间', align: 'center' }
+ { prop: 'examineUserName', label: '推送人', align: 'center' },
+ { prop: 'examineTime', label: '推送时间', align: 'center' }
],
tableData: [],
moduleId: ''
diff --git a/project/qujing/app/AppCertificateManage/components/Add.vue b/project/qujing/app/AppCertificateManage/components/Add.vue
index 381487cd..47e73a63 100644
--- a/project/qujing/app/AppCertificateManage/components/Add.vue
+++ b/project/qujing/app/AppCertificateManage/components/Add.vue
@@ -8,14 +8,19 @@
-
+
-
-
-
+
+
+
+
+
+ 插入获得证书序号
+
+
+
+
+
@@ -42,7 +47,9 @@
info: {},
form: {
certificateName: '',
- imageUrl: []
+ certificateIssueUnit: '',
+ certificateTitle: '',
+ certificateContent: ''
},
id: ''
}
@@ -69,6 +76,12 @@
})
},
+ append () {
+ if (this.form.certificateContent.indexOf('[#获得证书序号]') === -1) {
+ this.form.certificateContent = this.form.certificateContent + '[#获得证书序号]'
+ }
+ },
+
confirm () {
this.$refs.form.validate((valid) => {
if (valid) {
@@ -99,5 +112,10 @@