7cd220ab by renchao@pashanhoo.com

style:业务申请规则编辑弹窗功能的完善

1 parent 418dbf08
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-19 14:11:05
* @LastEditTime: 2023-07-24 09:47:54
-->
<template>
<div>
......@@ -364,7 +364,12 @@
height: 75vh;
overflow-y: scroll;
}
/deep/.el-radio__label {
display: inline-block !important;
}
/deep/.el-radio {
margin-right: 5px;
}
.el-radio-group {
white-space: nowrap;
}
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-24 15:31:00
* @LastEditTime: 2023-07-24 09:39:34
-->
<template>
<div class="container">
......@@ -159,7 +159,12 @@
//获取单元对应的所有表单信息
this.tabList = res.result;
//默认加载第一个表单信息
this.tabName = res.result[0].value;
let arr = res.result.filter(item => item.defaultForm)
if (arr.length > 0) {
this.tabName = arr[0].value;
} else {
this.tabName = res.result[0].value;
}
this.ableOperation = this.tabList[0].ableOperation
//批量操作无分屏按钮
if (index != null) {
......