|
@@ -31,11 +31,51 @@ Vue.prototype.$echarts = echarts
|
|
// mockXHR()
|
|
// mockXHR()
|
|
// }
|
|
// }
|
|
|
|
|
|
|
|
+Vue.directive('tableHeight', {
|
|
|
|
+ update(el, binding) {
|
|
|
|
+ function changeElHeight() {
|
|
|
|
+ let height = 0
|
|
|
|
+ if (!binding.value) {
|
|
|
|
+ const navbarHeight = 46
|
|
|
|
+ const tabsHeight = 62
|
|
|
|
+ const searchHeight = document.querySelector('.app-container>.filter-container') ? document.querySelector('.app-container>.filter-container').offsetHeight : 0
|
|
|
|
+ const pageHeight = document.querySelector('.app-container>.pagination-container') ? 75 : 20
|
|
|
|
+ const otherHeight = document.querySelector('.app-container>.other-container') ? document.querySelector('.app-container>.other-container').offsetHeight : 0
|
|
|
|
+ height = navbarHeight + tabsHeight + searchHeight + pageHeight + otherHeight
|
|
|
|
+ } else {
|
|
|
|
+ height = binding.value
|
|
|
|
+ }
|
|
|
|
+ el.style.height = `${window.innerHeight - height > 230 ? window.innerHeight - height : 230}px`
|
|
|
|
+ }
|
|
|
|
+ changeElHeight()
|
|
|
|
+ window.onresize = () => {
|
|
|
|
+ changeElHeight()
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+})
|
|
|
|
+
|
|
// set ElementUI lang to EN
|
|
// set ElementUI lang to EN
|
|
// Vue.use(ElementUI, { locale })
|
|
// Vue.use(ElementUI, { locale })
|
|
// 如果想要中文版 element-ui,按如下方式声明
|
|
// 如果想要中文版 element-ui,按如下方式声明
|
|
Vue.use(ElementUI)
|
|
Vue.use(ElementUI)
|
|
|
|
|
|
|
|
+Vue.prototype.common = {
|
|
|
|
+ seamingImgUrl(url) {
|
|
|
|
+ if (!url) return ''
|
|
|
|
+ // return url.startsWith('https://') ? url : 'https://www.tuanfengkeji.cn:9527/dts-admin-api/admin/storage/fetch/' + url
|
|
|
|
+ if (url.startsWith('http://')) {
|
|
|
|
+ return url.replace('http://', 'https://')
|
|
|
|
+ } else if (url.startsWith('https://')) {
|
|
|
|
+ return url
|
|
|
|
+ } else if (url.startsWith('//')) {
|
|
|
|
+ return 'https:' + url
|
|
|
|
+ }
|
|
|
|
+ // https://tuanfengkeji.oss-cn-beijing.aliyuncs.com/tfshop/
|
|
|
|
+ // https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/
|
|
|
|
+ return 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/' + url
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
Vue.config.productionTip = false
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
new Vue({
|
|
new Vue({
|