|
@@ -97,11 +97,11 @@
|
|
|
<el-popover
|
|
|
placement="left"
|
|
|
:width="400"
|
|
|
- trigger="hover"
|
|
|
+ trigger="click"
|
|
|
@show="history(scope.row)"
|
|
|
>
|
|
|
<template #reference>
|
|
|
- <span>{{ scope.row.status }}</span>
|
|
|
+ <span @click="history(scope.row)">{{ scope.row.status }}</span>
|
|
|
</template>
|
|
|
<div>
|
|
|
<p>操作历史</p>
|
|
@@ -368,6 +368,14 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
+.wrap {
|
|
|
+ width: 400px;
|
|
|
+ position: absolute;
|
|
|
+ top: 131px;
|
|
|
+ left: 794px;
|
|
|
+ transform-origin: right center;
|
|
|
+ z-index: 2005;
|
|
|
+}
|
|
|
.vertical-line {
|
|
|
height: 100px;
|
|
|
border-left: 2px solid;
|