2 changed files with 280 additions and 0 deletions
@ -0,0 +1,148 @@ |
|||||
|
<template> |
||||
|
<el-dialog :visible.sync="visible" :title="!dataForm.id ? $t('add') : $t('update')" :close-on-click-modal="false" :close-on-press-escape="false"> |
||||
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" :label-width="$i18n.locale === 'en-US' ? '120px' : '120px'"> |
||||
|
<el-form-item label="功能名称" prop="functionName"> |
||||
|
<el-input v-model="dataForm.functionName" placeholder="功能名称"></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="功能类型" prop="functionGroup"> |
||||
|
<el-select v-model="dataForm.functionGroup" |
||||
|
placeholder="请选择" clearable> |
||||
|
<el-option v-for="item in functionGroupList" |
||||
|
:key="item.dictValue" |
||||
|
:label="item.dictName" |
||||
|
:value="item.dictValue"> |
||||
|
</el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="上架状态" prop="shoppingStatus"> |
||||
|
<el-select v-model="dataForm.shoppingStatus" |
||||
|
placeholder="请选择" clearable> |
||||
|
<el-option v-for="item in shoppingStatusList" |
||||
|
:key="item.dictValue" |
||||
|
:label="item.dictName" |
||||
|
:value="item.dictValue"> |
||||
|
</el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
|
||||
|
<el-form-item label="功能说明" prop="functionExplain"> |
||||
|
<el-input v-model="dataForm.functionExplain" placeholder="功能说明" type="textarea"></el-input> |
||||
|
</el-form-item> |
||||
|
|
||||
|
</el-form> |
||||
|
<template slot="footer"> |
||||
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button> |
||||
|
<el-button type="primary" @click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button> |
||||
|
</template> |
||||
|
</el-dialog> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import debounce from 'lodash/debounce' |
||||
|
import { getIconList } from '@/utils' |
||||
|
export default { |
||||
|
data () { |
||||
|
return { |
||||
|
visible: false, |
||||
|
iconList: [], |
||||
|
iconListVisible: false, |
||||
|
dataForm: { |
||||
|
functionName: '', |
||||
|
functionGroup: 0, |
||||
|
shoppingStatus: 1, |
||||
|
functionExplain: '' |
||||
|
}, |
||||
|
functionGroupList: [ |
||||
|
{ |
||||
|
'dictName': '默认功能', |
||||
|
'dictValue': 0 |
||||
|
}, { |
||||
|
'dictName': '定制功能', |
||||
|
'dictValue': 1 |
||||
|
} |
||||
|
], |
||||
|
shoppingStatusList: [ |
||||
|
{ |
||||
|
'dictName': '下架', |
||||
|
'dictValue': 0 |
||||
|
}, { |
||||
|
'dictName': '上架', |
||||
|
'dictValue': 1 |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
}, |
||||
|
created () { |
||||
|
this.queryFunctionList() |
||||
|
}, |
||||
|
computed: { |
||||
|
dataRule () { |
||||
|
return { |
||||
|
functionName: [ |
||||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' } |
||||
|
], |
||||
|
functionGroup: [ |
||||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' } |
||||
|
], |
||||
|
shoppingStatus: [ |
||||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' } |
||||
|
], |
||||
|
functionExplain: [ |
||||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' } |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
init () { |
||||
|
this.visible = true |
||||
|
this.iconList = getIconList() |
||||
|
this.$nextTick(() => { |
||||
|
this.$refs['dataForm'].resetFields() |
||||
|
if (this.dataForm.id) { |
||||
|
this.getInfo() |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
// 获取信息 |
||||
|
getInfo () { |
||||
|
this.$http.get(`/oper/customize/function/${this.dataForm.id}`).then(({ data: res }) => { |
||||
|
if (res.code !== 0) { |
||||
|
return this.$message.error(res.msg) |
||||
|
} |
||||
|
this.dataForm = { |
||||
|
...this.dataForm, |
||||
|
...res.data |
||||
|
} |
||||
|
}).catch(() => {}) |
||||
|
}, |
||||
|
// 图标, 选中 |
||||
|
iconListCurrentChangeHandle (icon) { |
||||
|
this.dataForm.functionIcon = icon |
||||
|
this.iconListVisible = false |
||||
|
}, |
||||
|
// 表单提交 |
||||
|
dataFormSubmitHandle: debounce(function () { |
||||
|
this.$refs['dataForm'].validate((valid) => { |
||||
|
if (!valid) { |
||||
|
return false |
||||
|
} |
||||
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/oper/customize/function/', this.dataForm).then(({ data: res }) => { |
||||
|
if (res.code !== 0) { |
||||
|
return this.$message.error(res.msg) |
||||
|
} |
||||
|
this.$message({ |
||||
|
message: this.$t('prompt.success'), |
||||
|
type: 'success', |
||||
|
duration: 500, |
||||
|
onClose: () => { |
||||
|
this.visible = false |
||||
|
this.$emit('refreshDataList') |
||||
|
} |
||||
|
}) |
||||
|
}).catch(() => {}) |
||||
|
}) |
||||
|
}, 1000, { 'leading': true, 'trailing': false }) |
||||
|
} |
||||
|
} |
||||
|
</script> |
@ -0,0 +1,132 @@ |
|||||
|
<template> |
||||
|
<el-card shadow="never" class="aui-card--fill"> |
||||
|
<div class="mod-sys__params"> |
||||
|
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()"> |
||||
|
<el-form-item label="功能名称"> |
||||
|
<el-input v-model="dataForm.functionName" :placeholder="$t('params.paramCode')" clearable></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="功能类型"> |
||||
|
<el-select v-model="dataForm.functionGroup" |
||||
|
placeholder="全部" clearable> |
||||
|
<el-option v-for="item in functionGroupList" |
||||
|
:key="item.dictValue" |
||||
|
:label="item.dictName" |
||||
|
:value="item.dictValue"> |
||||
|
</el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="上架状态"> |
||||
|
<el-select v-model="dataForm.shoppingStatus" |
||||
|
placeholder="全部" clearable> |
||||
|
<el-option v-for="item in shoppingStatusList" |
||||
|
:key="item.dictValue" |
||||
|
:label="item.dictName" |
||||
|
:value="item.dictValue"> |
||||
|
</el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button @click="getDataList()">{{ $t('query') }}</el-button> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button v-if="$hasPermission('sys:params:save')" type="primary" @click="addOrUpdateHandle()">{{ $t('add') }}</el-button> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button v-if="$hasPermission('sys:params:delete')" type="danger" @click="deleteHandle()">{{ $t('deleteBatch') }}</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<el-table v-loading="dataListLoading" :data="dataList" border @selection-change="dataListSelectionChangeHandle" style="width: 100%;"> |
||||
|
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column> |
||||
|
<el-table-column prop="functionName" label="功能名称" header-align="center" align="center"></el-table-column> |
||||
|
<el-table-column prop="functionGroup" label="功能类型" :formatter="groupFormat" header-align="center" align="center"></el-table-column> |
||||
|
<el-table-column prop="shoppingStatus" label="上架状态" :formatter="stateFormat" header-align="center" align="center"></el-table-column> |
||||
|
<el-table-column prop="functionExplain" label="功能说明" header-align="center" align="center"></el-table-column> |
||||
|
<el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="150"> |
||||
|
<template slot-scope="scope"> |
||||
|
<el-button v-if="$hasPermission('sys:params:update')" type="text" size="small" @click="addOrUpdateHandle(scope.row.id)">{{$t('update')}} |
||||
|
</el-button> |
||||
|
<el-button v-if="$hasPermission('sys:params:delete')" type="text" size="small" @click="deleteHandle(scope.row.id)">{{$t('delete')}} |
||||
|
</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
<el-pagination |
||||
|
:current-page="page" |
||||
|
:page-sizes="[10, 20, 50, 100]" |
||||
|
:page-size="limit" |
||||
|
:total="total" |
||||
|
layout="total, sizes, prev, pager, next, jumper" |
||||
|
@size-change="pageSizeChangeHandle" |
||||
|
@current-change="pageCurrentChangeHandle"> |
||||
|
</el-pagination> |
||||
|
<!-- 弹窗, 新增 / 修改 --> |
||||
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update> |
||||
|
</div> |
||||
|
</el-card> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import mixinViewModule from '@/mixins/view-module' |
||||
|
import AddOrUpdate from './function-add-or-update' |
||||
|
export default { |
||||
|
name: 'function', |
||||
|
mixins: [mixinViewModule], |
||||
|
data () { |
||||
|
return { |
||||
|
mixinViewModuleOptions: { |
||||
|
getDataListURL: '/oper/customize/function/page', |
||||
|
getDataListIsPage: true, |
||||
|
deleteURL: '/oper/customize/function', |
||||
|
deleteIsBatch: true |
||||
|
}, |
||||
|
dataForm: { |
||||
|
functionName: '', |
||||
|
functionGroup: '', |
||||
|
shoppingStatus: '' |
||||
|
}, |
||||
|
functionGroupList: [ |
||||
|
{ |
||||
|
'dictName': '默认功能', |
||||
|
'dictValue': '0' |
||||
|
}, { |
||||
|
'dictName': '定制功能', |
||||
|
'dictValue': '1' |
||||
|
} |
||||
|
], |
||||
|
shoppingStatusList: [ |
||||
|
{ |
||||
|
'dictName': '下架', |
||||
|
'dictValue': '0' |
||||
|
}, { |
||||
|
'dictName': '上架', |
||||
|
'dictValue': '1' |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
}, |
||||
|
components: { |
||||
|
AddOrUpdate |
||||
|
}, |
||||
|
|
||||
|
methods: { |
||||
|
groupFormat (row, column) { |
||||
|
if (row.functionGroup === 0) { |
||||
|
return '默认功能' |
||||
|
} else { |
||||
|
return '定制功能' |
||||
|
} |
||||
|
}, |
||||
|
stateFormat (row, column) { |
||||
|
if (row.shoppingStatus === 0) { |
||||
|
return '下架' |
||||
|
} else { |
||||
|
return '上架' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
|
||||
|
</style> |
Loading…
Reference in new issue