|
@@ -60,7 +60,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="ac_content">
|
|
|
- <div class="ac_c_item" v-for="(item, index) in dataList" :key="item.id">
|
|
|
+ <div class="ac_c_item" v-for="(item, index) in dataList" :key="item.id" @click="openApp(item.url)">
|
|
|
<div class="ac_c_i_top">
|
|
|
<div class="ac_c_i_t_left">
|
|
|
<svg
|
|
@@ -91,7 +91,7 @@
|
|
|
</div>
|
|
|
<div class="ac_c_i_t_popover" v-if="item.userid == userId">
|
|
|
<div class="ac_c_i_t_p_box" v-if="editAppCard === item.id" v-click-outside="handleBlur">
|
|
|
- <div @click="updateApp(item)">修改</div>
|
|
|
+ <div @click.stop="updateApp(item)">修改</div>
|
|
|
</div>
|
|
|
<svg t="1732786015570" @click.stop="updateCard(item.id)" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9199" width="200" height="200"><path d="M192 443.733333c-38.4 0-68.266667 29.866667-68.266667 68.266667 0 38.4 29.866667 68.266667 68.266667 68.266667s68.266667-29.866667 68.266667-68.266667c0-38.4-29.866667-68.266667-68.266667-68.266667zM512 443.733333c-38.4 0-68.266667 29.866667-68.266667 68.266667 0 38.4 29.866667 68.266667 68.266667 68.266667s68.266667-29.866667 68.266667-68.266667c0-38.4-29.866667-68.266667-68.266667-68.266667zM832 443.733333c-38.4 0-68.266667 29.866667-68.266667 68.266667 0 38.4 29.866667 68.266667 68.266667 68.266667s68.266667-29.866667 68.266667-68.266667c0-38.4-34.133333-68.266667-68.266667-68.266667z" fill="#111111" p-id="9200"></path></svg>
|
|
|
</div>
|
|
@@ -100,7 +100,7 @@
|
|
|
</div>
|
|
|
<div class="ac_c_i_bottom">
|
|
|
<div>{{ item.detail }}</div>
|
|
|
- <span @click="openApp(item.url)">{{ item.url }}</span>
|
|
|
+ <!-- <span @click="openApp(item.url)">{{ item.url }}</span> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ac_c_empty" v-if="dataList.length === 0">
|
|
@@ -175,12 +175,12 @@ export default {
|
|
|
getData() {
|
|
|
this.getDataLoading = true;
|
|
|
let params = {
|
|
|
- uid: this.userId,
|
|
|
- name: this.searchText,
|
|
|
- label: "",
|
|
|
- type: this.showType,
|
|
|
- juri: this.selectJuri,
|
|
|
- stand: "cn"
|
|
|
+ uid: this.userId,//用户ID
|
|
|
+ name: this.searchText,//应用名称搜索
|
|
|
+ label: "",//应用的标签搜索
|
|
|
+ type: this.showType,//应用的类型
|
|
|
+ juri: this.selectJuri,//应用权限 1:我的 2:组织内 3:所有人
|
|
|
+ stand: "cn"//cn站还是hk站
|
|
|
};
|
|
|
|
|
|
this.ajax
|
|
@@ -293,7 +293,7 @@ export default {
|
|
|
},
|
|
|
getTypeList() {
|
|
|
let params = {
|
|
|
- suserid: this.userId,
|
|
|
+ suserid: this.userId,//用户ID
|
|
|
sorg: this.org,
|
|
|
soid: this.oid,
|
|
|
sstand: "cn"
|
|
@@ -415,6 +415,7 @@ export default {
|
|
|
margin-right: 15px;
|
|
|
margin-bottom: 15px;
|
|
|
float: left;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
@media screen and (min-width: 1400px) {
|