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:49:12 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8f9c86175dabea02c76de7d04f6f5e4a92e81174
8f9c8617
1 parent
86be3255
🐞 fix: 修复电子签名和评分组件检验方法错误问题
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
src/views/index.vue
src/views/index.vue
View file @
8f9c861
<!--
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-01-0
4 10:22:13
* @LastEditTime: 2023-01-0
9 13:47:56
* @FilePath: /data-table/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -329,9 +329,9 @@ const validOther = () => {
if (sign.value) {
// 电子签名
sign.value.forEach((item, index) => {
if (!sign.value[index].valid
ImageUploader
()) {
if (!sign.value[index].valid
Sign
()) {
valid = {
status: sign.value[index].valid
ImageUploader
(),
status: sign.value[index].valid
Sign
(),
key: "sign",
};
return false;
...
...
@@ -341,9 +341,9 @@ const validOther = () => {
if (rate_picker.value) {
// 评分组件
rate_picker.value.forEach((item, index) => {
if (!rate_picker.value[index].valid
ImageUploader
()) {
if (!rate_picker.value[index].valid
Rate
()) {
valid = {
status: rate_picker.value[index].valid
ImageUploader
(),
status: rate_picker.value[index].valid
Rate
(),
key: "rate_picker",
};
return false;
...
...
Please
register
or
login
to post a comment