Compare commits
No commits in common. "6baa14cc5f908e2cf4979e52cc90feccf82671a4" and "a0a0ce7f28e2317fbf5d5e3939a645e14d1f34bd" have entirely different histories.
6baa14cc5f
...
a0a0ce7f28
|
|
@ -996,11 +996,9 @@ export default {
|
|||
fileUrl += e.url + ','
|
||||
fileName += e.name + ','
|
||||
})
|
||||
this.form.checkUrl = fileUrl.substring(fileUrl.length - 1, ',')
|
||||
this.form.checkUrlName = fileName.substring(
|
||||
fileName.length - 1,
|
||||
',',
|
||||
)
|
||||
this.form.checkUrl = fileUrl.substring(fileUrl.length - 1, 1)
|
||||
this.form.checkUrlName = fileName.substring(fileName.length - 1, 1)
|
||||
|
||||
// console.log(this.form)
|
||||
// console.log(equipments)
|
||||
this.$refs['form'].validate((valid) => {
|
||||
|
|
@ -1032,11 +1030,8 @@ export default {
|
|||
fileUrl += e.url + ','
|
||||
fileName += e.name + ','
|
||||
})
|
||||
this.aform.checkUrl = fileUrl.substring(fileUrl.length - 1, ',')
|
||||
this.aform.checkUrlName = fileName.substring(
|
||||
fileName.length - 1,
|
||||
',',
|
||||
)
|
||||
this.aform.checkUrl = fileUrl.substring(fileUrl.length - 1, 1)
|
||||
this.aform.checkUrlName = fileName.substring(fileName.length - 1, 1)
|
||||
|
||||
this.$refs['aform'].validate((valid) => {
|
||||
if (valid) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue