|
@@ -76,6 +76,7 @@
|
|
|
import PanelSearch from './panel-search/index.vue'
|
|
|
import { globalStore } from '@/store'
|
|
|
import { useI18n } from 'vue-i18n'
|
|
|
+ import axios from 'axios'
|
|
|
const { locale } = useI18n()
|
|
|
|
|
|
const lang = ref(new Array(tool.data.get('APP_LANG') || config.LANG))
|
|
@@ -172,7 +173,10 @@
|
|
|
|
|
|
// 操作手册
|
|
|
const operateManual = () => {
|
|
|
- console.log('操作手册')
|
|
|
+ const link = document.createElement('a')
|
|
|
+ link.href = 'https://coldchain.nzkcloud.com/coldchain.docx'
|
|
|
+ link.download = '冷链平台用户操作手册.docx'
|
|
|
+ link.click()
|
|
|
}
|
|
|
</script>
|
|
|
|