瀏覽代碼

Merge branch 'release' into dev

zhangchong 5 月之前
父節點
當前提交
741aa0ec77

+ 1 - 0
src/views/business/delay/components/Delay-edit.vue

@@ -85,6 +85,7 @@
 								placeholder="请填写延期申请理由"
 								:loading="state.loading"
 								:commonEnum="commonEnum.Delay"
+								:maxlength="AppConfigInfo.handleOpinionWordLimit"
 							/>
 						</el-form-item>
 					</el-col>

+ 5 - 1
src/views/business/discern/components/Discern-edit.vue

@@ -48,6 +48,7 @@
 								placeholder="请填写甄别申请理由"
 								:loading="state.loading"
 								:commonEnum="commonEnum.Discriminate"
+								:maxlength="AppConfigInfo.handleOpinionWordLimit"
 							/>
 						</el-form-item>
 					</el-col>
@@ -145,6 +146,8 @@ import { commonEnum } from '@/utils/constants';
 import { discernApproveParams, discernUpdate, screenBaseData, screenDetail, workflowDiscernParams } from '@/api/business/discern';
 import { transformFile } from '@/utils/tools';
 import { formatDate } from '@/utils/formatTime';
+import { useAppConfig } from '@/stores/appConfig';
+import { storeToRefs } from 'pinia';
 
 // 引入组件
 const CommonAdvice = defineAsyncComponent(() => import('@/components/CommonAdvice/index.vue')); // 常用意见
@@ -186,7 +189,8 @@ const state = reactive<any>({
 });
 const ruleFormRef = ref<RefType>(); //表单组件
 const screenTypeOptions = ref<EmptyArrayType>([]); // 甄别类型
-
+const appConfigStore = useAppConfig();
+const { AppConfigInfo } = storeToRefs(appConfigStore); // 系统配置信息
 // 打开弹窗
 const openDialog = async (val: any) => {
 	console.log(val);