This commit is contained in:
parent
aa221ded75
commit
2c52b486ed
|
|
@ -208,7 +208,7 @@
|
||||||
if (index > 2 && index != cols.length - 1) {
|
if (index > 2 && index != cols.length - 1) {
|
||||||
$(this).data('edit', 'false');
|
$(this).data('edit', 'false');
|
||||||
$(this).removeAttr('data-edit');
|
$(this).removeAttr('data-edit');
|
||||||
$(this).addClass('layui-disabled');
|
// $(this).addClass('layui-disabled');
|
||||||
//将td元素的contentEditable属性设置为false,禁止编辑
|
//将td元素的contentEditable属性设置为false,禁止编辑
|
||||||
$(this).attr('contentEditable', 'false');
|
$(this).attr('contentEditable', 'false');
|
||||||
//将td元素的style属性设置为pointer-events: none,禁止点击
|
//将td元素的style属性设置为pointer-events: none,禁止点击
|
||||||
|
|
@ -219,7 +219,7 @@
|
||||||
|
|
||||||
let dataId = $(this).data('field')
|
let dataId = $(this).data('field')
|
||||||
if (item1[`${dataId}-file`] && item1[`${dataId}-file`]['fileName'] != '') {
|
if (item1[`${dataId}-file`] && item1[`${dataId}-file`]['fileName'] != '') {
|
||||||
$(this).find('.layui-table-cell').append(`<i class="layui-icon layui-icon-file-b" style="margin-left:6px"></i> `)
|
$(this).find('.layui-table-cell').append(`<i class="layui-icon layui-icon-file-b" style="margin-left:6px;cursor:pointer"></i> `)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -270,7 +270,7 @@
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
formHtml += `
|
formHtml += `
|
||||||
<div style="padding: 12px;">
|
<div style="padding: 12px;">
|
||||||
<form id="uploadForm">
|
<form id="uploadForm">
|
||||||
${innerHtml}
|
${innerHtml}
|
||||||
|
|
@ -341,7 +341,7 @@
|
||||||
|
|
||||||
console.log('inputValueinputValueinputValue', inputValue)
|
console.log('inputValueinputValueinputValue', inputValue)
|
||||||
|
|
||||||
const regex = /^\d+$/
|
const regex = /^(0|[1-9]\d*)?$/
|
||||||
|
|
||||||
if (!regex.test(inputValue)) {
|
if (!regex.test(inputValue)) {
|
||||||
layer.msg('请输入大于等于0的正整数')
|
layer.msg('请输入大于等于0的正整数')
|
||||||
|
|
@ -357,7 +357,10 @@
|
||||||
|
|
||||||
let dataId = $(this).data('id') // 获取 data-id
|
let dataId = $(this).data('id') // 获取 data-id
|
||||||
if (dataId && inputValue) {
|
if (dataId && inputValue) {
|
||||||
|
console.log('inputValue=====', inputValue)
|
||||||
formData[dataId] = inputValue * 1 // 将 data-id 作为键,输入框的值作为值
|
formData[dataId] = inputValue * 1 // 将 data-id 作为键,输入框的值作为值
|
||||||
|
} else {
|
||||||
|
formData[dataId] = ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue