Explorar el Código

同步后台 修改config模块key vulue子段为paramKey paramValue

daxiongYang %!s(int64=7) %!d(string=hace) años
padre
commit
0e8e6dfa14
Se han modificado 2 ficheros con 16 adiciones y 16 borrados
  1. 11 11
      src/views/modules/sys/config-add-or-update.vue
  2. 5 5
      src/views/modules/sys/config.vue

+ 11 - 11
src/views/modules/sys/config-add-or-update.vue

@ -4,11 +4,11 @@
4 4
    :close-on-click-modal="false"
5 5
    :visible.sync="visible">
6 6
    <el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="80px">
7
      <el-form-item label="参数名" prop="key">
8
        <el-input v-model="dataForm.key" placeholder="参数名"></el-input>
7
      <el-form-item label="参数名" prop="paramKey">
8
        <el-input v-model="dataForm.paramKey" placeholder="参数名"></el-input>
9 9
      </el-form-item>
10
      <el-form-item label="参数值" prop="value">
11
        <el-input v-model="dataForm.value" placeholder="参数值"></el-input>
10
      <el-form-item label="参数值" prop="paramValue">
11
        <el-input v-model="dataForm.paramValue" placeholder="参数值"></el-input>
12 12
      </el-form-item>
13 13
      <el-form-item label="备注" prop="remark">
14 14
        <el-input v-model="dataForm.remark" placeholder="备注"></el-input>
@ -28,12 +28,12 @@
28 28
        visible: false,
29 29
        dataForm: {
30 30
          id: 0,
31
          key: '',
32
          value: '',
31
          paramKey: '',
32
          paramValue: '',
33 33
          remark: ''
34 34
        },
35 35
        dataRule: {
36
          key: [
36
          paramKey: [
37 37
            { required: true, message: '参数名不能为空', trigger: 'blur' }
38 38
          ],
39 39
          value: [
@ -55,8 +55,8 @@
55 55
              params: this.$http.adornParams()
56 56
            }).then(({data}) => {
57 57
              if (data && data.code === 0) {
58
                this.dataForm.key = data.config.key
59
                this.dataForm.value = data.config.value
58
                this.dataForm.paramKey = data.config.paramKey
59
                this.dataForm.paramValue = data.config.paramValue
60 60
                this.dataForm.remark = data.config.remark
61 61
              }
62 62
            })
@ -72,8 +72,8 @@
72 72
              method: 'post',
73 73
              data: this.$http.adornData({
74 74
                'id': this.dataForm.id || undefined,
75
                'key': this.dataForm.key,
76
                'value': this.dataForm.value,
75
                'paramKey': this.dataForm.paramKey,
76
                'paramValue': this.dataForm.paramValue,
77 77
                'remark': this.dataForm.remark
78 78
              })
79 79
            }).then(({data}) => {

+ 5 - 5
src/views/modules/sys/config.vue

@ -2,7 +2,7 @@
2 2
  <div class="mod-config">
3 3
    <el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
4 4
      <el-form-item>
5
        <el-input v-model="dataForm.key" placeholder="参数名" clearable></el-input>
5
        <el-input v-model="dataForm.paramKey" placeholder="参数名" clearable></el-input>
6 6
      </el-form-item>
7 7
      <el-form-item>
8 8
        <el-button @click="getDataList()">查询</el-button>
@ -30,13 +30,13 @@
30 30
        label="ID">
31 31
      </el-table-column>
32 32
      <el-table-column
33
        prop="key"
33
        prop="paramKey"
34 34
        header-align="center"
35 35
        align="center"
36 36
        label="参数名">
37 37
      </el-table-column>
38 38
      <el-table-column
39
        prop="value"
39
        prop="paramValue"
40 40
        header-align="center"
41 41
        align="center"
42 42
        label="参数值">
@ -79,7 +79,7 @@
79 79
    data () {
80 80
      return {
81 81
        dataForm: {
82
          key: ''
82
          paramKey: ''
83 83
        },
84 84
        dataList: [],
85 85
        pageIndex: 1,
@ -106,7 +106,7 @@
106 106
          params: this.$http.adornParams({
107 107
            'page': this.pageIndex,
108 108
            'limit': this.pageSize,
109
            'key': this.dataForm.key
109
            'paramKey': this.dataForm.paramKey
110 110
          })
111 111
        }).then(({data}) => {
112 112
          if (data && data.code === 0) {