|
@@ -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);
|