|
@@ -2,14 +2,14 @@
|
|
|
<div class="inventionPointDialog" v-if="show2">
|
|
|
<div class="mini" :style="miniStyle" @click="changeDom('mini')" v-if="!show" v-drag="getPosition" ref="mini">查新</div>
|
|
|
<div class="plus" v-else v-drag2="getPosition" ref="plus" :style="plusStyle">
|
|
|
- <div class="head">
|
|
|
+ <div class="head" ondragstart="return false">
|
|
|
<div>{{ text }}</div>
|
|
|
<div style="width: 20px; height: 20px">
|
|
|
<el-image @click="changeDom('plus')" style="width: 100%; height: 100%" :src="require('@/assets/img/收起.png')" fit="contain"></el-image>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="main">
|
|
|
- <div class="main_head">
|
|
|
+ <div class="main_head" ondragstart="return false">
|
|
|
<div>
|
|
|
<span style="font-size:12px">发明点:</span>
|
|
|
<el-button v-if="projectId" style="margin-left:10px" type="text" size="mini" @click="intoProject" >进入项目</el-button>
|
|
@@ -455,6 +455,12 @@ export default {
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+ -webkit-user-drag: none;
|
|
|
+ user-select: none;
|
|
|
+ -moz-user-select: none;
|
|
|
+ -webkit-user-select: none;
|
|
|
+ -ms-user-select: none;
|
|
|
+ -webkit-user-drag: none;
|
|
|
}
|
|
|
.main {
|
|
|
.main_head {
|