You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.1 KiB
125 lines
4.1 KiB
5 years ago
|
<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' : '80px'">
|
||
|
<el-form-item label="统计名称" prop="totalName">
|
||
|
<el-input v-model="dataForm.totalName" placeholder="统计名称"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="统计类型" prop="totalType">
|
||
|
<el-input v-model="dataForm.totalType" placeholder="统计类型(自定义)"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="统计方式" prop="totalStyle">
|
||
|
<el-select v-model="dataForm.totalStyle" placeholder="统计方式" clearable>
|
||
|
<el-option label="其他" :value="0"></el-option>
|
||
|
<el-option label="统计次数" :value="1"></el-option>
|
||
|
<el-option label="统计人数" :value="2"></el-option>
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<el-form-item prop="sort" label="排序">
|
||
|
<el-input-number
|
||
|
v-model="dataForm.sort"
|
||
|
controls-position="right"
|
||
|
:min="0"
|
||
|
label="排序"
|
||
|
></el-input-number>
|
||
|
</el-form-item>
|
||
|
<el-form-item prop="autoFlag"
|
||
|
label="自动计算"
|
||
|
size="mini">
|
||
|
<el-radio-group v-model="dataForm.autoFlag">
|
||
|
<el-radio label="0">否</el-radio>
|
||
|
<el-radio label="1">是</el-radio>
|
||
|
</el-radio-group>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
<template slot="footer">
|
||
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button>
|
||
|
<el-button type="primary" :disabled="buttonFlag" @click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button>
|
||
|
</template>
|
||
|
</el-dialog>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import debounce from 'lodash/debounce'
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
visible: false,
|
||
|
buttonFlag : false,
|
||
|
dataForm: {
|
||
|
id: '',
|
||
|
totalType: '',
|
||
|
totalName: '',
|
||
|
totalStyle: '',
|
||
|
sort: 0,
|
||
|
autoFlag: '0'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
dataRule () {
|
||
|
return {
|
||
|
totalName: [
|
||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
],
|
||
|
totalStyle: [
|
||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
],
|
||
|
sort: [
|
||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
],
|
||
|
autoFlag: [
|
||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
init () {
|
||
|
this.visible = true
|
||
|
this.$nextTick(() => {
|
||
|
this.$refs['dataForm'].resetFields()
|
||
|
if (this.dataForm.id) {
|
||
|
this.getInfo()
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
// 获取信息
|
||
|
getInfo () {
|
||
|
this.$http.get(`/workRecord/totalconfig/${this.dataForm.id}`).then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.dataForm = {
|
||
|
...this.dataForm,
|
||
|
...res.data
|
||
|
}
|
||
|
}).catch(() => {})
|
||
|
},
|
||
|
// 表单提交
|
||
|
dataFormSubmitHandle: debounce(function () {
|
||
|
this.$refs['dataForm'].validate((valid) => {
|
||
|
if (!valid) {
|
||
|
return false
|
||
|
}
|
||
|
this.buttonFlag = true
|
||
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/workRecord/totalconfig/', this.dataForm).then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.buttonFlag = false
|
||
|
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>
|