Browse Source

修改反馈意见

pangqijun 1 year ago
parent
commit
3416be07f9
2 changed files with 23 additions and 7 deletions
  1. 13 1
      src/views/groupon/filecontent.vue
  2. 10 6
      src/views/quartz/job.vue

+ 13 - 1
src/views/groupon/filecontent.vue

@@ -108,10 +108,22 @@
               }]
             },
             {
-              label: "图片链接",
+              label: "图",
               prop: "imgUrl",
               type: 'img',
             },
+            {
+              label: "反馈用户",
+              prop: "feedbackPerson",
+            },
+            {
+              label: "联系方式",
+              prop: "feedbackPersonPhone",
+            },
+            {
+              label: "反馈时间",
+              prop: "createTime",
+            },
             // {
             //   label: "",
             //   prop: "sessionKey",

+ 10 - 6
src/views/quartz/job.vue

@@ -215,6 +215,14 @@
   import {mapGetters} from "vuex";
   import Crontab from '@/components/Crontab'
 
+  var jobState = [{
+    value: '0',
+    label: '正常'
+  },{
+    value: '1',
+    label: '暂停'
+  }];
+
   export default {
     components: { Crontab },
     data() {
@@ -325,15 +333,11 @@
               search: true,
               rules: [{
                 required: true,
-                message: "请输入状态(0正常 1暂停)",
+                message: "请输入状态",
                 trigger: "blur"
               }],
               type: "select",
-              dicUrl: "/api/blade-system/dict-biz/dictionary?code=task_state",
-              props: {
-                label: "dictValue",
-                value: "dictKey"
-              },
+              dicData: jobState,
               dataType: "number",
             },
             {