zweiqin пре 1 година
родитељ
комит
ac3f0f6e04
2 измењених фајлова са 61 додато и 8 уклоњено
  1. 40 0
      src/main.js
  2. 21 8
      src/views/setup/timedTasksList/index.vue

+ 40 - 0
src/main.js

@@ -31,11 +31,51 @@ Vue.prototype.$echarts = echarts
 //   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
 // Vue.use(ElementUI, { locale })
 // 如果想要中文版 element-ui,按如下方式声明
 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
 
 new Vue({

+ 21 - 8
src/views/setup/timedTasksList/index.vue

@@ -23,7 +23,7 @@
     </div>
 
     <!-- 查询结果 -->
-    <div>
+    <div v-tableHeight>
       <el-table
         v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
         v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
@@ -159,15 +159,28 @@ export default {
 	padding: 20px;
 	display: flex;
 	flex-direction: column;
-}
 
-.filter-container {
-	// padding-bottom: 10px;
+	.filter-container {
+		// padding-bottom: 10px;
+
+		.filter-item {
+			display: inline-block;
+			vertical-align: middle;
+			margin-bottom: 10px;
+		}
+	}
+
+	.small-padding {
+		.cell {
+			padding-left: 5px;
+			padding-right: 5px;
+		}
+	}
 
-	.filter-item {
-		display: inline-block;
-		vertical-align: middle;
-		margin-bottom: 10px;
+	.fixed-width {
+		.el-button--mini {
+			padding: 7px 10px;
+		}
 	}
 }
 </style>