Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
data-table
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2023-01-09 13:50:24 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
860aedf810159b93b3843c572a7e5bbc41d36dd0
860aedf8
1 parent
8f9c8617
电子签名功能联调
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
src/components/SignField/index.vue
src/components/SignField/index.vue
View file @
860aedf
...
...
@@ -6,7 +6,7 @@
* @Description: 电子签名控件
-->
<template>
<div class="sign-page">
<div
v-if="HideShow"
class="sign-page">
<div class="label">
{{ item.component_props.label }}{{ valid
}}<span v-if="item.component_props.required"> *</span>
...
...
@@ -71,6 +71,10 @@ import { getEtag } from "@/utils/qetag.js"; // 生成hash值
const props = defineProps({
item: Object,
});
// 隐藏显示
const HideShow = computed(() => {
return !props.item.component_props.disabled
})
const $route = useRoute();
const emit = defineEmits(["active"]);
...
...
Please
register
or
login
to post a comment