mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
评价
This commit is contained in:
parent
f679dc8293
commit
53347a1f45
@ -5,7 +5,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div v-if="isViewSupport()" class="root" style="flex-direction: column; align-items: center">
|
<div v-if="isViewSupport()" class="root" style="flex-direction: column; align-items: center">
|
||||||
<ol style="overflow: auto" class="ccui-scrollbar">
|
<ol style="overflow: auto" class="ccui-scrollbar">
|
||||||
<li><a href="https://store.cocos.com/app/detail/2002" target="_blank">CocosStore打赏该插件</a></li>
|
<li><a :href="cocosStore" target="_blank">CocosStore打赏该插件</a></li>
|
||||||
<li><a :href="myPlugins" target="_blank" @click="onClickBuyPlugins">支持作者其他插件</a></li>
|
<li><a :href="myPlugins" target="_blank" @click="onClickBuyPlugins">支持作者其他插件</a></li>
|
||||||
<li>
|
<li>
|
||||||
<div style="display: flex; flex-direction: column; align-items: flex-start">
|
<div style="display: flex; flex-direction: column; align-items: flex-start">
|
||||||
@ -35,6 +35,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="foot">
|
<div class="foot">
|
||||||
|
<div class="rate" @click="onClickRate">
|
||||||
|
<img v-for="i in 5" style="width: 16px; object-fit: contain" src="./res/star.png" />
|
||||||
|
<div style="margin-left: 3px">求五星好评</div>
|
||||||
|
</div>
|
||||||
<div class="space"></div>
|
<div class="space"></div>
|
||||||
<div v-if="version">ver:{{ version }}</div>
|
<div v-if="version">ver:{{ version }}</div>
|
||||||
</div>
|
</div>
|
||||||
@ -46,6 +50,7 @@ import { ButtonGroupItem } from "@xuyanfeng/cc-ui/types/cc-button-group/const";
|
|||||||
import CCP from "cc-plugin/src/ccp/entry-render";
|
import CCP from "cc-plugin/src/ccp/entry-render";
|
||||||
import { ChromeConst } from "cc-plugin/src/chrome/const";
|
import { ChromeConst } from "cc-plugin/src/chrome/const";
|
||||||
import { defineComponent, onMounted, ref } from "vue";
|
import { defineComponent, onMounted, ref } from "vue";
|
||||||
|
import PKG from "../../../cc-plugin.config";
|
||||||
import { Page } from "../../core/types";
|
import { Page } from "../../core/types";
|
||||||
import { ga } from "../../ga";
|
import { ga } from "../../ga";
|
||||||
import { GA_EventName } from "../../ga/type";
|
import { GA_EventName } from "../../ga/type";
|
||||||
@ -137,8 +142,14 @@ export default defineComponent({
|
|||||||
const viewType = ref<ViewType>(ViewType.Friends);
|
const viewType = ref<ViewType>(ViewType.Friends);
|
||||||
const onlineTools = ref<Tools[]>([]);
|
const onlineTools = ref<Tools[]>([]);
|
||||||
const chooseItem = ref(items.value[0]);
|
const chooseItem = ref(items.value[0]);
|
||||||
|
const cocosStore = ref(PKG.manifest.store);
|
||||||
const myPlugins = ref("https://store.cocos.com/app/search?name=xu_yanfeng");
|
const myPlugins = ref("https://store.cocos.com/app/search?name=xu_yanfeng");
|
||||||
return {
|
return {
|
||||||
|
onClickRate() {
|
||||||
|
ga.fireEventWithParam(GA_EventName.Popup, "rate");
|
||||||
|
window.open(PKG.manifest.chrome.url);
|
||||||
|
},
|
||||||
|
cocosStore,
|
||||||
myPlugins,
|
myPlugins,
|
||||||
onClickBuyPlugins() {
|
onClickBuyPlugins() {
|
||||||
ga.fireEventWithParam(GA_EventName.Popup, myPlugins.value);
|
ga.fireEventWithParam(GA_EventName.Popup, myPlugins.value);
|
||||||
@ -217,7 +228,16 @@ export default defineComponent({
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
.rate {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #ff0000;
|
||||||
|
}
|
||||||
|
}
|
||||||
.space {
|
.space {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
BIN
src/views/popup/res/star.png
Normal file
BIN
src/views/popup/res/star.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.1 KiB |
Loading…
x
Reference in New Issue
Block a user