|
@@ -43,6 +43,7 @@
|
|
|
@click="edit(scope.row)">编辑
|
|
|
</el-button>
|
|
|
<el-button type="text"
|
|
|
+ :disabled="booLock"
|
|
|
@click="download(scope.row)">下载点单二维码
|
|
|
</el-button>
|
|
|
<el-button type="text"
|
|
@@ -87,7 +88,8 @@ export default {
|
|
|
},
|
|
|
searchForm: {},
|
|
|
tableData: [],
|
|
|
- tableUrl: '/v1/bar/place/template/list'
|
|
|
+ tableUrl: '/v1/bar/place/template/list',
|
|
|
+ booLock: false
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -113,6 +115,7 @@ export default {
|
|
|
}).catch(() => {})
|
|
|
},
|
|
|
download (row) {
|
|
|
+ this.booLock = true
|
|
|
axios({
|
|
|
method: 'GET',
|
|
|
url: '/v1/bar/place/template/download',
|
|
@@ -122,6 +125,7 @@ export default {
|
|
|
responseType: 'blob',
|
|
|
headers: { 'Content-Type': 'application/json; application/octet-stream' }
|
|
|
}).then(response => {
|
|
|
+ this.booLock = false
|
|
|
if (response.data.type === 'application/octet-stream') {
|
|
|
/* 兼容ie内核,360浏览器的兼容模式 */
|
|
|
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
|
|
@@ -141,6 +145,7 @@ export default {
|
|
|
this.$message.error('下载出错,请联系管理员')
|
|
|
}
|
|
|
}).catch(error => {
|
|
|
+ this.booLock = false
|
|
|
this.$message.error(JSON.stringify(error))
|
|
|
})
|
|
|
}
|