Browse Source

日志筛选项修改

newStyle
douzhuo 2 years ago
parent
commit
c5cb84b112
2 changed files with 27 additions and 7 deletions
  1. +25
    -5
      src/const/crud/admin/log.js
  2. +2
    -2
      vue.config.js

+ 25
- 5
src/const/crud/admin/log.js View File

@@ -43,11 +43,31 @@ export const tableOption = {
{
label: "操作类型",
prop: "type",
formatter: val => {
let arr = ['新增管理', '编辑项目', '删除项目', '新增公司', '编辑公司', '删除公司', '新增代理商', '系统运营']
console.log(val, 'dsadjaskljdkasl')
return arr[Number(val.type)] || ''
},
dicData: [{
label: '新增管理',
value: "0"
}, {
label: '编辑项目',
value: "1"
}, {
label: '删除项目',
value: "2"
}, {
label: '新增公司',
value: "3"
}, {
label: '编辑公司',
value: "4"
}, {
label: '删除公司',
value: "5"
}, {
label: '新增代理商',
value: "6"
}, {
label: '系统运营',
value: '7'
}]
},
{
label: '操作内容',


+ 2
- 2
vue.config.js View File

@@ -4,9 +4,9 @@
*/
// const url = 'http://192.168.31.161:9999' //长龙
// const url = 'http://192.168.31.147:9999' // 胜浩
// const url = 'https://zanyong.hfju.com' // 正式域名
const url = 'https://zanyong.hfju.com' // 正式域名
// const url = 'http://127.0.0.1:9999' // 本地
const url = 'http://81.70.55.170:9999' // 新测试
// const url = 'http://81.70.55.170:9999' // 新测试
// const url = 'http://82.156.35.22:9999' // 新正式ip
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']


Loading…
Cancel
Save