add
This commit is contained in:
parent
31b52910c1
commit
ba2e038e2f
109
src/components/generateForm/index.vue
Normal file
109
src/components/generateForm/index.vue
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<template>
|
||||||
|
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="8" v-for="(item, index) in config" :key="index">
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 0" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<el-input v-model="formData[item.value]" clearable :placeholder="'请输入' + item.label" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 1" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<el-date-picker class="flex-1 !flex" v-model="formData[item.value]" clearable type="date"
|
||||||
|
value-format="YYYY-MM-DD" :placeholder="'请选择' + item.label">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 2" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<el-select v-model="formData[item.value]" :placeholder="'请选择' + item.label" class="flex-1">
|
||||||
|
<el-option :label="item.name" :value="item.id" v-for="item in deptList">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 3" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<el-input v-model="formData[item.value + '_name']" readonly :placeholder="'点击选择' + item.label"
|
||||||
|
@click="userclick(item.value)" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 4" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<el-input v-model="formData[item.value]" clearable type="textarea" :placeholder="'请输入' + item.label" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="item.label" v-if="item.type == 5" :prop="item.isRequired ? item.value : ''">
|
||||||
|
<uploadAnnex :form-data="formData"></uploadAnnex>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div v-if="showPerDialog">
|
||||||
|
<personnelselector ref="personnel" @confirm="submituser" type="1">
|
||||||
|
</personnelselector>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup >
|
||||||
|
import uploadAnnex from './../uploadAnnex/index.vue'
|
||||||
|
import { ref, reactive } from 'vue'
|
||||||
|
import { deptLists } from "@/api/org/department";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
config: {
|
||||||
|
type: Array,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
const deptList = ref([])
|
||||||
|
const getDeptList = async () => {
|
||||||
|
const res = await deptLists()
|
||||||
|
deptList.value = res.lists
|
||||||
|
}
|
||||||
|
getDeptList()
|
||||||
|
const formData = reactive({})
|
||||||
|
|
||||||
|
// 表单验证
|
||||||
|
const formRules = reactive({
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
const setRules = () => {
|
||||||
|
props.config.forEach(item => {
|
||||||
|
if (item.isRequired) {
|
||||||
|
formRules[item.value] = [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: "请输入" + item.label,
|
||||||
|
trigger: ["blur"],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
setRules()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const showPerDialog = ref(false)
|
||||||
|
const personnel = ref(null)
|
||||||
|
|
||||||
|
let value
|
||||||
|
const userclick = async (val) => {
|
||||||
|
showPerDialog.value = true
|
||||||
|
value = val
|
||||||
|
await nextTick()
|
||||||
|
personnel.value.open()
|
||||||
|
}
|
||||||
|
const submituser = (e) => {
|
||||||
|
formData[value + '_name'] = e.name
|
||||||
|
formData[value] = e.id
|
||||||
|
showPerDialog.value = false
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
127
src/utils/pinyin.js
Normal file
127
src/utils/pinyin.js
Normal file
File diff suppressed because one or more lines are too long
@ -1,14 +1,14 @@
|
|||||||
import { isObject } from '@vue/shared'
|
import { isObject } from "@vue/shared";
|
||||||
import { cloneDeep } from 'lodash'
|
import { cloneDeep } from "lodash";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 添加单位
|
* @description 添加单位
|
||||||
* @param {String | Number} value 值 100
|
* @param {String | Number} value 值 100
|
||||||
* @param {String} unit 单位 px em rem
|
* @param {String} unit 单位 px em rem
|
||||||
*/
|
*/
|
||||||
export const addUnit = (value: string | number, unit = 'px') => {
|
export const addUnit = (value: string | number, unit = "px") => {
|
||||||
return !Object.is(Number(value), NaN) ? `${value}${unit}` : value
|
return !Object.is(Number(value), NaN) ? `${value}${unit}` : value;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 添加单位
|
* @description 添加单位
|
||||||
@ -16,8 +16,8 @@ export const addUnit = (value: string | number, unit = 'px') => {
|
|||||||
* @return {Boolean}
|
* @return {Boolean}
|
||||||
*/
|
*/
|
||||||
export const isEmpty = (value: unknown) => {
|
export const isEmpty = (value: unknown) => {
|
||||||
return value == null && typeof value == 'undefined'
|
return value == null && typeof value == "undefined";
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 树转数组,队列实现广度优先遍历
|
* @description 树转数组,队列实现广度优先遍历
|
||||||
@ -25,22 +25,22 @@ export const isEmpty = (value: unknown) => {
|
|||||||
* @param {Object} props `{ children: 'children' }`
|
* @param {Object} props `{ children: 'children' }`
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export const treeToArray = (data: any[], props = { children: 'children' }) => {
|
export const treeToArray = (data: any[], props = { children: "children" }) => {
|
||||||
data = cloneDeep(data)
|
data = cloneDeep(data);
|
||||||
const { children } = props
|
const { children } = props;
|
||||||
const newData = []
|
const newData = [];
|
||||||
const queue: any[] = []
|
const queue: any[] = [];
|
||||||
data.forEach((child: any) => queue.push(child))
|
data.forEach((child: any) => queue.push(child));
|
||||||
while (queue.length) {
|
while (queue.length) {
|
||||||
const item: any = queue.shift()
|
const item: any = queue.shift();
|
||||||
if (item[children]) {
|
if (item[children]) {
|
||||||
item[children].forEach((child: any) => queue.push(child))
|
item[children].forEach((child: any) => queue.push(child));
|
||||||
delete item[children]
|
delete item[children];
|
||||||
}
|
|
||||||
newData.push(item)
|
|
||||||
}
|
}
|
||||||
return newData
|
newData.push(item);
|
||||||
}
|
}
|
||||||
|
return newData;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 数组转
|
* @description 数组转
|
||||||
@ -49,40 +49,40 @@ export const treeToArray = (data: any[], props = { children: 'children' }) => {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export const arrayToTree = (
|
export const arrayToTree = (
|
||||||
data: any[],
|
data: any[],
|
||||||
props = { id: 'id', parentId: 'pid', children: 'children' }
|
props = { id: "id", parentId: "pid", children: "children" }
|
||||||
) => {
|
) => {
|
||||||
data = cloneDeep(data)
|
data = cloneDeep(data);
|
||||||
const { id, parentId, children } = props
|
const { id, parentId, children } = props;
|
||||||
const result: any[] = []
|
const result: any[] = [];
|
||||||
const map = new Map()
|
const map = new Map();
|
||||||
data.forEach((item) => {
|
data.forEach((item) => {
|
||||||
map.set(item[id], item)
|
map.set(item[id], item);
|
||||||
const parent = map.get(item[parentId])
|
const parent = map.get(item[parentId]);
|
||||||
if (parent) {
|
if (parent) {
|
||||||
parent[children] = parent[children] ?? []
|
parent[children] = parent[children] ?? [];
|
||||||
parent[children].push(item)
|
parent[children].push(item);
|
||||||
} else {
|
} else {
|
||||||
result.push(item)
|
result.push(item);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
return result
|
return result;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 获取正确的路经
|
* @description 获取正确的路经
|
||||||
* @param {String} path 数据
|
* @param {String} path 数据
|
||||||
*/
|
*/
|
||||||
export function getNormalPath(path: string) {
|
export function getNormalPath(path: string) {
|
||||||
if (path.length === 0 || !path || path == 'undefined') {
|
if (path.length === 0 || !path || path == "undefined") {
|
||||||
return path
|
return path;
|
||||||
}
|
}
|
||||||
const newPath = path.replace('//', '/')
|
const newPath = path.replace("//", "/");
|
||||||
const length = newPath.length
|
const length = newPath.length;
|
||||||
if (newPath[length - 1] === '/') {
|
if (newPath[length - 1] === "/") {
|
||||||
return newPath.slice(0, length - 1)
|
return newPath.slice(0, length - 1);
|
||||||
}
|
}
|
||||||
return newPath
|
return newPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -91,25 +91,25 @@ export function getNormalPath(path: string) {
|
|||||||
* @return {string} Query语法
|
* @return {string} Query语法
|
||||||
*/
|
*/
|
||||||
export function objectToQuery(params: Record<string, any>): string {
|
export function objectToQuery(params: Record<string, any>): string {
|
||||||
let query = ''
|
let query = "";
|
||||||
for (const props of Object.keys(params)) {
|
for (const props of Object.keys(params)) {
|
||||||
const value = params[props]
|
const value = params[props];
|
||||||
const part = encodeURIComponent(props) + '='
|
const part = encodeURIComponent(props) + "=";
|
||||||
if (!isEmpty(value)) {
|
if (!isEmpty(value)) {
|
||||||
if (isObject(value)) {
|
if (isObject(value)) {
|
||||||
for (const key of Object.keys(value)) {
|
for (const key of Object.keys(value)) {
|
||||||
if (!isEmpty(value[key])) {
|
if (!isEmpty(value[key])) {
|
||||||
const params = props + '[' + key + ']'
|
const params = props + "[" + key + "]";
|
||||||
const subPart = encodeURIComponent(params) + '='
|
const subPart = encodeURIComponent(params) + "=";
|
||||||
query += subPart + encodeURIComponent(value[key]) + '&'
|
query += subPart + encodeURIComponent(value[key]) + "&";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
|
||||||
query += part + encodeURIComponent(value) + '&'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
query += part + encodeURIComponent(value) + "&";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return query.slice(0, -1)
|
}
|
||||||
|
return query.slice(0, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -119,36 +119,36 @@ export function objectToQuery(params: Record<string, any>): string {
|
|||||||
* @return { string }
|
* @return { string }
|
||||||
*/
|
*/
|
||||||
// yyyy:mm:dd|yyyy:mm|yyyy年mm月dd日|yyyy年mm月dd日 hh时MM分等,可自定义组合
|
// yyyy:mm:dd|yyyy:mm|yyyy年mm月dd日|yyyy年mm月dd日 hh时MM分等,可自定义组合
|
||||||
export const timeFormat = (dateTime: number, fmt = 'yyyy-mm-dd') => {
|
export const timeFormat = (dateTime: number, fmt = "yyyy-mm-dd") => {
|
||||||
// 如果为null,则格式化当前时间
|
// 如果为null,则格式化当前时间
|
||||||
if (!dateTime) {
|
if (!dateTime) {
|
||||||
dateTime = Number(new Date())
|
dateTime = Number(new Date());
|
||||||
|
}
|
||||||
|
// 如果dateTime长度为10或者13,则为秒和毫秒的时间戳,如果超过13位,则为其他的时间格式
|
||||||
|
if (dateTime.toString().length == 10) {
|
||||||
|
dateTime *= 1000;
|
||||||
|
}
|
||||||
|
const date = new Date(dateTime);
|
||||||
|
let ret;
|
||||||
|
const opt: any = {
|
||||||
|
"y+": date.getFullYear().toString(), // 年
|
||||||
|
"m+": (date.getMonth() + 1).toString(), // 月
|
||||||
|
"d+": date.getDate().toString(), // 日
|
||||||
|
"h+": date.getHours().toString(), // 时
|
||||||
|
"M+": date.getMinutes().toString(), // 分
|
||||||
|
"s+": date.getSeconds().toString(), // 秒
|
||||||
|
};
|
||||||
|
for (const k in opt) {
|
||||||
|
ret = new RegExp("(" + k + ")").exec(fmt);
|
||||||
|
if (ret) {
|
||||||
|
fmt = fmt.replace(
|
||||||
|
ret[1],
|
||||||
|
ret[1].length == 1 ? opt[k] : opt[k].padStart(ret[1].length, "0")
|
||||||
|
);
|
||||||
}
|
}
|
||||||
// 如果dateTime长度为10或者13,则为秒和毫秒的时间戳,如果超过13位,则为其他的时间格式
|
}
|
||||||
if (dateTime.toString().length == 10) {
|
return fmt;
|
||||||
dateTime *= 1000
|
};
|
||||||
}
|
|
||||||
const date = new Date(dateTime)
|
|
||||||
let ret
|
|
||||||
const opt: any = {
|
|
||||||
'y+': date.getFullYear().toString(), // 年
|
|
||||||
'm+': (date.getMonth() + 1).toString(), // 月
|
|
||||||
'd+': date.getDate().toString(), // 日
|
|
||||||
'h+': date.getHours().toString(), // 时
|
|
||||||
'M+': date.getMinutes().toString(), // 分
|
|
||||||
's+': date.getSeconds().toString() // 秒
|
|
||||||
}
|
|
||||||
for (const k in opt) {
|
|
||||||
ret = new RegExp('(' + k + ')').exec(fmt)
|
|
||||||
if (ret) {
|
|
||||||
fmt = fmt.replace(
|
|
||||||
ret[1],
|
|
||||||
ret[1].length == 1 ? opt[k] : opt[k].padStart(ret[1].length, '0')
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return fmt
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description 获取不重复的id
|
* @description 获取不重复的id
|
||||||
@ -156,10 +156,10 @@ export const timeFormat = (dateTime: number, fmt = 'yyyy-mm-dd') => {
|
|||||||
* @return { String } id
|
* @return { String } id
|
||||||
*/
|
*/
|
||||||
export const getNonDuplicateID = (length = 8) => {
|
export const getNonDuplicateID = (length = 8) => {
|
||||||
let idStr = Date.now().toString(36)
|
let idStr = Date.now().toString(36);
|
||||||
idStr += Math.random().toString(36).substring(3, length)
|
idStr += Math.random().toString(36).substring(3, length);
|
||||||
return idStr
|
return idStr;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将数字转成中文大写
|
* 将数字转成中文大写
|
||||||
@ -167,183 +167,175 @@ export const getNonDuplicateID = (length = 8) => {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export const toChinesNum = (money: any) => {
|
export const toChinesNum = (money: any) => {
|
||||||
// 汉字的数字
|
// 汉字的数字
|
||||||
const cnNums = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']
|
const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
|
||||||
// 基本单位
|
// 基本单位
|
||||||
const cnIntRadice = ['', '拾', '佰', '仟']
|
const cnIntRadice = ["", "拾", "佰", "仟"];
|
||||||
// 对应整数部分扩展单位
|
// 对应整数部分扩展单位
|
||||||
const cnIntUnits = ['', '万', '亿', '兆']
|
const cnIntUnits = ["", "万", "亿", "兆"];
|
||||||
// 对应小数部分单位
|
// 对应小数部分单位
|
||||||
const cnDecUnits = ['角', '分', '毫', '厘']
|
const cnDecUnits = ["角", "分", "毫", "厘"];
|
||||||
// 整数金额时后面跟的字符
|
// 整数金额时后面跟的字符
|
||||||
const cnInteger = '整'
|
const cnInteger = "整";
|
||||||
// 整型完以后的单位
|
// 整型完以后的单位
|
||||||
const cnIntLast = '元'
|
const cnIntLast = "元";
|
||||||
// 最大处理的数字
|
// 最大处理的数字
|
||||||
const maxNum = 999999999999999.9999
|
const maxNum = 999999999999999.9999;
|
||||||
// 金额整数部分
|
// 金额整数部分
|
||||||
let integerNum
|
let integerNum;
|
||||||
// 金额小数部分
|
// 金额小数部分
|
||||||
let decimalNum
|
let decimalNum;
|
||||||
// 输出的中文金额字符串
|
// 输出的中文金额字符串
|
||||||
let chineseStr = ''
|
let chineseStr = "";
|
||||||
// 分离金额后用的数组,预定义
|
// 分离金额后用的数组,预定义
|
||||||
let parts
|
let parts;
|
||||||
if (money == '') {
|
if (money == "") {
|
||||||
return ''
|
return "";
|
||||||
}
|
}
|
||||||
money = parseFloat(money)
|
money = parseFloat(money);
|
||||||
if (money >= maxNum) {
|
if (money >= maxNum) {
|
||||||
// 超出最大处理数字
|
// 超出最大处理数字
|
||||||
return ''
|
return "";
|
||||||
}
|
}
|
||||||
if (money == 0) {
|
if (money == 0) {
|
||||||
chineseStr = cnNums[0] + cnIntLast + cnInteger
|
chineseStr = cnNums[0] + cnIntLast + cnInteger;
|
||||||
return chineseStr
|
return chineseStr;
|
||||||
}
|
}
|
||||||
// 转换为字符串
|
// 转换为字符串
|
||||||
money = money.toString()
|
money = money.toString();
|
||||||
if (money.indexOf('.') == -1) {
|
if (money.indexOf(".") == -1) {
|
||||||
integerNum = money
|
integerNum = money;
|
||||||
decimalNum = ''
|
decimalNum = "";
|
||||||
} else {
|
} else {
|
||||||
parts = money.split('.')
|
parts = money.split(".");
|
||||||
integerNum = parts[0]
|
integerNum = parts[0];
|
||||||
decimalNum = parts[1].substr(0, 4)
|
decimalNum = parts[1].substr(0, 4);
|
||||||
}
|
}
|
||||||
// 获取整型部分转换
|
// 获取整型部分转换
|
||||||
if (parseInt(integerNum, 10) > 0) {
|
if (parseInt(integerNum, 10) > 0) {
|
||||||
let zeroCount = 0
|
let zeroCount = 0;
|
||||||
const IntLen = integerNum.length
|
const IntLen = integerNum.length;
|
||||||
for (let i = 0; i < IntLen; i++) {
|
for (let i = 0; i < IntLen; i++) {
|
||||||
const n = integerNum.substr(i, 1)
|
const n = integerNum.substr(i, 1);
|
||||||
const p = IntLen - i - 1
|
const p = IntLen - i - 1;
|
||||||
const q = p / 4
|
const q = p / 4;
|
||||||
const m = p % 4
|
const m = p % 4;
|
||||||
if (n == '0') {
|
if (n == "0") {
|
||||||
zeroCount++
|
zeroCount++;
|
||||||
} else {
|
} else {
|
||||||
if (zeroCount > 0) {
|
if (zeroCount > 0) {
|
||||||
chineseStr += cnNums[0]
|
chineseStr += cnNums[0];
|
||||||
}
|
|
||||||
// 归零
|
|
||||||
zeroCount = 0
|
|
||||||
chineseStr += cnNums[parseInt(n)] + cnIntRadice[m]
|
|
||||||
}
|
|
||||||
if (m == 0 && zeroCount < 4) {
|
|
||||||
chineseStr += cnIntUnits[q]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
chineseStr += cnIntLast
|
// 归零
|
||||||
|
zeroCount = 0;
|
||||||
|
chineseStr += cnNums[parseInt(n)] + cnIntRadice[m];
|
||||||
|
}
|
||||||
|
if (m == 0 && zeroCount < 4) {
|
||||||
|
chineseStr += cnIntUnits[q];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// 小数部分
|
chineseStr += cnIntLast;
|
||||||
if (decimalNum != '') {
|
}
|
||||||
const decLen = decimalNum.length
|
// 小数部分
|
||||||
for (let i = 0; i < decLen; i++) {
|
if (decimalNum != "") {
|
||||||
const n = decimalNum.substr(i, 1)
|
const decLen = decimalNum.length;
|
||||||
if (n != '0') {
|
for (let i = 0; i < decLen; i++) {
|
||||||
chineseStr += cnNums[Number(n)] + cnDecUnits[i]
|
const n = decimalNum.substr(i, 1);
|
||||||
}
|
if (n != "0") {
|
||||||
}
|
chineseStr += cnNums[Number(n)] + cnDecUnits[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (chineseStr == '') {
|
}
|
||||||
chineseStr += cnNums[0] + cnIntLast + cnInteger
|
if (chineseStr == "") {
|
||||||
} else if (decimalNum == '') {
|
chineseStr += cnNums[0] + cnIntLast + cnInteger;
|
||||||
chineseStr += cnInteger
|
} else if (decimalNum == "") {
|
||||||
}
|
chineseStr += cnInteger;
|
||||||
return chineseStr
|
}
|
||||||
}
|
return chineseStr;
|
||||||
|
};
|
||||||
|
|
||||||
// 转换每个小节的函数
|
// 转换每个小节的函数
|
||||||
function convertSection(section) {
|
function convertSection(section) {
|
||||||
const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
|
const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
|
||||||
const cnIntUnits = ["", "拾", "佰", "仟"];
|
const cnIntUnits = ["", "拾", "佰", "仟"];
|
||||||
|
|
||||||
|
let sectionStr = "";
|
||||||
|
let unitPos = 0; // 记录当前位置的单位
|
||||||
|
let zero = true; // 连续的零
|
||||||
|
|
||||||
let sectionStr = "";
|
while (section > 0) {
|
||||||
let unitPos = 0; // 记录当前位置的单位
|
let num = section % 10;
|
||||||
let zero = true; // 连续的零
|
if (num === 0) {
|
||||||
|
if (!zero) {
|
||||||
while (section > 0) {
|
zero = true;
|
||||||
let num = section % 10;
|
sectionStr = cnNums[num] + sectionStr;
|
||||||
if (num === 0) {
|
|
||||||
if (!zero) {
|
|
||||||
zero = true;
|
|
||||||
sectionStr = cnNums[num] + sectionStr;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
zero = false;
|
|
||||||
sectionStr = cnNums[num] + cnIntUnits[unitPos] + sectionStr;
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
section = Math.floor(section / 10);
|
zero = false;
|
||||||
unitPos++;
|
sectionStr = cnNums[num] + cnIntUnits[unitPos] + sectionStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
return sectionStr;
|
section = Math.floor(section / 10);
|
||||||
|
unitPos++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return sectionStr;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将数字人民币转成中文大写
|
* 将数字人民币转成中文大写
|
||||||
* @params num
|
* @params num
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export const convertToChinese = (num: any) => {
|
export const convertToChinese = (num: any) => {
|
||||||
const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
|
const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
|
||||||
const cnIntUnits = ["", "拾", "佰", "仟"];
|
const cnIntUnits = ["", "拾", "佰", "仟"];
|
||||||
const cnDecUnits = ["角", "分"];
|
const cnDecUnits = ["角", "分"];
|
||||||
const cnInteger = "整";
|
const cnInteger = "整";
|
||||||
const cnIntLast = "元";
|
const cnIntLast = "元";
|
||||||
const cnIntWan = "万";
|
const cnIntWan = "万";
|
||||||
const cnIntYi = "亿";
|
const cnIntYi = "亿";
|
||||||
|
|
||||||
let integerNum = Math.floor(num); // 整数部分
|
let integerNum = Math.floor(num); // 整数部分
|
||||||
let decimalNum = Math.round((num - integerNum) * 100); // 小数部分
|
let decimalNum = Math.round((num - integerNum) * 100); // 小数部分
|
||||||
let cnIntStr = ""; // 中文整数字符串
|
let cnIntStr = ""; // 中文整数字符串
|
||||||
let cnDecStr = ""; // 中文小数字符串
|
let cnDecStr = ""; // 中文小数字符串
|
||||||
|
|
||||||
// 处理亿位
|
// 处理亿位
|
||||||
let yuan = Math.floor(integerNum / 100000000);
|
let yuan = Math.floor(integerNum / 100000000);
|
||||||
if (yuan > 0) {
|
if (yuan > 0) {
|
||||||
cnIntStr += convertSection(yuan) + cnIntYi;
|
cnIntStr += convertSection(yuan) + cnIntYi;
|
||||||
integerNum %= 100000000;
|
integerNum %= 100000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理万位
|
// 处理万位
|
||||||
let wan = Math.floor(integerNum / 10000);
|
let wan = Math.floor(integerNum / 10000);
|
||||||
if (wan > 0) {
|
if (wan > 0) {
|
||||||
cnIntStr += convertSection(wan) + cnIntWan;
|
cnIntStr += convertSection(wan) + cnIntWan;
|
||||||
integerNum %= 10000;
|
integerNum %= 10000;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理其他部分
|
// 处理其他部分
|
||||||
if (integerNum === 0) {
|
if (integerNum === 0) {
|
||||||
cnIntStr += cnNums[0];
|
cnIntStr += cnNums[0];
|
||||||
} else {
|
} else {
|
||||||
cnIntStr += convertSection(integerNum);
|
cnIntStr += convertSection(integerNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理小数部分
|
// 处理小数部分
|
||||||
if (decimalNum === 0) {
|
if (decimalNum === 0) {
|
||||||
cnDecStr = cnInteger;
|
cnDecStr = cnInteger;
|
||||||
} else {
|
} else {
|
||||||
let decIndex = 0;
|
let decIndex = 0;
|
||||||
while (decimalNum > 0 && decIndex < cnDecUnits.length) {
|
while (decimalNum > 0 && decIndex < cnDecUnits.length) {
|
||||||
let num = decimalNum % 10;
|
let num = decimalNum % 10;
|
||||||
if (num !== 0) {
|
if (num !== 0) {
|
||||||
cnDecStr += cnNums[num] + cnDecUnits[decIndex];
|
cnDecStr += cnNums[num] + cnDecUnits[decIndex];
|
||||||
}
|
|
||||||
decimalNum = Math.floor(decimalNum / 10);
|
|
||||||
decIndex++;
|
|
||||||
}
|
}
|
||||||
|
decimalNum = Math.floor(decimalNum / 10);
|
||||||
|
decIndex++;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return cnIntStr + cnIntLast + cnDecStr;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
return cnIntStr + cnIntLast + cnDecStr;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,201 +1,6 @@
|
|||||||
<!-- <template>
|
|
||||||
<div class="edit-popup">
|
|
||||||
<popup ref="popupRef" :title="popupTitle" :async="true" width="60vw" @confirm="handleSubmit"
|
|
||||||
@close="handleClose">
|
|
||||||
<el-form ref="formRef" :model="formData" label-width="120px" :rules="formRules">
|
|
||||||
<el-form-item label="审批流名称" prop="name">
|
|
||||||
<el-input v-model="formData.name" clearable placeholder="请输入审批流名称" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="流程类型" prop="check_type">
|
|
||||||
<el-select v-model="formData.check_type" clearable placeholder="请选择流程类型" class="flex-1">
|
|
||||||
<el-option label="可回退的审批流" :value="3" />
|
|
||||||
<el-option label="自由审批流" :value="2" />
|
|
||||||
<el-option label="固定审批流" :value="1" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="应用模块" prop="type">
|
|
||||||
<el-input v-model="formData.type" clearable placeholder="请输入应用模块" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="应用审批类型id" prop="flow_cate">
|
|
||||||
<el-input v-model="formData.flow_cate" clearable placeholder="请输入应用审批类型id" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="应用部门">
|
|
||||||
<el-select v-model="formData.department_ids" multiple placeholder="请选择应用部门" class="flex-1">
|
|
||||||
<el-option :label="item.name" :value="parseInt(item.id)" v-for="item in deptList">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="抄送人" prop="copy_uids">
|
|
||||||
<el-input v-model="formData.copy_names" clearable placeholder="点击选择抄送人" @click="userclick" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="流程说明" prop="remark">
|
|
||||||
<el-input v-model="formData.remark" clearable placeholder="请输入流程说明" type="textarea" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="审批流程" prop="flow_list">
|
|
||||||
<el-input v-model="formData.flow_list" clearable placeholder="审批流程" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
<div v-if="showDialog">
|
|
||||||
<personnelselector ref="personnel" @confirm="submituser" type="2">
|
|
||||||
</personnelselector>
|
|
||||||
</div>
|
|
||||||
</popup>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup name="oaFlowEdit">
|
|
||||||
import type { FormInstance } from 'element-plus'
|
|
||||||
import Popup from '@/components/popup/index.vue'
|
|
||||||
import { apiOaFlowAdd, apiOaFlowEdit, apiOaFlowDetail } from '@/api/oa_flow'
|
|
||||||
import { timeFormat } from '@/utils/util'
|
|
||||||
import type { PropType } from 'vue'
|
|
||||||
defineProps({
|
|
||||||
dictData: {
|
|
||||||
type: Object as PropType<Record<string, any[]>>,
|
|
||||||
default: () => ({})
|
|
||||||
},
|
|
||||||
deptList: Array
|
|
||||||
|
|
||||||
})
|
|
||||||
const emit = defineEmits(['success', 'close'])
|
|
||||||
const formRef = shallowRef<FormInstance>()
|
|
||||||
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
||||||
const mode = ref('add')
|
|
||||||
const showDialog = ref(false)
|
|
||||||
const personnel = ref(null)
|
|
||||||
|
|
||||||
// 弹窗标题
|
|
||||||
const popupTitle = computed(() => {
|
|
||||||
return mode.value == 'edit' ? '编辑审批流程表' : '新增审批流程表'
|
|
||||||
})
|
|
||||||
|
|
||||||
// 表单数据
|
|
||||||
const formData = reactive({
|
|
||||||
id: '',
|
|
||||||
name: '',
|
|
||||||
check_type: '',
|
|
||||||
type: '',
|
|
||||||
flow_cate: '',
|
|
||||||
department_ids: '',
|
|
||||||
copy_uids: '',
|
|
||||||
copy_names: '',
|
|
||||||
remark: '',
|
|
||||||
flow_list: '',
|
|
||||||
})
|
|
||||||
|
|
||||||
const userclick = async () => {
|
|
||||||
showDialog.value = true
|
|
||||||
await nextTick()
|
|
||||||
personnel.value.open()
|
|
||||||
}
|
|
||||||
|
|
||||||
const submituser = (e: any) => {
|
|
||||||
formData.copy_uids = e.map((item: any) => {
|
|
||||||
return item.id
|
|
||||||
}).join(',')
|
|
||||||
formData.copy_names = e.map((item: any) => {
|
|
||||||
return item.name
|
|
||||||
}).join(',')
|
|
||||||
showDialog.value = false
|
|
||||||
}
|
|
||||||
|
|
||||||
// 表单验证
|
|
||||||
const formRules = reactive<any>({
|
|
||||||
name: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入审批流名称',
|
|
||||||
trigger: ['blur']
|
|
||||||
}],
|
|
||||||
check_type: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入流程类型',
|
|
||||||
trigger: ['blur']
|
|
||||||
}],
|
|
||||||
type: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入应用模块',
|
|
||||||
trigger: ['blur']
|
|
||||||
}],
|
|
||||||
flow_cate: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入应用审批类型id',
|
|
||||||
trigger: ['blur']
|
|
||||||
}],
|
|
||||||
department_ids: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入应用部门ID',
|
|
||||||
trigger: ['blur']
|
|
||||||
}],
|
|
||||||
copy_uids: [{
|
|
||||||
required: true,
|
|
||||||
message: '请选择抄送人',
|
|
||||||
trigger: ['change']
|
|
||||||
}],
|
|
||||||
remark: [{
|
|
||||||
required: true,
|
|
||||||
message: '请输入流程说明',
|
|
||||||
trigger: ['blur']
|
|
||||||
}]
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
// 获取详情
|
|
||||||
const setFormData = async (data: Record<any, any>) => {
|
|
||||||
for (const key in formData) {
|
|
||||||
if (data[key] != null && data[key] != undefined) {
|
|
||||||
//@ts-ignore
|
|
||||||
formData[key] = data[key]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
formData.department_ids = formData.department_ids.split(",").map(Number);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
const getDetail = async (row: Record<string, any>) => {
|
|
||||||
const data = await apiOaFlowDetail({
|
|
||||||
id: row.id
|
|
||||||
})
|
|
||||||
setFormData(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// 提交按钮
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
await formRef.value?.validate()
|
|
||||||
const data = { ...formData, }
|
|
||||||
data.department_ids = data.department_ids.join(",");
|
|
||||||
mode.value == 'edit'
|
|
||||||
? await apiOaFlowEdit(data)
|
|
||||||
: await apiOaFlowAdd(data)
|
|
||||||
popupRef.value?.close()
|
|
||||||
emit('success')
|
|
||||||
}
|
|
||||||
|
|
||||||
//打开弹窗
|
|
||||||
const open = (type = 'add') => {
|
|
||||||
mode.value = type
|
|
||||||
popupRef.value?.open()
|
|
||||||
}
|
|
||||||
|
|
||||||
// 关闭回调
|
|
||||||
const handleClose = () => {
|
|
||||||
emit('close')
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
defineExpose({
|
|
||||||
open,
|
|
||||||
setFormData,
|
|
||||||
getDetail
|
|
||||||
})
|
|
||||||
</script> -->
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="edit-popup">
|
<div class="edit-popup">
|
||||||
<popup ref="popupRef" :title="popupTitle" :async="true" width="80vw" @confirm="handleSubmit"
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="80vw" @confirm="handleSubmit" @close="handleClose">
|
||||||
@close="handleClose">
|
|
||||||
<el-form ref="formRef" :model="formData" :rules="formRules" label-width="120px">
|
<el-form ref="formRef" :model="formData" :rules="formRules" label-width="120px">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -205,7 +10,7 @@ defineExpose({
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="应用模块" prop="type">
|
<el-form-item label="应用模块" prop="type">
|
||||||
<el-select v-model="formData.type" clearable placeholder="请选择所属分类" class="flex-1">
|
<el-select v-model="formData.type" clearable placeholder="请选择应用模块" class="flex-1">
|
||||||
<el-option v-for="item in dictData.oa_approve_cate" :key="item.value" :label="item.name"
|
<el-option v-for="item in dictData.oa_approve_cate" :key="item.value" :label="item.name"
|
||||||
:value="parseInt(item.value)" />
|
:value="parseInt(item.value)" />
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -219,7 +24,9 @@ defineExpose({
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="应用部门">
|
<el-form-item label="应用部门">
|
||||||
<el-select v-model="formData.department_ids" multiple placeholder="请选择应用部门" class="flex-1">
|
<el-select v-model="formData.department_ids" multiple placeholder="请选择应用部门,不选默认为全公司"
|
||||||
|
class="flex-1">
|
||||||
|
<el-option label="全公司" :value="parseInt(0)"></el-option>
|
||||||
<el-option :label="item.name" :value="parseInt(item.id)" v-for="item in deptList">
|
<el-option :label="item.name" :value="parseInt(item.id)" v-for="item in deptList">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -240,39 +47,38 @@ defineExpose({
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<p v-if="formData.check_type == 1">
|
<div v-if="formData.check_type == 1">
|
||||||
<el-row v-for="(item, index) in formData.flow_list">
|
<el-row v-for="(item, index) in formData.flow_list">
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="审批流程类型">
|
<el-form-item label="审批流程类型">
|
||||||
<el-select v-model="item.flow_type" clearable placeholder="请选择流程类型" class="flex-1">
|
<el-select v-model="item.flow_type" clearable placeholder="请选择流程类型" class="flex-1">
|
||||||
<el-option label="当前部门负责人" :value="1" />
|
<el-option label="当前部门负责人" value="1" />
|
||||||
<el-option label="上一级部门负责人" :value="2" />
|
<el-option label="指定人员(多人或签)" value="2" />
|
||||||
<el-option label="指定人员(多人或签)" :value="3" />
|
<el-option label="指定人员(多人会签)" value="3" />
|
||||||
<el-option label="指定人员(多人会签)" :value="4" />
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-if="item.flow_type == '3' || item.flow_type == '4'">
|
<el-form-item label="指定人员" v-if="item.flow_type == '3' || item.flow_type == '2'">
|
||||||
<el-form-item label="指定人员">
|
<el-tag v-for="(tag, i) in item.flow_uids" @close="item.flow_uids.splice(i, 1)" :key="tag.id"
|
||||||
<el-tag v-for="(tag, i) in item.flow_uids" @close="item.flow_user.splice(i, 1)"
|
class="mx-1" closable>
|
||||||
:key="tag.id" class="mx-1" closable>
|
{{ tag.name }}
|
||||||
{{ tag.name }}
|
</el-tag>
|
||||||
</el-tag>
|
<el-button type="primary" @click="openDialog(index)">
|
||||||
<el-button type="primary" @click="openDialog(index)">
|
选择人员
|
||||||
选择人员
|
</el-button>
|
||||||
</el-button>
|
</el-form-item>
|
||||||
<el-button @click="formData.flow_list.splice(index, 1)" class="ml-[5px]">
|
<el-form-item label="" label-width="45px">
|
||||||
删除
|
<el-button @click="formData.flow_list.splice(index, 1)" class="ml-[5px]">
|
||||||
</el-button>
|
删除
|
||||||
</el-form-item>
|
</el-button>
|
||||||
</el-col>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="handAdd">其他联系人</el-button>
|
<el-button type="primary" @click="handAdd">其他联系人</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</p>
|
</div>
|
||||||
<el-row v-if="formData.check_type == 2">
|
<el-row v-if="formData.check_type == 2">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="">
|
<el-form-item label="">
|
||||||
@ -280,7 +86,7 @@ defineExpose({
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<p v-if="formData.check_type == 3">
|
<div v-if="formData.check_type == 3">
|
||||||
<el-row v-for="(item, index) in formData.flow_list">
|
<el-row v-for="(item, index) in formData.flow_list">
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="审批流程">
|
<el-form-item label="审批流程">
|
||||||
@ -288,30 +94,25 @@ defineExpose({
|
|||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-form-item label="指定人员">
|
||||||
<el-form-item label="指定人员">
|
<el-tag v-for="(tag, i) in item.flow_uids" @close="item.flow_uids.splice(i, 1)" :key="tag.id"
|
||||||
<el-tag v-for="(tag, i) in item.flow_uids" @close="item.flow_user.splice(i, 1)"
|
class="mx-1" closable>
|
||||||
:key="tag.id" class="mx-1" closable>
|
{{ tag.name }}
|
||||||
{{ tag.name }}
|
</el-tag>
|
||||||
</el-tag>
|
<el-button type="primary" @click="openDialog(index)">
|
||||||
<el-button type="primary" @click="openDialog(index)">
|
选择人员
|
||||||
选择人员
|
|
||||||
</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="4">
|
|
||||||
<el-button @click="formData.flow_list.splice(index, 1)">
|
|
||||||
删除
|
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-col>
|
</el-form-item>
|
||||||
|
<el-button @click="formData.flow_list.splice(index, 1)" class="ml-[5px]">
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="handAdd">其他联系人</el-button>
|
<el-button type="primary" @click="handAdd">其他联系人</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<el-form-item label="抄送人" prop="copy_unames">
|
<el-form-item label="抄送人" prop="copy_unames">
|
||||||
<el-tag v-for="(tag, index) in formData.copy_uids" @close="formData.copy_uids.splice(index, 1)"
|
<el-tag v-for="(tag, index) in formData.copy_uids" @close="formData.copy_uids.splice(index, 1)"
|
||||||
:key="tag.id" class="mx-1" closable>
|
:key="tag.id" class="mx-1" closable>
|
||||||
@ -327,21 +128,18 @@ defineExpose({
|
|||||||
<dialogTable :config="oa_flow_type" @customEvent="customEvent" :query="{ type: formData.type }">
|
<dialogTable :config="oa_flow_type" @customEvent="customEvent" :query="{ type: formData.type }">
|
||||||
</dialogTable>
|
</dialogTable>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<personnelSelector v-if="showDiolg" ref="personnel" @confirm="submituser" />
|
<personnelSelector v-if="showPersonnel" ref="personnel" @confirm="submituser" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup name="flowEdit">
|
<script lang="ts" setup name="flowEdit">
|
||||||
import type { FormInstance } from "element-plus";
|
import type { FormInstance } from "element-plus";
|
||||||
import Popup from "@/components/popup/index.vue";
|
import Popup from "@/components/popup/index.vue";
|
||||||
import { apiFlowAdd, apiFlowEdit } from "@/api/flow";
|
|
||||||
import { apiFlowTypeLists } from '@/api/flow_type'
|
|
||||||
import personnelSelector from '@/components/personnelselector/index.vue'
|
import personnelSelector from '@/components/personnelselector/index.vue'
|
||||||
import { ref } from "vue"
|
import { ref } from "vue"
|
||||||
import type { PropType } from "vue";
|
import type { PropType } from "vue";
|
||||||
import { oa_flow_type } from "@/components/dialogTable/dialogTableConfig.ts"
|
import { oa_flow_type } from "@/components/dialogTable/dialogTableConfig.ts"
|
||||||
import { apiOaFlowAdd, apiOaFlowEdit, apiOaFlowDetail } from '@/api/oa_flow'
|
import { apiOaFlowAdd, apiOaFlowEdit } from '@/api/oa_flow'
|
||||||
|
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
dictData: {
|
dictData: {
|
||||||
@ -357,7 +155,7 @@ const emit = defineEmits(["success", "close"]);
|
|||||||
const formRef = shallowRef<FormInstance>();
|
const formRef = shallowRef<FormInstance>();
|
||||||
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
||||||
const mode = ref("add");
|
const mode = ref("add");
|
||||||
const showDiolg = ref(false)
|
const showPersonnel = ref(false)
|
||||||
const showDialog = ref(false)
|
const showDialog = ref(false)
|
||||||
|
|
||||||
// 弹窗标题
|
// 弹窗标题
|
||||||
@ -387,7 +185,6 @@ const formData = reactive({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const customEvent = (e) => {
|
const customEvent = (e) => {
|
||||||
console.log(e)
|
|
||||||
formData.flow_cate = e.id
|
formData.flow_cate = e.id
|
||||||
formData.flow_cate_name = e.title
|
formData.flow_cate_name = e.title
|
||||||
showDialog.value = false
|
showDialog.value = false
|
||||||
@ -404,18 +201,6 @@ const handAdd = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// 获取对应审批类型
|
|
||||||
const flowTypeList = reactive([])
|
|
||||||
|
|
||||||
const getFlowTypeList = async () => {
|
|
||||||
if (!formData.flow_type) return
|
|
||||||
let res = await apiFlowTypeLists({
|
|
||||||
type: formData.flow_type,
|
|
||||||
status: 2
|
|
||||||
})
|
|
||||||
Object.assign(flowTypeList, res.lists)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//单选框改变时清空单选下的表单数据
|
//单选框改变时清空单选下的表单数据
|
||||||
const checkTypeFn = () => {
|
const checkTypeFn = () => {
|
||||||
@ -441,26 +226,32 @@ const setRules = () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
setRules()
|
// setRules()
|
||||||
|
|
||||||
// 获取详情
|
// 获取详情
|
||||||
const setFormData = async (data: Record<any, any>) => {
|
const setFormData = async (data: Record<any, any>) => {
|
||||||
|
if (data.department_ids == '0') {
|
||||||
|
data.department_ids = ''
|
||||||
|
} else {
|
||||||
|
data.department_ids = data.department_ids?.split(',').map(Number)
|
||||||
|
}
|
||||||
|
data.copy_uids = data.copy_uids?.split(',').map((item, i) => ({ id: item, name: data.copy_user_names?.split(',')[i] }))
|
||||||
|
if (data.flow_list) {
|
||||||
|
data.flow_list.forEach(item => {
|
||||||
|
item.flow_uids = item.flow_uids?.split(',').map((items, i) => ({ id: items, name: item.flow_user_names?.split(',')[i] }))
|
||||||
|
})
|
||||||
|
}
|
||||||
for (const key in formData) {
|
for (const key in formData) {
|
||||||
if (data[key] != null && data[key] != undefined) {
|
if (data[key] != null && data[key] != undefined) {
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
formData[key] = data[key];
|
formData[key] = data[key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
await getFlowTypeList()
|
|
||||||
formData.check_type = Number(formData.check_type)
|
|
||||||
formData.flow_type = Number(formData.flow_type)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// 提交按钮
|
// 提交按钮
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
await formRef.value?.validate();
|
await formRef.value?.validate();
|
||||||
|
|
||||||
let data = { ...formData }
|
let data = { ...formData }
|
||||||
data.department_ids = data.department_ids.join(",")
|
data.department_ids = data.department_ids.join(",")
|
||||||
data.copy_uids = formData.copy_uids.map(item => item.id).join(',')
|
data.copy_uids = formData.copy_uids.map(item => item.id).join(',')
|
||||||
@ -476,17 +267,22 @@ const handleSubmit = async () => {
|
|||||||
emit("success");
|
emit("success");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 人员选择器,selectIndex为-1时为抄送选择抄送人员,其余为指定人员所在的flow_list的下标
|
||||||
|
let selectIndex: nmber;
|
||||||
|
const openDialog = async (index) => {
|
||||||
|
showPersonnel.value = true
|
||||||
|
await nextTick()
|
||||||
|
personnel.value?.open()
|
||||||
|
selectIndex = index
|
||||||
|
}
|
||||||
const submituser = (e) => {
|
const submituser = (e) => {
|
||||||
if (selectIndex == -1) {
|
if (selectIndex == -1) {
|
||||||
formData.copy_uids = e.map(item => ({ id: item.id, name: item.name }))
|
formData.copy_uids = e.map(item => ({ id: item.id, name: item.name }))
|
||||||
} else {
|
} else {
|
||||||
formData.flow_list[selectIndex].flow_uids = e.map(item => ({ id: item.id, name: item.name }))
|
formData.flow_list[selectIndex].flow_uids = e.map(item => ({ id: item.id, name: item.name }))
|
||||||
}
|
}
|
||||||
showDiolg.value = false
|
showPersonnel.value = false
|
||||||
}
|
|
||||||
|
|
||||||
const clearFlowUser = (index) => {
|
|
||||||
formData.flow_list[index].flow_user = []
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//打开弹窗
|
//打开弹窗
|
||||||
@ -500,14 +296,7 @@ const handleClose = () => {
|
|||||||
emit("close");
|
emit("close");
|
||||||
};
|
};
|
||||||
|
|
||||||
// selectIndex为-1时为抄送选择抄送人员,其余为指定人员所在的flow_list的下标
|
|
||||||
let selectIndex: nmber;
|
|
||||||
const openDialog = async (index) => {
|
|
||||||
showDiolg.value = true
|
|
||||||
await nextTick()
|
|
||||||
personnel.value?.open()
|
|
||||||
selectIndex = index
|
|
||||||
}
|
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
open,
|
open,
|
||||||
|
@ -6,10 +6,17 @@
|
|||||||
<el-input class="w-[280px]" v-model="queryParams.name" clearable placeholder="请输入审批流名称" />
|
<el-input class="w-[280px]" v-model="queryParams.name" clearable placeholder="请输入审批流名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="流程类型" prop="check_type">
|
<el-form-item label="流程类型" prop="check_type">
|
||||||
<el-input class="w-[280px]" v-model="queryParams.check_type" clearable placeholder="请输入流程类型" />
|
<el-select class="w-[280px]" v-model="queryParams.check_type" clearable placeholder="请选择流程类型">
|
||||||
|
<el-option label="固定审批" :value="1" />
|
||||||
|
<el-option label="自由审批人" :value="2" />
|
||||||
|
<el-option label="可回退审批" :value="3" />
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="应用模块" prop="type">
|
<el-form-item label=" 应用模块" prop="type">
|
||||||
<el-input class="w-[280px]" v-model="queryParams.type" clearable placeholder="请输入应用模块" />
|
<el-select v-model="queryParams.type" clearable placeholder="请选择应用模块" class="flex-1">
|
||||||
|
<el-option v-for="item in dictData.oa_approve_cate" :key="item.value" :label="item.name"
|
||||||
|
:value="parseInt(item.value)" />
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="resetPage">查询</el-button>
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||||
@ -32,17 +39,15 @@
|
|||||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55" />
|
<el-table-column type="selection" width="55" />
|
||||||
<el-table-column label="审批流名称" prop="name" show-overflow-tooltip />
|
<el-table-column label="审批流名称" prop="name" show-overflow-tooltip />
|
||||||
<el-table-column label="流程类型" prop="check_type" show-overflow-tooltip />
|
<el-table-column label="流程类型" prop="check_type_text" show-overflow-tooltip />
|
||||||
<el-table-column label="应用模块" prop="type" show-overflow-tooltip />
|
<el-table-column label="应用模块" prop="type_text" show-overflow-tooltip />
|
||||||
<el-table-column label="应用审批类型id" prop="flow_cate" show-overflow-tooltip />
|
<el-table-column label="应用审批类型" prop="flow_cate_name" show-overflow-tooltip />
|
||||||
<el-table-column label="应用部门ID(0为全部)1,2,3" prop="department_ids" show-overflow-tooltip />
|
<el-table-column label="应用部门" prop="department_names" show-overflow-tooltip />
|
||||||
<el-table-column label="抄送人ID" prop="copy_uids" show-overflow-tooltip />
|
<el-table-column label="抄送人" prop="copy_user_names" show-overflow-tooltip />
|
||||||
<el-table-column label="流程说明" prop="remark" show-overflow-tooltip />
|
|
||||||
<el-table-column label="流程数据序列化" prop="flow_list" show-overflow-tooltip />
|
|
||||||
<el-table-column label="操作" width="120" fixed="right">
|
<el-table-column label="操作" width="120" fixed="right">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button v-perms="['works.bgsp.oa_flow/edit']" type="primary" link
|
<el-button v-perms="['works.bgsp.oa_flow/edit']" type="primary" link
|
||||||
@click="handleEdit(row)">
|
@click="handleEdit(row.id)">
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-perms="['works.bgsp.oa_flow/delete']" type="danger" link
|
<el-button v-perms="['works.bgsp.oa_flow/delete']" type="danger" link
|
||||||
@ -65,8 +70,7 @@
|
|||||||
<script lang="ts" setup name="oaFlowLists">
|
<script lang="ts" setup name="oaFlowLists">
|
||||||
import { usePaging } from '@/hooks/usePaging'
|
import { usePaging } from '@/hooks/usePaging'
|
||||||
import { useDictData } from '@/hooks/useDictOptions'
|
import { useDictData } from '@/hooks/useDictOptions'
|
||||||
import { apiOaFlowLists, apiOaFlowDelete } from '@/api/oa_flow'
|
import { apiOaFlowLists, apiOaFlowDelete, apiOaFlowDetail } from '@/api/oa_flow'
|
||||||
import { timeFormat } from '@/utils/util'
|
|
||||||
import feedback from '@/utils/feedback'
|
import feedback from '@/utils/feedback'
|
||||||
import EditPopup from './edit.vue'
|
import EditPopup from './edit.vue'
|
||||||
import { deptLists } from "@/api/org/department";
|
import { deptLists } from "@/api/org/department";
|
||||||
@ -108,11 +112,12 @@ const handleAdd = async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 编辑
|
// 编辑
|
||||||
const handleEdit = async (data: any) => {
|
const handleEdit = async (id: number) => {
|
||||||
|
let res = await apiOaFlowDetail({ id })
|
||||||
showEdit.value = true
|
showEdit.value = true
|
||||||
await nextTick()
|
await nextTick()
|
||||||
editRef.value?.open('edit')
|
editRef.value?.open('edit')
|
||||||
editRef.value?.setFormData(data)
|
editRef.value?.setFormData(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除
|
// 删除
|
||||||
|
@ -1,36 +1,100 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="edit-popup">
|
<div class="edit-popup">
|
||||||
<popup ref="popupRef" :title="popupTitle" :async="true" width="550px" @confirm="handleSubmit" @close="handleClose">
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="60vw" @confirm="handleSubmit" @close="handleClose">
|
||||||
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
||||||
<el-form-item label="所属分类" prop="type">
|
<el-card>
|
||||||
<el-select v-model="formData.type" clearable placeholder="请选择所属分类" class="flex-1">
|
<template #header>
|
||||||
<el-option v-for="item in dictData.oa_approve_cate" :key="item.value" :label="item.name"
|
审批类型
|
||||||
:value="parseInt(item.value)" />
|
</template>
|
||||||
</el-select>
|
<el-row>
|
||||||
</el-form-item>
|
<el-col :span="8">
|
||||||
<el-form-item label="审批名称" prop="title">
|
<el-form-item label="所属分类" prop="type">
|
||||||
<el-input v-model="formData.title" clearable placeholder="请输入审批名称" />
|
<el-select v-model="formData.type" clearable placeholder="请选择所属分类" class="flex-1">
|
||||||
</el-form-item>
|
<el-option v-for="item in dictData.oa_approve_cate" :key="item.value" :label="item.name"
|
||||||
<el-form-item label="审批标识" prop="name">
|
:value="parseInt(item.value)" />
|
||||||
<el-input v-model="formData.name" clearable placeholder="请输入审批标识" />
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="图标">
|
</el-col>
|
||||||
<icon-picker class="flex-1" v-model="formData.icon" />
|
<el-col :span="8">
|
||||||
</el-form-item>
|
<el-form-item label="审批名称" prop="title">
|
||||||
<el-form-item label="应用部门">
|
<el-input v-model="formData.title" clearable placeholder="请输入审批名称" />
|
||||||
<el-select v-model="formData.department_ids" multiple placeholder="请选择应用部门" class="flex-1">
|
</el-form-item>
|
||||||
<el-option :label="item.name" :value="parseInt(item.id)" v-for="item in deptList">
|
</el-col>
|
||||||
</el-option>
|
<el-col :span="8">
|
||||||
</el-select>
|
<el-form-item label="审批标识" prop="name">
|
||||||
</el-form-item>
|
<el-input v-model="formData.name" clearable placeholder="请输入审批标识" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="图标">
|
||||||
|
<icon-picker class="flex-1" v-model="formData.icon" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="应用部门">
|
||||||
|
<el-select v-model="formData.department_ids" multiple placeholder="请选择应用部门" class="flex-1">
|
||||||
|
<el-option :label="item.name" :value="parseInt(item.id)" v-for="item in deptList">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-card>
|
||||||
|
<el-card>
|
||||||
|
<template #header>
|
||||||
|
审批内容 <span style="color:#FF8F4A;font-size:12px">(该项用于指定审批所需要填写的具体内容)</span>
|
||||||
|
</template>
|
||||||
|
<el-col class="mb-5">
|
||||||
|
<el-button @click="handAdd" type="primary">
|
||||||
|
添加
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="previewFn">
|
||||||
|
预览
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-row v-for="(item, index) in formData.data" :key="index">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="类型">
|
||||||
|
<el-select v-model="item.type" clearable placeholder="请选择所属类型" class="flex-1">
|
||||||
|
<el-option label="文本框" :value="parseInt(0)" />
|
||||||
|
<el-option label="日期选择框" :value="parseInt(1)" />
|
||||||
|
<el-option label="部门选择器" :value="parseInt(2)" />
|
||||||
|
<el-option label="人员选择器" :value="parseInt(3)" />
|
||||||
|
<el-option label="文本域" :value="parseInt(4)" />
|
||||||
|
<el-option label="文件上传" :value="parseInt(5)" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="名称">
|
||||||
|
<el-input v-model="item.label" clearable placeholder="请输入名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="4">
|
||||||
|
<el-form-item label="是否必填">
|
||||||
|
<el-switch v-model="item.isRequired"></el-switch>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="4">
|
||||||
|
<el-button @click="formData.data.splice(index, 1)">
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-card>
|
||||||
</el-form>
|
</el-form>
|
||||||
</popup>
|
</popup>
|
||||||
|
<el-dialog v-if="showDialog" v-model="showDialog" title="预览审批内容" width="70%">
|
||||||
|
<generateForm :config="formData.data"></generateForm>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup name="oaFlowTypeEdit">
|
<script lang="ts" setup name="oaFlowTypeEdit">
|
||||||
|
import generateForm from './../../components/generateForm/index.vue'
|
||||||
import type { FormInstance } from "element-plus";
|
import type { FormInstance } from "element-plus";
|
||||||
import Popup from "@/components/popup/index.vue";
|
import Popup from "@/components/popup/index.vue";
|
||||||
|
import Pinyin from "@/utils/pinyin"
|
||||||
import {
|
import {
|
||||||
apiOaFlowTypeAdd,
|
apiOaFlowTypeAdd,
|
||||||
apiOaFlowTypeEdit,
|
apiOaFlowTypeEdit,
|
||||||
@ -46,10 +110,13 @@ defineProps({
|
|||||||
deptList: Array
|
deptList: Array
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// console.log(Pinyin.getCamelChars("你干嘛"))
|
||||||
const emit = defineEmits(["success", "close"]);
|
const emit = defineEmits(["success", "close"]);
|
||||||
const formRef = shallowRef<FormInstance>();
|
const formRef = shallowRef<FormInstance>();
|
||||||
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
const popupRef = shallowRef<InstanceType<typeof Popup>>();
|
||||||
const mode = ref("add");
|
const mode = ref("add");
|
||||||
|
const showDialog = ref(false)
|
||||||
|
|
||||||
// 弹窗标题
|
// 弹窗标题
|
||||||
const popupTitle = computed(() => {
|
const popupTitle = computed(() => {
|
||||||
@ -64,6 +131,49 @@ const formData = reactive({
|
|||||||
name: "",
|
name: "",
|
||||||
icon: "",
|
icon: "",
|
||||||
department_ids: "",
|
department_ids: "",
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"label": "请假类型",
|
||||||
|
"value": "DZFS",
|
||||||
|
isRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": 1,
|
||||||
|
"label": "开始时间",
|
||||||
|
"value": "SD",
|
||||||
|
isRequired: true,
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": 1,
|
||||||
|
"label": "结束时间",
|
||||||
|
"value": "DSFSD",
|
||||||
|
isRequired: true,
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"label": "请假天数",
|
||||||
|
"value": "DSF",
|
||||||
|
isRequired: false,
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": 4,
|
||||||
|
"label": "请假事由",
|
||||||
|
"value": "SDS",
|
||||||
|
isRequired: true,
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": 5,
|
||||||
|
"label": "附件",
|
||||||
|
"value": "DZFS",
|
||||||
|
isRequired: false,
|
||||||
|
|
||||||
|
},
|
||||||
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@ -124,6 +234,24 @@ const getDetail = async (row: Record<string, any>) => {
|
|||||||
setFormData(data);
|
setFormData(data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const previewFn = () => {
|
||||||
|
formData.data.forEach((item: any) => {
|
||||||
|
item.value = Pinyin.getCamelChars(item.label)
|
||||||
|
});
|
||||||
|
showDialog.value = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const handAdd = () => {
|
||||||
|
formData.data.push({
|
||||||
|
"type": 0,
|
||||||
|
"label": "",
|
||||||
|
"value": "",
|
||||||
|
isRequired: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 提交按钮
|
// 提交按钮
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
await formRef.value?.validate();
|
await formRef.value?.validate();
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
@click="handleDelete(selectData)">
|
@click="handleDelete(selectData)">
|
||||||
删除
|
删除
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55" />
|
<el-table-column type="selection" width="55" />
|
||||||
@ -38,13 +39,11 @@
|
|||||||
<el-table-column label="审批名称" prop="title" show-overflow-tooltip />
|
<el-table-column label="审批名称" prop="title" show-overflow-tooltip />
|
||||||
<el-table-column label="审批标识" prop="name" show-overflow-tooltip />
|
<el-table-column label="审批标识" prop="name" show-overflow-tooltip />
|
||||||
<el-table-column label="图标" prop="icon" show-overflow-tooltip>
|
<el-table-column label="图标" prop="icon" show-overflow-tooltip>
|
||||||
<template #default="{ row, $index }">
|
<!-- <template #default="{ row, $index }">
|
||||||
<el-icon :size="20" :id="'test' + $index">
|
<el-icon :size="20" :id="'test' + $index">
|
||||||
<Edit />
|
<Edit />
|
||||||
<!-- {{ 'test' + $index"}} -->
|
|
||||||
<!-- {{ 'test' + $index }} -->
|
|
||||||
</el-icon>
|
</el-icon>
|
||||||
</template>
|
</template> -->
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="应用部门" prop="department_names" show-overflow-tooltip>
|
<el-table-column label="应用部门" prop="department_names" show-overflow-tooltip>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
@ -77,7 +76,7 @@
|
|||||||
<script lang="ts" setup name="oaFlowTypeLists">
|
<script lang="ts" setup name="oaFlowTypeLists">
|
||||||
import { usePaging } from '@/hooks/usePaging'
|
import { usePaging } from '@/hooks/usePaging'
|
||||||
import { useDictData } from '@/hooks/useDictOptions'
|
import { useDictData } from '@/hooks/useDictOptions'
|
||||||
import { apiOaFlowTypeLists, apiOaFlowTypeDelete } from '@/api/oa_flow_type'
|
import { apiOaFlowTypeLists, apiOaFlowTypeDelete, apiOaFlowTypeDetail } from '@/api/oa_flow_type'
|
||||||
import { timeFormat } from '@/utils/util'
|
import { timeFormat } from '@/utils/util'
|
||||||
import feedback from '@/utils/feedback'
|
import feedback from '@/utils/feedback'
|
||||||
import EditPopup from './edit.vue'
|
import EditPopup from './edit.vue'
|
||||||
@ -88,6 +87,8 @@ const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
|
|
||||||
|
|
||||||
|
const test = "<el-icon :size='20'> <Edit /> </el-icon>"
|
||||||
|
|
||||||
// 查询条件
|
// 查询条件
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
type: '',
|
type: '',
|
||||||
@ -121,10 +122,11 @@ const handleAdd = async () => {
|
|||||||
|
|
||||||
// 编辑
|
// 编辑
|
||||||
const handleEdit = async (data: any) => {
|
const handleEdit = async (data: any) => {
|
||||||
|
let res = await apiOaFlowTypeDetail({ id: data.id })
|
||||||
showEdit.value = true
|
showEdit.value = true
|
||||||
await nextTick()
|
await nextTick()
|
||||||
editRef.value?.open('edit')
|
editRef.value?.open('edit')
|
||||||
editRef.value?.setFormData(data)
|
editRef.value?.setFormData(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除
|
// 删除
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="edit-popup">
|
<div class="edit-popup">
|
||||||
<popup ref="popupRef" :title="popupTitle" :async="true" width="550px" @confirm="handleSubmit" @close="handleClose">
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="550px" @confirm="handleSubmit" @close="handleClose">
|
||||||
<el-form ref="formRef" :model="formData" label-width="84px" :rules="formRules">
|
<el-form ref="formRef" :model="formData" label-width="100px" :rules="formRules">
|
||||||
<el-form-item label="组织" prop="org_id">
|
<el-form-item label="组织" prop="org_id">
|
||||||
<el-select clearable v-model="formData.org_id" placeholder="请选择组织" @change="area_change" class="flex-1">
|
<el-select clearable v-model="formData.org_id" placeholder="请选择组织" @change="area_change" class="flex-1">
|
||||||
<el-option v-for="(item, index) in orglist" :key="index" :label="item.name" :value="item.id" />
|
<el-option v-for="(item, index) in orglist" :key="index" :label="item.name" :value="item.id" />
|
||||||
@ -13,6 +13,9 @@
|
|||||||
<el-form-item label="联系电话" prop="mobile">
|
<el-form-item label="联系电话" prop="mobile">
|
||||||
<el-input v-model="formData.mobile" placeholder="请输入联系电话" />
|
<el-input v-model="formData.mobile" placeholder="请输入联系电话" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="部门负责人" prop="leader_name">
|
||||||
|
<el-input v-model="formData.leader_name" placeholder="请选择部门负责人" @click="openDialog" />
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="排序" prop="sort">
|
<el-form-item label="排序" prop="sort">
|
||||||
<div>
|
<div>
|
||||||
<el-input-number v-model="formData.sort" :min="0" :max="9999" />
|
<el-input-number v-model="formData.sort" :min="0" :max="9999" />
|
||||||
@ -50,7 +53,7 @@ const formData = reactive({
|
|||||||
id: '',
|
id: '',
|
||||||
org_id: '' as string | number,
|
org_id: '' as string | number,
|
||||||
name: '',
|
name: '',
|
||||||
leader: '',
|
leader_id: '',
|
||||||
leader_name: '',
|
leader_name: '',
|
||||||
mobile: '',
|
mobile: '',
|
||||||
status: 1,
|
status: 1,
|
||||||
@ -58,7 +61,7 @@ const formData = reactive({
|
|||||||
})
|
})
|
||||||
|
|
||||||
const submituser = (e) => {
|
const submituser = (e) => {
|
||||||
formData.leader = e.id
|
formData.leader_id = e.id
|
||||||
formData.leader_name = e.name
|
formData.leader_name = e.name
|
||||||
showDiolg.value = false
|
showDiolg.value = false
|
||||||
}
|
}
|
||||||
@ -93,6 +96,13 @@ const formRules = {
|
|||||||
trigger: ['blur']
|
trigger: ['blur']
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
leader_name: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入部门名称',
|
||||||
|
trigger: ['change']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
mobile: [
|
mobile: [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user