|
@@ -173,24 +173,28 @@
|
|
@click.stop="copyApp(item)"
|
|
@click.stop="copyApp(item)"
|
|
v-if="item.json && item.json.copy === '1'"
|
|
v-if="item.json && item.json.copy === '1'"
|
|
>
|
|
>
|
|
- 复制
|
|
|
|
|
|
+ <img src="../../../../assets/icon/appStore/copy.svg" alt="">
|
|
|
|
+ <span>复制</span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@click.stop="updateApp(item)"
|
|
@click.stop="updateApp(item)"
|
|
v-if="item.userid === userId"
|
|
v-if="item.userid === userId"
|
|
>
|
|
>
|
|
- 修改
|
|
|
|
|
|
+ <img src="../../../../assets/icon/appStore/edit.svg" alt="">
|
|
|
|
+ <span>修改</span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@click.stop="delApp(item)"
|
|
@click.stop="delApp(item)"
|
|
v-if="item.userid === userId"
|
|
v-if="item.userid === userId"
|
|
>
|
|
>
|
|
- 删除
|
|
|
|
|
|
+ <img src="../../../../assets/icon/appStore/del.svg" alt="">
|
|
|
|
+ <span>删除</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<svg
|
|
<svg
|
|
t="1732786015570"
|
|
t="1732786015570"
|
|
@click.stop="updateCard(item.id)"
|
|
@click.stop="updateCard(item.id)"
|
|
|
|
+ :style="`transform: rotate(${editAppCard===item.id?'0deg':'90deg'});background-color:${editAppCard===item.id?'#F3F7FD':'#fff'}`"
|
|
class="icon"
|
|
class="icon"
|
|
viewBox="0 0 1024 1024"
|
|
viewBox="0 0 1024 1024"
|
|
version="1.1"
|
|
version="1.1"
|
|
@@ -1360,6 +1364,7 @@ export default {
|
|
height: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
align-items: flex-end;
|
|
|
|
+ justify-content: space-between;
|
|
position: relative;
|
|
position: relative;
|
|
font-size: 1.3em;
|
|
font-size: 1.3em;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
@@ -1378,16 +1383,21 @@ export default {
|
|
.ac_c_i_t_popover {
|
|
.ac_c_i_t_popover {
|
|
width: 30px;
|
|
width: 30px;
|
|
height: 30px;
|
|
height: 30px;
|
|
- position: absolute;
|
|
|
|
- right: 0;
|
|
|
|
- top: 0;
|
|
|
|
|
|
+ /* position: absolute; */
|
|
|
|
+ /* right: 0;
|
|
|
|
+ top: 0; */
|
|
z-index: 3;
|
|
z-index: 3;
|
|
}
|
|
}
|
|
|
|
|
|
.ac_c_i_t_popover svg {
|
|
.ac_c_i_t_popover svg {
|
|
- width: 25px;
|
|
|
|
- height: 25px;
|
|
|
|
|
|
+ width: 30px;
|
|
|
|
+ height: 30px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ padding: 2.5px;
|
|
|
|
+ /* transform: rotate(90deg); */
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
+ transition: .3s;
|
|
|
|
+ border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
|
|
.ac_c_i_t_p_box {
|
|
.ac_c_i_t_p_box {
|
|
@@ -1396,10 +1406,11 @@ export default {
|
|
top: 100%;
|
|
top: 100%;
|
|
right: 0;
|
|
right: 0;
|
|
padding: 8px;
|
|
padding: 8px;
|
|
- border-radius: 8px 0 8px 8px;
|
|
|
|
|
|
+ border-radius: 8px 8px 8px 8px;
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
- box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
+ /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); */
|
|
width: auto;
|
|
width: auto;
|
|
|
|
+ border: 1px solid #E7E7E7
|
|
}
|
|
}
|
|
|
|
|
|
.ac_c_i_t_p_box > div {
|
|
.ac_c_i_t_p_box > div {
|
|
@@ -1417,6 +1428,12 @@ export default {
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.ac_c_i_t_p_box > div>img{
|
|
|
|
+ width: 18px;
|
|
|
|
+ height: 18px;
|
|
|
|
+ margin-right: 10px;
|
|
|
|
+}
|
|
|
|
+
|
|
.ac_c_i_t_p_box > div:hover {
|
|
.ac_c_i_t_p_box > div:hover {
|
|
background-color: #f2f4f7;
|
|
background-color: #f2f4f7;
|
|
}
|
|
}
|
|
@@ -1433,6 +1450,7 @@ export default {
|
|
max-width: calc(100% - 80px);
|
|
max-width: calc(100% - 80px);
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
|
+ color: #00000066;
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
|