Fix syntax error

pull/9/head
johnniang 6 years ago
parent 39137738a9
commit a6b3f57623

@ -76,14 +76,14 @@ export default {
}
},
created() {
ResourcesData = function() {}
this.ResourcesData = function() {}
},
methods: {
//
downResources(type, id) {
if (type == 'ResourcesData') {
if (type === 'ResourcesData') {
alert('资源文件下载' + id)
} else if (type == 'DataBaseData') {
} else if (type === 'DataBaseData') {
alert('数据库文件下载' + id)
} else {
alert('文件下载' + id)
@ -91,9 +91,9 @@ export default {
},
//
sendResources(type, id) {
if (type == 'ResourcesData') {
if (type === 'ResourcesData') {
alert('资源文件发送到邮箱' + id)
} else if (type == 'DataBaseData') {
} else if (type === 'DataBaseData') {
alert('数据库文件发送到邮箱' + id)
} else {
alert('文件发送到邮箱' + id)
@ -101,9 +101,9 @@ export default {
},
//
deleteResources(type, id) {
if (type == 'ResourcesData') {
if (type === 'ResourcesData') {
alert('资源文件删除' + id)
} else if (type == 'DataBaseData') {
} else if (type === 'DataBaseData') {
alert('数据库文件删除' + id)
} else {
alert('文件删除' + id)
@ -111,9 +111,9 @@ export default {
},
//
backupData(type) {
if (type == 'ResourcesData') {
if (type === 'ResourcesData') {
alert('资源文件备份')
} else if (type == 'DataBaseData') {
} else if (type === 'DataBaseData') {
alert('数据库文件备份')
} else {
alert('文件备份')
@ -151,4 +151,4 @@ export default {
border-color: #fff;
background: #fff;
}
</style>
</style>

Loading…
Cancel
Save