|
|
|
@ -13,10 +13,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="参数名" prop="paramName" ></el-table-column>
|
|
|
|
|
<el-table-column label="参数键" prop="paramKey" width="200"></el-table-column>
|
|
|
|
|
<el-table-column label="参数值" prop="paramValue" width="100"></el-table-column>
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="参数名" prop="paramName"></el-table-column>
|
|
|
|
|
<el-table-column label="参数键" prop="paramKey" width="200"></el-table-column>
|
|
|
|
|
<el-table-column label="参数值" prop="paramValue" width="100"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="参数状态">-->
|
|
|
|
|
<!--<template slot-scope="scope">-->
|
|
|
|
|
<!--<el-tag :type="scope.row.paramStatus | paramStatusFilterType">{{-->
|
|
|
|
@ -175,8 +175,6 @@ export default {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
console.log('------------')
|
|
|
|
|
console.log(response)
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -214,15 +212,17 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
formSubmit() {
|
|
|
|
|
if (!Number.isInteger(parseInt(this.formData.paramValue))) {
|
|
|
|
|
this.$message.warning("参数值必须为数字");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.formLoading = true;
|
|
|
|
|
let data = Object.assign({}, this.formData);
|
|
|
|
|
console.log('------2------')
|
|
|
|
|
data.paramValue = data.paramValue.trim();
|
|
|
|
|
systemParamConfigSave(data, this.formName)
|
|
|
|
|
.then(response => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.formLoading = false;
|
|
|
|
|
if (response.code !== 20000) {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|