代码提交
This commit is contained in:
parent
652eaa7200
commit
9c94734322
|
|
@ -329,11 +329,10 @@ service.interceptors.response.use(
|
||||||
} else if (code === 500) {
|
} else if (code === 500) {
|
||||||
Message({ message: msg, type: 'error' })
|
Message({ message: msg, type: 'error' })
|
||||||
if(res.data.data){
|
if(res.data.data){
|
||||||
return Promise.reject(new Error(`${msg}:${JSON.stringify(res.data.data)}`));
|
return Promise.reject(`${msg}:${JSON.stringify(res.data.data)}`);
|
||||||
}else{
|
}else{
|
||||||
return Promise.reject(new Error(msg));
|
return Promise.reject(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (code === 601) {
|
} else if (code === 601) {
|
||||||
Message({ message: msg, type: 'warning' })
|
Message({ message: msg, type: 'warning' })
|
||||||
return Promise.reject('error')
|
return Promise.reject('error')
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@ export default {
|
||||||
{ required: true, message: '档案名称不能为空', trigger: 'blur' }
|
{ required: true, message: '档案名称不能为空', trigger: 'blur' }
|
||||||
],
|
],
|
||||||
fileList: [
|
fileList: [
|
||||||
{ validator: (rule, value, callback) => {
|
{required: true, validator: (rule, value, callback) => {
|
||||||
if (!Array.isArray(this.fileList) || this.fileList.length === 0) {
|
if (!Array.isArray(this.fileList) || this.fileList.length === 0) {
|
||||||
callback(new Error('请上传附件文件'))
|
callback(new Error('请上传附件文件'))
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ export const formLabel = [
|
||||||
isShow: false, // 是否展示label
|
isShow: false, // 是否展示label
|
||||||
f_type: 'ipt',
|
f_type: 'ipt',
|
||||||
f_label: '单项工程名称',
|
f_label: '单项工程名称',
|
||||||
f_model: 'proName',
|
f_model: 'singleProName',
|
||||||
f_max: 32,
|
f_max: 32,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ export const formLabel = [
|
||||||
isShow: false, // 是否展示label
|
isShow: false, // 是否展示label
|
||||||
f_type: 'ipt',
|
f_type: 'ipt',
|
||||||
f_label: '单项工程名称',
|
f_label: '单项工程名称',
|
||||||
f_model: 'proName',
|
f_model: 'singleProName',
|
||||||
f_max: 32,
|
f_max: 32,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -38,12 +38,11 @@
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="dateRange"
|
v-model="dateRange"
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
value-format="yyyy-MM-dd HH:mm:ss"
|
value-format="yyyy-MM-dd"
|
||||||
type="daterange"
|
type="daterange"
|
||||||
range-separator="-"
|
range-separator="-"
|
||||||
start-placeholder="开始日期"
|
start-placeholder="开始日期"
|
||||||
end-placeholder="结束日期"
|
end-placeholder="结束日期"
|
||||||
:default-time="['00:00:00', '23:59:59']"
|
|
||||||
></el-date-picker>
|
></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
|
|
@ -85,7 +84,7 @@
|
||||||
v-hasPermi="['monitor:logininfor:unlock']"
|
v-hasPermi="['monitor:logininfor:unlock']"
|
||||||
>解锁</el-button>
|
>解锁</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<!-- <el-col :span="1.5">
|
||||||
<el-button
|
<el-button
|
||||||
type="warning"
|
type="warning"
|
||||||
plain
|
plain
|
||||||
|
|
@ -94,7 +93,7 @@
|
||||||
@click="handleExport"
|
@click="handleExport"
|
||||||
v-hasPermi="['monitor:logininfor:export']"
|
v-hasPermi="['monitor:logininfor:export']"
|
||||||
>导出</el-button>
|
>导出</el-button>
|
||||||
</el-col>
|
</el-col>-->
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
|
|
@ -174,12 +173,23 @@ export default {
|
||||||
/** 查询登录日志列表 */
|
/** 查询登录日志列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
list(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
||||||
|
// 构建查询参数
|
||||||
|
const params = {
|
||||||
|
...this.queryParams
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加时间范围参数(直接使用 beginTime 和 endTime)
|
||||||
|
if (this.dateRange && this.dateRange.length === 2) {
|
||||||
|
params.beginTime = this.dateRange[0]
|
||||||
|
params.endTime = this.dateRange[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
list(params).then(response => {
|
||||||
this.list = response.rows
|
this.list = response.rows
|
||||||
this.total = response.total
|
this.total = response.total
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
})
|
||||||
)
|
|
||||||
},
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
|
|
|
||||||
|
|
@ -62,12 +62,11 @@
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="dateRange"
|
v-model="dateRange"
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
value-format="yyyy-MM-dd HH:mm:ss"
|
value-format="yyyy-MM-dd"
|
||||||
type="daterange"
|
type="daterange"
|
||||||
range-separator="-"
|
range-separator="-"
|
||||||
start-placeholder="开始日期"
|
start-placeholder="开始日期"
|
||||||
end-placeholder="结束日期"
|
end-placeholder="结束日期"
|
||||||
:default-time="['00:00:00', '23:59:59']"
|
|
||||||
></el-date-picker>
|
></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
|
|
@ -98,7 +97,7 @@
|
||||||
v-hasPermi="['monitor:operlog:remove']"
|
v-hasPermi="['monitor:operlog:remove']"
|
||||||
>清空</el-button>
|
>清空</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<!-- <el-col :span="1.5">
|
||||||
<el-button
|
<el-button
|
||||||
type="warning"
|
type="warning"
|
||||||
plain
|
plain
|
||||||
|
|
@ -107,7 +106,7 @@
|
||||||
@click="handleExport"
|
@click="handleExport"
|
||||||
v-hasPermi="['monitor:operlog:export']"
|
v-hasPermi="['monitor:operlog:export']"
|
||||||
>导出</el-button>
|
>导出</el-button>
|
||||||
</el-col>
|
</el-col>-->
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
|
|
@ -253,12 +252,23 @@ export default {
|
||||||
/** 查询登录日志 */
|
/** 查询登录日志 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
list(this.addDateRange(this.queryParams, this.dateRange)).then( response => {
|
|
||||||
|
// 构建查询参数
|
||||||
|
const params = {
|
||||||
|
...this.queryParams
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加时间范围参数(直接使用 beginTime 和 endTime)
|
||||||
|
if (this.dateRange && this.dateRange.length === 2) {
|
||||||
|
params.beginTime = this.dateRange[0]
|
||||||
|
params.endTime = this.dateRange[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
list(params).then(response => {
|
||||||
this.list = response.rows
|
this.list = response.rows
|
||||||
this.total = response.total
|
this.total = response.total
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
})
|
||||||
)
|
|
||||||
},
|
},
|
||||||
// 操作日志类型字典翻译
|
// 操作日志类型字典翻译
|
||||||
typeFormat(row, column) {
|
typeFormat(row, column) {
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
>
|
>
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
@click="handleBackups"
|
@click="handleBackups"
|
||||||
class="filter-item"
|
class="filter-item"
|
||||||
style="margin-left: 20px"
|
style="margin-left: 20px"
|
||||||
|
|
@ -103,7 +103,7 @@
|
||||||
v-hasPermi="['error:log:download']"
|
v-hasPermi="['error:log:download']"
|
||||||
>
|
>
|
||||||
备份
|
备份
|
||||||
</el-button>
|
</el-button>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-table
|
<el-table
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@
|
||||||
>
|
>
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
@click="handleBackups"
|
@click="handleBackups"
|
||||||
class="filter-item"
|
class="filter-item"
|
||||||
style="margin-left: 20px"
|
style="margin-left: 20px"
|
||||||
|
|
@ -111,7 +111,7 @@
|
||||||
v-hasPermi="['business:log:download']"
|
v-hasPermi="['business:log:download']"
|
||||||
>
|
>
|
||||||
备份
|
备份
|
||||||
</el-button>
|
</el-button>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-table
|
<el-table
|
||||||
|
|
|
||||||
|
|
@ -115,9 +115,11 @@
|
||||||
//重置
|
//重置
|
||||||
resetFilter() {
|
resetFilter() {
|
||||||
this.listQuery={
|
this.listQuery={
|
||||||
rangeDate:[],
|
startTime:'',
|
||||||
|
endTime:'',
|
||||||
type:'1',
|
type:'1',
|
||||||
},
|
};
|
||||||
|
this.rangeDate = [];
|
||||||
this.handleFilter()
|
this.handleFilter()
|
||||||
},
|
},
|
||||||
getInitData() {
|
getInitData() {
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
>
|
>
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
@click="handleBackups"
|
@click="handleBackups"
|
||||||
class="filter-item"
|
class="filter-item"
|
||||||
style="margin-left: 20px"
|
style="margin-left: 20px"
|
||||||
|
|
@ -101,7 +101,7 @@
|
||||||
v-hasPermi="['system:log:download']"
|
v-hasPermi="['system:log:download']"
|
||||||
>
|
>
|
||||||
备份
|
备份
|
||||||
</el-button>
|
</el-button>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-table
|
<el-table
|
||||||
|
|
|
||||||
|
|
@ -488,7 +488,8 @@ export default {
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const roleIds = row.roleId || this.ids
|
const roleIds = row.roleId || this.ids
|
||||||
this.$modal.confirm('是否确认删除角色编号为"' + roleIds + '"的数据项?').then(function () {
|
const roleName = row.roleName
|
||||||
|
this.$modal.confirm('是否确认删除角色"' + roleName + '"的数据项?').then(function () {
|
||||||
return delRole(roleIds)
|
return delRole(roleIds)
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList()
|
this.getList()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue