v0.7.17 修复高dpi 显示器 的显示错位问题

This commit is contained in:
Hunlongyu
2020-01-19 21:27:23 +08:00
parent 02c5cc0f1d
commit b8cd7cc30c
4 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "zy",
"version": "0.7.16",
"version": "0.7.17",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

View File

@@ -10,11 +10,11 @@
<el-table-column prop="name" label="影片名称"></el-table-column>
<el-table-column prop="type" label="影片类别" width="120"></el-table-column>
<el-table-column prop="time" label="更新时间" width="180"></el-table-column>
<el-table-column label="操作" width="130">
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button type="text" @click="tableBtnClick('star', scope.row)">收藏</el-button>
<el-button type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
<el-button size="small" type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button size="small" type="text" @click="tableBtnClick('star', scope.row)">收藏</el-button>
<el-button size="small" type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
</template>
</el-table-column>
</el-table>

View File

@@ -13,11 +13,11 @@
<el-table-column prop="name" label="影片名称"></el-table-column>
<el-table-column prop="type" label="影片类别" width="120"></el-table-column>
<el-table-column prop="time" label="更新时间" width="180"></el-table-column>
<el-table-column label="操作" width="130">
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button type="text" @click="tableBtnClick('star', scope.row)">收藏</el-button>
<el-button type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
<el-button size="small" type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button size="small" type="text" @click="tableBtnClick('star', scope.row)">收藏</el-button>
<el-button size="small" type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
</template>
</el-table-column>
</el-table>

View File

@@ -5,11 +5,11 @@
<el-table-column prop="name" label="影片名称"></el-table-column>
<el-table-column prop="type" label="影片类别" width="120"></el-table-column>
<el-table-column prop="time" label="更新时间" width="180"></el-table-column>
<el-table-column label="操作" width="130">
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button type="text" @click="tableBtnClick('delete', scope.row)">删除</el-button>
<el-button type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
<el-button size="small" type="text" @click="tableBtnClick('detail', scope.row)">详情</el-button>
<el-button size="small" type="text" @click="tableBtnClick('delete', scope.row)">删除</el-button>
<el-button size="small" type="text" @click="tableBtnClick('play', scope.row)">播放</el-button>
</template>
</el-table-column>
</el-table>