220 lines
6.0 KiB
Vue
220 lines
6.0 KiB
Vue
<template>
|
|
<view class="container" style="paddingBottom:1rpx;">
|
|
<u-navbar
|
|
leftIconSize="40rpx"
|
|
leftIconColor="#333333"
|
|
:title="title"
|
|
>
|
|
</u-navbar>
|
|
<view class="section">
|
|
<view class="section-title">{{ title }}</view>
|
|
<view class="form-view">
|
|
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" label-width="160rpx"
|
|
:labelStyle="{ color: '#333333', fontSize: '30rpx', marginRight: '24rpx' }">
|
|
<u-form-item label="字典名称" prop="dictName" required>
|
|
<u--input v-model="form.dictName" placeholder="请输入字典名称"
|
|
inputAlign="left" :customStyle="getInputStyle('dictName')"></u--input>
|
|
</u-form-item>
|
|
|
|
<u-form-item label="字典类型" prop="dictType" required>
|
|
<u--input v-model="form.dictType" placeholder="请输入字典类型"
|
|
inputAlign="left" :customStyle="getInputStyle('dictType')"></u--input>
|
|
</u-form-item>
|
|
|
|
<u-form-item label="状态" prop="statusName" @click="showStatusPicker = true">
|
|
<view class="input-with-arrow">
|
|
<u--input v-model="statusName" readonly placeholder="请选择状态" :customStyle="getInputStyle('statusName')" disabledColor="#ffffff" inputAlign="left"></u--input>
|
|
<text class="arrow-icon">▼</text>
|
|
</view>
|
|
</u-form-item>
|
|
|
|
<u-form-item label="备注" prop="remark" labelPosition="top">
|
|
<u--textarea v-model="form.remark" placeholder="请输入备注" autoHeight inputAlign="left" count
|
|
maxlength="500" style="border: 2rpx solid #dcdfe6 !important; height: 160rpx;"></u--textarea>
|
|
</u-form-item>
|
|
</u--form>
|
|
<view class="form-btn">
|
|
<u-button type="primary" text="提交" @click="submit"></u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<u-toast ref="uToast"></u-toast>
|
|
<u-picker itemHeight="88" :show="showStatusPicker" :columns="statusList" keyName="dictLabel" @cancel="showStatusPicker = false"
|
|
@confirm="handleStatusConfirm"></u-picker>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, reactive, getCurrentInstance } from 'vue'
|
|
import { getType, addType, updateType } from '@/api/system/dict/type'
|
|
import { getDicts } from "@/api/system/dict/data"
|
|
import { onLoad } from "@dcloudio/uni-app"
|
|
|
|
const { proxy } = getCurrentInstance()
|
|
const statusList = ref([])
|
|
const title = ref('添加字典类型')
|
|
const showStatusPicker = ref(false)
|
|
const statusName = ref('')
|
|
const inputBaseStyle = {
|
|
background: '#ffffff',
|
|
border: '2rpx solid #dcdfe6',
|
|
borderRadius: '8rpx',
|
|
padding: '0 24rpx',
|
|
height: '68rpx',
|
|
width: '100%',
|
|
boxSizing: 'border-box'
|
|
}
|
|
const errorFields = ref([])
|
|
const inputErrorStyle = {
|
|
background: '#fef0f0',
|
|
border: '2rpx solid #f56c6c',
|
|
borderRadius: '8rpx',
|
|
padding: '0 24rpx',
|
|
height: '68rpx',
|
|
width: '100%',
|
|
boxSizing: 'border-box'
|
|
}
|
|
const getInputStyle = (field) => {
|
|
return errorFields.value.includes(field) ? inputErrorStyle : inputBaseStyle
|
|
}
|
|
|
|
const form = reactive({
|
|
dictId: undefined,
|
|
dictName: undefined,
|
|
dictType: undefined,
|
|
status: '0',
|
|
remark: undefined
|
|
})
|
|
|
|
const rules = {
|
|
dictName: [
|
|
{ required: true, message: '字典名称不能为空', trigger: ['blur', 'change'] }
|
|
],
|
|
dictType: [
|
|
{ required: true, message: '字典类型不能为空', trigger: ['blur', 'change'] }
|
|
]
|
|
}
|
|
|
|
onLoad((option) => {
|
|
getDicts('sys_normal_disable').then(res => {
|
|
statusList.value = [res.data]
|
|
})
|
|
|
|
if (option.id) {
|
|
title.value = '修改字典类型'
|
|
getDetail(option.id)
|
|
} else {
|
|
// 新增时默认显示状态
|
|
setTimeout(() => {
|
|
updateStatusName()
|
|
}, 100)
|
|
}
|
|
})
|
|
|
|
// 获取详情
|
|
function getDetail(id) {
|
|
getType(id).then(res => {
|
|
Object.assign(form, res.data)
|
|
updateStatusName()
|
|
})
|
|
}
|
|
|
|
// 更新状态名称显示
|
|
function updateStatusName() {
|
|
if (statusList.value.length > 0 && statusList.value[0].length > 0) {
|
|
const item = statusList.value[0].find(v => v.dictValue === form.status)
|
|
statusName.value = item ? item.dictLabel : ''
|
|
}
|
|
}
|
|
|
|
// 状态选择确认
|
|
function handleStatusConfirm(e) {
|
|
form.status = e.value[0].dictValue
|
|
statusName.value = e.value[0].dictLabel
|
|
showStatusPicker.value = false
|
|
}
|
|
|
|
// 提交
|
|
function submit() {
|
|
console.log('submit 被调用')
|
|
errorFields.value = []
|
|
proxy.$refs['uForm'].validate().then(() => {
|
|
console.log('验证通过', form.dictId)
|
|
if (form.dictId) {
|
|
updateType(form).then(() => {
|
|
console.log('修改成功,将跳转')
|
|
proxy.$refs['uToast'].show({
|
|
message: '修改成功', complete() {
|
|
console.log('complete 被调用,执行跳转')
|
|
uni.navigateTo({ url: `/pages_mine/pages/system/dict/list` })
|
|
}
|
|
})
|
|
})
|
|
} else {
|
|
addType(form).then(() => {
|
|
console.log('新增成功,将跳转')
|
|
proxy.$refs['uToast'].show({
|
|
message: '新增成功', complete() {
|
|
console.log('complete 被调用,执行跳转')
|
|
uni.navigateTo({ url: `/pages_mine/pages/system/dict/list` })
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}).catch(errors => {
|
|
if (errors && errors.length > 0) {
|
|
errorFields.value = errors.map(err => err.field)
|
|
}
|
|
console.log('验证失败')
|
|
proxy.$modal.msgError('请填写完整信息')
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.section {
|
|
margin: 24rpx;
|
|
padding: 0;
|
|
background-color: #fff;
|
|
border-radius: 16rpx;
|
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.08);
|
|
overflow: hidden;
|
|
|
|
.section-title {
|
|
padding: 16rpx 24rpx;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: #ffffff;
|
|
line-height: 1.2;
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&::before {
|
|
content: '';
|
|
width: 6rpx;
|
|
height: 28rpx;
|
|
background: #ffffff;
|
|
border-radius: 3rpx;
|
|
margin-right: 12rpx;
|
|
}
|
|
}
|
|
|
|
.form-view {
|
|
padding: 24rpx;
|
|
|
|
|
|
|
|
.form-btn {
|
|
padding-top: 16rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
|