- {{ cityInfo.cityName }}·{{ mapInfo.mapName }}
+ {{ cityInfo.cityName }}·{{ mapInfo.mapName }}({{ mapInfo.x }},{{ mapInfo.y }})
刷新
任务
消息{{ messageCount > 0 ? "(" + messageCount + ")" : "" }}
@@ -16,6 +16,11 @@
{{ item.nick }}
+
{{ item.npcName }}{{ item.tips }}
@@ -116,6 +121,7 @@ const cityShow = ref
>([]);
const mapUser = ref>([]);
const business = ref>([]);
const mapRes = ref>([]);
+const monster = ref>([]);
const messageCount = ref(0);
const broadcast = ref>([]);
// 城内地图显示
@@ -137,6 +143,7 @@ const BindData = async (map: string): Promise => {
mapInfo.value = result.data.mapInfo;
cityInfo.value = result.data.cityInfo;
npcData.value = result.data.npcData;
+ monster.value = result.data.monster;
chatData.value = result.data.chatData;
cityShow.value = result.data.cityShow;
mapUser.value = result.data.nearUser;
@@ -146,6 +153,7 @@ const BindData = async (map: string): Promise => {
broadcast.value = result.data.broadcast;
MapVent(result.data.mapInfo.near);
onMap.value = mapInfo.value.mapId;
+ console.log(result)
}
else if (result.code == 103) {
PageExtend.Redirect("/map/runing");
diff --git a/Web/src/pages/user/bag/drug.vue b/Web/src/pages/user/bag/drug.vue
new file mode 100644
index 0000000..1db9e16
--- /dev/null
+++ b/Web/src/pages/user/bag/drug.vue
@@ -0,0 +1,67 @@
+
+
+ 我的药品栏
+
+
+
+ {{ index + 1 }}.
{{ item.name }}({{ item.count }})
+ [
移除 ]
+
+
+ 暂无药品.
+
+
+
+
+ 说明:
+ 1.药品栏用于备战,在战斗中可以快速使用物品。
+ 2.当开启自动使用药品时,按照药品栏的顺序来进行使用物品。
+ 3.药品栏为储存战斗临时药品的空间,取回时添加到背包。
+ 4.药品栏每个栏的空间上限个数为999个。
+
+
+
\ No newline at end of file