future 1 vuosi sitten
vanhempi
sitoutus
00a0196ca8
34 muutettua tiedostoa jossa 581 lisäystä ja 9696 poistoa
  1. 189 0
      xs-app/components/read/chapterCatalog.vue
  2. 8 4
      xs-app/components/read/readPage.vue
  3. 111 0
      xs-app/components/read/settingMenu.vue
  4. 5 1
      xs-app/config/config.ts
  5. 38 23
      xs-app/data/data.ts
  6. 54 17
      xs-app/framework/tools.ts
  7. 21 2
      xs-app/pages.json
  8. 1 2
      xs-app/pages/bookshelf/bookshelf.vue
  9. 150 40
      xs-app/pages/readbook/read.vue
  10. BIN
      xs-app/static/.DS_Store
  11. BIN
      xs-app/static/imgs/.DS_Store
  12. BIN
      xs-app/static/imgs/read/background1.jpg
  13. 2 0
      xs-app/stores/readSetting.ts
  14. 2 0
      xs-app/uni_modules/uni-popup/components/uni-popup/uni-popup.vue
  15. 0 40
      xs-app/unpackage/dist/dev/mp-toutiao/app.js
  16. 0 41
      xs-app/unpackage/dist/dev/mp-toutiao/app.json
  17. 0 8051
      xs-app/unpackage/dist/dev/mp-toutiao/common/vendor.js
  18. 0 45
      xs-app/unpackage/dist/dev/mp-toutiao/components/public/Message.js
  19. 0 58
      xs-app/unpackage/dist/dev/mp-toutiao/components/public/alertDialog.js
  20. 0 27
      xs-app/unpackage/dist/dev/mp-toutiao/components/read/readPage.js
  21. 0 47
      xs-app/unpackage/dist/dev/mp-toutiao/config/config.js
  22. 0 53
      xs-app/unpackage/dist/dev/mp-toutiao/framework/tools.js
  23. 0 50
      xs-app/unpackage/dist/dev/mp-toutiao/pages/bookshelf/bookshelf.js
  24. 0 57
      xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.js
  25. 0 7
      xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.json
  26. 0 1
      xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.ttml
  27. 0 43
      xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.ttss
  28. 0 8
      xs-app/unpackage/dist/dev/mp-toutiao/pages/mine/mine.js
  29. 0 91
      xs-app/unpackage/dist/dev/mp-toutiao/pages/readbook/read.js
  30. 0 100
      xs-app/unpackage/dist/dev/mp-toutiao/pages/test/index.js
  31. 0 170
      xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js
  32. 0 60
      xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.js
  33. 0 393
      xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup/uni-popup.js
  34. 0 265
      xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-transition/components/uni-transition/uni-transition.js

+ 189 - 0
xs-app/components/read/chapterCatalog.vue

@@ -0,0 +1,189 @@
+<template>
+	<view
+		class="directory"
+		:class="{ container0: background === 1, container1: background === 2 }"
+		@touchend.stop>
+		<view class="virtual-list" style="position: relative;">
+			<movable-area style="position: absolute;right: 0;width: 30px;height: 100%;">
+				<movable-view class="action-bar-box" direction="vertical" @change="change" :y="y" :animation="false">
+					<view style="border-bottom: #000 solid 2px;width: 100%;"></view>
+					<view style="border-bottom: #000 solid 2px;width: 100%;"></view>
+				</movable-view>
+			</movable-area>
+			<scroll-view
+				scroll-y="true"
+				:style="{
+					height: scrollHeight + 'px',
+					position: 'relative',
+					zIndex: 1
+				}"
+				@scroll="handleScroll"
+				:scroll-top="scrollTop"
+				:show-scrollbar="false"
+			>
+				<view
+					class="scroll-bar"
+					:style="{
+						height: localHeight + 'px'
+					}"
+				></view>
+				<view
+					class="list"
+					:style="{
+						transform: `translateY(${offset}px)`
+					}"
+				>
+				<view class="item-wrap" v-for="(item, index) in visibleData" :key="item.id">
+					<!-- <slot :item="item" :active="active"></slot> -->
+					<view class="directory-listItem" :class="{ active: item.id == active }" @click="clickChar(item)">{{ item.name }}</view>
+				</view>
+				</view>
+			</scroll-view>
+		</view>
+	</view>
+	
+</template>
+
+<script setup lang="ts">
+	import { ref,onMounted,computed} from 'vue';
+	// const {items,remain,size,active,scrollHeight} = defineProps(['items','remain','size','active','scrollHeight'])
+	const {items,remain,size,active,scrollHeight} =defineProps({
+		  items: {
+		    type: Array,
+		    required: true,
+		    default: []
+		  },
+		  remain: {
+		    type: Number,
+		    required: true,
+		    default: 0
+		  },
+		  size: {
+		    type: Number,
+		    required: true,
+		    default: 0
+		  },
+		  active: {
+		    type: Number,
+		    required: true,
+		    default: 0
+		  },
+		  scrollHeight: {
+		    type: Number,
+		    required: true,
+		    default: 0
+		  },
+		});
+	const emits = defineEmits(['clickChar'])
+	let start = ref(0)
+	let end = ref(0)
+	let offset = ref(0)
+	let scrollTop = ref(0)
+	let y = ref(0)
+	
+	let background = ref(1)
+	onMounted(()=>{
+		scrollTop.value = size * active
+	})
+	
+	let preCount = computed(()=>{
+		return Math.min(start.value, remain);
+	})
+	
+	let nextCount = computed(()=>{
+		return Math.min(items.length - end.value, remain);
+	})
+	
+	let visibleData = computed(()=>{
+		const t_start = start.value - preCount.value;
+		const t_end = end.value + nextCount.value;
+		return items.slice(t_start, t_end);
+	})
+	
+	let localHeight = computed(()=>{
+		return items.length * size;
+	})
+	
+	function clickChar(item){
+		emits('clickChar',item)
+	}
+	
+	function change(e){
+		if (e.detail.source !== 'touch') {
+			return;
+		}
+		let y = e.detail.y;
+		let scroll = (y / (scrollHeight - 40)) * (localHeight.value - scrollHeight);
+		scroll = scroll < 0 ? 0 : scroll;
+		scrollTop.value = scroll;
+	}
+	
+	function handleScroll(ev){
+		const scrollTop = ev.detail.scrollTop;
+		y.value = (scrollTop / (localHeight.value - scrollHeight)) * (scrollHeight - 40);
+		// 开始位置
+		const t_start = Math.floor(scrollTop / size);
+		start.value = start.value < 0 ? 0 : t_start;
+		// 结束位置
+		end.value = t_start +remain;
+		// 计算偏移
+		const t_offset = scrollTop - (scrollTop % size) - preCount.value * size;
+		offset.value = t_offset < 0 ? 0 : t_offset;
+	}
+	
+</script>
+
+<style scoped>
+	.list {
+		position: absolute;
+		top: 0;
+		left: 0;
+		width: 100%;
+	}
+	.action-bar-box {
+		padding: 3px;
+		display: flex;
+		flex-flow: column;
+		justify-content: space-around;
+		align-items: center;
+		position: absolute;
+		right: 0;
+		background-color: transparent;
+		border-radius: 10rpx;
+		box-shadow: 0 0 5px #000;
+		width: 20px;
+		height: 40px;
+		z-index: 2;
+	}
+	.directory-listItem {
+		display: flex;
+		align-items: center;
+		padding-left: 10px;
+		height: 40px;
+		font-size: 14px;
+		border-bottom: #eee solid 1px;
+	}
+	.active {
+		color: red;
+	}
+	.container0 {
+		background: url('../../static/imgs/read/background1.jpg');
+		background-color: #fff;
+		background-size: 100% 100%;
+	}
+	.container1 {
+		background-color: #000;
+	}
+	.directory {
+		position: absolute;
+		top: 0;
+		display: flex;
+		flex-flow: column;
+		width: 600rpx;
+		height: 100%;
+		transition: left 0.1s;
+	}
+	.active {
+		color: red;
+	}
+</style>

+ 8 - 4
xs-app/components/read/readPage.vue

@@ -1,11 +1,14 @@
 <template>
+	<view v-html="book_title" :style="{
+		fontSize:`${config.read_config.fontSizeList[read_setting_data.fontSizeIndex]*1.5}px`,
+		lineHeight:`${config.read_config.lineHeight * config.read_config.fontSizeList[read_setting_data.fontSizeIndex]}px`,
+	}"></view>
 	<view class="inner-box">
 		<view class="book-inner"
 			v-html="text_content"
 			:style="{
 				fontSize: `${config.read_config.fontSizeList[read_setting_data.fontSizeIndex]}px`,
 				lineHeight: `${config.read_config.lineHeight * config.read_config.fontSizeList[read_setting_data.fontSizeIndex]}px`,
-				color: `${config.read_config.colorList[read_setting_data.colorBgIndex]}`,
 		}"></view>
 		<image src="../../static/logo.png"></image>
 	</view>
@@ -17,15 +20,16 @@
 	import { ReadSetting } from '../../stores/readSetting';
 	import { config } from '../../config/config';
 	import { log } from '../../framework/log';
-	let  {text_content} =  defineProps(['text_content'])
+	
+	let  {text_content,book_title} =  defineProps(['text_content','book_title'])
+	
 	let read_setting_data = ReadSetting().getReadSetting()
 	
 	function showTopLoading(){
-		
 	}
 	
 	function showBottomLoading(){
-		
+			
 	}
 	defineExpose({ showBottomLoading,showTopLoading });
 </script>

+ 111 - 0
xs-app/components/read/settingMenu.vue

@@ -0,0 +1,111 @@
+<template>
+	<view>
+		<uni-popup  @touchstart="maskStart" @touchmove="maskTouch" :animation="false" mask-background-color="rgba(0,0,0,0)" ref="menu"  background-color="#fff"  @change="change">
+			<view v-if="showSettingFontSizeMode==false" class="selects-box">
+				<view @click="emit('clickPreChapter')">上一章</view>
+				<view @click="emit('clickNextChapter')">下一章</view>
+			</view>
+			
+			<view v-if="showSettingFontSizeMode==false" class="popup-content" :class="{ 'popup-height': type === 'left' || type === 'right' }">
+				<view class="items-box">
+					<view class="item-box" @click="emit('clickCatalog')">
+						目录
+					</view>
+					<view class="item-box" v-if="mode === config.read_config.readMode.Bright" @click="emit('clickMode',config.read_config.readMode.Dark)">
+						夜间
+					</view>
+					<view class="item-box" v-if="mode === config.read_config.readMode.Dark" @click="emit('clickMode',config.read_config.readMode.Bright)">
+						日间
+					</view>
+					<view class="item-box" @click="emit('clickOpenSetting')">
+						设置
+					</view>
+				</view>	
+			</view>
+			
+			<view v-if="showSettingFontSizeMode==true" class="fontSelect" >
+				<view>字体大小</view>
+				<view> |</view>
+				<view></view>
+			</view>
+		</uni-popup>
+	</view>
+</template>
+
+<script setup lang="ts">
+	import {ref, onMounted,defineProps,defineEmits} from 'vue'
+	import { config } from '../../config/config';
+	import { ReadSetting } from '../../stores/readSetting';
+	const emit = defineEmits(['clickCatalog','clickPreChapter','clickNextChapter','clickMode','clickOpenSetting','Close'])
+	// const { windowWidth, windowHeight, statusBarHeight, platform, pixelRatio } = uni.getSystemInfoSync();
+	let menu = ref(null)
+	function change(e){
+		if(e.show==false){
+			emit('Close')
+		}
+		console.log('当前模式:' + e.type + ',状态:' + e.show);
+	}
+	onMounted(()=>{
+		const type = 'bottom'
+		// open 方法传入参数 等同在 uni-popup 组件上绑定 type属性
+		menu.value.open(type)
+	})
+	let mode = ref(ReadSetting().getReadSetting().readMode)
+	let startPosY = ref(-1)
+	function maskTouch(e){
+		if(Math.abs(e.changedTouches[0].pageY-startPosY.value)>10){
+			startPosY.value = -1
+			emit('Close')
+		}
+	}
+	function maskStart(e){
+		startPosY.value = e.changedTouches[0].pageY
+	}
+	let showSettingFontSizeMode = ref(false)
+	
+	function showSettingFont(){
+		showSettingFontSizeMode.value = true
+	}
+	defineExpose({showSettingFont})
+</script>
+
+<style lang="scss" scoped>
+	.selects-box{
+		display: flex;
+		justify-content: space-around;
+		align-items: center;
+		height: 80px;
+		width: 100%;
+		.item-box {
+			display: flex;
+			flex-flow: column;
+			justify-content: center;
+			align-items: center;
+			height: 100%;
+		}
+	}
+	.items-box {
+		display: flex;
+		justify-content: space-around;
+		align-items: center;
+		height: 80px;
+		width: 100%;
+		margin-bottom: 5%;
+		.item-box {
+			display: flex;
+			flex-flow: column;
+			justify-content: center;
+			align-items: center;
+			height: 100%;
+		}
+	}
+	
+	.fontSelect {
+		display: flex;
+		justify-content: space-around;
+		align-items: center;
+		height: 80px;
+		width: 100%;
+	}
+
+</style>

+ 5 - 1
xs-app/config/config.ts

@@ -78,6 +78,10 @@ export class config {
 	public static read_config = {
 		colorList:['#000', '#666'],
 		lineHeight:1.8,
-		fontSizeList:[12,14,16,18,20,22,24]
+		fontSizeList:[12,14,16,18,20,22,24],
+		readMode:{
+			Bright:1,
+			Dark:2
+		}
 	}
 }

+ 38 - 23
xs-app/data/data.ts

@@ -5,29 +5,6 @@ export class user_data{
 	token:string;
 }
 
-export class book_item_data{
-	book_id:number;
-	book_name:string;
-	author_name:string;
-	book_cover:string;
-	book_brief:string;
-	book_is_action:number;
-	category_id:number;
-	is_delete:number;
-	create_at:string;
-	book_read_num:number;
-	chapter_new_name:string;
-	pay_type:number;
-	chapter_count:number;
-	update_time:string;
-	source_id:number;
-	chapter_time:string;
-	word_count:number;
-	base_path:string;
-	chapter_path:string;
-	cur_read_chapter_id:number = 1;
-}
-
 export class chapter_item_data{
 	coin:number;
 	id:number;
@@ -43,4 +20,42 @@ export class user_status{
 export class read_setting_data{
 	fontSizeIndex:number;
 	colorBgIndex:number;
+	readMode:number;
+}
+
+export class book_read_data{
+	book_title:string;
+	book_content:string;
+	book_chapter_id:number;
+}
+
+export class chapter_list_item{
+	name:string; //章节名称
+	id:number; //章节ID
+	word_count:number; //字数
+	coin:number; //金币
+	pay_type:number; //是否收费 1 收费 0 免费
+}
+
+export class book_item_data{
+	book_id:number; //书籍ID
+	book_name:string; //书籍名称
+	author_name:string; //作者
+	book_cover:string; //封面
+	book_brief:string; //简介
+	book_is_action:number; //0 连载1 完结 2 断更
+	category_id:number; //	分类ID
+	is_delete:number; //	是否删除
+	create_at:string; //创建时间
+	book_read_num:number; //	阅读数量
+	chapter_new_name:string; //	章节最新更新名称
+	pay_type:number; //	是否收费 1 收费 0 免费
+	chapter_count:number; //	章节总数
+	update_time:string; //	更新时间
+	source_id:number; // 	来源ID
+	chapter_time:string; //	章节更新时间
+	word_count:number; // 	字数
+	chapter_path:string; //	章节列表静态地址
+	base_path:string;  //章节内容静态地址-需要拼接章节id 例如 /test_books/0/1/1.txt
+	start_read_chapter_id:number = -1; //
 }

+ 54 - 17
xs-app/framework/tools.ts

@@ -1,6 +1,6 @@
 
 import { config } from "../config/config";
-import { book_item_data } from "../data/data";
+import { book_item_data, chapter_item_data } from "../data/data";
 import { http } from "./http";
 import { log } from "./log";
 
@@ -38,28 +38,65 @@ export class tools {
 	}
 	
 	public static getCurChapterTxt(base_path:string,chapter_id:number,emspWidth:number,cb:Function){
-		let url = `${base_path}${chapter_id}.txt`
-		http.getStaticText(url,(err,data)=>{
-			if(err){
-				log.Error(err)
-				return
-			}
-			// log.Debug("getCurChapterTxt",data)
-			cb(tools.autoParagraph(data,emspWidth))
-			// cb(data)
-		})
-	}
-	
-	public static getChapterReadChapterIdByData(chapter_data:book_item_data){
-		if(chapter_data.cur_read_chapter_id==undefined||chapter_data.cur_read_chapter_id==0||chapter_data.cur_read_chapter_id==null){
-			return 1
+		if(chapter_id){
+			let url = `${base_path}${chapter_id}.txt`
+			http.getStaticText(url,(err,data)=>{
+				if(err){
+					log.Error(err)
+					return
+				}
+				// log.Debug("getCurChapterTxt",data)
+				cb(tools.autoParagraph(data,emspWidth))
+				// cb(data)
+			})	
 		}
+
 	}
 	
+	
 	public static autoParagraph(text:string,emspWidth:number) {
 		const emspStyle = `style="margin-left: ${emspWidth}px;"`; 
 		const emsp_html = `<span ${emspStyle}></span>`;
 		const character =  `<br><br>${emsp_html}`;
-		return  character+text.replace(/\n\s*/g,character)
+		return  emsp_html+text.replace(/\n\s*/g,character)
+	}
+	
+	public static autoParagraphTitle(text:string,emspWidth:number) {
+		const emspStyle = `style="margin-left: ${emspWidth}px;"`; 
+		const emsp_html = `<span ${emspStyle}></span>`;
+		return  `<br><br>`+emsp_html+text
+	}
+	
+	public static getChapter(cur_chapter_id:number,list:chapter_item_data[]){
+		return list.find(chapter_data=>cur_chapter_id==chapter_data.id)
+	}
+	
+	public static getPreChapterData(index:number,list:chapter_item_data[]){
+		let new_index = index -1 
+		if( new_index <0 ){
+			return null
+		}
+		return list[new_index]
+	}
+	
+	public static getCurChapterData(index:number,list:chapter_item_data[]):chapter_item_data{
+		if(index<list.length&&index>=0){
+			return list[index]
+		}
+		log.Error("getCurChapterData error ",index)
+		return null
+	}
+	
+	
+	public static getNextChapterData(index:number,list:chapter_item_data[]){
+		let new_index = index +1
+		if( new_index >=list.length ){
+			return null
+		}
+		return list[new_index]
+	}
+	
+	public static getCurChapterIndex(chapter_id:number,list:chapter_item_data[]){
+		return list.findIndex(chapter_data=>chapter_id==chapter_data.id)
 	}
 }

+ 21 - 2
xs-app/pages.json

@@ -12,16 +12,35 @@
 		{
 			"path": "pages/bookstore/bookstore",
 			"style": {
+<<<<<<< HEAD
 				"navigationBarTitleText": "书城",
+=======
+				"navigationStyle": "default",
+>>>>>>> a1cef6ca8a14f8b3e2eb2b5c23a3ecc468160b5a
 				"app-plus": {
 					"bounce": "none"
 				}
 			}
 		},
 		{
+<<<<<<< HEAD
 			"path": "pages/mine/mine",
 			"style": {
 				"navigationBarTitleText": "我的",
+=======
+			"path": "pages/bookshelf/bookshelf",
+			"style": {
+				"navigationStyle": "default",
+				"app-plus": {
+					"bounce": "none"
+				}
+			}
+		},
+		{
+			"path": "pages/mine/mine",
+			"style": {
+				"navigationStyle": "default",
+>>>>>>> a1cef6ca8a14f8b3e2eb2b5c23a3ecc468160b5a
 				"app-plus": {
 					"bounce": "none"
 				}
@@ -30,7 +49,7 @@
 		{
 			"path": "pages/readbook/read",
 			"style": {
-				"navigationStyle": "custom",
+				"navigationStyle": "default",
 				"enablePullDownRefresh": true,
 				"onReachBottomDistance": 10
 			}
@@ -38,7 +57,7 @@
 		{
 			"path": "pages/test/index",
 			"style": {
-				"navigationStyle": "custom"
+				"navigationStyle": "default"
 			}
 		},
 		{

+ 1 - 2
xs-app/pages/bookshelf/bookshelf.vue

@@ -23,6 +23,7 @@
 	
 	function onClickItem(item:book_item_data){
 		// util.alert("点击了"+item.book_name)
+		item.start_read_chapter_id = 1
 		UserStatus().updateUserSlectBook(item)
 		uni.reLaunch({
 			url: '/pages/readbook/read'
@@ -35,14 +36,12 @@
 			if(err){
 				return
 			}
-			
 			log.Debug("data.code", typeof config.url_confg.StatesCode.SUCCESS)
 			if(data.code==config.url_confg.StatesCode.SUCCESS){
 				log.Debug("book_list",data)
 				book_list.value = data.content
 			}else{
 			}
-			
 		})
 		// uni.reLaunch({
 		// 	url: '/pages/test/index'

+ 150 - 40
xs-app/pages/readbook/read.vue

@@ -1,71 +1,102 @@
 <template>
-	<readPage ref="readPages" @touchend="onClickView" @touchmove="hideSetting" v-for="(text,index) in book_text_list" :key="index" :text_content="text" >
-					
+	<readPage ref="readPages" @touchstart="onStartClickView" 
+	@touchend="onEndClickView" @touchmove="hideSetting" v-for="(book_read_data_item,index) in book_text_list_view" :key="book_read_data_item.book_chapter_id" 
+	:text_content="book_read_data_item.book_content" :book_title="book_read_data_item.book_title">
 	</readPage>
-
+	<settingMenu ref="Menu" v-if="menuShow" @clickCatalog="onClickCatalog" 
+	@clickPreChapter="onClickPreChapter" @clickNextChapter="onClickNextChapter" 
+	@clickMode="onClickMode" @clickOpenSetting="onClickOpenSetting"
+	@Close="closeMenu">
+	</settingMenu>
+	<chapterCatalog v-if="showChapterList" :items="directoryList" :size="40" :remain="16"
+	 :active="tools.getCurChapterData(cur_read_chapter_index,directoryList).id" :scrollHeight="windowHeight - 60" @clickChar="goToChapter">
+	</chapterCatalog>
 </template>
 
 <script setup lang="ts">
-	import { ref,getCurrentInstance} from 'vue';
-	import { book_item_data, chapter_item_data } from '../../data/data';
+	import { ref } from 'vue';
+	import { book_data, book_item_data, book_read_data, chapter_item_data } from '../../data/data';
 	import { tools } from '../../framework/tools';
 	import { UserStatus } from '../../stores/userStatusManager';
 	import { log } from '../../framework/log';
 	import readPage from '../../components/read/readPage.vue'
+	import settingMenu from '../../components/read/settingMenu.vue'
+	import chapterCatalog from '../../components/read/chapterCatalog.vue'
 	import {onPullDownRefresh,onReachBottom} from '@dcloudio/uni-app'
+	import { ReadSetting } from '../../stores/readSetting';
+	import { config } from '../../config/config';
+	
+	const {windowHeight} = uni.getSystemInfoSync()
 	const readPages = ref(null)
+	const Menu = ref(null)
 	let book_data:book_item_data = UserStatus().getUserSlectBook()
-	let book_list:chapter_item_data[] = []
-	let cur_read_chapter_id =ref(0)
+	let directoryList:chapter_item_data[] = []
+	let cur_read_chapter_index =ref(0)
+	let start_read_chapter_id = book_data.start_read_chapter_id
 	//设置属性 
-	let fontSize = ref(18)
-	let lineHeight = ref(1.8)
-	let colorList = ref(['#000', '#666']) 
-	
+	let read_setting_data = ReadSetting().getReadSetting()
+	let fontSize = config.read_config.fontSizeList[read_setting_data.fontSizeIndex]
+	let bgColor = config.read_config.colorList[read_setting_data.colorBgIndex]
 	//设置属性end
-	if(book_data!=null){
+	if(book_data!=null&&start_read_chapter_id!=-1){
 		initView()
 	}
-	let book_text_list = ref<Array<string>>([])
+	
+	let book_text_list_view = ref<Array<book_read_data>>([])
+	let book_text_list_cache = ref<Map<number,book_read_data>>(new Map<number,book_read_data>())
 	function initView(){
-		cur_read_chapter_id.value = tools.getChapterReadChapterIdByData(book_data)
 		tools.getChapterList(book_data.chapter_path,(chapter_ls)=>{
-			// log.Debug("chapter_ls",chapter_ls)
-			book_list = chapter_ls
+			directoryList = chapter_ls
+			cur_read_chapter_index.value = tools.getCurChapterIndex(start_read_chapter_id,directoryList)
 			draw()
 		})
 	}
-	function draw(){
-		if(cur_read_chapter_id.value!=0){
-			tools.getCurChapterTxt(book_data.base_path,cur_read_chapter_id.value,fontSize.value*2,(text:string)=>{
-				book_text_list.value.push(text)
-			})
+	function draw(dir_is_down:boolean=true){
+		let loading_view = (d:book_read_data)=>{
+			if(d!=null){
+				if(dir_is_down){
+					book_text_list_view.value.push(d)
+				}else{
+					book_text_list_view.value.unshift(d)
+				}
+			}
 		}
-	
-	}
-	function lower(){
-		cur_read_chapter_id.value+=1;
-		draw()
-	}		
-	
-	function onClickView(){
-
-	}
-	
-	function hideAllTop(){
+		if(cur_read_chapter_index.value<=directoryList.length&&cur_read_chapter_index.value>=0){
+			let data = tools.getCurChapterData(cur_read_chapter_index.value,directoryList)
+			if(data!=null){
+				let cache_data = book_text_list_cache.value.get(data.id)
+				if(cache_data!=null){
+					loading_view(cache_data)
+				}else{
+					tools.getCurChapterTxt(book_data.base_path,data.id,fontSize*2,(text:string)=>{
+						cache_data = new book_read_data()
+						cache_data.book_content = text
+						cache_data.book_chapter_id = data.id
+						cache_data.book_title = tools.autoParagraphTitle(data.name,fontSize*4) 
+						book_text_list_cache.value.set(data.id,cache_data)
+						loading_view(cache_data)
+					})
+				}
+			}
 		
-	}
+		}else{
+			log.Error("暂无可读取内容!")
+		}
 	
-	function showSetting(){
-		
 	}
-	
-	function hideSetting(){
+	function down_dir_load(){
+		cur_read_chapter_index.value+=1;
+		draw()
+	}	
 		
+	function up_dir_load(){
+		cur_read_chapter_index.value-=1;
+		draw(false)
 	}
 	
 	onPullDownRefresh( async () => {
 		showTopLoadingStatus()
+		uni.stopPullDownRefresh();
 	})
 	
 	onReachBottom(async ()=>{
@@ -74,9 +105,9 @@
 	
 	function showBottomLoadingStatus(){
 		readPages.value.find((child,index)=>{
-			if( index == (book_text_list.value.length-1) ){
+			if( index == (book_text_list_view.value.length-1) ){
 				child.showBottomLoading()
-				lower()
+				down_dir_load()
 			}
 		})
 	}
@@ -85,9 +116,88 @@
 		readPages.value.find((child,index)=>{
 			if( index == 0 ){
 				child.showTopLoading()
+				up_dir_load()
 			}
 		})
 	}
+	
+	//设置相关
+	let menuShow = ref(false)
+	
+	let startTouchY = ref(-1)
+	
+	let endTouchY = ref(-1)
+	
+	function onClickCatalog(){
+		closeMenu()
+		showChapterList.value = true
+	}
+	
+	function hideChapterList(){
+		showChapterList.value = false
+	}
+	
+	function onClickMode(){
+		console.log("点了模式")
+	}
+	
+	function onClickOpenSetting(){
+		console.log("点了设置")
+		showSetting()
+	}
+	
+	function onClickPreChapter(){
+		console.log("点了上一章")
+	}
+	
+	function onClickNextChapter(){
+		console.log("点了下一章")
+	}
+	
+	function onStartClickView(e){
+		startTouchY.value = e.changedTouches[0].pageY
+	}
+	
+	function onEndClickView(e){
+		endTouchY.value = e.changedTouches[0].pageY
+		
+		if(Math.abs(endTouchY.value-startTouchY.value)<=5){
+			startTouchY.value = -1
+			showMenuView()
+		}
+	}
+	
+	function showMenuView(){
+		menuShow.value = true
+	}
+	
+	function hideAllTop(){
+		
+	}
+	
+	function showSetting(){
+		Menu.value.showSettingFont()
+	}
+	
+	function hideSetting(){
+		startTouchY.value = -1
+		menuShow.value = false
+	}
+	
+	function closeMenu(){
+		hideSetting()
+	}
+	//设置end
+	
+	//章节列表 start
+	let showChapterList = ref(false)
+	function goToChapter(chapter_list_item_data:chapter_item_data){
+		console.log("想看",chapter_list_item_data)
+		cur_read_chapter_index.value = tools.getCurChapterIndex(chapter_list_item_data.id,directoryList)
+		book_text_list_view.value = []
+		draw()
+		hideChapterList()
+	}
 </script>
 
 <style scoped>

BIN
xs-app/static/.DS_Store


BIN
xs-app/static/imgs/.DS_Store


BIN
xs-app/static/imgs/read/background1.jpg


+ 2 - 0
xs-app/stores/readSetting.ts

@@ -1,6 +1,7 @@
 import {defineStore} from 'pinia';
 import {reactive} from 'vue';
 import { read_setting_data } from '../data/data';
+import { config } from '../config/config';
 export const ReadSetting = defineStore('read-setting',()=>{
 	let data:read_setting_data = reactive(new read_setting_data())
 	async function updateReadSetting(d:read_setting_data){
@@ -11,6 +12,7 @@ export const ReadSetting = defineStore('read-setting',()=>{
 		if(data==null||data.colorBgIndex==undefined){
 			data.colorBgIndex = 0;
 			data.fontSizeIndex = 0;
+			data.readMode = config.read_config.readMode.Bright
 		}
 		return data
 	}

+ 2 - 0
xs-app/uni_modules/uni-popup/components/uni-popup/uni-popup.vue

@@ -320,6 +320,8 @@
 			// TODO 处理冒泡事件,头条的冒泡事件有问题 ,先这样兼容
 			touchstart() {
 				this.clearPropagation = false
+				//xy 点击也触发
+				// this.$emit('maskClick')
 			},
 
 			onTap() {

+ 0 - 40
xs-app/unpackage/dist/dev/mp-toutiao/app.js

@@ -1,40 +0,0 @@
-"use strict";
-Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
-const common_vendor = require("./common/vendor.js");
-const framework_tools = require("./framework/tools.js");
-require("./config/config.js");
-require("./framework/http.js");
-require("./stores/userDataManager.js");
-require("./data/data.js");
-require("./framework/log.js");
-if (!Math) {
-  "./pages/bookshelf/bookshelf.js";
-  "./pages/bookstore/bookstore.js";
-  "./pages/mine/mine.js";
-  "./pages/readbook/read.js";
-  "./pages/test/index.js";
-  "./pages/search/search.js";
-}
-const _sfc_main = {
-  onLaunch: function() {
-    console.log("App Launch");
-  },
-  onShow: function() {
-    console.log("App Show");
-  },
-  onHide: function() {
-    console.log("App Hide");
-  }
-};
-const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/App.vue"]]);
-function createApp() {
-  const app = common_vendor.createSSRApp(App);
-  app.use(common_vendor.createPinia());
-  framework_tools.tools.initPlatform();
-  return {
-    app,
-    Pinia: common_vendor.Pinia
-  };
-}
-createApp().app.mount("#app");
-exports.createApp = createApp;

+ 0 - 41
xs-app/unpackage/dist/dev/mp-toutiao/app.json

@@ -1,41 +0,0 @@
-{
-  "pages": [
-    "pages/bookshelf/bookshelf",
-    "pages/bookstore/bookstore",
-    "pages/mine/mine",
-    "pages/readbook/read",
-    "pages/test/index",
-    "pages/search/search"
-  ],
-  "window": {
-    "navigationBarTextStyle": "black",
-    "navigationBarTitleText": "uni-app",
-    "navigationBarBackgroundColor": "#F8F8F8",
-    "backgroundColor": "#F8F8F8"
-  },
-  "tabBar": {
-    "list": [
-      {
-        "pagePath": "pages/bookshelf/bookshelf",
-        "text": "书架",
-        "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
-        "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
-      },
-      {
-        "pagePath": "pages/bookstore/bookstore",
-        "text": "书城",
-        "iconPath": "/static/imgs/tabBar/bookstore_0.png",
-        "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
-      },
-      {
-        "pagePath": "pages/mine/mine",
-        "text": "我的",
-        "iconPath": "/static/imgs/tabBar/mine_0.png",
-        "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
-      }
-    ],
-    "color": "#707070",
-    "selectedColor": "#2979ff"
-  },
-  "usingComponents": {}
-}

+ 0 - 8051
xs-app/unpackage/dist/dev/mp-toutiao/common/vendor.js

@@ -1,8051 +0,0 @@
-"use strict";
-const _export_sfc = (sfc, props) => {
-  const target = sfc.__vccOpts || sfc;
-  for (const [key, val] of props) {
-    target[key] = val;
-  }
-  return target;
-};
-function makeMap(str, expectsLowerCase) {
-  const map = /* @__PURE__ */ Object.create(null);
-  const list = str.split(",");
-  for (let i = 0; i < list.length; i++) {
-    map[list[i]] = true;
-  }
-  return expectsLowerCase ? (val) => !!map[val.toLowerCase()] : (val) => !!map[val];
-}
-function normalizeStyle(value) {
-  if (isArray(value)) {
-    const res = {};
-    for (let i = 0; i < value.length; i++) {
-      const item = value[i];
-      const normalized = isString(item) ? parseStringStyle(item) : normalizeStyle(item);
-      if (normalized) {
-        for (const key in normalized) {
-          res[key] = normalized[key];
-        }
-      }
-    }
-    return res;
-  } else if (isString(value)) {
-    return value;
-  } else if (isObject$1(value)) {
-    return value;
-  }
-}
-const listDelimiterRE = /;(?![^(]*\))/g;
-const propertyDelimiterRE = /:([^]+)/;
-const styleCommentRE = /\/\*.*?\*\//gs;
-function parseStringStyle(cssText) {
-  const ret = {};
-  cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => {
-    if (item) {
-      const tmp = item.split(propertyDelimiterRE);
-      tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim());
-    }
-  });
-  return ret;
-}
-function normalizeClass(value) {
-  let res = "";
-  if (isString(value)) {
-    res = value;
-  } else if (isArray(value)) {
-    for (let i = 0; i < value.length; i++) {
-      const normalized = normalizeClass(value[i]);
-      if (normalized) {
-        res += normalized + " ";
-      }
-    }
-  } else if (isObject$1(value)) {
-    for (const name in value) {
-      if (value[name]) {
-        res += name + " ";
-      }
-    }
-  }
-  return res.trim();
-}
-const toDisplayString = (val) => {
-  return isString(val) ? val : val == null ? "" : isArray(val) || isObject$1(val) && (val.toString === objectToString || !isFunction(val.toString)) ? JSON.stringify(val, replacer, 2) : String(val);
-};
-const replacer = (_key, val) => {
-  if (val && val.__v_isRef) {
-    return replacer(_key, val.value);
-  } else if (isMap(val)) {
-    return {
-      [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val2]) => {
-        entries[`${key} =>`] = val2;
-        return entries;
-      }, {})
-    };
-  } else if (isSet(val)) {
-    return {
-      [`Set(${val.size})`]: [...val.values()]
-    };
-  } else if (isObject$1(val) && !isArray(val) && !isPlainObject$1(val)) {
-    return String(val);
-  }
-  return val;
-};
-const EMPTY_OBJ = Object.freeze({});
-const EMPTY_ARR = Object.freeze([]);
-const NOOP = () => {
-};
-const NO = () => false;
-const onRE = /^on[^a-z]/;
-const isOn = (key) => onRE.test(key);
-const isModelListener = (key) => key.startsWith("onUpdate:");
-const extend = Object.assign;
-const remove = (arr, el) => {
-  const i = arr.indexOf(el);
-  if (i > -1) {
-    arr.splice(i, 1);
-  }
-};
-const hasOwnProperty$2 = Object.prototype.hasOwnProperty;
-const hasOwn$1 = (val, key) => hasOwnProperty$2.call(val, key);
-const isArray = Array.isArray;
-const isMap = (val) => toTypeString(val) === "[object Map]";
-const isSet = (val) => toTypeString(val) === "[object Set]";
-const isFunction = (val) => typeof val === "function";
-const isString = (val) => typeof val === "string";
-const isSymbol = (val) => typeof val === "symbol";
-const isObject$1 = (val) => val !== null && typeof val === "object";
-const isPromise = (val) => {
-  return isObject$1(val) && isFunction(val.then) && isFunction(val.catch);
-};
-const objectToString = Object.prototype.toString;
-const toTypeString = (value) => objectToString.call(value);
-const toRawType = (value) => {
-  return toTypeString(value).slice(8, -1);
-};
-const isPlainObject$1 = (val) => toTypeString(val) === "[object Object]";
-const isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key;
-const isReservedProp = /* @__PURE__ */ makeMap(
-  // the leading comma is intentional so empty string "" is also included
-  ",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"
-);
-const isBuiltInDirective = /* @__PURE__ */ makeMap("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo");
-const cacheStringFunction = (fn) => {
-  const cache = /* @__PURE__ */ Object.create(null);
-  return (str) => {
-    const hit = cache[str];
-    return hit || (cache[str] = fn(str));
-  };
-};
-const camelizeRE = /-(\w)/g;
-const camelize = cacheStringFunction((str) => {
-  return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
-});
-const hyphenateRE = /\B([A-Z])/g;
-const hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, "-$1").toLowerCase());
-const capitalize = cacheStringFunction((str) => str.charAt(0).toUpperCase() + str.slice(1));
-const toHandlerKey = cacheStringFunction((str) => str ? `on${capitalize(str)}` : ``);
-const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
-const invokeArrayFns$1 = (fns, arg) => {
-  for (let i = 0; i < fns.length; i++) {
-    fns[i](arg);
-  }
-};
-const def = (obj, key, value) => {
-  Object.defineProperty(obj, key, {
-    configurable: true,
-    enumerable: false,
-    value
-  });
-};
-const looseToNumber = (val) => {
-  const n2 = parseFloat(val);
-  return isNaN(n2) ? val : n2;
-};
-const LINEFEED = "\n";
-const SLOT_DEFAULT_NAME = "d";
-const ON_SHOW = "onShow";
-const ON_HIDE = "onHide";
-const ON_LAUNCH = "onLaunch";
-const ON_ERROR = "onError";
-const ON_THEME_CHANGE = "onThemeChange";
-const ON_PAGE_NOT_FOUND = "onPageNotFound";
-const ON_UNHANDLE_REJECTION = "onUnhandledRejection";
-const ON_EXIT = "onExit";
-const ON_LOAD = "onLoad";
-const ON_READY = "onReady";
-const ON_UNLOAD = "onUnload";
-const ON_INIT = "onInit";
-const ON_SAVE_EXIT_STATE = "onSaveExitState";
-const ON_RESIZE = "onResize";
-const ON_BACK_PRESS = "onBackPress";
-const ON_PAGE_SCROLL = "onPageScroll";
-const ON_TAB_ITEM_TAP = "onTabItemTap";
-const ON_REACH_BOTTOM = "onReachBottom";
-const ON_PULL_DOWN_REFRESH = "onPullDownRefresh";
-const ON_SHARE_TIMELINE = "onShareTimeline";
-const ON_ADD_TO_FAVORITES = "onAddToFavorites";
-const ON_SHARE_APP_MESSAGE = "onShareAppMessage";
-const ON_NAVIGATION_BAR_BUTTON_TAP = "onNavigationBarButtonTap";
-const ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED = "onNavigationBarSearchInputClicked";
-const ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED = "onNavigationBarSearchInputChanged";
-const ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED = "onNavigationBarSearchInputConfirmed";
-const ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED = "onNavigationBarSearchInputFocusChanged";
-const customizeRE = /:/g;
-function customizeEvent(str) {
-  return camelize(str.replace(customizeRE, "-"));
-}
-function hasLeadingSlash(str) {
-  return str.indexOf("/") === 0;
-}
-function addLeadingSlash(str) {
-  return hasLeadingSlash(str) ? str : "/" + str;
-}
-const invokeArrayFns = (fns, arg) => {
-  let ret;
-  for (let i = 0; i < fns.length; i++) {
-    ret = fns[i](arg);
-  }
-  return ret;
-};
-function once(fn, ctx = null) {
-  let res;
-  return (...args) => {
-    if (fn) {
-      res = fn.apply(ctx, args);
-      fn = null;
-    }
-    return res;
-  };
-}
-function getValueByDataPath(obj, path) {
-  if (!isString(path)) {
-    return;
-  }
-  path = path.replace(/\[(\d+)\]/g, ".$1");
-  const parts = path.split(".");
-  let key = parts[0];
-  if (!obj) {
-    obj = {};
-  }
-  if (parts.length === 1) {
-    return obj[key];
-  }
-  return getValueByDataPath(obj[key], parts.slice(1).join("."));
-}
-const encode = encodeURIComponent;
-function stringifyQuery(obj, encodeStr = encode) {
-  const res = obj ? Object.keys(obj).map((key) => {
-    let val = obj[key];
-    if (typeof val === void 0 || val === null) {
-      val = "";
-    } else if (isPlainObject$1(val)) {
-      val = JSON.stringify(val);
-    }
-    return encodeStr(key) + "=" + encodeStr(val);
-  }).filter((x) => x.length > 0).join("&") : null;
-  return res ? `?${res}` : "";
-}
-class EventChannel {
-  constructor(id2, events) {
-    this.id = id2;
-    this.listener = {};
-    this.emitCache = [];
-    if (events) {
-      Object.keys(events).forEach((name) => {
-        this.on(name, events[name]);
-      });
-    }
-  }
-  emit(eventName, ...args) {
-    const fns = this.listener[eventName];
-    if (!fns) {
-      return this.emitCache.push({
-        eventName,
-        args
-      });
-    }
-    fns.forEach((opt) => {
-      opt.fn.apply(opt.fn, args);
-    });
-    this.listener[eventName] = fns.filter((opt) => opt.type !== "once");
-  }
-  on(eventName, fn) {
-    this._addListener(eventName, "on", fn);
-    this._clearCache(eventName);
-  }
-  once(eventName, fn) {
-    this._addListener(eventName, "once", fn);
-    this._clearCache(eventName);
-  }
-  off(eventName, fn) {
-    const fns = this.listener[eventName];
-    if (!fns) {
-      return;
-    }
-    if (fn) {
-      for (let i = 0; i < fns.length; ) {
-        if (fns[i].fn === fn) {
-          fns.splice(i, 1);
-          i--;
-        }
-        i++;
-      }
-    } else {
-      delete this.listener[eventName];
-    }
-  }
-  _clearCache(eventName) {
-    for (let index2 = 0; index2 < this.emitCache.length; index2++) {
-      const cache = this.emitCache[index2];
-      const _name = eventName ? cache.eventName === eventName ? eventName : null : cache.eventName;
-      if (!_name)
-        continue;
-      const location = this.emit.apply(this, [_name, ...cache.args]);
-      if (typeof location === "number") {
-        this.emitCache.pop();
-        continue;
-      }
-      this.emitCache.splice(index2, 1);
-      index2--;
-    }
-  }
-  _addListener(eventName, type, fn) {
-    (this.listener[eventName] || (this.listener[eventName] = [])).push({
-      fn,
-      type
-    });
-  }
-}
-const PAGE_HOOKS = [
-  ON_INIT,
-  ON_LOAD,
-  ON_SHOW,
-  ON_HIDE,
-  ON_UNLOAD,
-  ON_BACK_PRESS,
-  ON_PAGE_SCROLL,
-  ON_TAB_ITEM_TAP,
-  ON_REACH_BOTTOM,
-  ON_PULL_DOWN_REFRESH,
-  ON_SHARE_TIMELINE,
-  ON_SHARE_APP_MESSAGE,
-  ON_ADD_TO_FAVORITES,
-  ON_SAVE_EXIT_STATE,
-  ON_NAVIGATION_BAR_BUTTON_TAP,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED
-];
-function isRootHook(name) {
-  return PAGE_HOOKS.indexOf(name) > -1;
-}
-const UniLifecycleHooks = [
-  ON_SHOW,
-  ON_HIDE,
-  ON_LAUNCH,
-  ON_ERROR,
-  ON_THEME_CHANGE,
-  ON_PAGE_NOT_FOUND,
-  ON_UNHANDLE_REJECTION,
-  ON_EXIT,
-  ON_INIT,
-  ON_LOAD,
-  ON_READY,
-  ON_UNLOAD,
-  ON_RESIZE,
-  ON_BACK_PRESS,
-  ON_PAGE_SCROLL,
-  ON_TAB_ITEM_TAP,
-  ON_REACH_BOTTOM,
-  ON_PULL_DOWN_REFRESH,
-  ON_SHARE_TIMELINE,
-  ON_ADD_TO_FAVORITES,
-  ON_SHARE_APP_MESSAGE,
-  ON_SAVE_EXIT_STATE,
-  ON_NAVIGATION_BAR_BUTTON_TAP,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED,
-  ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED
-];
-const MINI_PROGRAM_PAGE_RUNTIME_HOOKS = /* @__PURE__ */ (() => {
-  return {
-    onPageScroll: 1,
-    onShareAppMessage: 1 << 1,
-    onShareTimeline: 1 << 2
-  };
-})();
-function isUniLifecycleHook(name, value, checkType = true) {
-  if (checkType && !isFunction(value)) {
-    return false;
-  }
-  if (UniLifecycleHooks.indexOf(name) > -1) {
-    return true;
-  } else if (name.indexOf("on") === 0) {
-    return true;
-  }
-  return false;
-}
-let vueApp;
-const createVueAppHooks = [];
-function onCreateVueApp(hook) {
-  if (vueApp) {
-    return hook(vueApp);
-  }
-  createVueAppHooks.push(hook);
-}
-function invokeCreateVueAppHook(app) {
-  vueApp = app;
-  createVueAppHooks.forEach((hook) => hook(app));
-}
-const invokeCreateErrorHandler = once((app, createErrorHandler2) => {
-  if (isFunction(app._component.onError)) {
-    return createErrorHandler2(app);
-  }
-});
-const E = function() {
-};
-E.prototype = {
-  on: function(name, callback, ctx) {
-    var e2 = this.e || (this.e = {});
-    (e2[name] || (e2[name] = [])).push({
-      fn: callback,
-      ctx
-    });
-    return this;
-  },
-  once: function(name, callback, ctx) {
-    var self = this;
-    function listener() {
-      self.off(name, listener);
-      callback.apply(ctx, arguments);
-    }
-    listener._ = callback;
-    return this.on(name, listener, ctx);
-  },
-  emit: function(name) {
-    var data = [].slice.call(arguments, 1);
-    var evtArr = ((this.e || (this.e = {}))[name] || []).slice();
-    var i = 0;
-    var len = evtArr.length;
-    for (i; i < len; i++) {
-      evtArr[i].fn.apply(evtArr[i].ctx, data);
-    }
-    return this;
-  },
-  off: function(name, callback) {
-    var e2 = this.e || (this.e = {});
-    var evts = e2[name];
-    var liveEvents = [];
-    if (evts && callback) {
-      for (var i = 0, len = evts.length; i < len; i++) {
-        if (evts[i].fn !== callback && evts[i].fn._ !== callback)
-          liveEvents.push(evts[i]);
-      }
-    }
-    liveEvents.length ? e2[name] = liveEvents : delete e2[name];
-    return this;
-  }
-};
-var E$1 = E;
-const isObject = (val) => val !== null && typeof val === "object";
-const defaultDelimiters = ["{", "}"];
-class BaseFormatter {
-  constructor() {
-    this._caches = /* @__PURE__ */ Object.create(null);
-  }
-  interpolate(message, values, delimiters = defaultDelimiters) {
-    if (!values) {
-      return [message];
-    }
-    let tokens = this._caches[message];
-    if (!tokens) {
-      tokens = parse$1(message, delimiters);
-      this._caches[message] = tokens;
-    }
-    return compile$1(tokens, values);
-  }
-}
-const RE_TOKEN_LIST_VALUE = /^(?:\d)+/;
-const RE_TOKEN_NAMED_VALUE = /^(?:\w)+/;
-function parse$1(format, [startDelimiter, endDelimiter]) {
-  const tokens = [];
-  let position = 0;
-  let text = "";
-  while (position < format.length) {
-    let char = format[position++];
-    if (char === startDelimiter) {
-      if (text) {
-        tokens.push({ type: "text", value: text });
-      }
-      text = "";
-      let sub = "";
-      char = format[position++];
-      while (char !== void 0 && char !== endDelimiter) {
-        sub += char;
-        char = format[position++];
-      }
-      const isClosed = char === endDelimiter;
-      const type = RE_TOKEN_LIST_VALUE.test(sub) ? "list" : isClosed && RE_TOKEN_NAMED_VALUE.test(sub) ? "named" : "unknown";
-      tokens.push({ value: sub, type });
-    } else {
-      text += char;
-    }
-  }
-  text && tokens.push({ type: "text", value: text });
-  return tokens;
-}
-function compile$1(tokens, values) {
-  const compiled = [];
-  let index2 = 0;
-  const mode = Array.isArray(values) ? "list" : isObject(values) ? "named" : "unknown";
-  if (mode === "unknown") {
-    return compiled;
-  }
-  while (index2 < tokens.length) {
-    const token = tokens[index2];
-    switch (token.type) {
-      case "text":
-        compiled.push(token.value);
-        break;
-      case "list":
-        compiled.push(values[parseInt(token.value, 10)]);
-        break;
-      case "named":
-        if (mode === "named") {
-          compiled.push(values[token.value]);
-        } else {
-          {
-            console.warn(`Type of token '${token.type}' and format of value '${mode}' don't match!`);
-          }
-        }
-        break;
-      case "unknown":
-        {
-          console.warn(`Detect 'unknown' type of token!`);
-        }
-        break;
-    }
-    index2++;
-  }
-  return compiled;
-}
-const LOCALE_ZH_HANS = "zh-Hans";
-const LOCALE_ZH_HANT = "zh-Hant";
-const LOCALE_EN = "en";
-const LOCALE_FR = "fr";
-const LOCALE_ES = "es";
-const hasOwnProperty$1 = Object.prototype.hasOwnProperty;
-const hasOwn = (val, key) => hasOwnProperty$1.call(val, key);
-const defaultFormatter = new BaseFormatter();
-function include(str, parts) {
-  return !!parts.find((part) => str.indexOf(part) !== -1);
-}
-function startsWith(str, parts) {
-  return parts.find((part) => str.indexOf(part) === 0);
-}
-function normalizeLocale(locale, messages) {
-  if (!locale) {
-    return;
-  }
-  locale = locale.trim().replace(/_/g, "-");
-  if (messages && messages[locale]) {
-    return locale;
-  }
-  locale = locale.toLowerCase();
-  if (locale === "chinese") {
-    return LOCALE_ZH_HANS;
-  }
-  if (locale.indexOf("zh") === 0) {
-    if (locale.indexOf("-hans") > -1) {
-      return LOCALE_ZH_HANS;
-    }
-    if (locale.indexOf("-hant") > -1) {
-      return LOCALE_ZH_HANT;
-    }
-    if (include(locale, ["-tw", "-hk", "-mo", "-cht"])) {
-      return LOCALE_ZH_HANT;
-    }
-    return LOCALE_ZH_HANS;
-  }
-  let locales = [LOCALE_EN, LOCALE_FR, LOCALE_ES];
-  if (messages && Object.keys(messages).length > 0) {
-    locales = Object.keys(messages);
-  }
-  const lang = startsWith(locale, locales);
-  if (lang) {
-    return lang;
-  }
-}
-class I18n {
-  constructor({ locale, fallbackLocale, messages, watcher, formater }) {
-    this.locale = LOCALE_EN;
-    this.fallbackLocale = LOCALE_EN;
-    this.message = {};
-    this.messages = {};
-    this.watchers = [];
-    if (fallbackLocale) {
-      this.fallbackLocale = fallbackLocale;
-    }
-    this.formater = formater || defaultFormatter;
-    this.messages = messages || {};
-    this.setLocale(locale || LOCALE_EN);
-    if (watcher) {
-      this.watchLocale(watcher);
-    }
-  }
-  setLocale(locale) {
-    const oldLocale = this.locale;
-    this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;
-    if (!this.messages[this.locale]) {
-      this.messages[this.locale] = {};
-    }
-    this.message = this.messages[this.locale];
-    if (oldLocale !== this.locale) {
-      this.watchers.forEach((watcher) => {
-        watcher(this.locale, oldLocale);
-      });
-    }
-  }
-  getLocale() {
-    return this.locale;
-  }
-  watchLocale(fn) {
-    const index2 = this.watchers.push(fn) - 1;
-    return () => {
-      this.watchers.splice(index2, 1);
-    };
-  }
-  add(locale, message, override = true) {
-    const curMessages = this.messages[locale];
-    if (curMessages) {
-      if (override) {
-        Object.assign(curMessages, message);
-      } else {
-        Object.keys(message).forEach((key) => {
-          if (!hasOwn(curMessages, key)) {
-            curMessages[key] = message[key];
-          }
-        });
-      }
-    } else {
-      this.messages[locale] = message;
-    }
-  }
-  f(message, values, delimiters) {
-    return this.formater.interpolate(message, values, delimiters).join("");
-  }
-  t(key, locale, values) {
-    let message = this.message;
-    if (typeof locale === "string") {
-      locale = normalizeLocale(locale, this.messages);
-      locale && (message = this.messages[locale]);
-    } else {
-      values = locale;
-    }
-    if (!hasOwn(message, key)) {
-      console.warn(`Cannot translate the value of keypath ${key}. Use the value of keypath as default.`);
-      return key;
-    }
-    return this.formater.interpolate(message[key], values).join("");
-  }
-}
-function watchAppLocale(appVm, i18n) {
-  if (appVm.$watchLocale) {
-    appVm.$watchLocale((newLocale) => {
-      i18n.setLocale(newLocale);
-    });
-  } else {
-    appVm.$watch(() => appVm.$locale, (newLocale) => {
-      i18n.setLocale(newLocale);
-    });
-  }
-}
-function getDefaultLocale() {
-  if (typeof index !== "undefined" && index.getLocale) {
-    return index.getLocale();
-  }
-  if (typeof global !== "undefined" && global.getLocale) {
-    return global.getLocale();
-  }
-  return LOCALE_EN;
-}
-function initVueI18n(locale, messages = {}, fallbackLocale, watcher) {
-  if (typeof locale !== "string") {
-    [locale, messages] = [
-      messages,
-      locale
-    ];
-  }
-  if (typeof locale !== "string") {
-    locale = getDefaultLocale();
-  }
-  if (typeof fallbackLocale !== "string") {
-    fallbackLocale = typeof __uniConfig !== "undefined" && __uniConfig.fallbackLocale || LOCALE_EN;
-  }
-  const i18n = new I18n({
-    locale,
-    fallbackLocale,
-    messages,
-    watcher
-  });
-  let t2 = (key, values) => {
-    if (typeof getApp !== "function") {
-      t2 = function(key2, values2) {
-        return i18n.t(key2, values2);
-      };
-    } else {
-      let isWatchedAppLocale = false;
-      t2 = function(key2, values2) {
-        const appVm = getApp().$vm;
-        if (appVm) {
-          appVm.$locale;
-          if (!isWatchedAppLocale) {
-            isWatchedAppLocale = true;
-            watchAppLocale(appVm, i18n);
-          }
-        }
-        return i18n.t(key2, values2);
-      };
-    }
-    return t2(key, values);
-  };
-  return {
-    i18n,
-    f(message, values, delimiters) {
-      return i18n.f(message, values, delimiters);
-    },
-    t(key, values) {
-      return t2(key, values);
-    },
-    add(locale2, message, override = true) {
-      return i18n.add(locale2, message, override);
-    },
-    watch(fn) {
-      return i18n.watchLocale(fn);
-    },
-    getLocale() {
-      return i18n.getLocale();
-    },
-    setLocale(newLocale) {
-      return i18n.setLocale(newLocale);
-    }
-  };
-}
-function getBaseSystemInfo() {
-  return tt.getSystemInfoSync();
-}
-function validateProtocolFail(name, msg) {
-  console.warn(`${name}: ${msg}`);
-}
-function validateProtocol(name, data, protocol, onFail) {
-  if (!onFail) {
-    onFail = validateProtocolFail;
-  }
-  for (const key in protocol) {
-    const errMsg = validateProp$1(key, data[key], protocol[key], !hasOwn$1(data, key));
-    if (isString(errMsg)) {
-      onFail(name, errMsg);
-    }
-  }
-}
-function validateProtocols(name, args, protocol, onFail) {
-  if (!protocol) {
-    return;
-  }
-  if (!isArray(protocol)) {
-    return validateProtocol(name, args[0] || /* @__PURE__ */ Object.create(null), protocol, onFail);
-  }
-  const len = protocol.length;
-  const argsLen = args.length;
-  for (let i = 0; i < len; i++) {
-    const opts = protocol[i];
-    const data = /* @__PURE__ */ Object.create(null);
-    if (argsLen > i) {
-      data[opts.name] = args[i];
-    }
-    validateProtocol(name, data, { [opts.name]: opts }, onFail);
-  }
-}
-function validateProp$1(name, value, prop, isAbsent) {
-  if (!isPlainObject$1(prop)) {
-    prop = { type: prop };
-  }
-  const { type, required, validator } = prop;
-  if (required && isAbsent) {
-    return 'Missing required args: "' + name + '"';
-  }
-  if (value == null && !required) {
-    return;
-  }
-  if (type != null) {
-    let isValid = false;
-    const types = isArray(type) ? type : [type];
-    const expectedTypes = [];
-    for (let i = 0; i < types.length && !isValid; i++) {
-      const { valid, expectedType } = assertType$1(value, types[i]);
-      expectedTypes.push(expectedType || "");
-      isValid = valid;
-    }
-    if (!isValid) {
-      return getInvalidTypeMessage$1(name, value, expectedTypes);
-    }
-  }
-  if (validator) {
-    return validator(value);
-  }
-}
-const isSimpleType$1 = /* @__PURE__ */ makeMap("String,Number,Boolean,Function,Symbol");
-function assertType$1(value, type) {
-  let valid;
-  const expectedType = getType$1(type);
-  if (isSimpleType$1(expectedType)) {
-    const t2 = typeof value;
-    valid = t2 === expectedType.toLowerCase();
-    if (!valid && t2 === "object") {
-      valid = value instanceof type;
-    }
-  } else if (expectedType === "Object") {
-    valid = isObject$1(value);
-  } else if (expectedType === "Array") {
-    valid = isArray(value);
-  } else {
-    {
-      valid = value instanceof type;
-    }
-  }
-  return {
-    valid,
-    expectedType
-  };
-}
-function getInvalidTypeMessage$1(name, value, expectedTypes) {
-  let message = `Invalid args: type check failed for args "${name}". Expected ${expectedTypes.map(capitalize).join(", ")}`;
-  const expectedType = expectedTypes[0];
-  const receivedType = toRawType(value);
-  const expectedValue = styleValue$1(value, expectedType);
-  const receivedValue = styleValue$1(value, receivedType);
-  if (expectedTypes.length === 1 && isExplicable$1(expectedType) && !isBoolean$1(expectedType, receivedType)) {
-    message += ` with value ${expectedValue}`;
-  }
-  message += `, got ${receivedType} `;
-  if (isExplicable$1(receivedType)) {
-    message += `with value ${receivedValue}.`;
-  }
-  return message;
-}
-function getType$1(ctor) {
-  const match = ctor && ctor.toString().match(/^\s*function (\w+)/);
-  return match ? match[1] : "";
-}
-function styleValue$1(value, type) {
-  if (type === "String") {
-    return `"${value}"`;
-  } else if (type === "Number") {
-    return `${Number(value)}`;
-  } else {
-    return `${value}`;
-  }
-}
-function isExplicable$1(type) {
-  const explicitTypes = ["string", "number", "boolean"];
-  return explicitTypes.some((elem) => type.toLowerCase() === elem);
-}
-function isBoolean$1(...args) {
-  return args.some((elem) => elem.toLowerCase() === "boolean");
-}
-function tryCatch(fn) {
-  return function() {
-    try {
-      return fn.apply(fn, arguments);
-    } catch (e2) {
-      console.error(e2);
-    }
-  };
-}
-let invokeCallbackId = 1;
-const invokeCallbacks = {};
-function addInvokeCallback(id2, name, callback, keepAlive = false) {
-  invokeCallbacks[id2] = {
-    name,
-    keepAlive,
-    callback
-  };
-  return id2;
-}
-function invokeCallback(id2, res, extras) {
-  if (typeof id2 === "number") {
-    const opts = invokeCallbacks[id2];
-    if (opts) {
-      if (!opts.keepAlive) {
-        delete invokeCallbacks[id2];
-      }
-      return opts.callback(res, extras);
-    }
-  }
-  return res;
-}
-const API_SUCCESS = "success";
-const API_FAIL = "fail";
-const API_COMPLETE = "complete";
-function getApiCallbacks(args) {
-  const apiCallbacks = {};
-  for (const name in args) {
-    const fn = args[name];
-    if (isFunction(fn)) {
-      apiCallbacks[name] = tryCatch(fn);
-      delete args[name];
-    }
-  }
-  return apiCallbacks;
-}
-function normalizeErrMsg$1(errMsg, name) {
-  if (!errMsg || errMsg.indexOf(":fail") === -1) {
-    return name + ":ok";
-  }
-  return name + errMsg.substring(errMsg.indexOf(":fail"));
-}
-function createAsyncApiCallback(name, args = {}, { beforeAll, beforeSuccess } = {}) {
-  if (!isPlainObject$1(args)) {
-    args = {};
-  }
-  const { success, fail, complete } = getApiCallbacks(args);
-  const hasSuccess = isFunction(success);
-  const hasFail = isFunction(fail);
-  const hasComplete = isFunction(complete);
-  const callbackId = invokeCallbackId++;
-  addInvokeCallback(callbackId, name, (res) => {
-    res = res || {};
-    res.errMsg = normalizeErrMsg$1(res.errMsg, name);
-    isFunction(beforeAll) && beforeAll(res);
-    if (res.errMsg === name + ":ok") {
-      isFunction(beforeSuccess) && beforeSuccess(res, args);
-      hasSuccess && success(res);
-    } else {
-      hasFail && fail(res);
-    }
-    hasComplete && complete(res);
-  });
-  return callbackId;
-}
-const HOOK_SUCCESS = "success";
-const HOOK_FAIL = "fail";
-const HOOK_COMPLETE = "complete";
-const globalInterceptors = {};
-const scopedInterceptors = {};
-function wrapperHook(hook, params) {
-  return function(data) {
-    return hook(data, params) || data;
-  };
-}
-function queue$1(hooks, data, params) {
-  let promise = false;
-  for (let i = 0; i < hooks.length; i++) {
-    const hook = hooks[i];
-    if (promise) {
-      promise = Promise.resolve(wrapperHook(hook, params));
-    } else {
-      const res = hook(data, params);
-      if (isPromise(res)) {
-        promise = Promise.resolve(res);
-      }
-      if (res === false) {
-        return {
-          then() {
-          },
-          catch() {
-          }
-        };
-      }
-    }
-  }
-  return promise || {
-    then(callback) {
-      return callback(data);
-    },
-    catch() {
-    }
-  };
-}
-function wrapperOptions(interceptors2, options = {}) {
-  [HOOK_SUCCESS, HOOK_FAIL, HOOK_COMPLETE].forEach((name) => {
-    const hooks = interceptors2[name];
-    if (!isArray(hooks)) {
-      return;
-    }
-    const oldCallback = options[name];
-    options[name] = function callbackInterceptor(res) {
-      queue$1(hooks, res, options).then((res2) => {
-        return isFunction(oldCallback) && oldCallback(res2) || res2;
-      });
-    };
-  });
-  return options;
-}
-function wrapperReturnValue(method, returnValue) {
-  const returnValueHooks = [];
-  if (isArray(globalInterceptors.returnValue)) {
-    returnValueHooks.push(...globalInterceptors.returnValue);
-  }
-  const interceptor = scopedInterceptors[method];
-  if (interceptor && isArray(interceptor.returnValue)) {
-    returnValueHooks.push(...interceptor.returnValue);
-  }
-  returnValueHooks.forEach((hook) => {
-    returnValue = hook(returnValue) || returnValue;
-  });
-  return returnValue;
-}
-function getApiInterceptorHooks(method) {
-  const interceptor = /* @__PURE__ */ Object.create(null);
-  Object.keys(globalInterceptors).forEach((hook) => {
-    if (hook !== "returnValue") {
-      interceptor[hook] = globalInterceptors[hook].slice();
-    }
-  });
-  const scopedInterceptor = scopedInterceptors[method];
-  if (scopedInterceptor) {
-    Object.keys(scopedInterceptor).forEach((hook) => {
-      if (hook !== "returnValue") {
-        interceptor[hook] = (interceptor[hook] || []).concat(scopedInterceptor[hook]);
-      }
-    });
-  }
-  return interceptor;
-}
-function invokeApi(method, api, options, params) {
-  const interceptor = getApiInterceptorHooks(method);
-  if (interceptor && Object.keys(interceptor).length) {
-    if (isArray(interceptor.invoke)) {
-      const res = queue$1(interceptor.invoke, options);
-      return res.then((options2) => {
-        return api(wrapperOptions(getApiInterceptorHooks(method), options2), ...params);
-      });
-    } else {
-      return api(wrapperOptions(interceptor, options), ...params);
-    }
-  }
-  return api(options, ...params);
-}
-function hasCallback(args) {
-  if (isPlainObject$1(args) && [API_SUCCESS, API_FAIL, API_COMPLETE].find((cb) => isFunction(args[cb]))) {
-    return true;
-  }
-  return false;
-}
-function handlePromise(promise) {
-  return promise;
-}
-function promisify$1(name, fn) {
-  return (args = {}, ...rest) => {
-    if (hasCallback(args)) {
-      return wrapperReturnValue(name, invokeApi(name, fn, args, rest));
-    }
-    return wrapperReturnValue(name, handlePromise(new Promise((resolve2, reject) => {
-      invokeApi(name, fn, extend(args, { success: resolve2, fail: reject }), rest);
-    })));
-  };
-}
-function formatApiArgs(args, options) {
-  const params = args[0];
-  if (!options || !isPlainObject$1(options.formatArgs) && isPlainObject$1(params)) {
-    return;
-  }
-  const formatArgs = options.formatArgs;
-  const keys = Object.keys(formatArgs);
-  for (let i = 0; i < keys.length; i++) {
-    const name = keys[i];
-    const formatterOrDefaultValue = formatArgs[name];
-    if (isFunction(formatterOrDefaultValue)) {
-      const errMsg = formatterOrDefaultValue(args[0][name], params);
-      if (isString(errMsg)) {
-        return errMsg;
-      }
-    } else {
-      if (!hasOwn$1(params, name)) {
-        params[name] = formatterOrDefaultValue;
-      }
-    }
-  }
-}
-function invokeSuccess(id2, name, res) {
-  return invokeCallback(id2, extend(res || {}, { errMsg: name + ":ok" }));
-}
-function invokeFail(id2, name, errMsg, errRes) {
-  return invokeCallback(id2, extend({ errMsg: name + ":fail" + (errMsg ? " " + errMsg : "") }, errRes));
-}
-function beforeInvokeApi(name, args, protocol, options) {
-  {
-    validateProtocols(name, args, protocol);
-  }
-  if (options && options.beforeInvoke) {
-    const errMsg2 = options.beforeInvoke(args);
-    if (isString(errMsg2)) {
-      return errMsg2;
-    }
-  }
-  const errMsg = formatApiArgs(args, options);
-  if (errMsg) {
-    return errMsg;
-  }
-}
-function normalizeErrMsg(errMsg) {
-  if (!errMsg || isString(errMsg)) {
-    return errMsg;
-  }
-  if (errMsg.stack) {
-    console.error(errMsg.message + LINEFEED + errMsg.stack);
-    return errMsg.message;
-  }
-  return errMsg;
-}
-function wrapperTaskApi(name, fn, protocol, options) {
-  return (args) => {
-    const id2 = createAsyncApiCallback(name, args, options);
-    const errMsg = beforeInvokeApi(name, [args], protocol, options);
-    if (errMsg) {
-      return invokeFail(id2, name, errMsg);
-    }
-    return fn(args, {
-      resolve: (res) => invokeSuccess(id2, name, res),
-      reject: (errMsg2, errRes) => invokeFail(id2, name, normalizeErrMsg(errMsg2), errRes)
-    });
-  };
-}
-function wrapperSyncApi(name, fn, protocol, options) {
-  return (...args) => {
-    const errMsg = beforeInvokeApi(name, args, protocol, options);
-    if (errMsg) {
-      throw new Error(errMsg);
-    }
-    return fn.apply(null, args);
-  };
-}
-function wrapperAsyncApi(name, fn, protocol, options) {
-  return wrapperTaskApi(name, fn, protocol, options);
-}
-function defineSyncApi(name, fn, protocol, options) {
-  return wrapperSyncApi(name, fn, protocol, options);
-}
-function defineAsyncApi(name, fn, protocol, options) {
-  return promisify$1(name, wrapperAsyncApi(name, fn, protocol, options));
-}
-const API_UPX2PX = "upx2px";
-const Upx2pxProtocol = [
-  {
-    name: "upx",
-    type: [Number, String],
-    required: true
-  }
-];
-const EPS = 1e-4;
-const BASE_DEVICE_WIDTH = 750;
-let isIOS = false;
-let deviceWidth = 0;
-let deviceDPR = 0;
-function checkDeviceWidth() {
-  const { platform, pixelRatio, windowWidth } = getBaseSystemInfo();
-  deviceWidth = windowWidth;
-  deviceDPR = pixelRatio;
-  isIOS = platform === "ios";
-}
-const upx2px = defineSyncApi(API_UPX2PX, (number, newDeviceWidth) => {
-  if (deviceWidth === 0) {
-    checkDeviceWidth();
-  }
-  number = Number(number);
-  if (number === 0) {
-    return 0;
-  }
-  let width = newDeviceWidth || deviceWidth;
-  let result = number / BASE_DEVICE_WIDTH * width;
-  if (result < 0) {
-    result = -result;
-  }
-  result = Math.floor(result + EPS);
-  if (result === 0) {
-    if (deviceDPR === 1 || !isIOS) {
-      result = 1;
-    } else {
-      result = 0.5;
-    }
-  }
-  return number < 0 ? -result : result;
-}, Upx2pxProtocol);
-const API_ADD_INTERCEPTOR = "addInterceptor";
-const API_REMOVE_INTERCEPTOR = "removeInterceptor";
-const AddInterceptorProtocol = [
-  {
-    name: "method",
-    type: [String, Object],
-    required: true
-  }
-];
-const RemoveInterceptorProtocol = AddInterceptorProtocol;
-function mergeInterceptorHook(interceptors2, interceptor) {
-  Object.keys(interceptor).forEach((hook) => {
-    if (isFunction(interceptor[hook])) {
-      interceptors2[hook] = mergeHook(interceptors2[hook], interceptor[hook]);
-    }
-  });
-}
-function removeInterceptorHook(interceptors2, interceptor) {
-  if (!interceptors2 || !interceptor) {
-    return;
-  }
-  Object.keys(interceptor).forEach((name) => {
-    const hooks = interceptors2[name];
-    const hook = interceptor[name];
-    if (isArray(hooks) && isFunction(hook)) {
-      remove(hooks, hook);
-    }
-  });
-}
-function mergeHook(parentVal, childVal) {
-  const res = childVal ? parentVal ? parentVal.concat(childVal) : isArray(childVal) ? childVal : [childVal] : parentVal;
-  return res ? dedupeHooks(res) : res;
-}
-function dedupeHooks(hooks) {
-  const res = [];
-  for (let i = 0; i < hooks.length; i++) {
-    if (res.indexOf(hooks[i]) === -1) {
-      res.push(hooks[i]);
-    }
-  }
-  return res;
-}
-const addInterceptor = defineSyncApi(API_ADD_INTERCEPTOR, (method, interceptor) => {
-  if (isString(method) && isPlainObject$1(interceptor)) {
-    mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), interceptor);
-  } else if (isPlainObject$1(method)) {
-    mergeInterceptorHook(globalInterceptors, method);
-  }
-}, AddInterceptorProtocol);
-const removeInterceptor = defineSyncApi(API_REMOVE_INTERCEPTOR, (method, interceptor) => {
-  if (isString(method)) {
-    if (isPlainObject$1(interceptor)) {
-      removeInterceptorHook(scopedInterceptors[method], interceptor);
-    } else {
-      delete scopedInterceptors[method];
-    }
-  } else if (isPlainObject$1(method)) {
-    removeInterceptorHook(globalInterceptors, method);
-  }
-}, RemoveInterceptorProtocol);
-const interceptors = {};
-const API_ON = "$on";
-const OnProtocol = [
-  {
-    name: "event",
-    type: String,
-    required: true
-  },
-  {
-    name: "callback",
-    type: Function,
-    required: true
-  }
-];
-const API_ONCE = "$once";
-const OnceProtocol = OnProtocol;
-const API_OFF = "$off";
-const OffProtocol = [
-  {
-    name: "event",
-    type: [String, Array]
-  },
-  {
-    name: "callback",
-    type: Function
-  }
-];
-const API_EMIT = "$emit";
-const EmitProtocol = [
-  {
-    name: "event",
-    type: String,
-    required: true
-  }
-];
-const emitter = new E$1();
-const $on = defineSyncApi(API_ON, (name, callback) => {
-  emitter.on(name, callback);
-  return () => emitter.off(name, callback);
-}, OnProtocol);
-const $once = defineSyncApi(API_ONCE, (name, callback) => {
-  emitter.once(name, callback);
-  return () => emitter.off(name, callback);
-}, OnceProtocol);
-const $off = defineSyncApi(API_OFF, (name, callback) => {
-  if (!name) {
-    emitter.e = {};
-    return;
-  }
-  if (!isArray(name))
-    name = [name];
-  name.forEach((n2) => emitter.off(n2, callback));
-}, OffProtocol);
-const $emit = defineSyncApi(API_EMIT, (name, ...args) => {
-  emitter.emit(name, ...args);
-}, EmitProtocol);
-let cid;
-let cidErrMsg;
-let enabled;
-function normalizePushMessage(message) {
-  try {
-    return JSON.parse(message);
-  } catch (e2) {
-  }
-  return message;
-}
-function invokePushCallback(args) {
-  if (args.type === "enabled") {
-    enabled = true;
-  } else if (args.type === "clientId") {
-    cid = args.cid;
-    cidErrMsg = args.errMsg;
-    invokeGetPushCidCallbacks(cid, args.errMsg);
-  } else if (args.type === "pushMsg") {
-    const message = {
-      type: "receive",
-      data: normalizePushMessage(args.message)
-    };
-    for (let i = 0; i < onPushMessageCallbacks.length; i++) {
-      const callback = onPushMessageCallbacks[i];
-      callback(message);
-      if (message.stopped) {
-        break;
-      }
-    }
-  } else if (args.type === "click") {
-    onPushMessageCallbacks.forEach((callback) => {
-      callback({
-        type: "click",
-        data: normalizePushMessage(args.message)
-      });
-    });
-  }
-}
-const getPushCidCallbacks = [];
-function invokeGetPushCidCallbacks(cid2, errMsg) {
-  getPushCidCallbacks.forEach((callback) => {
-    callback(cid2, errMsg);
-  });
-  getPushCidCallbacks.length = 0;
-}
-const API_GET_PUSH_CLIENT_ID = "getPushClientId";
-const getPushClientId = defineAsyncApi(API_GET_PUSH_CLIENT_ID, (_, { resolve: resolve2, reject }) => {
-  Promise.resolve().then(() => {
-    if (typeof enabled === "undefined") {
-      enabled = false;
-      cid = "";
-      cidErrMsg = "uniPush is not enabled";
-    }
-    getPushCidCallbacks.push((cid2, errMsg) => {
-      if (cid2) {
-        resolve2({ cid: cid2 });
-      } else {
-        reject(errMsg);
-      }
-    });
-    if (typeof cid !== "undefined") {
-      invokeGetPushCidCallbacks(cid, cidErrMsg);
-    }
-  });
-});
-const onPushMessageCallbacks = [];
-const onPushMessage = (fn) => {
-  if (onPushMessageCallbacks.indexOf(fn) === -1) {
-    onPushMessageCallbacks.push(fn);
-  }
-};
-const offPushMessage = (fn) => {
-  if (!fn) {
-    onPushMessageCallbacks.length = 0;
-  } else {
-    const index2 = onPushMessageCallbacks.indexOf(fn);
-    if (index2 > -1) {
-      onPushMessageCallbacks.splice(index2, 1);
-    }
-  }
-};
-const SYNC_API_RE = /^\$|getLocale|setLocale|sendNativeEvent|restoreGlobal|requireGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64|getDeviceInfo|getAppBaseInfo|getWindowInfo|getSystemSetting|getAppAuthorizeSetting/;
-const CONTEXT_API_RE = /^create|Manager$/;
-const CONTEXT_API_RE_EXC = ["createBLEConnection"];
-const ASYNC_API = ["createBLEConnection"];
-const CALLBACK_API_RE = /^on|^off/;
-function isContextApi(name) {
-  return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1;
-}
-function isSyncApi(name) {
-  return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1;
-}
-function isCallbackApi(name) {
-  return CALLBACK_API_RE.test(name) && name !== "onPush";
-}
-function shouldPromise(name) {
-  if (isContextApi(name) || isSyncApi(name) || isCallbackApi(name)) {
-    return false;
-  }
-  return true;
-}
-if (!Promise.prototype.finally) {
-  Promise.prototype.finally = function(onfinally) {
-    const promise = this.constructor;
-    return this.then((value) => promise.resolve(onfinally && onfinally()).then(() => value), (reason) => promise.resolve(onfinally && onfinally()).then(() => {
-      throw reason;
-    }));
-  };
-}
-function promisify(name, api) {
-  if (!shouldPromise(name)) {
-    return api;
-  }
-  if (!isFunction(api)) {
-    return api;
-  }
-  return function promiseApi(options = {}, ...rest) {
-    if (isFunction(options.success) || isFunction(options.fail) || isFunction(options.complete)) {
-      return wrapperReturnValue(name, invokeApi(name, api, options, rest));
-    }
-    return wrapperReturnValue(name, handlePromise(new Promise((resolve2, reject) => {
-      invokeApi(name, api, extend({}, options, {
-        success: resolve2,
-        fail: reject
-      }), rest);
-    })));
-  };
-}
-const CALLBACKS = ["success", "fail", "cancel", "complete"];
-function initWrapper(protocols2) {
-  function processCallback(methodName, method, returnValue) {
-    return function(res) {
-      return method(processReturnValue(methodName, res, returnValue));
-    };
-  }
-  function processArgs(methodName, fromArgs, argsOption = {}, returnValue = {}, keepFromArgs = false) {
-    if (isPlainObject$1(fromArgs)) {
-      const toArgs = keepFromArgs === true ? fromArgs : {};
-      if (isFunction(argsOption)) {
-        argsOption = argsOption(fromArgs, toArgs) || {};
-      }
-      for (const key in fromArgs) {
-        if (hasOwn$1(argsOption, key)) {
-          let keyOption = argsOption[key];
-          if (isFunction(keyOption)) {
-            keyOption = keyOption(fromArgs[key], fromArgs, toArgs);
-          }
-          if (!keyOption) {
-            console.warn(`字节跳动小程序 ${methodName} 暂不支持 ${key}`);
-          } else if (isString(keyOption)) {
-            toArgs[keyOption] = fromArgs[key];
-          } else if (isPlainObject$1(keyOption)) {
-            toArgs[keyOption.name ? keyOption.name : key] = keyOption.value;
-          }
-        } else if (CALLBACKS.indexOf(key) !== -1) {
-          const callback = fromArgs[key];
-          if (isFunction(callback)) {
-            toArgs[key] = processCallback(methodName, callback, returnValue);
-          }
-        } else {
-          if (!keepFromArgs && !hasOwn$1(toArgs, key)) {
-            toArgs[key] = fromArgs[key];
-          }
-        }
-      }
-      return toArgs;
-    } else if (isFunction(fromArgs)) {
-      fromArgs = processCallback(methodName, fromArgs, returnValue);
-    }
-    return fromArgs;
-  }
-  function processReturnValue(methodName, res, returnValue, keepReturnValue = false) {
-    if (isFunction(protocols2.returnValue)) {
-      res = protocols2.returnValue(methodName, res);
-    }
-    return processArgs(methodName, res, returnValue, {}, keepReturnValue);
-  }
-  return function wrapper(methodName, method) {
-    if (!hasOwn$1(protocols2, methodName)) {
-      return method;
-    }
-    const protocol = protocols2[methodName];
-    if (!protocol) {
-      return function() {
-        console.error(`字节跳动小程序 暂不支持${methodName}`);
-      };
-    }
-    return function(arg1, arg2) {
-      let options = protocol;
-      if (isFunction(protocol)) {
-        options = protocol(arg1);
-      }
-      arg1 = processArgs(methodName, arg1, options.args, options.returnValue);
-      const args = [arg1];
-      if (typeof arg2 !== "undefined") {
-        args.push(arg2);
-      }
-      const returnValue = tt[options.name || methodName].apply(tt, args);
-      if (isSyncApi(methodName)) {
-        return processReturnValue(methodName, returnValue, options.returnValue, isContextApi(methodName));
-      }
-      return returnValue;
-    };
-  };
-}
-const getLocale = () => {
-  const app = isFunction(getApp) && getApp({ allowDefault: true });
-  if (app && app.$vm) {
-    return app.$vm.$locale;
-  }
-  return normalizeLocale(tt.getSystemInfoSync().language) || LOCALE_EN;
-};
-const setLocale = (locale) => {
-  const app = isFunction(getApp) && getApp();
-  if (!app) {
-    return false;
-  }
-  const oldLocale = app.$vm.$locale;
-  if (oldLocale !== locale) {
-    app.$vm.$locale = locale;
-    onLocaleChangeCallbacks.forEach((fn) => fn({ locale }));
-    return true;
-  }
-  return false;
-};
-const onLocaleChangeCallbacks = [];
-const onLocaleChange = (fn) => {
-  if (onLocaleChangeCallbacks.indexOf(fn) === -1) {
-    onLocaleChangeCallbacks.push(fn);
-  }
-};
-if (typeof global !== "undefined") {
-  global.getLocale = getLocale;
-}
-const UUID_KEY = "__DC_STAT_UUID";
-let deviceId;
-function useDeviceId(global2 = tt) {
-  return function addDeviceId(_, toRes) {
-    deviceId = deviceId || global2.getStorageSync(UUID_KEY);
-    if (!deviceId) {
-      deviceId = Date.now() + "" + Math.floor(Math.random() * 1e7);
-      tt.setStorage({
-        key: UUID_KEY,
-        data: deviceId
-      });
-    }
-    toRes.deviceId = deviceId;
-  };
-}
-function addSafeAreaInsets(fromRes, toRes) {
-  if (fromRes.safeArea) {
-    const safeArea = fromRes.safeArea;
-    toRes.safeAreaInsets = {
-      top: safeArea.top,
-      left: safeArea.left,
-      right: fromRes.windowWidth - safeArea.right,
-      bottom: fromRes.screenHeight - safeArea.bottom
-    };
-  }
-}
-function populateParameters(fromRes, toRes) {
-  const { brand = "", model = "", system = "", language = "", theme, version: version2, platform, fontSizeSetting, SDKVersion, pixelRatio, deviceOrientation } = fromRes;
-  let osName = "";
-  let osVersion = "";
-  {
-    osName = system.split(" ")[0] || "";
-    osVersion = system.split(" ")[1] || "";
-  }
-  let hostVersion = version2;
-  let deviceType = getGetDeviceType(fromRes, model);
-  let deviceBrand = getDeviceBrand(brand);
-  let _hostName = getHostName(fromRes);
-  let _deviceOrientation = deviceOrientation;
-  let _devicePixelRatio = pixelRatio;
-  let _SDKVersion = SDKVersion;
-  const hostLanguage = language.replace(/_/g, "-");
-  const parameters = {
-    appId: "__UNI__31BB580",
-    appName: "xs-app",
-    appVersion: "1.0.0",
-    appVersionCode: "100",
-    appLanguage: getAppLanguage(hostLanguage),
-    uniCompileVersion: "3.99",
-    uniRuntimeVersion: "3.99",
-    uniPlatform: "mp-toutiao",
-    deviceBrand,
-    deviceModel: model,
-    deviceType,
-    devicePixelRatio: _devicePixelRatio,
-    deviceOrientation: _deviceOrientation,
-    osName: osName.toLocaleLowerCase(),
-    osVersion,
-    hostTheme: theme,
-    hostVersion,
-    hostLanguage,
-    hostName: _hostName,
-    hostSDKVersion: _SDKVersion,
-    hostFontSizeSetting: fontSizeSetting,
-    windowTop: 0,
-    windowBottom: 0,
-    // TODO
-    osLanguage: void 0,
-    osTheme: void 0,
-    ua: void 0,
-    hostPackageName: void 0,
-    browserName: void 0,
-    browserVersion: void 0
-  };
-  extend(toRes, parameters);
-}
-function getGetDeviceType(fromRes, model) {
-  let deviceType = fromRes.deviceType || "phone";
-  {
-    const deviceTypeMaps = {
-      ipad: "pad",
-      windows: "pc",
-      mac: "pc"
-    };
-    const deviceTypeMapsKeys = Object.keys(deviceTypeMaps);
-    const _model = model.toLocaleLowerCase();
-    for (let index2 = 0; index2 < deviceTypeMapsKeys.length; index2++) {
-      const _m = deviceTypeMapsKeys[index2];
-      if (_model.indexOf(_m) !== -1) {
-        deviceType = deviceTypeMaps[_m];
-        break;
-      }
-    }
-  }
-  return deviceType;
-}
-function getDeviceBrand(brand) {
-  let deviceBrand = brand;
-  if (deviceBrand) {
-    deviceBrand = deviceBrand.toLocaleLowerCase();
-  }
-  return deviceBrand;
-}
-function getAppLanguage(defaultLanguage) {
-  return getLocale ? getLocale() : defaultLanguage;
-}
-function getHostName(fromRes) {
-  const _platform = "mp-toutiao".split("-")[1];
-  let _hostName = fromRes.hostName || _platform;
-  {
-    _hostName = fromRes.appName;
-  }
-  return _hostName;
-}
-const getSystemInfo = {
-  returnValue: (fromRes, toRes) => {
-    addSafeAreaInsets(fromRes, toRes);
-    useDeviceId()(fromRes, toRes);
-    populateParameters(fromRes, toRes);
-  }
-};
-const getSystemInfoSync = getSystemInfo;
-const redirectTo = {};
-const previewImage = {
-  args(fromArgs, toArgs) {
-    let currentIndex = parseInt(fromArgs.current);
-    if (isNaN(currentIndex)) {
-      return;
-    }
-    const urls = fromArgs.urls;
-    if (!isArray(urls)) {
-      return;
-    }
-    const len = urls.length;
-    if (!len) {
-      return;
-    }
-    if (currentIndex < 0) {
-      currentIndex = 0;
-    } else if (currentIndex >= len) {
-      currentIndex = len - 1;
-    }
-    if (currentIndex > 0) {
-      toArgs.current = urls[currentIndex];
-      toArgs.urls = urls.filter((item, index2) => index2 < currentIndex ? item !== urls[currentIndex] : true);
-    } else {
-      toArgs.current = urls[0];
-    }
-    return {
-      indicator: false,
-      loop: false
-    };
-  }
-};
-const eventChannels = {};
-let id = 0;
-function initEventChannel(events, cache = true) {
-  id++;
-  const eventChannel = new tt.EventChannel(id, events);
-  if (cache) {
-    eventChannels[id] = eventChannel;
-  }
-  return eventChannel;
-}
-function getEventChannel(id2) {
-  const eventChannel = eventChannels[id2];
-  delete eventChannels[id2];
-  return eventChannel;
-}
-const navigateTo$1 = () => {
-  let eventChannel;
-  return {
-    args(fromArgs) {
-      eventChannel = initEventChannel(fromArgs.events);
-      if (fromArgs.url) {
-        fromArgs.url = fromArgs.url + (fromArgs.url.indexOf("?") === -1 ? "?" : "&") + "__id__=" + eventChannel.id;
-      }
-    },
-    returnValue(fromRes) {
-      fromRes.eventChannel = eventChannel;
-    }
-  };
-};
-const baseApis = {
-  $on,
-  $off,
-  $once,
-  $emit,
-  upx2px,
-  interceptors,
-  addInterceptor,
-  removeInterceptor,
-  onCreateVueApp,
-  invokeCreateVueAppHook,
-  getLocale,
-  setLocale,
-  onLocaleChange,
-  getPushClientId,
-  onPushMessage,
-  offPushMessage,
-  invokePushCallback
-};
-function initUni(api, protocols2, platform = tt) {
-  const wrapper = initWrapper(protocols2);
-  const UniProxyHandlers = {
-    get(target, key) {
-      if (hasOwn$1(target, key)) {
-        return target[key];
-      }
-      if (hasOwn$1(api, key)) {
-        return promisify(key, api[key]);
-      }
-      if (hasOwn$1(baseApis, key)) {
-        return promisify(key, baseApis[key]);
-      }
-      return promisify(key, wrapper(key, platform[key]));
-    }
-  };
-  {
-    platform.getEventChannel = getEventChannel;
-  }
-  return new Proxy({}, UniProxyHandlers);
-}
-function initGetProvider(providers) {
-  return function getProvider2({ service, success, fail, complete }) {
-    let res;
-    if (providers[service]) {
-      res = {
-        errMsg: "getProvider:ok",
-        service,
-        provider: providers[service]
-      };
-      isFunction(success) && success(res);
-    } else {
-      res = {
-        errMsg: "getProvider:fail:服务[" + service + "]不存在"
-      };
-      isFunction(fail) && fail(res);
-    }
-    isFunction(complete) && complete(res);
-  };
-}
-const getProvider = initGetProvider({
-  oauth: ["toutiao"],
-  share: ["toutiao"],
-  payment: ["toutiao"],
-  push: ["toutiao"]
-});
-var shims = /* @__PURE__ */ Object.freeze({
-  __proto__: null,
-  getProvider
-});
-const navigateTo = navigateTo$1();
-const connectSocket = {
-  args: {
-    method: false
-  }
-};
-const chooseVideo = {
-  args: {
-    camera: false
-  }
-};
-const scanCode = {
-  args: {
-    onlyFromCamera: false,
-    scanType: false
-  }
-};
-const startAccelerometer = {
-  args: {
-    interval: false
-  }
-};
-const login = {
-  args: {
-    scopes: false,
-    timeout: false
-  }
-};
-const getUserInfo = {
-  args: {
-    lang: false,
-    timeout: false
-  }
-};
-const requestPayment = {
-  name: tt.pay ? "pay" : "requestPayment",
-  args: {
-    orderInfo: tt.pay ? "orderInfo" : "data"
-  }
-};
-const getFileInfo = {
-  args: {
-    digestAlgorithm: false
-  }
-};
-var protocols = /* @__PURE__ */ Object.freeze({
-  __proto__: null,
-  chooseVideo,
-  connectSocket,
-  getFileInfo,
-  getSystemInfo,
-  getSystemInfoSync,
-  getUserInfo,
-  login,
-  navigateTo,
-  previewImage,
-  redirectTo,
-  requestPayment,
-  scanCode,
-  startAccelerometer
-});
-var index = initUni(shims, protocols);
-function warn$1(msg, ...args) {
-  console.warn(`[Vue warn] ${msg}`, ...args);
-}
-let activeEffectScope;
-class EffectScope {
-  constructor(detached = false) {
-    this.detached = detached;
-    this._active = true;
-    this.effects = [];
-    this.cleanups = [];
-    this.parent = activeEffectScope;
-    if (!detached && activeEffectScope) {
-      this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;
-    }
-  }
-  get active() {
-    return this._active;
-  }
-  run(fn) {
-    if (this._active) {
-      const currentEffectScope = activeEffectScope;
-      try {
-        activeEffectScope = this;
-        return fn();
-      } finally {
-        activeEffectScope = currentEffectScope;
-      }
-    } else {
-      warn$1(`cannot run an inactive effect scope.`);
-    }
-  }
-  /**
-   * This should only be called on non-detached scopes
-   * @internal
-   */
-  on() {
-    activeEffectScope = this;
-  }
-  /**
-   * This should only be called on non-detached scopes
-   * @internal
-   */
-  off() {
-    activeEffectScope = this.parent;
-  }
-  stop(fromParent) {
-    if (this._active) {
-      let i, l;
-      for (i = 0, l = this.effects.length; i < l; i++) {
-        this.effects[i].stop();
-      }
-      for (i = 0, l = this.cleanups.length; i < l; i++) {
-        this.cleanups[i]();
-      }
-      if (this.scopes) {
-        for (i = 0, l = this.scopes.length; i < l; i++) {
-          this.scopes[i].stop(true);
-        }
-      }
-      if (!this.detached && this.parent && !fromParent) {
-        const last = this.parent.scopes.pop();
-        if (last && last !== this) {
-          this.parent.scopes[this.index] = last;
-          last.index = this.index;
-        }
-      }
-      this.parent = void 0;
-      this._active = false;
-    }
-  }
-}
-function effectScope(detached) {
-  return new EffectScope(detached);
-}
-function recordEffectScope(effect, scope = activeEffectScope) {
-  if (scope && scope.active) {
-    scope.effects.push(effect);
-  }
-}
-function getCurrentScope() {
-  return activeEffectScope;
-}
-function onScopeDispose(fn) {
-  if (activeEffectScope) {
-    activeEffectScope.cleanups.push(fn);
-  } else {
-    warn$1(`onScopeDispose() is called when there is no active effect scope to be associated with.`);
-  }
-}
-const createDep = (effects) => {
-  const dep = new Set(effects);
-  dep.w = 0;
-  dep.n = 0;
-  return dep;
-};
-const wasTracked = (dep) => (dep.w & trackOpBit) > 0;
-const newTracked = (dep) => (dep.n & trackOpBit) > 0;
-const initDepMarkers = ({ deps }) => {
-  if (deps.length) {
-    for (let i = 0; i < deps.length; i++) {
-      deps[i].w |= trackOpBit;
-    }
-  }
-};
-const finalizeDepMarkers = (effect) => {
-  const { deps } = effect;
-  if (deps.length) {
-    let ptr = 0;
-    for (let i = 0; i < deps.length; i++) {
-      const dep = deps[i];
-      if (wasTracked(dep) && !newTracked(dep)) {
-        dep.delete(effect);
-      } else {
-        deps[ptr++] = dep;
-      }
-      dep.w &= ~trackOpBit;
-      dep.n &= ~trackOpBit;
-    }
-    deps.length = ptr;
-  }
-};
-const targetMap = /* @__PURE__ */ new WeakMap();
-let effectTrackDepth = 0;
-let trackOpBit = 1;
-const maxMarkerBits = 30;
-let activeEffect;
-const ITERATE_KEY = Symbol("iterate");
-const MAP_KEY_ITERATE_KEY = Symbol("Map key iterate");
-class ReactiveEffect {
-  constructor(fn, scheduler = null, scope) {
-    this.fn = fn;
-    this.scheduler = scheduler;
-    this.active = true;
-    this.deps = [];
-    this.parent = void 0;
-    recordEffectScope(this, scope);
-  }
-  run() {
-    if (!this.active) {
-      return this.fn();
-    }
-    let parent = activeEffect;
-    let lastShouldTrack = shouldTrack;
-    while (parent) {
-      if (parent === this) {
-        return;
-      }
-      parent = parent.parent;
-    }
-    try {
-      this.parent = activeEffect;
-      activeEffect = this;
-      shouldTrack = true;
-      trackOpBit = 1 << ++effectTrackDepth;
-      if (effectTrackDepth <= maxMarkerBits) {
-        initDepMarkers(this);
-      } else {
-        cleanupEffect(this);
-      }
-      return this.fn();
-    } finally {
-      if (effectTrackDepth <= maxMarkerBits) {
-        finalizeDepMarkers(this);
-      }
-      trackOpBit = 1 << --effectTrackDepth;
-      activeEffect = this.parent;
-      shouldTrack = lastShouldTrack;
-      this.parent = void 0;
-      if (this.deferStop) {
-        this.stop();
-      }
-    }
-  }
-  stop() {
-    if (activeEffect === this) {
-      this.deferStop = true;
-    } else if (this.active) {
-      cleanupEffect(this);
-      if (this.onStop) {
-        this.onStop();
-      }
-      this.active = false;
-    }
-  }
-}
-function cleanupEffect(effect) {
-  const { deps } = effect;
-  if (deps.length) {
-    for (let i = 0; i < deps.length; i++) {
-      deps[i].delete(effect);
-    }
-    deps.length = 0;
-  }
-}
-let shouldTrack = true;
-const trackStack = [];
-function pauseTracking() {
-  trackStack.push(shouldTrack);
-  shouldTrack = false;
-}
-function resetTracking() {
-  const last = trackStack.pop();
-  shouldTrack = last === void 0 ? true : last;
-}
-function track(target, type, key) {
-  if (shouldTrack && activeEffect) {
-    let depsMap = targetMap.get(target);
-    if (!depsMap) {
-      targetMap.set(target, depsMap = /* @__PURE__ */ new Map());
-    }
-    let dep = depsMap.get(key);
-    if (!dep) {
-      depsMap.set(key, dep = createDep());
-    }
-    const eventInfo = { effect: activeEffect, target, type, key };
-    trackEffects(dep, eventInfo);
-  }
-}
-function trackEffects(dep, debuggerEventExtraInfo) {
-  let shouldTrack2 = false;
-  if (effectTrackDepth <= maxMarkerBits) {
-    if (!newTracked(dep)) {
-      dep.n |= trackOpBit;
-      shouldTrack2 = !wasTracked(dep);
-    }
-  } else {
-    shouldTrack2 = !dep.has(activeEffect);
-  }
-  if (shouldTrack2) {
-    dep.add(activeEffect);
-    activeEffect.deps.push(dep);
-    if (activeEffect.onTrack) {
-      activeEffect.onTrack(Object.assign({ effect: activeEffect }, debuggerEventExtraInfo));
-    }
-  }
-}
-function trigger(target, type, key, newValue, oldValue, oldTarget) {
-  const depsMap = targetMap.get(target);
-  if (!depsMap) {
-    return;
-  }
-  let deps = [];
-  if (type === "clear") {
-    deps = [...depsMap.values()];
-  } else if (key === "length" && isArray(target)) {
-    const newLength = Number(newValue);
-    depsMap.forEach((dep, key2) => {
-      if (key2 === "length" || key2 >= newLength) {
-        deps.push(dep);
-      }
-    });
-  } else {
-    if (key !== void 0) {
-      deps.push(depsMap.get(key));
-    }
-    switch (type) {
-      case "add":
-        if (!isArray(target)) {
-          deps.push(depsMap.get(ITERATE_KEY));
-          if (isMap(target)) {
-            deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
-          }
-        } else if (isIntegerKey(key)) {
-          deps.push(depsMap.get("length"));
-        }
-        break;
-      case "delete":
-        if (!isArray(target)) {
-          deps.push(depsMap.get(ITERATE_KEY));
-          if (isMap(target)) {
-            deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));
-          }
-        }
-        break;
-      case "set":
-        if (isMap(target)) {
-          deps.push(depsMap.get(ITERATE_KEY));
-        }
-        break;
-    }
-  }
-  const eventInfo = { target, type, key, newValue, oldValue, oldTarget };
-  if (deps.length === 1) {
-    if (deps[0]) {
-      {
-        triggerEffects(deps[0], eventInfo);
-      }
-    }
-  } else {
-    const effects = [];
-    for (const dep of deps) {
-      if (dep) {
-        effects.push(...dep);
-      }
-    }
-    {
-      triggerEffects(createDep(effects), eventInfo);
-    }
-  }
-}
-function triggerEffects(dep, debuggerEventExtraInfo) {
-  const effects = isArray(dep) ? dep : [...dep];
-  for (const effect of effects) {
-    if (effect.computed) {
-      triggerEffect(effect, debuggerEventExtraInfo);
-    }
-  }
-  for (const effect of effects) {
-    if (!effect.computed) {
-      triggerEffect(effect, debuggerEventExtraInfo);
-    }
-  }
-}
-function triggerEffect(effect, debuggerEventExtraInfo) {
-  if (effect !== activeEffect || effect.allowRecurse) {
-    if (effect.onTrigger) {
-      effect.onTrigger(extend({ effect }, debuggerEventExtraInfo));
-    }
-    if (effect.scheduler) {
-      effect.scheduler();
-    } else {
-      effect.run();
-    }
-  }
-}
-function getDepFromReactive(object, key) {
-  var _a2;
-  return (_a2 = targetMap.get(object)) === null || _a2 === void 0 ? void 0 : _a2.get(key);
-}
-const isNonTrackableKeys = /* @__PURE__ */ makeMap(`__proto__,__v_isRef,__isVue`);
-const builtInSymbols = new Set(
-  /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((key) => key !== "arguments" && key !== "caller").map((key) => Symbol[key]).filter(isSymbol)
-);
-const get$1 = /* @__PURE__ */ createGetter();
-const shallowGet = /* @__PURE__ */ createGetter(false, true);
-const readonlyGet = /* @__PURE__ */ createGetter(true);
-const shallowReadonlyGet = /* @__PURE__ */ createGetter(true, true);
-const arrayInstrumentations = /* @__PURE__ */ createArrayInstrumentations();
-function createArrayInstrumentations() {
-  const instrumentations = {};
-  ["includes", "indexOf", "lastIndexOf"].forEach((key) => {
-    instrumentations[key] = function(...args) {
-      const arr = toRaw(this);
-      for (let i = 0, l = this.length; i < l; i++) {
-        track(arr, "get", i + "");
-      }
-      const res = arr[key](...args);
-      if (res === -1 || res === false) {
-        return arr[key](...args.map(toRaw));
-      } else {
-        return res;
-      }
-    };
-  });
-  ["push", "pop", "shift", "unshift", "splice"].forEach((key) => {
-    instrumentations[key] = function(...args) {
-      pauseTracking();
-      const res = toRaw(this)[key].apply(this, args);
-      resetTracking();
-      return res;
-    };
-  });
-  return instrumentations;
-}
-function hasOwnProperty(key) {
-  const obj = toRaw(this);
-  track(obj, "has", key);
-  return obj.hasOwnProperty(key);
-}
-function createGetter(isReadonly2 = false, shallow = false) {
-  return function get2(target, key, receiver) {
-    if (key === "__v_isReactive") {
-      return !isReadonly2;
-    } else if (key === "__v_isReadonly") {
-      return isReadonly2;
-    } else if (key === "__v_isShallow") {
-      return shallow;
-    } else if (key === "__v_raw" && receiver === (isReadonly2 ? shallow ? shallowReadonlyMap : readonlyMap : shallow ? shallowReactiveMap : reactiveMap).get(target)) {
-      return target;
-    }
-    const targetIsArray = isArray(target);
-    if (!isReadonly2) {
-      if (targetIsArray && hasOwn$1(arrayInstrumentations, key)) {
-        return Reflect.get(arrayInstrumentations, key, receiver);
-      }
-      if (key === "hasOwnProperty") {
-        return hasOwnProperty;
-      }
-    }
-    const res = Reflect.get(target, key, receiver);
-    if (isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
-      return res;
-    }
-    if (!isReadonly2) {
-      track(target, "get", key);
-    }
-    if (shallow) {
-      return res;
-    }
-    if (isRef(res)) {
-      return targetIsArray && isIntegerKey(key) ? res : res.value;
-    }
-    if (isObject$1(res)) {
-      return isReadonly2 ? readonly(res) : reactive(res);
-    }
-    return res;
-  };
-}
-const set$1 = /* @__PURE__ */ createSetter();
-const shallowSet = /* @__PURE__ */ createSetter(true);
-function createSetter(shallow = false) {
-  return function set2(target, key, value, receiver) {
-    let oldValue = target[key];
-    if (isReadonly(oldValue) && isRef(oldValue) && !isRef(value)) {
-      return false;
-    }
-    if (!shallow) {
-      if (!isShallow(value) && !isReadonly(value)) {
-        oldValue = toRaw(oldValue);
-        value = toRaw(value);
-      }
-      if (!isArray(target) && isRef(oldValue) && !isRef(value)) {
-        oldValue.value = value;
-        return true;
-      }
-    }
-    const hadKey = isArray(target) && isIntegerKey(key) ? Number(key) < target.length : hasOwn$1(target, key);
-    const result = Reflect.set(target, key, value, receiver);
-    if (target === toRaw(receiver)) {
-      if (!hadKey) {
-        trigger(target, "add", key, value);
-      } else if (hasChanged(value, oldValue)) {
-        trigger(target, "set", key, value, oldValue);
-      }
-    }
-    return result;
-  };
-}
-function deleteProperty(target, key) {
-  const hadKey = hasOwn$1(target, key);
-  const oldValue = target[key];
-  const result = Reflect.deleteProperty(target, key);
-  if (result && hadKey) {
-    trigger(target, "delete", key, void 0, oldValue);
-  }
-  return result;
-}
-function has$1(target, key) {
-  const result = Reflect.has(target, key);
-  if (!isSymbol(key) || !builtInSymbols.has(key)) {
-    track(target, "has", key);
-  }
-  return result;
-}
-function ownKeys(target) {
-  track(target, "iterate", isArray(target) ? "length" : ITERATE_KEY);
-  return Reflect.ownKeys(target);
-}
-const mutableHandlers = {
-  get: get$1,
-  set: set$1,
-  deleteProperty,
-  has: has$1,
-  ownKeys
-};
-const readonlyHandlers = {
-  get: readonlyGet,
-  set(target, key) {
-    {
-      warn$1(`Set operation on key "${String(key)}" failed: target is readonly.`, target);
-    }
-    return true;
-  },
-  deleteProperty(target, key) {
-    {
-      warn$1(`Delete operation on key "${String(key)}" failed: target is readonly.`, target);
-    }
-    return true;
-  }
-};
-const shallowReactiveHandlers = /* @__PURE__ */ extend({}, mutableHandlers, {
-  get: shallowGet,
-  set: shallowSet
-});
-const shallowReadonlyHandlers = /* @__PURE__ */ extend({}, readonlyHandlers, {
-  get: shallowReadonlyGet
-});
-const toShallow = (value) => value;
-const getProto = (v) => Reflect.getPrototypeOf(v);
-function get(target, key, isReadonly2 = false, isShallow2 = false) {
-  target = target[
-    "__v_raw"
-    /* ReactiveFlags.RAW */
-  ];
-  const rawTarget = toRaw(target);
-  const rawKey = toRaw(key);
-  if (!isReadonly2) {
-    if (key !== rawKey) {
-      track(rawTarget, "get", key);
-    }
-    track(rawTarget, "get", rawKey);
-  }
-  const { has: has2 } = getProto(rawTarget);
-  const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
-  if (has2.call(rawTarget, key)) {
-    return wrap(target.get(key));
-  } else if (has2.call(rawTarget, rawKey)) {
-    return wrap(target.get(rawKey));
-  } else if (target !== rawTarget) {
-    target.get(key);
-  }
-}
-function has(key, isReadonly2 = false) {
-  const target = this[
-    "__v_raw"
-    /* ReactiveFlags.RAW */
-  ];
-  const rawTarget = toRaw(target);
-  const rawKey = toRaw(key);
-  if (!isReadonly2) {
-    if (key !== rawKey) {
-      track(rawTarget, "has", key);
-    }
-    track(rawTarget, "has", rawKey);
-  }
-  return key === rawKey ? target.has(key) : target.has(key) || target.has(rawKey);
-}
-function size(target, isReadonly2 = false) {
-  target = target[
-    "__v_raw"
-    /* ReactiveFlags.RAW */
-  ];
-  !isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
-  return Reflect.get(target, "size", target);
-}
-function add(value) {
-  value = toRaw(value);
-  const target = toRaw(this);
-  const proto = getProto(target);
-  const hadKey = proto.has.call(target, value);
-  if (!hadKey) {
-    target.add(value);
-    trigger(target, "add", value, value);
-  }
-  return this;
-}
-function set$2(key, value) {
-  value = toRaw(value);
-  const target = toRaw(this);
-  const { has: has2, get: get2 } = getProto(target);
-  let hadKey = has2.call(target, key);
-  if (!hadKey) {
-    key = toRaw(key);
-    hadKey = has2.call(target, key);
-  } else {
-    checkIdentityKeys(target, has2, key);
-  }
-  const oldValue = get2.call(target, key);
-  target.set(key, value);
-  if (!hadKey) {
-    trigger(target, "add", key, value);
-  } else if (hasChanged(value, oldValue)) {
-    trigger(target, "set", key, value, oldValue);
-  }
-  return this;
-}
-function deleteEntry(key) {
-  const target = toRaw(this);
-  const { has: has2, get: get2 } = getProto(target);
-  let hadKey = has2.call(target, key);
-  if (!hadKey) {
-    key = toRaw(key);
-    hadKey = has2.call(target, key);
-  } else {
-    checkIdentityKeys(target, has2, key);
-  }
-  const oldValue = get2 ? get2.call(target, key) : void 0;
-  const result = target.delete(key);
-  if (hadKey) {
-    trigger(target, "delete", key, void 0, oldValue);
-  }
-  return result;
-}
-function clear() {
-  const target = toRaw(this);
-  const hadItems = target.size !== 0;
-  const oldTarget = isMap(target) ? new Map(target) : new Set(target);
-  const result = target.clear();
-  if (hadItems) {
-    trigger(target, "clear", void 0, void 0, oldTarget);
-  }
-  return result;
-}
-function createForEach(isReadonly2, isShallow2) {
-  return function forEach(callback, thisArg) {
-    const observed = this;
-    const target = observed[
-      "__v_raw"
-      /* ReactiveFlags.RAW */
-    ];
-    const rawTarget = toRaw(target);
-    const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
-    !isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
-    return target.forEach((value, key) => {
-      return callback.call(thisArg, wrap(value), wrap(key), observed);
-    });
-  };
-}
-function createIterableMethod(method, isReadonly2, isShallow2) {
-  return function(...args) {
-    const target = this[
-      "__v_raw"
-      /* ReactiveFlags.RAW */
-    ];
-    const rawTarget = toRaw(target);
-    const targetIsMap = isMap(rawTarget);
-    const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
-    const isKeyOnly = method === "keys" && targetIsMap;
-    const innerIterator = target[method](...args);
-    const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
-    !isReadonly2 && track(rawTarget, "iterate", isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY);
-    return {
-      // iterator protocol
-      next() {
-        const { value, done } = innerIterator.next();
-        return done ? { value, done } : {
-          value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),
-          done
-        };
-      },
-      // iterable protocol
-      [Symbol.iterator]() {
-        return this;
-      }
-    };
-  };
-}
-function createReadonlyMethod(type) {
-  return function(...args) {
-    {
-      const key = args[0] ? `on key "${args[0]}" ` : ``;
-      console.warn(`${capitalize(type)} operation ${key}failed: target is readonly.`, toRaw(this));
-    }
-    return type === "delete" ? false : this;
-  };
-}
-function createInstrumentations() {
-  const mutableInstrumentations2 = {
-    get(key) {
-      return get(this, key);
-    },
-    get size() {
-      return size(this);
-    },
-    has,
-    add,
-    set: set$2,
-    delete: deleteEntry,
-    clear,
-    forEach: createForEach(false, false)
-  };
-  const shallowInstrumentations2 = {
-    get(key) {
-      return get(this, key, false, true);
-    },
-    get size() {
-      return size(this);
-    },
-    has,
-    add,
-    set: set$2,
-    delete: deleteEntry,
-    clear,
-    forEach: createForEach(false, true)
-  };
-  const readonlyInstrumentations2 = {
-    get(key) {
-      return get(this, key, true);
-    },
-    get size() {
-      return size(this, true);
-    },
-    has(key) {
-      return has.call(this, key, true);
-    },
-    add: createReadonlyMethod(
-      "add"
-      /* TriggerOpTypes.ADD */
-    ),
-    set: createReadonlyMethod(
-      "set"
-      /* TriggerOpTypes.SET */
-    ),
-    delete: createReadonlyMethod(
-      "delete"
-      /* TriggerOpTypes.DELETE */
-    ),
-    clear: createReadonlyMethod(
-      "clear"
-      /* TriggerOpTypes.CLEAR */
-    ),
-    forEach: createForEach(true, false)
-  };
-  const shallowReadonlyInstrumentations2 = {
-    get(key) {
-      return get(this, key, true, true);
-    },
-    get size() {
-      return size(this, true);
-    },
-    has(key) {
-      return has.call(this, key, true);
-    },
-    add: createReadonlyMethod(
-      "add"
-      /* TriggerOpTypes.ADD */
-    ),
-    set: createReadonlyMethod(
-      "set"
-      /* TriggerOpTypes.SET */
-    ),
-    delete: createReadonlyMethod(
-      "delete"
-      /* TriggerOpTypes.DELETE */
-    ),
-    clear: createReadonlyMethod(
-      "clear"
-      /* TriggerOpTypes.CLEAR */
-    ),
-    forEach: createForEach(true, true)
-  };
-  const iteratorMethods = ["keys", "values", "entries", Symbol.iterator];
-  iteratorMethods.forEach((method) => {
-    mutableInstrumentations2[method] = createIterableMethod(method, false, false);
-    readonlyInstrumentations2[method] = createIterableMethod(method, true, false);
-    shallowInstrumentations2[method] = createIterableMethod(method, false, true);
-    shallowReadonlyInstrumentations2[method] = createIterableMethod(method, true, true);
-  });
-  return [
-    mutableInstrumentations2,
-    readonlyInstrumentations2,
-    shallowInstrumentations2,
-    shallowReadonlyInstrumentations2
-  ];
-}
-const [mutableInstrumentations, readonlyInstrumentations, shallowInstrumentations, shallowReadonlyInstrumentations] = /* @__PURE__ */ createInstrumentations();
-function createInstrumentationGetter(isReadonly2, shallow) {
-  const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
-  return (target, key, receiver) => {
-    if (key === "__v_isReactive") {
-      return !isReadonly2;
-    } else if (key === "__v_isReadonly") {
-      return isReadonly2;
-    } else if (key === "__v_raw") {
-      return target;
-    }
-    return Reflect.get(hasOwn$1(instrumentations, key) && key in target ? instrumentations : target, key, receiver);
-  };
-}
-const mutableCollectionHandlers = {
-  get: /* @__PURE__ */ createInstrumentationGetter(false, false)
-};
-const shallowCollectionHandlers = {
-  get: /* @__PURE__ */ createInstrumentationGetter(false, true)
-};
-const readonlyCollectionHandlers = {
-  get: /* @__PURE__ */ createInstrumentationGetter(true, false)
-};
-const shallowReadonlyCollectionHandlers = {
-  get: /* @__PURE__ */ createInstrumentationGetter(true, true)
-};
-function checkIdentityKeys(target, has2, key) {
-  const rawKey = toRaw(key);
-  if (rawKey !== key && has2.call(target, rawKey)) {
-    const type = toRawType(target);
-    console.warn(`Reactive ${type} contains both the raw and reactive versions of the same object${type === `Map` ? ` as keys` : ``}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`);
-  }
-}
-const reactiveMap = /* @__PURE__ */ new WeakMap();
-const shallowReactiveMap = /* @__PURE__ */ new WeakMap();
-const readonlyMap = /* @__PURE__ */ new WeakMap();
-const shallowReadonlyMap = /* @__PURE__ */ new WeakMap();
-function targetTypeMap(rawType) {
-  switch (rawType) {
-    case "Object":
-    case "Array":
-      return 1;
-    case "Map":
-    case "Set":
-    case "WeakMap":
-    case "WeakSet":
-      return 2;
-    default:
-      return 0;
-  }
-}
-function getTargetType(value) {
-  return value[
-    "__v_skip"
-    /* ReactiveFlags.SKIP */
-  ] || !Object.isExtensible(value) ? 0 : targetTypeMap(toRawType(value));
-}
-function reactive(target) {
-  if (isReadonly(target)) {
-    return target;
-  }
-  return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap);
-}
-function shallowReactive(target) {
-  return createReactiveObject(target, false, shallowReactiveHandlers, shallowCollectionHandlers, shallowReactiveMap);
-}
-function readonly(target) {
-  return createReactiveObject(target, true, readonlyHandlers, readonlyCollectionHandlers, readonlyMap);
-}
-function shallowReadonly(target) {
-  return createReactiveObject(target, true, shallowReadonlyHandlers, shallowReadonlyCollectionHandlers, shallowReadonlyMap);
-}
-function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) {
-  if (!isObject$1(target)) {
-    {
-      console.warn(`value cannot be made reactive: ${String(target)}`);
-    }
-    return target;
-  }
-  if (target[
-    "__v_raw"
-    /* ReactiveFlags.RAW */
-  ] && !(isReadonly2 && target[
-    "__v_isReactive"
-    /* ReactiveFlags.IS_REACTIVE */
-  ])) {
-    return target;
-  }
-  const existingProxy = proxyMap.get(target);
-  if (existingProxy) {
-    return existingProxy;
-  }
-  const targetType = getTargetType(target);
-  if (targetType === 0) {
-    return target;
-  }
-  const proxy = new Proxy(target, targetType === 2 ? collectionHandlers : baseHandlers);
-  proxyMap.set(target, proxy);
-  return proxy;
-}
-function isReactive(value) {
-  if (isReadonly(value)) {
-    return isReactive(value[
-      "__v_raw"
-      /* ReactiveFlags.RAW */
-    ]);
-  }
-  return !!(value && value[
-    "__v_isReactive"
-    /* ReactiveFlags.IS_REACTIVE */
-  ]);
-}
-function isReadonly(value) {
-  return !!(value && value[
-    "__v_isReadonly"
-    /* ReactiveFlags.IS_READONLY */
-  ]);
-}
-function isShallow(value) {
-  return !!(value && value[
-    "__v_isShallow"
-    /* ReactiveFlags.IS_SHALLOW */
-  ]);
-}
-function isProxy(value) {
-  return isReactive(value) || isReadonly(value);
-}
-function toRaw(observed) {
-  const raw = observed && observed[
-    "__v_raw"
-    /* ReactiveFlags.RAW */
-  ];
-  return raw ? toRaw(raw) : observed;
-}
-function markRaw(value) {
-  def(value, "__v_skip", true);
-  return value;
-}
-const toReactive = (value) => isObject$1(value) ? reactive(value) : value;
-const toReadonly = (value) => isObject$1(value) ? readonly(value) : value;
-function trackRefValue(ref2) {
-  if (shouldTrack && activeEffect) {
-    ref2 = toRaw(ref2);
-    {
-      trackEffects(ref2.dep || (ref2.dep = createDep()), {
-        target: ref2,
-        type: "get",
-        key: "value"
-      });
-    }
-  }
-}
-function triggerRefValue(ref2, newVal) {
-  ref2 = toRaw(ref2);
-  const dep = ref2.dep;
-  if (dep) {
-    {
-      triggerEffects(dep, {
-        target: ref2,
-        type: "set",
-        key: "value",
-        newValue: newVal
-      });
-    }
-  }
-}
-function isRef(r) {
-  return !!(r && r.__v_isRef === true);
-}
-function ref(value) {
-  return createRef(value, false);
-}
-function createRef(rawValue, shallow) {
-  if (isRef(rawValue)) {
-    return rawValue;
-  }
-  return new RefImpl(rawValue, shallow);
-}
-class RefImpl {
-  constructor(value, __v_isShallow) {
-    this.__v_isShallow = __v_isShallow;
-    this.dep = void 0;
-    this.__v_isRef = true;
-    this._rawValue = __v_isShallow ? value : toRaw(value);
-    this._value = __v_isShallow ? value : toReactive(value);
-  }
-  get value() {
-    trackRefValue(this);
-    return this._value;
-  }
-  set value(newVal) {
-    const useDirectValue = this.__v_isShallow || isShallow(newVal) || isReadonly(newVal);
-    newVal = useDirectValue ? newVal : toRaw(newVal);
-    if (hasChanged(newVal, this._rawValue)) {
-      this._rawValue = newVal;
-      this._value = useDirectValue ? newVal : toReactive(newVal);
-      triggerRefValue(this, newVal);
-    }
-  }
-}
-function unref(ref2) {
-  return isRef(ref2) ? ref2.value : ref2;
-}
-const shallowUnwrapHandlers = {
-  get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)),
-  set: (target, key, value, receiver) => {
-    const oldValue = target[key];
-    if (isRef(oldValue) && !isRef(value)) {
-      oldValue.value = value;
-      return true;
-    } else {
-      return Reflect.set(target, key, value, receiver);
-    }
-  }
-};
-function proxyRefs(objectWithRefs) {
-  return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
-}
-function toRefs(object) {
-  if (!isProxy(object)) {
-    console.warn(`toRefs() expects a reactive object but received a plain one.`);
-  }
-  const ret = isArray(object) ? new Array(object.length) : {};
-  for (const key in object) {
-    ret[key] = toRef(object, key);
-  }
-  return ret;
-}
-class ObjectRefImpl {
-  constructor(_object, _key, _defaultValue) {
-    this._object = _object;
-    this._key = _key;
-    this._defaultValue = _defaultValue;
-    this.__v_isRef = true;
-  }
-  get value() {
-    const val = this._object[this._key];
-    return val === void 0 ? this._defaultValue : val;
-  }
-  set value(newVal) {
-    this._object[this._key] = newVal;
-  }
-  get dep() {
-    return getDepFromReactive(toRaw(this._object), this._key);
-  }
-}
-function toRef(object, key, defaultValue) {
-  const val = object[key];
-  return isRef(val) ? val : new ObjectRefImpl(object, key, defaultValue);
-}
-var _a;
-class ComputedRefImpl {
-  constructor(getter, _setter, isReadonly2, isSSR) {
-    this._setter = _setter;
-    this.dep = void 0;
-    this.__v_isRef = true;
-    this[_a] = false;
-    this._dirty = true;
-    this.effect = new ReactiveEffect(getter, () => {
-      if (!this._dirty) {
-        this._dirty = true;
-        triggerRefValue(this);
-      }
-    });
-    this.effect.computed = this;
-    this.effect.active = this._cacheable = !isSSR;
-    this[
-      "__v_isReadonly"
-      /* ReactiveFlags.IS_READONLY */
-    ] = isReadonly2;
-  }
-  get value() {
-    const self = toRaw(this);
-    trackRefValue(self);
-    if (self._dirty || !self._cacheable) {
-      self._dirty = false;
-      self._value = self.effect.run();
-    }
-    return self._value;
-  }
-  set value(newValue) {
-    this._setter(newValue);
-  }
-}
-_a = "__v_isReadonly";
-function computed$1(getterOrOptions, debugOptions, isSSR = false) {
-  let getter;
-  let setter;
-  const onlyGetter = isFunction(getterOrOptions);
-  if (onlyGetter) {
-    getter = getterOrOptions;
-    setter = () => {
-      console.warn("Write operation failed: computed value is readonly");
-    };
-  } else {
-    getter = getterOrOptions.get;
-    setter = getterOrOptions.set;
-  }
-  const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter, isSSR);
-  if (debugOptions && !isSSR) {
-    cRef.effect.onTrack = debugOptions.onTrack;
-    cRef.effect.onTrigger = debugOptions.onTrigger;
-  }
-  return cRef;
-}
-const stack = [];
-function pushWarningContext(vnode) {
-  stack.push(vnode);
-}
-function popWarningContext() {
-  stack.pop();
-}
-function warn(msg, ...args) {
-  pauseTracking();
-  const instance = stack.length ? stack[stack.length - 1].component : null;
-  const appWarnHandler = instance && instance.appContext.config.warnHandler;
-  const trace = getComponentTrace();
-  if (appWarnHandler) {
-    callWithErrorHandling(appWarnHandler, instance, 11, [
-      msg + args.join(""),
-      instance && instance.proxy,
-      trace.map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`).join("\n"),
-      trace
-    ]);
-  } else {
-    const warnArgs = [`[Vue warn]: ${msg}`, ...args];
-    if (trace.length && // avoid spamming console during tests
-    true) {
-      warnArgs.push(`
-`, ...formatTrace(trace));
-    }
-    console.warn(...warnArgs);
-  }
-  resetTracking();
-}
-function getComponentTrace() {
-  let currentVNode = stack[stack.length - 1];
-  if (!currentVNode) {
-    return [];
-  }
-  const normalizedStack = [];
-  while (currentVNode) {
-    const last = normalizedStack[0];
-    if (last && last.vnode === currentVNode) {
-      last.recurseCount++;
-    } else {
-      normalizedStack.push({
-        vnode: currentVNode,
-        recurseCount: 0
-      });
-    }
-    const parentInstance = currentVNode.component && currentVNode.component.parent;
-    currentVNode = parentInstance && parentInstance.vnode;
-  }
-  return normalizedStack;
-}
-function formatTrace(trace) {
-  const logs = [];
-  trace.forEach((entry, i) => {
-    logs.push(...i === 0 ? [] : [`
-`], ...formatTraceEntry(entry));
-  });
-  return logs;
-}
-function formatTraceEntry({ vnode, recurseCount }) {
-  const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;
-  const isRoot = vnode.component ? vnode.component.parent == null : false;
-  const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;
-  const close = `>` + postfix;
-  return vnode.props ? [open, ...formatProps(vnode.props), close] : [open + close];
-}
-function formatProps(props) {
-  const res = [];
-  const keys = Object.keys(props);
-  keys.slice(0, 3).forEach((key) => {
-    res.push(...formatProp(key, props[key]));
-  });
-  if (keys.length > 3) {
-    res.push(` ...`);
-  }
-  return res;
-}
-function formatProp(key, value, raw) {
-  if (isString(value)) {
-    value = JSON.stringify(value);
-    return raw ? value : [`${key}=${value}`];
-  } else if (typeof value === "number" || typeof value === "boolean" || value == null) {
-    return raw ? value : [`${key}=${value}`];
-  } else if (isRef(value)) {
-    value = formatProp(key, toRaw(value.value), true);
-    return raw ? value : [`${key}=Ref<`, value, `>`];
-  } else if (isFunction(value)) {
-    return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];
-  } else {
-    value = toRaw(value);
-    return raw ? value : [`${key}=`, value];
-  }
-}
-const ErrorTypeStrings = {
-  [
-    "sp"
-    /* LifecycleHooks.SERVER_PREFETCH */
-  ]: "serverPrefetch hook",
-  [
-    "bc"
-    /* LifecycleHooks.BEFORE_CREATE */
-  ]: "beforeCreate hook",
-  [
-    "c"
-    /* LifecycleHooks.CREATED */
-  ]: "created hook",
-  [
-    "bm"
-    /* LifecycleHooks.BEFORE_MOUNT */
-  ]: "beforeMount hook",
-  [
-    "m"
-    /* LifecycleHooks.MOUNTED */
-  ]: "mounted hook",
-  [
-    "bu"
-    /* LifecycleHooks.BEFORE_UPDATE */
-  ]: "beforeUpdate hook",
-  [
-    "u"
-    /* LifecycleHooks.UPDATED */
-  ]: "updated",
-  [
-    "bum"
-    /* LifecycleHooks.BEFORE_UNMOUNT */
-  ]: "beforeUnmount hook",
-  [
-    "um"
-    /* LifecycleHooks.UNMOUNTED */
-  ]: "unmounted hook",
-  [
-    "a"
-    /* LifecycleHooks.ACTIVATED */
-  ]: "activated hook",
-  [
-    "da"
-    /* LifecycleHooks.DEACTIVATED */
-  ]: "deactivated hook",
-  [
-    "ec"
-    /* LifecycleHooks.ERROR_CAPTURED */
-  ]: "errorCaptured hook",
-  [
-    "rtc"
-    /* LifecycleHooks.RENDER_TRACKED */
-  ]: "renderTracked hook",
-  [
-    "rtg"
-    /* LifecycleHooks.RENDER_TRIGGERED */
-  ]: "renderTriggered hook",
-  [
-    0
-    /* ErrorCodes.SETUP_FUNCTION */
-  ]: "setup function",
-  [
-    1
-    /* ErrorCodes.RENDER_FUNCTION */
-  ]: "render function",
-  [
-    2
-    /* ErrorCodes.WATCH_GETTER */
-  ]: "watcher getter",
-  [
-    3
-    /* ErrorCodes.WATCH_CALLBACK */
-  ]: "watcher callback",
-  [
-    4
-    /* ErrorCodes.WATCH_CLEANUP */
-  ]: "watcher cleanup function",
-  [
-    5
-    /* ErrorCodes.NATIVE_EVENT_HANDLER */
-  ]: "native event handler",
-  [
-    6
-    /* ErrorCodes.COMPONENT_EVENT_HANDLER */
-  ]: "component event handler",
-  [
-    7
-    /* ErrorCodes.VNODE_HOOK */
-  ]: "vnode hook",
-  [
-    8
-    /* ErrorCodes.DIRECTIVE_HOOK */
-  ]: "directive hook",
-  [
-    9
-    /* ErrorCodes.TRANSITION_HOOK */
-  ]: "transition hook",
-  [
-    10
-    /* ErrorCodes.APP_ERROR_HANDLER */
-  ]: "app errorHandler",
-  [
-    11
-    /* ErrorCodes.APP_WARN_HANDLER */
-  ]: "app warnHandler",
-  [
-    12
-    /* ErrorCodes.FUNCTION_REF */
-  ]: "ref function",
-  [
-    13
-    /* ErrorCodes.ASYNC_COMPONENT_LOADER */
-  ]: "async component loader",
-  [
-    14
-    /* ErrorCodes.SCHEDULER */
-  ]: "scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core"
-};
-function callWithErrorHandling(fn, instance, type, args) {
-  let res;
-  try {
-    res = args ? fn(...args) : fn();
-  } catch (err) {
-    handleError(err, instance, type);
-  }
-  return res;
-}
-function callWithAsyncErrorHandling(fn, instance, type, args) {
-  if (isFunction(fn)) {
-    const res = callWithErrorHandling(fn, instance, type, args);
-    if (res && isPromise(res)) {
-      res.catch((err) => {
-        handleError(err, instance, type);
-      });
-    }
-    return res;
-  }
-  const values = [];
-  for (let i = 0; i < fn.length; i++) {
-    values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
-  }
-  return values;
-}
-function handleError(err, instance, type, throwInDev = true) {
-  const contextVNode = instance ? instance.vnode : null;
-  if (instance) {
-    let cur = instance.parent;
-    const exposedInstance = instance.proxy;
-    const errorInfo = ErrorTypeStrings[type] || type;
-    while (cur) {
-      const errorCapturedHooks = cur.ec;
-      if (errorCapturedHooks) {
-        for (let i = 0; i < errorCapturedHooks.length; i++) {
-          if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
-            return;
-          }
-        }
-      }
-      cur = cur.parent;
-    }
-    const appErrorHandler = instance.appContext.config.errorHandler;
-    if (appErrorHandler) {
-      callWithErrorHandling(appErrorHandler, null, 10, [err, exposedInstance, errorInfo]);
-      return;
-    }
-  }
-  logError(err, type, contextVNode, throwInDev);
-}
-function logError(err, type, contextVNode, throwInDev = true) {
-  {
-    const info = ErrorTypeStrings[type] || type;
-    if (contextVNode) {
-      pushWarningContext(contextVNode);
-    }
-    warn(`Unhandled error${info ? ` during execution of ${info}` : ``}`);
-    if (contextVNode) {
-      popWarningContext();
-    }
-    if (throwInDev) {
-      console.error(err);
-    } else {
-      console.error(err);
-    }
-  }
-}
-let isFlushing = false;
-let isFlushPending = false;
-const queue = [];
-let flushIndex = 0;
-const pendingPostFlushCbs = [];
-let activePostFlushCbs = null;
-let postFlushIndex = 0;
-const resolvedPromise = /* @__PURE__ */ Promise.resolve();
-let currentFlushPromise = null;
-const RECURSION_LIMIT = 100;
-function nextTick$1(fn) {
-  const p2 = currentFlushPromise || resolvedPromise;
-  return fn ? p2.then(this ? fn.bind(this) : fn) : p2;
-}
-function findInsertionIndex(id2) {
-  let start = flushIndex + 1;
-  let end = queue.length;
-  while (start < end) {
-    const middle = start + end >>> 1;
-    const middleJobId = getId(queue[middle]);
-    middleJobId < id2 ? start = middle + 1 : end = middle;
-  }
-  return start;
-}
-function queueJob(job) {
-  if (!queue.length || !queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) {
-    if (job.id == null) {
-      queue.push(job);
-    } else {
-      queue.splice(findInsertionIndex(job.id), 0, job);
-    }
-    queueFlush();
-  }
-}
-function queueFlush() {
-  if (!isFlushing && !isFlushPending) {
-    isFlushPending = true;
-    currentFlushPromise = resolvedPromise.then(flushJobs);
-  }
-}
-function hasQueueJob(job) {
-  return queue.indexOf(job) > -1;
-}
-function invalidateJob(job) {
-  const i = queue.indexOf(job);
-  if (i > flushIndex) {
-    queue.splice(i, 1);
-  }
-}
-function queuePostFlushCb(cb) {
-  if (!isArray(cb)) {
-    if (!activePostFlushCbs || !activePostFlushCbs.includes(cb, cb.allowRecurse ? postFlushIndex + 1 : postFlushIndex)) {
-      pendingPostFlushCbs.push(cb);
-    }
-  } else {
-    pendingPostFlushCbs.push(...cb);
-  }
-  queueFlush();
-}
-function flushPreFlushCbs(seen, i = isFlushing ? flushIndex + 1 : 0) {
-  {
-    seen = seen || /* @__PURE__ */ new Map();
-  }
-  for (; i < queue.length; i++) {
-    const cb = queue[i];
-    if (cb && cb.pre) {
-      if (checkRecursiveUpdates(seen, cb)) {
-        continue;
-      }
-      queue.splice(i, 1);
-      i--;
-      cb();
-    }
-  }
-}
-function flushPostFlushCbs(seen) {
-  if (pendingPostFlushCbs.length) {
-    const deduped = [...new Set(pendingPostFlushCbs)];
-    pendingPostFlushCbs.length = 0;
-    if (activePostFlushCbs) {
-      activePostFlushCbs.push(...deduped);
-      return;
-    }
-    activePostFlushCbs = deduped;
-    {
-      seen = seen || /* @__PURE__ */ new Map();
-    }
-    activePostFlushCbs.sort((a, b) => getId(a) - getId(b));
-    for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {
-      if (checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {
-        continue;
-      }
-      activePostFlushCbs[postFlushIndex]();
-    }
-    activePostFlushCbs = null;
-    postFlushIndex = 0;
-  }
-}
-const getId = (job) => job.id == null ? Infinity : job.id;
-const comparator = (a, b) => {
-  const diff2 = getId(a) - getId(b);
-  if (diff2 === 0) {
-    if (a.pre && !b.pre)
-      return -1;
-    if (b.pre && !a.pre)
-      return 1;
-  }
-  return diff2;
-};
-function flushJobs(seen) {
-  isFlushPending = false;
-  isFlushing = true;
-  {
-    seen = seen || /* @__PURE__ */ new Map();
-  }
-  queue.sort(comparator);
-  const check = (job) => checkRecursiveUpdates(seen, job);
-  try {
-    for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
-      const job = queue[flushIndex];
-      if (job && job.active !== false) {
-        if (check(job)) {
-          continue;
-        }
-        callWithErrorHandling(
-          job,
-          null,
-          14
-          /* ErrorCodes.SCHEDULER */
-        );
-      }
-    }
-  } finally {
-    flushIndex = 0;
-    queue.length = 0;
-    flushPostFlushCbs(seen);
-    isFlushing = false;
-    currentFlushPromise = null;
-    if (queue.length || pendingPostFlushCbs.length) {
-      flushJobs(seen);
-    }
-  }
-}
-function checkRecursiveUpdates(seen, fn) {
-  if (!seen.has(fn)) {
-    seen.set(fn, 1);
-  } else {
-    const count = seen.get(fn);
-    if (count > RECURSION_LIMIT) {
-      const instance = fn.ownerInstance;
-      const componentName = instance && getComponentName(instance.type);
-      warn(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`);
-      return true;
-    } else {
-      seen.set(fn, count + 1);
-    }
-  }
-}
-let devtools;
-let buffer = [];
-let devtoolsNotInstalled = false;
-function emit$1(event, ...args) {
-  if (devtools) {
-    devtools.emit(event, ...args);
-  } else if (!devtoolsNotInstalled) {
-    buffer.push({ event, args });
-  }
-}
-function setDevtoolsHook(hook, target) {
-  var _a2, _b;
-  devtools = hook;
-  if (devtools) {
-    devtools.enabled = true;
-    buffer.forEach(({ event, args }) => devtools.emit(event, ...args));
-    buffer = [];
-  } else if (
-    // handle late devtools injection - only do this if we are in an actual
-    // browser environment to avoid the timer handle stalling test runner exit
-    // (#4815)
-    typeof window !== "undefined" && // some envs mock window but not fully
-    // eslint-disable-next-line no-restricted-globals
-    window.HTMLElement && // also exclude jsdom
-    // eslint-disable-next-line no-restricted-globals
-    !((_b = (_a2 = window.navigator) === null || _a2 === void 0 ? void 0 : _a2.userAgent) === null || _b === void 0 ? void 0 : _b.includes("jsdom"))
-  ) {
-    const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
-    replay.push((newHook) => {
-      setDevtoolsHook(newHook, target);
-    });
-    setTimeout(() => {
-      if (!devtools) {
-        target.__VUE_DEVTOOLS_HOOK_REPLAY__ = null;
-        devtoolsNotInstalled = true;
-        buffer = [];
-      }
-    }, 3e3);
-  } else {
-    devtoolsNotInstalled = true;
-    buffer = [];
-  }
-}
-function devtoolsInitApp(app, version2) {
-  emit$1("app:init", app, version2, {
-    Fragment,
-    Text,
-    Comment,
-    Static
-  });
-}
-const devtoolsComponentAdded = /* @__PURE__ */ createDevtoolsComponentHook(
-  "component:added"
-  /* DevtoolsHooks.COMPONENT_ADDED */
-);
-const devtoolsComponentUpdated = /* @__PURE__ */ createDevtoolsComponentHook(
-  "component:updated"
-  /* DevtoolsHooks.COMPONENT_UPDATED */
-);
-const _devtoolsComponentRemoved = /* @__PURE__ */ createDevtoolsComponentHook(
-  "component:removed"
-  /* DevtoolsHooks.COMPONENT_REMOVED */
-);
-const devtoolsComponentRemoved = (component) => {
-  if (devtools && typeof devtools.cleanupBuffer === "function" && // remove the component if it wasn't buffered
-  !devtools.cleanupBuffer(component)) {
-    _devtoolsComponentRemoved(component);
-  }
-};
-function createDevtoolsComponentHook(hook) {
-  return (component) => {
-    emit$1(
-      hook,
-      component.appContext.app,
-      component.uid,
-      // fixed by xxxxxx
-      // 为 0 是 App,无 parent 是 Page 指向 App
-      component.uid === 0 ? void 0 : component.parent ? component.parent.uid : 0,
-      component
-    );
-  };
-}
-const devtoolsPerfStart = /* @__PURE__ */ createDevtoolsPerformanceHook(
-  "perf:start"
-  /* DevtoolsHooks.PERFORMANCE_START */
-);
-const devtoolsPerfEnd = /* @__PURE__ */ createDevtoolsPerformanceHook(
-  "perf:end"
-  /* DevtoolsHooks.PERFORMANCE_END */
-);
-function createDevtoolsPerformanceHook(hook) {
-  return (component, type, time) => {
-    emit$1(hook, component.appContext.app, component.uid, component, type, time);
-  };
-}
-function devtoolsComponentEmit(component, event, params) {
-  emit$1("component:emit", component.appContext.app, component, event, params);
-}
-function emit(instance, event, ...rawArgs) {
-  if (instance.isUnmounted)
-    return;
-  const props = instance.vnode.props || EMPTY_OBJ;
-  {
-    const { emitsOptions, propsOptions: [propsOptions] } = instance;
-    if (emitsOptions) {
-      if (!(event in emitsOptions) && true) {
-        if (!propsOptions || !(toHandlerKey(event) in propsOptions)) {
-          warn(`Component emitted event "${event}" but it is neither declared in the emits option nor as an "${toHandlerKey(event)}" prop.`);
-        }
-      } else {
-        const validator = emitsOptions[event];
-        if (isFunction(validator)) {
-          const isValid = validator(...rawArgs);
-          if (!isValid) {
-            warn(`Invalid event arguments: event validation failed for event "${event}".`);
-          }
-        }
-      }
-    }
-  }
-  let args = rawArgs;
-  const isModelListener2 = event.startsWith("update:");
-  const modelArg = isModelListener2 && event.slice(7);
-  if (modelArg && modelArg in props) {
-    const modifiersKey = `${modelArg === "modelValue" ? "model" : modelArg}Modifiers`;
-    const { number, trim } = props[modifiersKey] || EMPTY_OBJ;
-    if (trim) {
-      args = rawArgs.map((a) => isString(a) ? a.trim() : a);
-    }
-    if (number) {
-      args = rawArgs.map(looseToNumber);
-    }
-  }
-  {
-    devtoolsComponentEmit(instance, event, args);
-  }
-  {
-    const lowerCaseEvent = event.toLowerCase();
-    if (lowerCaseEvent !== event && props[toHandlerKey(lowerCaseEvent)]) {
-      warn(`Event "${lowerCaseEvent}" is emitted in component ${formatComponentName(instance, instance.type)} but the handler is registered for "${event}". Note that HTML attributes are case-insensitive and you cannot use v-on to listen to camelCase events when using in-DOM templates. You should probably use "${hyphenate(event)}" instead of "${event}".`);
-    }
-  }
-  let handlerName;
-  let handler = props[handlerName = toHandlerKey(event)] || // also try camelCase event handler (#2249)
-  props[handlerName = toHandlerKey(camelize(event))];
-  if (!handler && isModelListener2) {
-    handler = props[handlerName = toHandlerKey(hyphenate(event))];
-  }
-  if (handler) {
-    callWithAsyncErrorHandling(handler, instance, 6, args);
-  }
-  const onceHandler = props[handlerName + `Once`];
-  if (onceHandler) {
-    if (!instance.emitted) {
-      instance.emitted = {};
-    } else if (instance.emitted[handlerName]) {
-      return;
-    }
-    instance.emitted[handlerName] = true;
-    callWithAsyncErrorHandling(onceHandler, instance, 6, args);
-  }
-}
-function normalizeEmitsOptions(comp, appContext, asMixin = false) {
-  const cache = appContext.emitsCache;
-  const cached = cache.get(comp);
-  if (cached !== void 0) {
-    return cached;
-  }
-  const raw = comp.emits;
-  let normalized = {};
-  let hasExtends = false;
-  if (!isFunction(comp)) {
-    const extendEmits = (raw2) => {
-      const normalizedFromExtend = normalizeEmitsOptions(raw2, appContext, true);
-      if (normalizedFromExtend) {
-        hasExtends = true;
-        extend(normalized, normalizedFromExtend);
-      }
-    };
-    if (!asMixin && appContext.mixins.length) {
-      appContext.mixins.forEach(extendEmits);
-    }
-    if (comp.extends) {
-      extendEmits(comp.extends);
-    }
-    if (comp.mixins) {
-      comp.mixins.forEach(extendEmits);
-    }
-  }
-  if (!raw && !hasExtends) {
-    if (isObject$1(comp)) {
-      cache.set(comp, null);
-    }
-    return null;
-  }
-  if (isArray(raw)) {
-    raw.forEach((key) => normalized[key] = null);
-  } else {
-    extend(normalized, raw);
-  }
-  if (isObject$1(comp)) {
-    cache.set(comp, normalized);
-  }
-  return normalized;
-}
-function isEmitListener(options, key) {
-  if (!options || !isOn(key)) {
-    return false;
-  }
-  key = key.slice(2).replace(/Once$/, "");
-  return hasOwn$1(options, key[0].toLowerCase() + key.slice(1)) || hasOwn$1(options, hyphenate(key)) || hasOwn$1(options, key);
-}
-let currentRenderingInstance = null;
-function setCurrentRenderingInstance(instance) {
-  const prev = currentRenderingInstance;
-  currentRenderingInstance = instance;
-  instance && instance.type.__scopeId || null;
-  return prev;
-}
-function inject$1(key, defaultValue, treatDefaultAsFactory = false) {
-  const instance = currentInstance || currentRenderingInstance;
-  if (instance) {
-    const provides = instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides;
-    if (provides && key in provides) {
-      return provides[key];
-    } else if (arguments.length > 1) {
-      return treatDefaultAsFactory && isFunction(defaultValue) ? defaultValue.call(instance.proxy) : defaultValue;
-    } else {
-      warn(`injection "${String(key)}" not found.`);
-    }
-  } else {
-    warn(`inject() can only be used inside setup() or functional components.`);
-  }
-}
-const INITIAL_WATCHER_VALUE = {};
-function watch(source, cb, options) {
-  if (!isFunction(cb)) {
-    warn(`\`watch(fn, options?)\` signature has been moved to a separate API. Use \`watchEffect(fn, options?)\` instead. \`watch\` now only supports \`watch(source, cb, options?) signature.`);
-  }
-  return doWatch(source, cb, options);
-}
-function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EMPTY_OBJ) {
-  if (!cb) {
-    if (immediate !== void 0) {
-      warn(`watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.`);
-    }
-    if (deep !== void 0) {
-      warn(`watch() "deep" option is only respected when using the watch(source, callback, options?) signature.`);
-    }
-  }
-  const warnInvalidSource = (s2) => {
-    warn(`Invalid watch source: `, s2, `A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types.`);
-  };
-  const instance = getCurrentScope() === (currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.scope) ? currentInstance : null;
-  let getter;
-  let forceTrigger = false;
-  let isMultiSource = false;
-  if (isRef(source)) {
-    getter = () => source.value;
-    forceTrigger = isShallow(source);
-  } else if (isReactive(source)) {
-    getter = () => source;
-    deep = true;
-  } else if (isArray(source)) {
-    isMultiSource = true;
-    forceTrigger = source.some((s2) => isReactive(s2) || isShallow(s2));
-    getter = () => source.map((s2) => {
-      if (isRef(s2)) {
-        return s2.value;
-      } else if (isReactive(s2)) {
-        return traverse(s2);
-      } else if (isFunction(s2)) {
-        return callWithErrorHandling(
-          s2,
-          instance,
-          2
-          /* ErrorCodes.WATCH_GETTER */
-        );
-      } else {
-        warnInvalidSource(s2);
-      }
-    });
-  } else if (isFunction(source)) {
-    if (cb) {
-      getter = () => callWithErrorHandling(
-        source,
-        instance,
-        2
-        /* ErrorCodes.WATCH_GETTER */
-      );
-    } else {
-      getter = () => {
-        if (instance && instance.isUnmounted) {
-          return;
-        }
-        if (cleanup) {
-          cleanup();
-        }
-        return callWithAsyncErrorHandling(source, instance, 3, [onCleanup]);
-      };
-    }
-  } else {
-    getter = NOOP;
-    warnInvalidSource(source);
-  }
-  if (cb && deep) {
-    const baseGetter = getter;
-    getter = () => traverse(baseGetter());
-  }
-  let cleanup;
-  let onCleanup = (fn) => {
-    cleanup = effect.onStop = () => {
-      callWithErrorHandling(
-        fn,
-        instance,
-        4
-        /* ErrorCodes.WATCH_CLEANUP */
-      );
-    };
-  };
-  let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE;
-  const job = () => {
-    if (!effect.active) {
-      return;
-    }
-    if (cb) {
-      const newValue = effect.run();
-      if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => hasChanged(v, oldValue[i])) : hasChanged(newValue, oldValue)) || false) {
-        if (cleanup) {
-          cleanup();
-        }
-        callWithAsyncErrorHandling(cb, instance, 3, [
-          newValue,
-          // pass undefined as the old value when it's changed for the first time
-          oldValue === INITIAL_WATCHER_VALUE ? void 0 : isMultiSource && oldValue[0] === INITIAL_WATCHER_VALUE ? [] : oldValue,
-          onCleanup
-        ]);
-        oldValue = newValue;
-      }
-    } else {
-      effect.run();
-    }
-  };
-  job.allowRecurse = !!cb;
-  let scheduler;
-  if (flush === "sync") {
-    scheduler = job;
-  } else if (flush === "post") {
-    scheduler = () => queuePostRenderEffect$1(job, instance && instance.suspense);
-  } else {
-    job.pre = true;
-    if (instance)
-      job.id = instance.uid;
-    scheduler = () => queueJob(job);
-  }
-  const effect = new ReactiveEffect(getter, scheduler);
-  {
-    effect.onTrack = onTrack;
-    effect.onTrigger = onTrigger;
-  }
-  if (cb) {
-    if (immediate) {
-      job();
-    } else {
-      oldValue = effect.run();
-    }
-  } else if (flush === "post") {
-    queuePostRenderEffect$1(effect.run.bind(effect), instance && instance.suspense);
-  } else {
-    effect.run();
-  }
-  const unwatch = () => {
-    effect.stop();
-    if (instance && instance.scope) {
-      remove(instance.scope.effects, effect);
-    }
-  };
-  return unwatch;
-}
-function instanceWatch(source, value, options) {
-  const publicThis = this.proxy;
-  const getter = isString(source) ? source.includes(".") ? createPathGetter(publicThis, source) : () => publicThis[source] : source.bind(publicThis, publicThis);
-  let cb;
-  if (isFunction(value)) {
-    cb = value;
-  } else {
-    cb = value.handler;
-    options = value;
-  }
-  const cur = currentInstance;
-  setCurrentInstance(this);
-  const res = doWatch(getter, cb.bind(publicThis), options);
-  if (cur) {
-    setCurrentInstance(cur);
-  } else {
-    unsetCurrentInstance();
-  }
-  return res;
-}
-function createPathGetter(ctx, path) {
-  const segments = path.split(".");
-  return () => {
-    let cur = ctx;
-    for (let i = 0; i < segments.length && cur; i++) {
-      cur = cur[segments[i]];
-    }
-    return cur;
-  };
-}
-function traverse(value, seen) {
-  if (!isObject$1(value) || value[
-    "__v_skip"
-    /* ReactiveFlags.SKIP */
-  ]) {
-    return value;
-  }
-  seen = seen || /* @__PURE__ */ new Set();
-  if (seen.has(value)) {
-    return value;
-  }
-  seen.add(value);
-  if (isRef(value)) {
-    traverse(value.value, seen);
-  } else if (isArray(value)) {
-    for (let i = 0; i < value.length; i++) {
-      traverse(value[i], seen);
-    }
-  } else if (isSet(value) || isMap(value)) {
-    value.forEach((v) => {
-      traverse(v, seen);
-    });
-  } else if (isPlainObject$1(value)) {
-    for (const key in value) {
-      traverse(value[key], seen);
-    }
-  }
-  return value;
-}
-function defineComponent(options) {
-  return isFunction(options) ? { setup: options, name: options.name } : options;
-}
-const isKeepAlive = (vnode) => vnode.type.__isKeepAlive;
-function onActivated(hook, target) {
-  registerKeepAliveHook(hook, "a", target);
-}
-function onDeactivated(hook, target) {
-  registerKeepAliveHook(hook, "da", target);
-}
-function registerKeepAliveHook(hook, type, target = currentInstance) {
-  const wrappedHook = hook.__wdc || (hook.__wdc = () => {
-    let current = target;
-    while (current) {
-      if (current.isDeactivated) {
-        return;
-      }
-      current = current.parent;
-    }
-    return hook();
-  });
-  injectHook(type, wrappedHook, target);
-  if (target) {
-    let current = target.parent;
-    while (current && current.parent) {
-      if (isKeepAlive(current.parent.vnode)) {
-        injectToKeepAliveRoot(wrappedHook, type, target, current);
-      }
-      current = current.parent;
-    }
-  }
-}
-function injectToKeepAliveRoot(hook, type, target, keepAliveRoot) {
-  const injected = injectHook(
-    type,
-    hook,
-    keepAliveRoot,
-    true
-    /* prepend */
-  );
-  onUnmounted(() => {
-    remove(keepAliveRoot[type], injected);
-  }, target);
-}
-function injectHook(type, hook, target = currentInstance, prepend = false) {
-  if (target) {
-    if (isRootHook(type)) {
-      target = target.root;
-    }
-    const hooks = target[type] || (target[type] = []);
-    const wrappedHook = hook.__weh || (hook.__weh = (...args) => {
-      if (target.isUnmounted) {
-        return;
-      }
-      pauseTracking();
-      setCurrentInstance(target);
-      const res = callWithAsyncErrorHandling(hook, target, type, args);
-      unsetCurrentInstance();
-      resetTracking();
-      return res;
-    });
-    if (prepend) {
-      hooks.unshift(wrappedHook);
-    } else {
-      hooks.push(wrappedHook);
-    }
-    return wrappedHook;
-  } else {
-    const apiName = toHandlerKey((ErrorTypeStrings[type] || type.replace(/^on/, "")).replace(/ hook$/, ""));
-    warn(`${apiName} is called when there is no active component instance to be associated with. Lifecycle injection APIs can only be used during execution of setup().`);
-  }
-}
-const createHook$1 = (lifecycle) => (hook, target = currentInstance) => (
-  // post-create lifecycle registrations are noops during SSR (except for serverPrefetch)
-  (!isInSSRComponentSetup || lifecycle === "sp") && injectHook(lifecycle, (...args) => hook(...args), target)
-);
-const onBeforeMount = createHook$1(
-  "bm"
-  /* LifecycleHooks.BEFORE_MOUNT */
-);
-const onMounted = createHook$1(
-  "m"
-  /* LifecycleHooks.MOUNTED */
-);
-const onBeforeUpdate = createHook$1(
-  "bu"
-  /* LifecycleHooks.BEFORE_UPDATE */
-);
-const onUpdated = createHook$1(
-  "u"
-  /* LifecycleHooks.UPDATED */
-);
-const onBeforeUnmount = createHook$1(
-  "bum"
-  /* LifecycleHooks.BEFORE_UNMOUNT */
-);
-const onUnmounted = createHook$1(
-  "um"
-  /* LifecycleHooks.UNMOUNTED */
-);
-const onServerPrefetch = createHook$1(
-  "sp"
-  /* LifecycleHooks.SERVER_PREFETCH */
-);
-const onRenderTriggered = createHook$1(
-  "rtg"
-  /* LifecycleHooks.RENDER_TRIGGERED */
-);
-const onRenderTracked = createHook$1(
-  "rtc"
-  /* LifecycleHooks.RENDER_TRACKED */
-);
-function onErrorCaptured(hook, target = currentInstance) {
-  injectHook("ec", hook, target);
-}
-function validateDirectiveName(name) {
-  if (isBuiltInDirective(name)) {
-    warn("Do not use built-in directive ids as custom directive id: " + name);
-  }
-}
-const COMPONENTS = "components";
-function resolveComponent(name, maybeSelfReference) {
-  return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name;
-}
-function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false) {
-  const instance = currentRenderingInstance || currentInstance;
-  if (instance) {
-    const Component2 = instance.type;
-    if (type === COMPONENTS) {
-      const selfName = getComponentName(
-        Component2,
-        false
-        /* do not include inferred name to avoid breaking existing code */
-      );
-      if (selfName && (selfName === name || selfName === camelize(name) || selfName === capitalize(camelize(name)))) {
-        return Component2;
-      }
-    }
-    const res = (
-      // local registration
-      // check instance[type] first which is resolved for options API
-      resolve(instance[type] || Component2[type], name) || // global registration
-      resolve(instance.appContext[type], name)
-    );
-    if (!res && maybeSelfReference) {
-      return Component2;
-    }
-    if (warnMissing && !res) {
-      const extra = type === COMPONENTS ? `
-If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.` : ``;
-      warn(`Failed to resolve ${type.slice(0, -1)}: ${name}${extra}`);
-    }
-    return res;
-  } else {
-    warn(`resolve${capitalize(type.slice(0, -1))} can only be used in render() or setup().`);
-  }
-}
-function resolve(registry, name) {
-  return registry && (registry[name] || registry[camelize(name)] || registry[capitalize(camelize(name))]);
-}
-const getPublicInstance = (i) => {
-  if (!i)
-    return null;
-  if (isStatefulComponent(i))
-    return getExposeProxy(i) || i.proxy;
-  return getPublicInstance(i.parent);
-};
-const publicPropertiesMap = (
-  // Move PURE marker to new line to workaround compiler discarding it
-  // due to type annotation
-  /* @__PURE__ */ extend(/* @__PURE__ */ Object.create(null), {
-    $: (i) => i,
-    // fixed by xxxxxx vue-i18n 在 dev 模式,访问了 $el,故模拟一个假的
-    // $el: i => i.vnode.el,
-    $el: (i) => i.__$el || (i.__$el = {}),
-    $data: (i) => i.data,
-    $props: (i) => shallowReadonly(i.props),
-    $attrs: (i) => shallowReadonly(i.attrs),
-    $slots: (i) => shallowReadonly(i.slots),
-    $refs: (i) => shallowReadonly(i.refs),
-    $parent: (i) => getPublicInstance(i.parent),
-    $root: (i) => getPublicInstance(i.root),
-    $emit: (i) => i.emit,
-    $options: (i) => resolveMergedOptions(i),
-    $forceUpdate: (i) => i.f || (i.f = () => queueJob(i.update)),
-    // $nextTick: i => i.n || (i.n = nextTick.bind(i.proxy!)),// fixed by xxxxxx
-    $watch: (i) => instanceWatch.bind(i)
-  })
-);
-const isReservedPrefix = (key) => key === "_" || key === "$";
-const hasSetupBinding = (state, key) => state !== EMPTY_OBJ && !state.__isScriptSetup && hasOwn$1(state, key);
-const PublicInstanceProxyHandlers = {
-  get({ _: instance }, key) {
-    const { ctx, setupState, data, props, accessCache, type, appContext } = instance;
-    if (key === "__isVue") {
-      return true;
-    }
-    let normalizedProps;
-    if (key[0] !== "$") {
-      const n2 = accessCache[key];
-      if (n2 !== void 0) {
-        switch (n2) {
-          case 1:
-            return setupState[key];
-          case 2:
-            return data[key];
-          case 4:
-            return ctx[key];
-          case 3:
-            return props[key];
-        }
-      } else if (hasSetupBinding(setupState, key)) {
-        accessCache[key] = 1;
-        return setupState[key];
-      } else if (data !== EMPTY_OBJ && hasOwn$1(data, key)) {
-        accessCache[key] = 2;
-        return data[key];
-      } else if (
-        // only cache other properties when instance has declared (thus stable)
-        // props
-        (normalizedProps = instance.propsOptions[0]) && hasOwn$1(normalizedProps, key)
-      ) {
-        accessCache[key] = 3;
-        return props[key];
-      } else if (ctx !== EMPTY_OBJ && hasOwn$1(ctx, key)) {
-        accessCache[key] = 4;
-        return ctx[key];
-      } else if (shouldCacheAccess) {
-        accessCache[key] = 0;
-      }
-    }
-    const publicGetter = publicPropertiesMap[key];
-    let cssModule, globalProperties;
-    if (publicGetter) {
-      if (key === "$attrs") {
-        track(instance, "get", key);
-      }
-      return publicGetter(instance);
-    } else if (
-      // css module (injected by vue-loader)
-      (cssModule = type.__cssModules) && (cssModule = cssModule[key])
-    ) {
-      return cssModule;
-    } else if (ctx !== EMPTY_OBJ && hasOwn$1(ctx, key)) {
-      accessCache[key] = 4;
-      return ctx[key];
-    } else if (
-      // global properties
-      globalProperties = appContext.config.globalProperties, hasOwn$1(globalProperties, key)
-    ) {
-      {
-        return globalProperties[key];
-      }
-    } else if (currentRenderingInstance && (!isString(key) || // #1091 avoid internal isRef/isVNode checks on component instance leading
-    // to infinite warning loop
-    key.indexOf("__v") !== 0)) {
-      if (data !== EMPTY_OBJ && isReservedPrefix(key[0]) && hasOwn$1(data, key)) {
-        warn(`Property ${JSON.stringify(key)} must be accessed via $data because it starts with a reserved character ("$" or "_") and is not proxied on the render context.`);
-      } else if (instance === currentRenderingInstance) {
-        warn(`Property ${JSON.stringify(key)} was accessed during render but is not defined on instance.`);
-      }
-    }
-  },
-  set({ _: instance }, key, value) {
-    const { data, setupState, ctx } = instance;
-    if (hasSetupBinding(setupState, key)) {
-      setupState[key] = value;
-      return true;
-    } else if (setupState.__isScriptSetup && hasOwn$1(setupState, key)) {
-      warn(`Cannot mutate <script setup> binding "${key}" from Options API.`);
-      return false;
-    } else if (data !== EMPTY_OBJ && hasOwn$1(data, key)) {
-      data[key] = value;
-      return true;
-    } else if (hasOwn$1(instance.props, key)) {
-      warn(`Attempting to mutate prop "${key}". Props are readonly.`);
-      return false;
-    }
-    if (key[0] === "$" && key.slice(1) in instance) {
-      warn(`Attempting to mutate public property "${key}". Properties starting with $ are reserved and readonly.`);
-      return false;
-    } else {
-      if (key in instance.appContext.config.globalProperties) {
-        Object.defineProperty(ctx, key, {
-          enumerable: true,
-          configurable: true,
-          value
-        });
-      } else {
-        ctx[key] = value;
-      }
-    }
-    return true;
-  },
-  has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions } }, key) {
-    let normalizedProps;
-    return !!accessCache[key] || data !== EMPTY_OBJ && hasOwn$1(data, key) || hasSetupBinding(setupState, key) || (normalizedProps = propsOptions[0]) && hasOwn$1(normalizedProps, key) || hasOwn$1(ctx, key) || hasOwn$1(publicPropertiesMap, key) || hasOwn$1(appContext.config.globalProperties, key);
-  },
-  defineProperty(target, key, descriptor) {
-    if (descriptor.get != null) {
-      target._.accessCache[key] = 0;
-    } else if (hasOwn$1(descriptor, "value")) {
-      this.set(target, key, descriptor.value, null);
-    }
-    return Reflect.defineProperty(target, key, descriptor);
-  }
-};
-{
-  PublicInstanceProxyHandlers.ownKeys = (target) => {
-    warn(`Avoid app logic that relies on enumerating keys on a component instance. The keys will be empty in production mode to avoid performance overhead.`);
-    return Reflect.ownKeys(target);
-  };
-}
-function createDevRenderContext(instance) {
-  const target = {};
-  Object.defineProperty(target, `_`, {
-    configurable: true,
-    enumerable: false,
-    get: () => instance
-  });
-  Object.keys(publicPropertiesMap).forEach((key) => {
-    Object.defineProperty(target, key, {
-      configurable: true,
-      enumerable: false,
-      get: () => publicPropertiesMap[key](instance),
-      // intercepted by the proxy so no need for implementation,
-      // but needed to prevent set errors
-      set: NOOP
-    });
-  });
-  return target;
-}
-function exposePropsOnRenderContext(instance) {
-  const { ctx, propsOptions: [propsOptions] } = instance;
-  if (propsOptions) {
-    Object.keys(propsOptions).forEach((key) => {
-      Object.defineProperty(ctx, key, {
-        enumerable: true,
-        configurable: true,
-        get: () => instance.props[key],
-        set: NOOP
-      });
-    });
-  }
-}
-function exposeSetupStateOnRenderContext(instance) {
-  const { ctx, setupState } = instance;
-  Object.keys(toRaw(setupState)).forEach((key) => {
-    if (!setupState.__isScriptSetup) {
-      if (isReservedPrefix(key[0])) {
-        warn(`setup() return property ${JSON.stringify(key)} should not start with "$" or "_" which are reserved prefixes for Vue internals.`);
-        return;
-      }
-      Object.defineProperty(ctx, key, {
-        enumerable: true,
-        configurable: true,
-        get: () => setupState[key],
-        set: NOOP
-      });
-    }
-  });
-}
-function createDuplicateChecker() {
-  const cache = /* @__PURE__ */ Object.create(null);
-  return (type, key) => {
-    if (cache[key]) {
-      warn(`${type} property "${key}" is already defined in ${cache[key]}.`);
-    } else {
-      cache[key] = type;
-    }
-  };
-}
-let shouldCacheAccess = true;
-function applyOptions$1(instance) {
-  const options = resolveMergedOptions(instance);
-  const publicThis = instance.proxy;
-  const ctx = instance.ctx;
-  shouldCacheAccess = false;
-  if (options.beforeCreate) {
-    callHook$1(
-      options.beforeCreate,
-      instance,
-      "bc"
-      /* LifecycleHooks.BEFORE_CREATE */
-    );
-  }
-  const {
-    // state
-    data: dataOptions,
-    computed: computedOptions,
-    methods,
-    watch: watchOptions,
-    provide: provideOptions,
-    inject: injectOptions,
-    // lifecycle
-    created,
-    beforeMount,
-    mounted,
-    beforeUpdate,
-    updated,
-    activated,
-    deactivated,
-    beforeDestroy,
-    beforeUnmount,
-    destroyed,
-    unmounted,
-    render,
-    renderTracked,
-    renderTriggered,
-    errorCaptured,
-    serverPrefetch,
-    // public API
-    expose,
-    inheritAttrs,
-    // assets
-    components: components2,
-    directives,
-    filters
-  } = options;
-  const checkDuplicateProperties = createDuplicateChecker();
-  {
-    const [propsOptions] = instance.propsOptions;
-    if (propsOptions) {
-      for (const key in propsOptions) {
-        checkDuplicateProperties("Props", key);
-      }
-    }
-  }
-  if (methods) {
-    for (const key in methods) {
-      const methodHandler = methods[key];
-      if (isFunction(methodHandler)) {
-        {
-          Object.defineProperty(ctx, key, {
-            value: methodHandler.bind(publicThis),
-            configurable: true,
-            enumerable: true,
-            writable: true
-          });
-        }
-        {
-          checkDuplicateProperties("Methods", key);
-        }
-      } else {
-        warn(`Method "${key}" has type "${typeof methodHandler}" in the component definition. Did you reference the function correctly?`);
-      }
-    }
-  }
-  if (dataOptions) {
-    if (!isFunction(dataOptions)) {
-      warn(`The data option must be a function. Plain object usage is no longer supported.`);
-    }
-    const data = dataOptions.call(publicThis, publicThis);
-    if (isPromise(data)) {
-      warn(`data() returned a Promise - note data() cannot be async; If you intend to perform data fetching before component renders, use async setup() + <Suspense>.`);
-    }
-    if (!isObject$1(data)) {
-      warn(`data() should return an object.`);
-    } else {
-      instance.data = reactive(data);
-      {
-        for (const key in data) {
-          checkDuplicateProperties("Data", key);
-          if (!isReservedPrefix(key[0])) {
-            Object.defineProperty(ctx, key, {
-              configurable: true,
-              enumerable: true,
-              get: () => data[key],
-              set: NOOP
-            });
-          }
-        }
-      }
-    }
-  }
-  shouldCacheAccess = true;
-  if (computedOptions) {
-    for (const key in computedOptions) {
-      const opt = computedOptions[key];
-      const get2 = isFunction(opt) ? opt.bind(publicThis, publicThis) : isFunction(opt.get) ? opt.get.bind(publicThis, publicThis) : NOOP;
-      if (get2 === NOOP) {
-        warn(`Computed property "${key}" has no getter.`);
-      }
-      const set2 = !isFunction(opt) && isFunction(opt.set) ? opt.set.bind(publicThis) : () => {
-        warn(`Write operation failed: computed property "${key}" is readonly.`);
-      };
-      const c = computed({
-        get: get2,
-        set: set2
-      });
-      Object.defineProperty(ctx, key, {
-        enumerable: true,
-        configurable: true,
-        get: () => c.value,
-        set: (v) => c.value = v
-      });
-      {
-        checkDuplicateProperties("Computed", key);
-      }
-    }
-  }
-  if (watchOptions) {
-    for (const key in watchOptions) {
-      createWatcher(watchOptions[key], ctx, publicThis, key);
-    }
-  }
-  {
-    ctx.$callCreatedHook = function(name) {
-      if (created) {
-        return callHook$1(
-          created,
-          instance,
-          "c"
-          /* LifecycleHooks.CREATED */
-        );
-      }
-    };
-  }
-  function registerLifecycleHook(register, hook) {
-    if (isArray(hook)) {
-      hook.forEach((_hook) => register(_hook.bind(publicThis)));
-    } else if (hook) {
-      register(hook.bind(publicThis));
-    }
-  }
-  registerLifecycleHook(onBeforeMount, beforeMount);
-  registerLifecycleHook(onMounted, mounted);
-  registerLifecycleHook(onBeforeUpdate, beforeUpdate);
-  registerLifecycleHook(onUpdated, updated);
-  registerLifecycleHook(onActivated, activated);
-  registerLifecycleHook(onDeactivated, deactivated);
-  registerLifecycleHook(onErrorCaptured, errorCaptured);
-  registerLifecycleHook(onRenderTracked, renderTracked);
-  registerLifecycleHook(onRenderTriggered, renderTriggered);
-  registerLifecycleHook(onBeforeUnmount, beforeUnmount);
-  registerLifecycleHook(onUnmounted, unmounted);
-  registerLifecycleHook(onServerPrefetch, serverPrefetch);
-  if (isArray(expose)) {
-    if (expose.length) {
-      const exposed = instance.exposed || (instance.exposed = {});
-      expose.forEach((key) => {
-        Object.defineProperty(exposed, key, {
-          get: () => publicThis[key],
-          set: (val) => publicThis[key] = val
-        });
-      });
-    } else if (!instance.exposed) {
-      instance.exposed = {};
-    }
-  }
-  if (render && instance.render === NOOP) {
-    instance.render = render;
-  }
-  if (inheritAttrs != null) {
-    instance.inheritAttrs = inheritAttrs;
-  }
-  if (components2)
-    instance.components = components2;
-  if (directives)
-    instance.directives = directives;
-  if (instance.ctx.$onApplyOptions) {
-    instance.ctx.$onApplyOptions(options, instance, publicThis);
-  }
-}
-function callHook$1(hook, instance, type) {
-  callWithAsyncErrorHandling(isArray(hook) ? hook.map((h) => h.bind(instance.proxy)) : hook.bind(instance.proxy), instance, type);
-}
-function createWatcher(raw, ctx, publicThis, key) {
-  const getter = key.includes(".") ? createPathGetter(publicThis, key) : () => publicThis[key];
-  if (isString(raw)) {
-    const handler = ctx[raw];
-    if (isFunction(handler)) {
-      watch(getter, handler);
-    } else {
-      warn(`Invalid watch handler specified by key "${raw}"`, handler);
-    }
-  } else if (isFunction(raw)) {
-    watch(getter, raw.bind(publicThis));
-  } else if (isObject$1(raw)) {
-    if (isArray(raw)) {
-      raw.forEach((r) => createWatcher(r, ctx, publicThis, key));
-    } else {
-      const handler = isFunction(raw.handler) ? raw.handler.bind(publicThis) : ctx[raw.handler];
-      if (isFunction(handler)) {
-        watch(getter, handler, raw);
-      } else {
-        warn(`Invalid watch handler specified by key "${raw.handler}"`, handler);
-      }
-    }
-  } else {
-    warn(`Invalid watch option: "${key}"`, raw);
-  }
-}
-function resolveMergedOptions(instance) {
-  const base = instance.type;
-  const { mixins, extends: extendsOptions } = base;
-  const { mixins: globalMixins, optionsCache: cache, config: { optionMergeStrategies } } = instance.appContext;
-  const cached = cache.get(base);
-  let resolved;
-  if (cached) {
-    resolved = cached;
-  } else if (!globalMixins.length && !mixins && !extendsOptions) {
-    {
-      resolved = base;
-    }
-  } else {
-    resolved = {};
-    if (globalMixins.length) {
-      globalMixins.forEach((m) => mergeOptions(resolved, m, optionMergeStrategies, true));
-    }
-    mergeOptions(resolved, base, optionMergeStrategies);
-  }
-  if (isObject$1(base)) {
-    cache.set(base, resolved);
-  }
-  return resolved;
-}
-function mergeOptions(to, from, strats, asMixin = false) {
-  const { mixins, extends: extendsOptions } = from;
-  if (extendsOptions) {
-    mergeOptions(to, extendsOptions, strats, true);
-  }
-  if (mixins) {
-    mixins.forEach((m) => mergeOptions(to, m, strats, true));
-  }
-  for (const key in from) {
-    if (asMixin && key === "expose") {
-      warn(`"expose" option is ignored when declared in mixins or extends. It should only be declared in the base component itself.`);
-    } else {
-      const strat = internalOptionMergeStrats[key] || strats && strats[key];
-      to[key] = strat ? strat(to[key], from[key]) : from[key];
-    }
-  }
-  return to;
-}
-const internalOptionMergeStrats = {
-  data: mergeDataFn,
-  props: mergeObjectOptions,
-  emits: mergeObjectOptions,
-  // objects
-  methods: mergeObjectOptions,
-  computed: mergeObjectOptions,
-  // lifecycle
-  beforeCreate: mergeAsArray$1,
-  created: mergeAsArray$1,
-  beforeMount: mergeAsArray$1,
-  mounted: mergeAsArray$1,
-  beforeUpdate: mergeAsArray$1,
-  updated: mergeAsArray$1,
-  beforeDestroy: mergeAsArray$1,
-  beforeUnmount: mergeAsArray$1,
-  destroyed: mergeAsArray$1,
-  unmounted: mergeAsArray$1,
-  activated: mergeAsArray$1,
-  deactivated: mergeAsArray$1,
-  errorCaptured: mergeAsArray$1,
-  serverPrefetch: mergeAsArray$1,
-  // assets
-  components: mergeObjectOptions,
-  directives: mergeObjectOptions,
-  // watch
-  watch: mergeWatchOptions,
-  // provide / inject
-  provide: mergeDataFn,
-  inject: mergeInject
-};
-function mergeDataFn(to, from) {
-  if (!from) {
-    return to;
-  }
-  if (!to) {
-    return from;
-  }
-  return function mergedDataFn() {
-    return extend(isFunction(to) ? to.call(this, this) : to, isFunction(from) ? from.call(this, this) : from);
-  };
-}
-function mergeInject(to, from) {
-  return mergeObjectOptions(normalizeInject(to), normalizeInject(from));
-}
-function normalizeInject(raw) {
-  if (isArray(raw)) {
-    const res = {};
-    for (let i = 0; i < raw.length; i++) {
-      res[raw[i]] = raw[i];
-    }
-    return res;
-  }
-  return raw;
-}
-function mergeAsArray$1(to, from) {
-  return to ? [...new Set([].concat(to, from))] : from;
-}
-function mergeObjectOptions(to, from) {
-  return to ? extend(extend(/* @__PURE__ */ Object.create(null), to), from) : from;
-}
-function mergeWatchOptions(to, from) {
-  if (!to)
-    return from;
-  if (!from)
-    return to;
-  const merged = extend(/* @__PURE__ */ Object.create(null), to);
-  for (const key in from) {
-    merged[key] = mergeAsArray$1(to[key], from[key]);
-  }
-  return merged;
-}
-function initProps$1(instance, rawProps, isStateful, isSSR = false) {
-  const props = {};
-  const attrs = {};
-  instance.propsDefaults = /* @__PURE__ */ Object.create(null);
-  setFullProps(instance, rawProps, props, attrs);
-  for (const key in instance.propsOptions[0]) {
-    if (!(key in props)) {
-      props[key] = void 0;
-    }
-  }
-  {
-    validateProps(rawProps || {}, props, instance);
-  }
-  if (isStateful) {
-    instance.props = isSSR ? props : shallowReactive(props);
-  } else {
-    if (!instance.type.props) {
-      instance.props = attrs;
-    } else {
-      instance.props = props;
-    }
-  }
-  instance.attrs = attrs;
-}
-function isInHmrContext(instance) {
-  while (instance) {
-    if (instance.type.__hmrId)
-      return true;
-    instance = instance.parent;
-  }
-}
-function updateProps(instance, rawProps, rawPrevProps, optimized) {
-  const { props, attrs, vnode: { patchFlag } } = instance;
-  const rawCurrentProps = toRaw(props);
-  const [options] = instance.propsOptions;
-  let hasAttrsChanged = false;
-  if (
-    // always force full diff in dev
-    // - #1942 if hmr is enabled with sfc component
-    // - vite#872 non-sfc component used by sfc component
-    !isInHmrContext(instance) && (optimized || patchFlag > 0) && !(patchFlag & 16)
-  ) {
-    if (patchFlag & 8) {
-      const propsToUpdate = instance.vnode.dynamicProps;
-      for (let i = 0; i < propsToUpdate.length; i++) {
-        let key = propsToUpdate[i];
-        if (isEmitListener(instance.emitsOptions, key)) {
-          continue;
-        }
-        const value = rawProps[key];
-        if (options) {
-          if (hasOwn$1(attrs, key)) {
-            if (value !== attrs[key]) {
-              attrs[key] = value;
-              hasAttrsChanged = true;
-            }
-          } else {
-            const camelizedKey = camelize(key);
-            props[camelizedKey] = resolvePropValue(
-              options,
-              rawCurrentProps,
-              camelizedKey,
-              value,
-              instance,
-              false
-              /* isAbsent */
-            );
-          }
-        } else {
-          if (value !== attrs[key]) {
-            attrs[key] = value;
-            hasAttrsChanged = true;
-          }
-        }
-      }
-    }
-  } else {
-    if (setFullProps(instance, rawProps, props, attrs)) {
-      hasAttrsChanged = true;
-    }
-    let kebabKey;
-    for (const key in rawCurrentProps) {
-      if (!rawProps || // for camelCase
-      !hasOwn$1(rawProps, key) && // it's possible the original props was passed in as kebab-case
-      // and converted to camelCase (#955)
-      ((kebabKey = hyphenate(key)) === key || !hasOwn$1(rawProps, kebabKey))) {
-        if (options) {
-          if (rawPrevProps && // for camelCase
-          (rawPrevProps[key] !== void 0 || // for kebab-case
-          rawPrevProps[kebabKey] !== void 0)) {
-            props[key] = resolvePropValue(
-              options,
-              rawCurrentProps,
-              key,
-              void 0,
-              instance,
-              true
-              /* isAbsent */
-            );
-          }
-        } else {
-          delete props[key];
-        }
-      }
-    }
-    if (attrs !== rawCurrentProps) {
-      for (const key in attrs) {
-        if (!rawProps || !hasOwn$1(rawProps, key) && true) {
-          delete attrs[key];
-          hasAttrsChanged = true;
-        }
-      }
-    }
-  }
-  if (hasAttrsChanged) {
-    trigger(instance, "set", "$attrs");
-  }
-  {
-    validateProps(rawProps || {}, props, instance);
-  }
-}
-function setFullProps(instance, rawProps, props, attrs) {
-  const [options, needCastKeys] = instance.propsOptions;
-  let hasAttrsChanged = false;
-  let rawCastValues;
-  if (rawProps) {
-    for (let key in rawProps) {
-      if (isReservedProp(key)) {
-        continue;
-      }
-      const value = rawProps[key];
-      let camelKey;
-      if (options && hasOwn$1(options, camelKey = camelize(key))) {
-        if (!needCastKeys || !needCastKeys.includes(camelKey)) {
-          props[camelKey] = value;
-        } else {
-          (rawCastValues || (rawCastValues = {}))[camelKey] = value;
-        }
-      } else if (!isEmitListener(instance.emitsOptions, key)) {
-        if (!(key in attrs) || value !== attrs[key]) {
-          attrs[key] = value;
-          hasAttrsChanged = true;
-        }
-      }
-    }
-  }
-  if (needCastKeys) {
-    const rawCurrentProps = toRaw(props);
-    const castValues = rawCastValues || EMPTY_OBJ;
-    for (let i = 0; i < needCastKeys.length; i++) {
-      const key = needCastKeys[i];
-      props[key] = resolvePropValue(options, rawCurrentProps, key, castValues[key], instance, !hasOwn$1(castValues, key));
-    }
-  }
-  return hasAttrsChanged;
-}
-function resolvePropValue(options, props, key, value, instance, isAbsent) {
-  const opt = options[key];
-  if (opt != null) {
-    const hasDefault = hasOwn$1(opt, "default");
-    if (hasDefault && value === void 0) {
-      const defaultValue = opt.default;
-      if (opt.type !== Function && isFunction(defaultValue)) {
-        const { propsDefaults } = instance;
-        if (key in propsDefaults) {
-          value = propsDefaults[key];
-        } else {
-          setCurrentInstance(instance);
-          value = propsDefaults[key] = defaultValue.call(null, props);
-          unsetCurrentInstance();
-        }
-      } else {
-        value = defaultValue;
-      }
-    }
-    if (opt[
-      0
-      /* BooleanFlags.shouldCast */
-    ]) {
-      if (isAbsent && !hasDefault) {
-        value = false;
-      } else if (opt[
-        1
-        /* BooleanFlags.shouldCastTrue */
-      ] && (value === "" || value === hyphenate(key))) {
-        value = true;
-      }
-    }
-  }
-  return value;
-}
-function normalizePropsOptions(comp, appContext, asMixin = false) {
-  const cache = appContext.propsCache;
-  const cached = cache.get(comp);
-  if (cached) {
-    return cached;
-  }
-  const raw = comp.props;
-  const normalized = {};
-  const needCastKeys = [];
-  let hasExtends = false;
-  if (!isFunction(comp)) {
-    const extendProps = (raw2) => {
-      hasExtends = true;
-      const [props, keys] = normalizePropsOptions(raw2, appContext, true);
-      extend(normalized, props);
-      if (keys)
-        needCastKeys.push(...keys);
-    };
-    if (!asMixin && appContext.mixins.length) {
-      appContext.mixins.forEach(extendProps);
-    }
-    if (comp.extends) {
-      extendProps(comp.extends);
-    }
-    if (comp.mixins) {
-      comp.mixins.forEach(extendProps);
-    }
-  }
-  if (!raw && !hasExtends) {
-    if (isObject$1(comp)) {
-      cache.set(comp, EMPTY_ARR);
-    }
-    return EMPTY_ARR;
-  }
-  if (isArray(raw)) {
-    for (let i = 0; i < raw.length; i++) {
-      if (!isString(raw[i])) {
-        warn(`props must be strings when using array syntax.`, raw[i]);
-      }
-      const normalizedKey = camelize(raw[i]);
-      if (validatePropName(normalizedKey)) {
-        normalized[normalizedKey] = EMPTY_OBJ;
-      }
-    }
-  } else if (raw) {
-    if (!isObject$1(raw)) {
-      warn(`invalid props options`, raw);
-    }
-    for (const key in raw) {
-      const normalizedKey = camelize(key);
-      if (validatePropName(normalizedKey)) {
-        const opt = raw[key];
-        const prop = normalized[normalizedKey] = isArray(opt) || isFunction(opt) ? { type: opt } : Object.assign({}, opt);
-        if (prop) {
-          const booleanIndex = getTypeIndex(Boolean, prop.type);
-          const stringIndex = getTypeIndex(String, prop.type);
-          prop[
-            0
-            /* BooleanFlags.shouldCast */
-          ] = booleanIndex > -1;
-          prop[
-            1
-            /* BooleanFlags.shouldCastTrue */
-          ] = stringIndex < 0 || booleanIndex < stringIndex;
-          if (booleanIndex > -1 || hasOwn$1(prop, "default")) {
-            needCastKeys.push(normalizedKey);
-          }
-        }
-      }
-    }
-  }
-  const res = [normalized, needCastKeys];
-  if (isObject$1(comp)) {
-    cache.set(comp, res);
-  }
-  return res;
-}
-function validatePropName(key) {
-  if (key[0] !== "$") {
-    return true;
-  } else {
-    warn(`Invalid prop name: "${key}" is a reserved property.`);
-  }
-  return false;
-}
-function getType(ctor) {
-  const match = ctor && ctor.toString().match(/^\s*(function|class) (\w+)/);
-  return match ? match[2] : ctor === null ? "null" : "";
-}
-function isSameType(a, b) {
-  return getType(a) === getType(b);
-}
-function getTypeIndex(type, expectedTypes) {
-  if (isArray(expectedTypes)) {
-    return expectedTypes.findIndex((t2) => isSameType(t2, type));
-  } else if (isFunction(expectedTypes)) {
-    return isSameType(expectedTypes, type) ? 0 : -1;
-  }
-  return -1;
-}
-function validateProps(rawProps, props, instance) {
-  const resolvedValues = toRaw(props);
-  const options = instance.propsOptions[0];
-  for (const key in options) {
-    let opt = options[key];
-    if (opt == null)
-      continue;
-    validateProp(key, resolvedValues[key], opt, !hasOwn$1(rawProps, key) && !hasOwn$1(rawProps, hyphenate(key)));
-  }
-}
-function validateProp(name, value, prop, isAbsent) {
-  const { type, required, validator } = prop;
-  if (required && isAbsent) {
-    warn('Missing required prop: "' + name + '"');
-    return;
-  }
-  if (value == null && !prop.required) {
-    return;
-  }
-  if (type != null && type !== true) {
-    let isValid = false;
-    const types = isArray(type) ? type : [type];
-    const expectedTypes = [];
-    for (let i = 0; i < types.length && !isValid; i++) {
-      const { valid, expectedType } = assertType(value, types[i]);
-      expectedTypes.push(expectedType || "");
-      isValid = valid;
-    }
-    if (!isValid) {
-      warn(getInvalidTypeMessage(name, value, expectedTypes));
-      return;
-    }
-  }
-  if (validator && !validator(value)) {
-    warn('Invalid prop: custom validator check failed for prop "' + name + '".');
-  }
-}
-const isSimpleType = /* @__PURE__ */ makeMap("String,Number,Boolean,Function,Symbol,BigInt");
-function assertType(value, type) {
-  let valid;
-  const expectedType = getType(type);
-  if (isSimpleType(expectedType)) {
-    const t2 = typeof value;
-    valid = t2 === expectedType.toLowerCase();
-    if (!valid && t2 === "object") {
-      valid = value instanceof type;
-    }
-  } else if (expectedType === "Object") {
-    valid = isObject$1(value);
-  } else if (expectedType === "Array") {
-    valid = isArray(value);
-  } else if (expectedType === "null") {
-    valid = value === null;
-  } else {
-    valid = value instanceof type;
-  }
-  return {
-    valid,
-    expectedType
-  };
-}
-function getInvalidTypeMessage(name, value, expectedTypes) {
-  let message = `Invalid prop: type check failed for prop "${name}". Expected ${expectedTypes.map(capitalize).join(" | ")}`;
-  const expectedType = expectedTypes[0];
-  const receivedType = toRawType(value);
-  const expectedValue = styleValue(value, expectedType);
-  const receivedValue = styleValue(value, receivedType);
-  if (expectedTypes.length === 1 && isExplicable(expectedType) && !isBoolean(expectedType, receivedType)) {
-    message += ` with value ${expectedValue}`;
-  }
-  message += `, got ${receivedType} `;
-  if (isExplicable(receivedType)) {
-    message += `with value ${receivedValue}.`;
-  }
-  return message;
-}
-function styleValue(value, type) {
-  if (type === "String") {
-    return `"${value}"`;
-  } else if (type === "Number") {
-    return `${Number(value)}`;
-  } else {
-    return `${value}`;
-  }
-}
-function isExplicable(type) {
-  const explicitTypes = ["string", "number", "boolean"];
-  return explicitTypes.some((elem) => type.toLowerCase() === elem);
-}
-function isBoolean(...args) {
-  return args.some((elem) => elem.toLowerCase() === "boolean");
-}
-function createAppContext() {
-  return {
-    app: null,
-    config: {
-      isNativeTag: NO,
-      performance: false,
-      globalProperties: {},
-      optionMergeStrategies: {},
-      errorHandler: void 0,
-      warnHandler: void 0,
-      compilerOptions: {}
-    },
-    mixins: [],
-    components: {},
-    directives: {},
-    provides: /* @__PURE__ */ Object.create(null),
-    optionsCache: /* @__PURE__ */ new WeakMap(),
-    propsCache: /* @__PURE__ */ new WeakMap(),
-    emitsCache: /* @__PURE__ */ new WeakMap()
-  };
-}
-let uid$1 = 0;
-function createAppAPI(render, hydrate) {
-  return function createApp2(rootComponent, rootProps = null) {
-    if (!isFunction(rootComponent)) {
-      rootComponent = Object.assign({}, rootComponent);
-    }
-    if (rootProps != null && !isObject$1(rootProps)) {
-      warn(`root props passed to app.mount() must be an object.`);
-      rootProps = null;
-    }
-    const context = createAppContext();
-    const installedPlugins = /* @__PURE__ */ new Set();
-    const app = context.app = {
-      _uid: uid$1++,
-      _component: rootComponent,
-      _props: rootProps,
-      _container: null,
-      _context: context,
-      _instance: null,
-      version,
-      get config() {
-        return context.config;
-      },
-      set config(v) {
-        {
-          warn(`app.config cannot be replaced. Modify individual options instead.`);
-        }
-      },
-      use(plugin2, ...options) {
-        if (installedPlugins.has(plugin2)) {
-          warn(`Plugin has already been applied to target app.`);
-        } else if (plugin2 && isFunction(plugin2.install)) {
-          installedPlugins.add(plugin2);
-          plugin2.install(app, ...options);
-        } else if (isFunction(plugin2)) {
-          installedPlugins.add(plugin2);
-          plugin2(app, ...options);
-        } else {
-          warn(`A plugin must either be a function or an object with an "install" function.`);
-        }
-        return app;
-      },
-      mixin(mixin) {
-        {
-          if (!context.mixins.includes(mixin)) {
-            context.mixins.push(mixin);
-          } else {
-            warn("Mixin has already been applied to target app" + (mixin.name ? `: ${mixin.name}` : ""));
-          }
-        }
-        return app;
-      },
-      component(name, component) {
-        {
-          validateComponentName(name, context.config);
-        }
-        if (!component) {
-          return context.components[name];
-        }
-        if (context.components[name]) {
-          warn(`Component "${name}" has already been registered in target app.`);
-        }
-        context.components[name] = component;
-        return app;
-      },
-      directive(name, directive) {
-        {
-          validateDirectiveName(name);
-        }
-        if (!directive) {
-          return context.directives[name];
-        }
-        if (context.directives[name]) {
-          warn(`Directive "${name}" has already been registered in target app.`);
-        }
-        context.directives[name] = directive;
-        return app;
-      },
-      // fixed by xxxxxx
-      mount() {
-      },
-      // fixed by xxxxxx
-      unmount() {
-      },
-      provide(key, value) {
-        if (key in context.provides) {
-          warn(`App already provides property with key "${String(key)}". It will be overwritten with the new value.`);
-        }
-        context.provides[key] = value;
-        return app;
-      }
-    };
-    return app;
-  };
-}
-let supported;
-let perf;
-function startMeasure(instance, type) {
-  if (instance.appContext.config.performance && isSupported()) {
-    perf.mark(`vue-${type}-${instance.uid}`);
-  }
-  {
-    devtoolsPerfStart(instance, type, isSupported() ? perf.now() : Date.now());
-  }
-}
-function endMeasure(instance, type) {
-  if (instance.appContext.config.performance && isSupported()) {
-    const startTag = `vue-${type}-${instance.uid}`;
-    const endTag = startTag + `:end`;
-    perf.mark(endTag);
-    perf.measure(`<${formatComponentName(instance, instance.type)}> ${type}`, startTag, endTag);
-    perf.clearMarks(startTag);
-    perf.clearMarks(endTag);
-  }
-  {
-    devtoolsPerfEnd(instance, type, isSupported() ? perf.now() : Date.now());
-  }
-}
-function isSupported() {
-  if (supported !== void 0) {
-    return supported;
-  }
-  if (typeof window !== "undefined" && window.performance) {
-    supported = true;
-    perf = window.performance;
-  } else {
-    supported = false;
-  }
-  return supported;
-}
-const queuePostRenderEffect$1 = queuePostFlushCb;
-const Fragment = Symbol("Fragment");
-const Text = Symbol("Text");
-const Comment = Symbol("Comment");
-const Static = Symbol("Static");
-function isVNode(value) {
-  return value ? value.__v_isVNode === true : false;
-}
-const InternalObjectKey = `__vInternal`;
-function guardReactiveProps(props) {
-  if (!props)
-    return null;
-  return isProxy(props) || InternalObjectKey in props ? extend({}, props) : props;
-}
-const emptyAppContext = createAppContext();
-let uid = 0;
-function createComponentInstance(vnode, parent, suspense) {
-  const type = vnode.type;
-  const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
-  const instance = {
-    uid: uid++,
-    vnode,
-    type,
-    parent,
-    appContext,
-    root: null,
-    next: null,
-    subTree: null,
-    effect: null,
-    update: null,
-    scope: new EffectScope(
-      true
-      /* detached */
-    ),
-    render: null,
-    proxy: null,
-    exposed: null,
-    exposeProxy: null,
-    withProxy: null,
-    provides: parent ? parent.provides : Object.create(appContext.provides),
-    accessCache: null,
-    renderCache: [],
-    // local resolved assets
-    components: null,
-    directives: null,
-    // resolved props and emits options
-    propsOptions: normalizePropsOptions(type, appContext),
-    emitsOptions: normalizeEmitsOptions(type, appContext),
-    // emit
-    emit: null,
-    emitted: null,
-    // props default value
-    propsDefaults: EMPTY_OBJ,
-    // inheritAttrs
-    inheritAttrs: type.inheritAttrs,
-    // state
-    ctx: EMPTY_OBJ,
-    data: EMPTY_OBJ,
-    props: EMPTY_OBJ,
-    attrs: EMPTY_OBJ,
-    slots: EMPTY_OBJ,
-    refs: EMPTY_OBJ,
-    setupState: EMPTY_OBJ,
-    setupContext: null,
-    // suspense related
-    suspense,
-    suspenseId: suspense ? suspense.pendingId : 0,
-    asyncDep: null,
-    asyncResolved: false,
-    // lifecycle hooks
-    // not using enums here because it results in computed properties
-    isMounted: false,
-    isUnmounted: false,
-    isDeactivated: false,
-    bc: null,
-    c: null,
-    bm: null,
-    m: null,
-    bu: null,
-    u: null,
-    um: null,
-    bum: null,
-    da: null,
-    a: null,
-    rtg: null,
-    rtc: null,
-    ec: null,
-    sp: null
-  };
-  {
-    instance.ctx = createDevRenderContext(instance);
-  }
-  instance.root = parent ? parent.root : instance;
-  instance.emit = emit.bind(null, instance);
-  if (vnode.ce) {
-    vnode.ce(instance);
-  }
-  return instance;
-}
-let currentInstance = null;
-const getCurrentInstance = () => currentInstance || currentRenderingInstance;
-const setCurrentInstance = (instance) => {
-  currentInstance = instance;
-  instance.scope.on();
-};
-const unsetCurrentInstance = () => {
-  currentInstance && currentInstance.scope.off();
-  currentInstance = null;
-};
-const isBuiltInTag = /* @__PURE__ */ makeMap("slot,component");
-function validateComponentName(name, config) {
-  const appIsNativeTag = config.isNativeTag || NO;
-  if (isBuiltInTag(name) || appIsNativeTag(name)) {
-    warn("Do not use built-in or reserved HTML elements as component id: " + name);
-  }
-}
-function isStatefulComponent(instance) {
-  return instance.vnode.shapeFlag & 4;
-}
-let isInSSRComponentSetup = false;
-function setupComponent(instance, isSSR = false) {
-  isInSSRComponentSetup = isSSR;
-  const {
-    props
-    /*, children*/
-  } = instance.vnode;
-  const isStateful = isStatefulComponent(instance);
-  initProps$1(instance, props, isStateful, isSSR);
-  const setupResult = isStateful ? setupStatefulComponent(instance, isSSR) : void 0;
-  isInSSRComponentSetup = false;
-  return setupResult;
-}
-function setupStatefulComponent(instance, isSSR) {
-  const Component2 = instance.type;
-  {
-    if (Component2.name) {
-      validateComponentName(Component2.name, instance.appContext.config);
-    }
-    if (Component2.components) {
-      const names = Object.keys(Component2.components);
-      for (let i = 0; i < names.length; i++) {
-        validateComponentName(names[i], instance.appContext.config);
-      }
-    }
-    if (Component2.directives) {
-      const names = Object.keys(Component2.directives);
-      for (let i = 0; i < names.length; i++) {
-        validateDirectiveName(names[i]);
-      }
-    }
-    if (Component2.compilerOptions && isRuntimeOnly()) {
-      warn(`"compilerOptions" is only supported when using a build of Vue that includes the runtime compiler. Since you are using a runtime-only build, the options should be passed via your build tool config instead.`);
-    }
-  }
-  instance.accessCache = /* @__PURE__ */ Object.create(null);
-  instance.proxy = markRaw(new Proxy(instance.ctx, PublicInstanceProxyHandlers));
-  {
-    exposePropsOnRenderContext(instance);
-  }
-  const { setup } = Component2;
-  if (setup) {
-    const setupContext = instance.setupContext = setup.length > 1 ? createSetupContext(instance) : null;
-    setCurrentInstance(instance);
-    pauseTracking();
-    const setupResult = callWithErrorHandling(setup, instance, 0, [shallowReadonly(instance.props), setupContext]);
-    resetTracking();
-    unsetCurrentInstance();
-    if (isPromise(setupResult)) {
-      setupResult.then(unsetCurrentInstance, unsetCurrentInstance);
-      {
-        warn(`setup() returned a Promise, but the version of Vue you are using does not support it yet.`);
-      }
-    } else {
-      handleSetupResult(instance, setupResult, isSSR);
-    }
-  } else {
-    finishComponentSetup(instance, isSSR);
-  }
-}
-function handleSetupResult(instance, setupResult, isSSR) {
-  if (isFunction(setupResult)) {
-    {
-      instance.render = setupResult;
-    }
-  } else if (isObject$1(setupResult)) {
-    if (isVNode(setupResult)) {
-      warn(`setup() should not return VNodes directly - return a render function instead.`);
-    }
-    {
-      instance.devtoolsRawSetupState = setupResult;
-    }
-    instance.setupState = proxyRefs(setupResult);
-    {
-      exposeSetupStateOnRenderContext(instance);
-    }
-  } else if (setupResult !== void 0) {
-    warn(`setup() should return an object. Received: ${setupResult === null ? "null" : typeof setupResult}`);
-  }
-  finishComponentSetup(instance, isSSR);
-}
-let compile;
-const isRuntimeOnly = () => !compile;
-function finishComponentSetup(instance, isSSR, skipOptions) {
-  const Component2 = instance.type;
-  if (!instance.render) {
-    instance.render = Component2.render || NOOP;
-  }
-  {
-    setCurrentInstance(instance);
-    pauseTracking();
-    applyOptions$1(instance);
-    resetTracking();
-    unsetCurrentInstance();
-  }
-  if (!Component2.render && instance.render === NOOP && !isSSR) {
-    if (Component2.template) {
-      warn(
-        `Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".`
-        /* should not happen */
-      );
-    } else {
-      warn(`Component is missing template or render function.`);
-    }
-  }
-}
-function createAttrsProxy(instance) {
-  return new Proxy(
-    instance.attrs,
-    {
-      get(target, key) {
-        track(instance, "get", "$attrs");
-        return target[key];
-      },
-      set() {
-        warn(`setupContext.attrs is readonly.`);
-        return false;
-      },
-      deleteProperty() {
-        warn(`setupContext.attrs is readonly.`);
-        return false;
-      }
-    }
-  );
-}
-function createSetupContext(instance) {
-  const expose = (exposed) => {
-    {
-      if (instance.exposed) {
-        warn(`expose() should be called only once per setup().`);
-      }
-      if (exposed != null) {
-        let exposedType = typeof exposed;
-        if (exposedType === "object") {
-          if (isArray(exposed)) {
-            exposedType = "array";
-          } else if (isRef(exposed)) {
-            exposedType = "ref";
-          }
-        }
-        if (exposedType !== "object") {
-          warn(`expose() should be passed a plain object, received ${exposedType}.`);
-        }
-      }
-    }
-    instance.exposed = exposed || {};
-  };
-  let attrs;
-  {
-    return Object.freeze({
-      get attrs() {
-        return attrs || (attrs = createAttrsProxy(instance));
-      },
-      get slots() {
-        return shallowReadonly(instance.slots);
-      },
-      get emit() {
-        return (event, ...args) => instance.emit(event, ...args);
-      },
-      expose
-    });
-  }
-}
-function getExposeProxy(instance) {
-  if (instance.exposed) {
-    return instance.exposeProxy || (instance.exposeProxy = new Proxy(proxyRefs(markRaw(instance.exposed)), {
-      get(target, key) {
-        if (key in target) {
-          return target[key];
-        }
-        return instance.proxy[key];
-      },
-      has(target, key) {
-        return key in target || key in publicPropertiesMap;
-      }
-    }));
-  }
-}
-const classifyRE = /(?:^|[-_])(\w)/g;
-const classify = (str) => str.replace(classifyRE, (c) => c.toUpperCase()).replace(/[-_]/g, "");
-function getComponentName(Component2, includeInferred = true) {
-  return isFunction(Component2) ? Component2.displayName || Component2.name : Component2.name || includeInferred && Component2.__name;
-}
-function formatComponentName(instance, Component2, isRoot = false) {
-  let name = getComponentName(Component2);
-  if (!name && Component2.__file) {
-    const match = Component2.__file.match(/([^/\\]+)\.\w+$/);
-    if (match) {
-      name = match[1];
-    }
-  }
-  if (!name && instance && instance.parent) {
-    const inferFromRegistry = (registry) => {
-      for (const key in registry) {
-        if (registry[key] === Component2) {
-          return key;
-        }
-      }
-    };
-    name = inferFromRegistry(instance.components || instance.parent.type.components) || inferFromRegistry(instance.appContext.components);
-  }
-  return name ? classify(name) : isRoot ? `App` : `Anonymous`;
-}
-const computed = (getterOrOptions, debugOptions) => {
-  return computed$1(getterOrOptions, debugOptions, isInSSRComponentSetup);
-};
-const version = "3.2.47";
-function unwrapper(target) {
-  return unref(target);
-}
-const ARRAYTYPE = "[object Array]";
-const OBJECTTYPE = "[object Object]";
-function diff(current, pre) {
-  const result = {};
-  syncKeys(current, pre);
-  _diff(current, pre, "", result);
-  return result;
-}
-function syncKeys(current, pre) {
-  current = unwrapper(current);
-  if (current === pre)
-    return;
-  const rootCurrentType = toTypeString(current);
-  const rootPreType = toTypeString(pre);
-  if (rootCurrentType == OBJECTTYPE && rootPreType == OBJECTTYPE) {
-    for (let key in pre) {
-      const currentValue = current[key];
-      if (currentValue === void 0) {
-        current[key] = null;
-      } else {
-        syncKeys(currentValue, pre[key]);
-      }
-    }
-  } else if (rootCurrentType == ARRAYTYPE && rootPreType == ARRAYTYPE) {
-    if (current.length >= pre.length) {
-      pre.forEach((item, index2) => {
-        syncKeys(current[index2], item);
-      });
-    }
-  }
-}
-function _diff(current, pre, path, result) {
-  current = unwrapper(current);
-  if (current === pre)
-    return;
-  const rootCurrentType = toTypeString(current);
-  const rootPreType = toTypeString(pre);
-  if (rootCurrentType == OBJECTTYPE) {
-    if (rootPreType != OBJECTTYPE || Object.keys(current).length < Object.keys(pre).length) {
-      setResult(result, path, current);
-    } else {
-      for (let key in current) {
-        const currentValue = unwrapper(current[key]);
-        const preValue = pre[key];
-        const currentType = toTypeString(currentValue);
-        const preType = toTypeString(preValue);
-        if (currentType != ARRAYTYPE && currentType != OBJECTTYPE) {
-          if (currentValue != preValue) {
-            setResult(result, (path == "" ? "" : path + ".") + key, currentValue);
-          }
-        } else if (currentType == ARRAYTYPE) {
-          if (preType != ARRAYTYPE) {
-            setResult(result, (path == "" ? "" : path + ".") + key, currentValue);
-          } else {
-            if (currentValue.length < preValue.length) {
-              setResult(result, (path == "" ? "" : path + ".") + key, currentValue);
-            } else {
-              currentValue.forEach((item, index2) => {
-                _diff(item, preValue[index2], (path == "" ? "" : path + ".") + key + "[" + index2 + "]", result);
-              });
-            }
-          }
-        } else if (currentType == OBJECTTYPE) {
-          if (preType != OBJECTTYPE || Object.keys(currentValue).length < Object.keys(preValue).length) {
-            setResult(result, (path == "" ? "" : path + ".") + key, currentValue);
-          } else {
-            for (let subKey in currentValue) {
-              _diff(currentValue[subKey], preValue[subKey], (path == "" ? "" : path + ".") + key + "." + subKey, result);
-            }
-          }
-        }
-      }
-    }
-  } else if (rootCurrentType == ARRAYTYPE) {
-    if (rootPreType != ARRAYTYPE) {
-      setResult(result, path, current);
-    } else {
-      if (current.length < pre.length) {
-        setResult(result, path, current);
-      } else {
-        current.forEach((item, index2) => {
-          _diff(item, pre[index2], path + "[" + index2 + "]", result);
-        });
-      }
-    }
-  } else {
-    setResult(result, path, current);
-  }
-}
-function setResult(result, k, v) {
-  result[k] = v;
-}
-function hasComponentEffect(instance) {
-  return queue.includes(instance.update);
-}
-function flushCallbacks(instance) {
-  const ctx = instance.ctx;
-  const callbacks = ctx.__next_tick_callbacks;
-  if (callbacks && callbacks.length) {
-    const copies = callbacks.slice(0);
-    callbacks.length = 0;
-    for (let i = 0; i < copies.length; i++) {
-      copies[i]();
-    }
-  }
-}
-function nextTick(instance, fn) {
-  const ctx = instance.ctx;
-  if (!ctx.__next_tick_pending && !hasComponentEffect(instance)) {
-    return nextTick$1(fn && fn.bind(instance.proxy));
-  }
-  let _resolve;
-  if (!ctx.__next_tick_callbacks) {
-    ctx.__next_tick_callbacks = [];
-  }
-  ctx.__next_tick_callbacks.push(() => {
-    if (fn) {
-      callWithErrorHandling(
-        fn.bind(instance.proxy),
-        instance,
-        14
-        /* ErrorCodes.SCHEDULER */
-      );
-    } else if (_resolve) {
-      _resolve(instance.proxy);
-    }
-  });
-  return new Promise((resolve2) => {
-    _resolve = resolve2;
-  });
-}
-function clone(src, seen) {
-  src = unwrapper(src);
-  const type = typeof src;
-  if (type === "object" && src !== null) {
-    let copy = seen.get(src);
-    if (typeof copy !== "undefined") {
-      return copy;
-    }
-    if (isArray(src)) {
-      const len = src.length;
-      copy = new Array(len);
-      seen.set(src, copy);
-      for (let i = 0; i < len; i++) {
-        copy[i] = clone(src[i], seen);
-      }
-    } else {
-      copy = {};
-      seen.set(src, copy);
-      for (const name in src) {
-        if (hasOwn$1(src, name)) {
-          copy[name] = clone(src[name], seen);
-        }
-      }
-    }
-    return copy;
-  }
-  if (type !== "symbol") {
-    return src;
-  }
-}
-function deepCopy(src) {
-  return clone(src, typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : /* @__PURE__ */ new Map());
-}
-function getMPInstanceData(instance, keys) {
-  const data = instance.data;
-  const ret = /* @__PURE__ */ Object.create(null);
-  keys.forEach((key) => {
-    ret[key] = data[key];
-  });
-  return ret;
-}
-function patch(instance, data, oldData) {
-  if (!data) {
-    return;
-  }
-  data = deepCopy(data);
-  const ctx = instance.ctx;
-  const mpType = ctx.mpType;
-  if (mpType === "page" || mpType === "component") {
-    data.r0 = 1;
-    const mpInstance = ctx.$scope;
-    const keys = Object.keys(data);
-    const diffData = diff(data, oldData || getMPInstanceData(mpInstance, keys));
-    if (Object.keys(diffData).length) {
-      ctx.__next_tick_pending = true;
-      mpInstance.setData(diffData, () => {
-        ctx.__next_tick_pending = false;
-        flushCallbacks(instance);
-      });
-      flushPreFlushCbs();
-    } else {
-      flushCallbacks(instance);
-    }
-  }
-}
-function initAppConfig(appConfig) {
-  appConfig.globalProperties.$nextTick = function $nextTick(fn) {
-    return nextTick(this.$, fn);
-  };
-}
-function onApplyOptions(options, instance, publicThis) {
-  instance.appContext.config.globalProperties.$applyOptions(options, instance, publicThis);
-  const computedOptions = options.computed;
-  if (computedOptions) {
-    const keys = Object.keys(computedOptions);
-    if (keys.length) {
-      const ctx = instance.ctx;
-      if (!ctx.$computedKeys) {
-        ctx.$computedKeys = [];
-      }
-      ctx.$computedKeys.push(...keys);
-    }
-  }
-  delete instance.ctx.$onApplyOptions;
-}
-function setRef$1(instance, isUnmount = false) {
-  const { setupState, $templateRefs, ctx: { $scope, $mpPlatform } } = instance;
-  if ($mpPlatform === "mp-alipay") {
-    return;
-  }
-  if (!$templateRefs || !$scope) {
-    return;
-  }
-  if (isUnmount) {
-    return $templateRefs.forEach((templateRef) => setTemplateRef(templateRef, null, setupState));
-  }
-  const check = $mpPlatform === "mp-baidu" || $mpPlatform === "mp-toutiao";
-  const doSetByRefs = (refs) => {
-    const mpComponents = (
-      // 字节小程序 selectAllComponents 可能返回 null
-      // https://github.com/dcloudio/uni-app/issues/3954
-      ($scope.selectAllComponents(".r") || []).concat($scope.selectAllComponents(".r-i-f") || [])
-    );
-    return refs.filter((templateRef) => {
-      const refValue = findComponentPublicInstance(mpComponents, templateRef.i);
-      if (check && refValue === null) {
-        return true;
-      }
-      setTemplateRef(templateRef, refValue, setupState);
-      return false;
-    });
-  };
-  const doSet = () => {
-    const refs = doSetByRefs($templateRefs);
-    if (refs.length && instance.proxy && instance.proxy.$scope) {
-      instance.proxy.$scope.setData({ r1: 1 }, () => {
-        doSetByRefs(refs);
-      });
-    }
-  };
-  if ($scope._$setRef) {
-    $scope._$setRef(doSet);
-  } else {
-    nextTick(instance, doSet);
-  }
-}
-function toSkip(value) {
-  if (isObject$1(value)) {
-    markRaw(value);
-  }
-  return value;
-}
-function findComponentPublicInstance(mpComponents, id2) {
-  const mpInstance = mpComponents.find((com) => com && (com.properties || com.props).uI === id2);
-  if (mpInstance) {
-    const vm = mpInstance.$vm;
-    if (vm) {
-      return getExposeProxy(vm.$) || vm;
-    }
-    return toSkip(mpInstance);
-  }
-  return null;
-}
-function setTemplateRef({ r, f: f2 }, refValue, setupState) {
-  if (isFunction(r)) {
-    r(refValue, {});
-  } else {
-    const _isString = isString(r);
-    const _isRef = isRef(r);
-    if (_isString || _isRef) {
-      if (f2) {
-        if (!_isRef) {
-          return;
-        }
-        if (!isArray(r.value)) {
-          r.value = [];
-        }
-        const existing = r.value;
-        if (existing.indexOf(refValue) === -1) {
-          existing.push(refValue);
-          if (!refValue) {
-            return;
-          }
-          onBeforeUnmount(() => remove(existing, refValue), refValue.$);
-        }
-      } else if (_isString) {
-        if (hasOwn$1(setupState, r)) {
-          setupState[r] = refValue;
-        }
-      } else if (isRef(r)) {
-        r.value = refValue;
-      } else {
-        warnRef(r);
-      }
-    } else {
-      warnRef(r);
-    }
-  }
-}
-function warnRef(ref2) {
-  warn("Invalid template ref type:", ref2, `(${typeof ref2})`);
-}
-var MPType;
-(function(MPType2) {
-  MPType2["APP"] = "app";
-  MPType2["PAGE"] = "page";
-  MPType2["COMPONENT"] = "component";
-})(MPType || (MPType = {}));
-const queuePostRenderEffect = queuePostFlushCb;
-function mountComponent(initialVNode, options) {
-  const instance = initialVNode.component = createComponentInstance(initialVNode, options.parentComponent, null);
-  {
-    instance.ctx.$onApplyOptions = onApplyOptions;
-    instance.ctx.$children = [];
-  }
-  if (options.mpType === "app") {
-    instance.render = NOOP;
-  }
-  if (options.onBeforeSetup) {
-    options.onBeforeSetup(instance, options);
-  }
-  {
-    pushWarningContext(initialVNode);
-    startMeasure(instance, `mount`);
-  }
-  {
-    startMeasure(instance, `init`);
-  }
-  setupComponent(instance);
-  {
-    endMeasure(instance, `init`);
-  }
-  {
-    if (options.parentComponent && instance.proxy) {
-      options.parentComponent.ctx.$children.push(getExposeProxy(instance) || instance.proxy);
-    }
-  }
-  setupRenderEffect(instance);
-  {
-    popWarningContext();
-    endMeasure(instance, `mount`);
-  }
-  return instance.proxy;
-}
-const getFunctionalFallthrough = (attrs) => {
-  let res;
-  for (const key in attrs) {
-    if (key === "class" || key === "style" || isOn(key)) {
-      (res || (res = {}))[key] = attrs[key];
-    }
-  }
-  return res;
-};
-function renderComponentRoot(instance) {
-  const { type: Component2, vnode, proxy, withProxy, props, propsOptions: [propsOptions], slots, attrs, emit: emit2, render, renderCache, data, setupState, ctx, uid: uid2, appContext: { app: { config: { globalProperties: { pruneComponentPropsCache: pruneComponentPropsCache2 } } } }, inheritAttrs } = instance;
-  instance.$templateRefs = [];
-  instance.$ei = 0;
-  pruneComponentPropsCache2(uid2);
-  instance.__counter = instance.__counter === 0 ? 1 : 0;
-  let result;
-  const prev = setCurrentRenderingInstance(instance);
-  try {
-    if (vnode.shapeFlag & 4) {
-      fallthroughAttrs(inheritAttrs, props, propsOptions, attrs);
-      const proxyToUse = withProxy || proxy;
-      result = render.call(proxyToUse, proxyToUse, renderCache, props, setupState, data, ctx);
-    } else {
-      fallthroughAttrs(inheritAttrs, props, propsOptions, Component2.props ? attrs : getFunctionalFallthrough(attrs));
-      const render2 = Component2;
-      result = render2.length > 1 ? render2(props, { attrs, slots, emit: emit2 }) : render2(
-        props,
-        null
-        /* we know it doesn't need it */
-      );
-    }
-  } catch (err) {
-    handleError(
-      err,
-      instance,
-      1
-      /* ErrorCodes.RENDER_FUNCTION */
-    );
-    result = false;
-  }
-  setRef$1(instance);
-  setCurrentRenderingInstance(prev);
-  return result;
-}
-function fallthroughAttrs(inheritAttrs, props, propsOptions, fallthroughAttrs2) {
-  if (props && fallthroughAttrs2 && inheritAttrs !== false) {
-    const keys = Object.keys(fallthroughAttrs2).filter((key) => key !== "class" && key !== "style");
-    if (!keys.length) {
-      return;
-    }
-    if (propsOptions && keys.some(isModelListener)) {
-      keys.forEach((key) => {
-        if (!isModelListener(key) || !(key.slice(9) in propsOptions)) {
-          props[key] = fallthroughAttrs2[key];
-        }
-      });
-    } else {
-      keys.forEach((key) => props[key] = fallthroughAttrs2[key]);
-    }
-  }
-}
-const updateComponentPreRender = (instance) => {
-  pauseTracking();
-  flushPreFlushCbs();
-  resetTracking();
-};
-function componentUpdateScopedSlotsFn() {
-  const scopedSlotsData = this.$scopedSlotsData;
-  if (!scopedSlotsData || scopedSlotsData.length === 0) {
-    return;
-  }
-  const mpInstance = this.ctx.$scope;
-  const oldData = mpInstance.data;
-  const diffData = /* @__PURE__ */ Object.create(null);
-  scopedSlotsData.forEach(({ path, index: index2, data }) => {
-    const oldScopedSlotData = getValueByDataPath(oldData, path);
-    const diffPath = isString(index2) ? `${path}.${index2}` : `${path}[${index2}]`;
-    if (typeof oldScopedSlotData === "undefined" || typeof oldScopedSlotData[index2] === "undefined") {
-      diffData[diffPath] = data;
-    } else {
-      const diffScopedSlotData = diff(data, oldScopedSlotData[index2]);
-      Object.keys(diffScopedSlotData).forEach((name) => {
-        diffData[diffPath + "." + name] = diffScopedSlotData[name];
-      });
-    }
-  });
-  scopedSlotsData.length = 0;
-  if (Object.keys(diffData).length) {
-    mpInstance.setData(diffData);
-  }
-}
-function toggleRecurse({ effect, update }, allowed) {
-  effect.allowRecurse = update.allowRecurse = allowed;
-}
-function setupRenderEffect(instance) {
-  const updateScopedSlots = componentUpdateScopedSlotsFn.bind(instance);
-  instance.$updateScopedSlots = () => nextTick$1(() => queueJob(updateScopedSlots));
-  const componentUpdateFn = () => {
-    if (!instance.isMounted) {
-      onBeforeUnmount(() => {
-        setRef$1(instance, true);
-      }, instance);
-      {
-        startMeasure(instance, `patch`);
-      }
-      patch(instance, renderComponentRoot(instance));
-      {
-        endMeasure(instance, `patch`);
-      }
-      {
-        devtoolsComponentAdded(instance);
-      }
-    } else {
-      const { next, bu, u } = instance;
-      {
-        pushWarningContext(next || instance.vnode);
-      }
-      toggleRecurse(instance, false);
-      updateComponentPreRender();
-      if (bu) {
-        invokeArrayFns$1(bu);
-      }
-      toggleRecurse(instance, true);
-      {
-        startMeasure(instance, `patch`);
-      }
-      patch(instance, renderComponentRoot(instance));
-      {
-        endMeasure(instance, `patch`);
-      }
-      if (u) {
-        queuePostRenderEffect(u);
-      }
-      {
-        devtoolsComponentUpdated(instance);
-      }
-      {
-        popWarningContext();
-      }
-    }
-  };
-  const effect = instance.effect = new ReactiveEffect(
-    componentUpdateFn,
-    () => queueJob(instance.update),
-    instance.scope
-    // track it in component's effect scope
-  );
-  const update = instance.update = effect.run.bind(effect);
-  update.id = instance.uid;
-  toggleRecurse(instance, true);
-  {
-    effect.onTrack = instance.rtc ? (e2) => invokeArrayFns$1(instance.rtc, e2) : void 0;
-    effect.onTrigger = instance.rtg ? (e2) => invokeArrayFns$1(instance.rtg, e2) : void 0;
-    update.ownerInstance = instance;
-  }
-  update();
-}
-function unmountComponent(instance) {
-  const { bum, scope, update, um } = instance;
-  if (bum) {
-    invokeArrayFns$1(bum);
-  }
-  scope.stop();
-  if (update) {
-    update.active = false;
-  }
-  if (um) {
-    queuePostRenderEffect(um);
-  }
-  queuePostRenderEffect(() => {
-    instance.isUnmounted = true;
-  });
-  {
-    devtoolsComponentRemoved(instance);
-  }
-}
-const oldCreateApp = createAppAPI();
-function getTarget() {
-  if (typeof window !== "undefined") {
-    return window;
-  }
-  if (typeof globalThis !== "undefined") {
-    return globalThis;
-  }
-  if (typeof global !== "undefined") {
-    return global;
-  }
-  if (typeof my !== "undefined") {
-    return my;
-  }
-}
-function createVueApp(rootComponent, rootProps = null) {
-  const target = getTarget();
-  target.__VUE__ = true;
-  {
-    setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__, target);
-  }
-  const app = oldCreateApp(rootComponent, rootProps);
-  const appContext = app._context;
-  initAppConfig(appContext.config);
-  const createVNode = (initialVNode) => {
-    initialVNode.appContext = appContext;
-    initialVNode.shapeFlag = 6;
-    return initialVNode;
-  };
-  const createComponent2 = function createComponent3(initialVNode, options) {
-    return mountComponent(createVNode(initialVNode), options);
-  };
-  const destroyComponent = function destroyComponent2(component) {
-    return component && unmountComponent(component.$);
-  };
-  app.mount = function mount() {
-    rootComponent.render = NOOP;
-    const instance = mountComponent(createVNode({ type: rootComponent }), {
-      mpType: MPType.APP,
-      mpInstance: null,
-      parentComponent: null,
-      slots: [],
-      props: null
-    });
-    app._instance = instance.$;
-    {
-      devtoolsInitApp(app, version);
-    }
-    instance.$app = app;
-    instance.$createComponent = createComponent2;
-    instance.$destroyComponent = destroyComponent;
-    appContext.$appInstance = instance;
-    return instance;
-  };
-  app.unmount = function unmount() {
-    warn(`Cannot unmount an app.`);
-  };
-  return app;
-}
-function injectLifecycleHook(name, hook, publicThis, instance) {
-  if (isFunction(hook)) {
-    injectHook(name, hook.bind(publicThis), instance);
-  }
-}
-function initHooks$1(options, instance, publicThis) {
-  const mpType = options.mpType || publicThis.$mpType;
-  if (!mpType || mpType === "component") {
-    return;
-  }
-  Object.keys(options).forEach((name) => {
-    if (isUniLifecycleHook(name, options[name], false)) {
-      const hooks = options[name];
-      if (isArray(hooks)) {
-        hooks.forEach((hook) => injectLifecycleHook(name, hook, publicThis, instance));
-      } else {
-        injectLifecycleHook(name, hooks, publicThis, instance);
-      }
-    }
-  });
-}
-function applyOptions$2(options, instance, publicThis) {
-  initHooks$1(options, instance, publicThis);
-}
-function set$3(target, key, val) {
-  return target[key] = val;
-}
-function $callMethod(method, ...args) {
-  const fn = this[method];
-  if (fn) {
-    return fn(...args);
-  }
-  console.error(`method ${method} not found`);
-  return null;
-}
-function createErrorHandler(app) {
-  return function errorHandler(err, instance, _info) {
-    if (!instance) {
-      throw err;
-    }
-    const appInstance = app._instance;
-    if (!appInstance || !appInstance.proxy) {
-      throw err;
-    }
-    {
-      appInstance.proxy.$callHook(ON_ERROR, err);
-    }
-  };
-}
-function mergeAsArray(to, from) {
-  return to ? [...new Set([].concat(to, from))] : from;
-}
-function initOptionMergeStrategies(optionMergeStrategies) {
-  UniLifecycleHooks.forEach((name) => {
-    optionMergeStrategies[name] = mergeAsArray;
-  });
-}
-let realAtob;
-const b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
-const b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
-if (typeof atob !== "function") {
-  realAtob = function(str) {
-    str = String(str).replace(/[\t\n\f\r ]+/g, "");
-    if (!b64re.test(str)) {
-      throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.");
-    }
-    str += "==".slice(2 - (str.length & 3));
-    var bitmap;
-    var result = "";
-    var r1;
-    var r2;
-    var i = 0;
-    for (; i < str.length; ) {
-      bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 | (r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++)));
-      result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255) : r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255) : String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255);
-    }
-    return result;
-  };
-} else {
-  realAtob = atob;
-}
-function b64DecodeUnicode(str) {
-  return decodeURIComponent(realAtob(str).split("").map(function(c) {
-    return "%" + ("00" + c.charCodeAt(0).toString(16)).slice(-2);
-  }).join(""));
-}
-function getCurrentUserInfo() {
-  const token = index.getStorageSync("uni_id_token") || "";
-  const tokenArr = token.split(".");
-  if (!token || tokenArr.length !== 3) {
-    return {
-      uid: null,
-      role: [],
-      permission: [],
-      tokenExpired: 0
-    };
-  }
-  let userInfo;
-  try {
-    userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));
-  } catch (error) {
-    throw new Error("获取当前用户信息出错,详细错误信息为:" + error.message);
-  }
-  userInfo.tokenExpired = userInfo.exp * 1e3;
-  delete userInfo.exp;
-  delete userInfo.iat;
-  return userInfo;
-}
-function uniIdMixin(globalProperties) {
-  globalProperties.uniIDHasRole = function(roleId) {
-    const { role } = getCurrentUserInfo();
-    return role.indexOf(roleId) > -1;
-  };
-  globalProperties.uniIDHasPermission = function(permissionId) {
-    const { permission } = getCurrentUserInfo();
-    return this.uniIDHasRole("admin") || permission.indexOf(permissionId) > -1;
-  };
-  globalProperties.uniIDTokenValid = function() {
-    const { tokenExpired } = getCurrentUserInfo();
-    return tokenExpired > Date.now();
-  };
-}
-function initApp(app) {
-  const appConfig = app._context.config;
-  appConfig.errorHandler = invokeCreateErrorHandler(app, createErrorHandler);
-  initOptionMergeStrategies(appConfig.optionMergeStrategies);
-  const globalProperties = appConfig.globalProperties;
-  {
-    uniIdMixin(globalProperties);
-  }
-  {
-    globalProperties.$set = set$3;
-    globalProperties.$applyOptions = applyOptions$2;
-    globalProperties.$callMethod = $callMethod;
-  }
-  {
-    index.invokeCreateVueAppHook(app);
-  }
-}
-const propsCaches = /* @__PURE__ */ Object.create(null);
-function renderProps(props) {
-  const { uid: uid2, __counter } = getCurrentInstance();
-  const propsId = (propsCaches[uid2] || (propsCaches[uid2] = [])).push(guardReactiveProps(props)) - 1;
-  return uid2 + "," + propsId + "," + __counter;
-}
-function pruneComponentPropsCache(uid2) {
-  delete propsCaches[uid2];
-}
-function findComponentPropsData(up) {
-  if (!up) {
-    return;
-  }
-  const [uid2, propsId] = up.split(",");
-  if (!propsCaches[uid2]) {
-    return;
-  }
-  return propsCaches[uid2][parseInt(propsId)];
-}
-var plugin = {
-  install(app) {
-    initApp(app);
-    app.config.globalProperties.pruneComponentPropsCache = pruneComponentPropsCache;
-    const oldMount = app.mount;
-    app.mount = function mount(rootContainer) {
-      const instance = oldMount.call(app, rootContainer);
-      const createApp2 = getCreateApp();
-      if (createApp2) {
-        createApp2(instance);
-      } else {
-        if (typeof createMiniProgramApp !== "undefined") {
-          createMiniProgramApp(instance);
-        }
-      }
-      return instance;
-    };
-  }
-};
-function getCreateApp() {
-  const method = "createApp";
-  if (typeof global !== "undefined") {
-    return global[method];
-  } else if (typeof my !== "undefined") {
-    return my[method];
-  }
-}
-function vOn(value, key) {
-  const instance = getCurrentInstance();
-  const ctx = instance.ctx;
-  const extraKey = typeof key !== "undefined" && (ctx.$mpPlatform === "mp-weixin" || ctx.$mpPlatform === "mp-qq") && (isString(key) || typeof key === "number") ? "_" + key : "";
-  const name = "e" + instance.$ei++ + extraKey;
-  const mpInstance = ctx.$scope;
-  if (!value) {
-    delete mpInstance[name];
-    return name;
-  }
-  const existingInvoker = mpInstance[name];
-  if (existingInvoker) {
-    existingInvoker.value = value;
-  } else {
-    mpInstance[name] = createInvoker(value, instance);
-  }
-  return name;
-}
-function createInvoker(initialValue, instance) {
-  const invoker = (e2) => {
-    patchMPEvent(e2);
-    let args = [e2];
-    if (e2.detail && e2.detail.__args__) {
-      args = e2.detail.__args__;
-    }
-    const eventValue = invoker.value;
-    const invoke = () => callWithAsyncErrorHandling(patchStopImmediatePropagation(e2, eventValue), instance, 5, args);
-    const eventTarget = e2.target;
-    const eventSync = eventTarget ? eventTarget.dataset ? String(eventTarget.dataset.eventsync) === "true" : false : false;
-    if (bubbles.includes(e2.type) && !eventSync) {
-      setTimeout(invoke);
-    } else {
-      const res = invoke();
-      if (e2.type === "input" && (isArray(res) || isPromise(res))) {
-        return;
-      }
-      return res;
-    }
-  };
-  invoker.value = initialValue;
-  return invoker;
-}
-const bubbles = [
-  // touch事件暂不做延迟,否则在 Android 上会影响性能,比如一些拖拽跟手手势等
-  // 'touchstart',
-  // 'touchmove',
-  // 'touchcancel',
-  // 'touchend',
-  "tap",
-  "longpress",
-  "longtap",
-  "transitionend",
-  "animationstart",
-  "animationiteration",
-  "animationend",
-  "touchforcechange"
-];
-function patchMPEvent(event) {
-  if (event.type && event.target) {
-    event.preventDefault = NOOP;
-    event.stopPropagation = NOOP;
-    event.stopImmediatePropagation = NOOP;
-    if (!hasOwn$1(event, "detail")) {
-      event.detail = {};
-    }
-    if (hasOwn$1(event, "markerId")) {
-      event.detail = typeof event.detail === "object" ? event.detail : {};
-      event.detail.markerId = event.markerId;
-    }
-    if (isPlainObject$1(event.detail) && hasOwn$1(event.detail, "checked") && !hasOwn$1(event.detail, "value")) {
-      event.detail.value = event.detail.checked;
-    }
-    if (isPlainObject$1(event.detail)) {
-      event.target = extend({}, event.target, event.detail);
-    }
-  }
-}
-function patchStopImmediatePropagation(e2, value) {
-  if (isArray(value)) {
-    const originalStop = e2.stopImmediatePropagation;
-    e2.stopImmediatePropagation = () => {
-      originalStop && originalStop.call(e2);
-      e2._stopped = true;
-    };
-    return value.map((fn) => (e3) => !e3._stopped && fn(e3));
-  } else {
-    return value;
-  }
-}
-function vFor(source, renderItem) {
-  let ret;
-  if (isArray(source) || isString(source)) {
-    ret = new Array(source.length);
-    for (let i = 0, l = source.length; i < l; i++) {
-      ret[i] = renderItem(source[i], i, i);
-    }
-  } else if (typeof source === "number") {
-    if (!Number.isInteger(source)) {
-      warn(`The v-for range expect an integer value but got ${source}.`);
-      return [];
-    }
-    ret = new Array(source);
-    for (let i = 0; i < source; i++) {
-      ret[i] = renderItem(i + 1, i, i);
-    }
-  } else if (isObject$1(source)) {
-    if (source[Symbol.iterator]) {
-      ret = Array.from(source, (item, i) => renderItem(item, i, i));
-    } else {
-      const keys = Object.keys(source);
-      ret = new Array(keys.length);
-      for (let i = 0, l = keys.length; i < l; i++) {
-        const key = keys[i];
-        ret[i] = renderItem(source[key], key, i);
-      }
-    }
-  } else {
-    ret = [];
-  }
-  return ret;
-}
-function stringifyStyle(value) {
-  if (isString(value)) {
-    return value;
-  }
-  return stringify(normalizeStyle(value));
-}
-function stringify(styles) {
-  let ret = "";
-  if (!styles || isString(styles)) {
-    return ret;
-  }
-  for (const key in styles) {
-    ret += `${key.startsWith(`--`) ? key : hyphenate(key)}:${styles[key]};`;
-  }
-  return ret;
-}
-function setRef(ref2, id2, opts = {}) {
-  const { $templateRefs } = getCurrentInstance();
-  $templateRefs.push({ i: id2, r: ref2, k: opts.k, f: opts.f });
-}
-const o = (value, key) => vOn(value, key);
-const f = (source, renderItem) => vFor(source, renderItem);
-const s = (value) => stringifyStyle(value);
-const e = (target, ...sources) => extend(target, ...sources);
-const n = (value) => normalizeClass(value);
-const t = (val) => toDisplayString(val);
-const p = (props) => renderProps(props);
-const sr = (ref2, id2, opts) => setRef(ref2, id2, opts);
-function createApp$1(rootComponent, rootProps = null) {
-  rootComponent && (rootComponent.mpType = "app");
-  return createVueApp(rootComponent, rootProps).use(plugin);
-}
-const createSSRApp = createApp$1;
-const MP_METHODS = [
-  "createSelectorQuery",
-  "createIntersectionObserver",
-  "selectAllComponents",
-  "selectComponent"
-];
-function createEmitFn(oldEmit, ctx) {
-  return function emit2(event, ...args) {
-    const scope = ctx.$scope;
-    if (scope && event) {
-      const detail = { __args__: args };
-      {
-        scope.triggerEvent(event, detail);
-      }
-    }
-    return oldEmit.apply(this, [event, ...args]);
-  };
-}
-function initBaseInstance(instance, options) {
-  const ctx = instance.ctx;
-  ctx.mpType = options.mpType;
-  ctx.$mpType = options.mpType;
-  ctx.$mpPlatform = "mp-toutiao";
-  ctx.$scope = options.mpInstance;
-  ctx.$mp = {};
-  {
-    ctx._self = {};
-  }
-  instance.slots = {};
-  if (isArray(options.slots) && options.slots.length) {
-    options.slots.forEach((name) => {
-      instance.slots[name] = true;
-    });
-    if (instance.slots[SLOT_DEFAULT_NAME]) {
-      instance.slots.default = true;
-    }
-  }
-  ctx.getOpenerEventChannel = function() {
-    if (!this.__eventChannel__) {
-      this.__eventChannel__ = new EventChannel();
-    }
-    return this.__eventChannel__;
-  };
-  ctx.$hasHook = hasHook;
-  ctx.$callHook = callHook;
-  instance.emit = createEmitFn(instance.emit, ctx);
-}
-function initComponentInstance(instance, options) {
-  initBaseInstance(instance, options);
-  const ctx = instance.ctx;
-  MP_METHODS.forEach((method) => {
-    ctx[method] = function(...args) {
-      const mpInstance = ctx.$scope;
-      if (mpInstance && mpInstance[method]) {
-        return mpInstance[method].apply(mpInstance, args);
-      }
-    };
-  });
-}
-function initMocks(instance, mpInstance, mocks2) {
-  const ctx = instance.ctx;
-  mocks2.forEach((mock) => {
-    if (hasOwn$1(mpInstance, mock)) {
-      instance[mock] = ctx[mock] = mpInstance[mock];
-    }
-  });
-}
-function hasHook(name) {
-  const hooks = this.$[name];
-  if (hooks && hooks.length) {
-    return true;
-  }
-  return false;
-}
-function callHook(name, args) {
-  if (name === "mounted") {
-    callHook.call(this, "bm");
-    this.$.isMounted = true;
-    name = "m";
-  }
-  {
-    if (name === "onLoad" && args && args.__id__ && isFunction(tt.getEventChannel)) {
-      this.__eventChannel__ = tt.getEventChannel(args.__id__);
-      delete args.__id__;
-    }
-  }
-  const hooks = this.$[name];
-  return hooks && invokeArrayFns(hooks, args);
-}
-const PAGE_INIT_HOOKS = [
-  ON_LOAD,
-  ON_SHOW,
-  ON_HIDE,
-  ON_UNLOAD,
-  ON_RESIZE,
-  ON_TAB_ITEM_TAP,
-  ON_REACH_BOTTOM,
-  ON_PULL_DOWN_REFRESH,
-  ON_ADD_TO_FAVORITES
-  // 'onReady', // lifetimes.ready
-  // 'onPageScroll', // 影响性能,开发者手动注册
-  // 'onShareTimeline', // 右上角菜单,开发者手动注册
-  // 'onShareAppMessage' // 右上角菜单,开发者手动注册
-];
-function findHooks(vueOptions, hooks = /* @__PURE__ */ new Set()) {
-  if (vueOptions) {
-    Object.keys(vueOptions).forEach((name) => {
-      if (isUniLifecycleHook(name, vueOptions[name])) {
-        hooks.add(name);
-      }
-    });
-    {
-      const { extends: extendsOptions, mixins } = vueOptions;
-      if (mixins) {
-        mixins.forEach((mixin) => findHooks(mixin, hooks));
-      }
-      if (extendsOptions) {
-        findHooks(extendsOptions, hooks);
-      }
-    }
-  }
-  return hooks;
-}
-function initHook(mpOptions, hook, excludes) {
-  if (excludes.indexOf(hook) === -1 && !hasOwn$1(mpOptions, hook)) {
-    mpOptions[hook] = function(args) {
-      if (hook === "onError") {
-        return getApp().$vm.$callHook(hook, args);
-      }
-      return this.$vm && this.$vm.$callHook(hook, args);
-    };
-  }
-}
-const EXCLUDE_HOOKS = [ON_READY];
-function initHooks(mpOptions, hooks, excludes = EXCLUDE_HOOKS) {
-  hooks.forEach((hook) => initHook(mpOptions, hook, excludes));
-}
-function initUnknownHooks(mpOptions, vueOptions, excludes = EXCLUDE_HOOKS) {
-  findHooks(vueOptions).forEach((hook) => initHook(mpOptions, hook, excludes));
-}
-function initRuntimeHooks(mpOptions, runtimeHooks) {
-  if (!runtimeHooks) {
-    return;
-  }
-  const hooks = Object.keys(MINI_PROGRAM_PAGE_RUNTIME_HOOKS);
-  hooks.forEach((hook) => {
-    if (runtimeHooks & MINI_PROGRAM_PAGE_RUNTIME_HOOKS[hook]) {
-      initHook(mpOptions, hook, []);
-    }
-  });
-}
-const findMixinRuntimeHooks = /* @__PURE__ */ once(() => {
-  const runtimeHooks = [];
-  const app = isFunction(getApp) && getApp({ allowDefault: true });
-  if (app && app.$vm && app.$vm.$) {
-    const mixins = app.$vm.$.appContext.mixins;
-    if (isArray(mixins)) {
-      const hooks = Object.keys(MINI_PROGRAM_PAGE_RUNTIME_HOOKS);
-      mixins.forEach((mixin) => {
-        hooks.forEach((hook) => {
-          if (hasOwn$1(mixin, hook) && !runtimeHooks.includes(hook)) {
-            runtimeHooks.push(hook);
-          }
-        });
-      });
-    }
-  }
-  return runtimeHooks;
-});
-function initMixinRuntimeHooks(mpOptions) {
-  initHooks(mpOptions, findMixinRuntimeHooks());
-}
-const HOOKS = [
-  ON_SHOW,
-  ON_HIDE,
-  ON_ERROR,
-  ON_THEME_CHANGE,
-  ON_PAGE_NOT_FOUND,
-  ON_UNHANDLE_REJECTION
-];
-function parseApp(instance, parseAppOptions) {
-  const internalInstance = instance.$;
-  const appOptions = {
-    globalData: instance.$options && instance.$options.globalData || {},
-    $vm: instance,
-    onLaunch(options) {
-      this.$vm = instance;
-      const ctx = internalInstance.ctx;
-      if (this.$vm && ctx.$scope) {
-        return;
-      }
-      initBaseInstance(internalInstance, {
-        mpType: "app",
-        mpInstance: this,
-        slots: []
-      });
-      ctx.globalData = this.globalData;
-      instance.$callHook(ON_LAUNCH, options);
-    }
-  };
-  const { onError } = internalInstance;
-  if (onError) {
-    internalInstance.appContext.config.errorHandler = (err) => {
-      instance.$callHook(ON_ERROR, err);
-    };
-  }
-  initLocale(instance);
-  const vueOptions = instance.$.type;
-  initHooks(appOptions, HOOKS);
-  initUnknownHooks(appOptions, vueOptions);
-  {
-    const methods = vueOptions.methods;
-    methods && extend(appOptions, methods);
-  }
-  if (parseAppOptions) {
-    parseAppOptions.parse(appOptions);
-  }
-  return appOptions;
-}
-function initCreateApp(parseAppOptions) {
-  return function createApp2(vm) {
-    return App(parseApp(vm, parseAppOptions));
-  };
-}
-function initCreateSubpackageApp(parseAppOptions) {
-  return function createApp2(vm) {
-    const appOptions = parseApp(vm, parseAppOptions);
-    const app = isFunction(getApp) && getApp({
-      allowDefault: true
-    });
-    if (!app)
-      return;
-    vm.$.ctx.$scope = app;
-    const globalData = app.globalData;
-    if (globalData) {
-      Object.keys(appOptions.globalData).forEach((name) => {
-        if (!hasOwn$1(globalData, name)) {
-          globalData[name] = appOptions.globalData[name];
-        }
-      });
-    }
-    Object.keys(appOptions).forEach((name) => {
-      if (!hasOwn$1(app, name)) {
-        app[name] = appOptions[name];
-      }
-    });
-    initAppLifecycle(appOptions, vm);
-  };
-}
-function initAppLifecycle(appOptions, vm) {
-  if (isFunction(appOptions.onLaunch)) {
-    const args = tt.getLaunchOptionsSync && tt.getLaunchOptionsSync();
-    appOptions.onLaunch(args);
-  }
-  if (isFunction(appOptions.onShow) && tt.onAppShow) {
-    tt.onAppShow((args) => {
-      vm.$callHook("onShow", args);
-    });
-  }
-  if (isFunction(appOptions.onHide) && tt.onAppHide) {
-    tt.onAppHide((args) => {
-      vm.$callHook("onHide", args);
-    });
-  }
-}
-function initLocale(appVm) {
-  const locale = ref(normalizeLocale(tt.getSystemInfoSync().language) || LOCALE_EN);
-  Object.defineProperty(appVm, "$locale", {
-    get() {
-      return locale.value;
-    },
-    set(v) {
-      locale.value = v;
-    }
-  });
-}
-function initVueIds(vueIds, mpInstance) {
-  if (!vueIds) {
-    return;
-  }
-  const ids = vueIds.split(",");
-  const len = ids.length;
-  if (len === 1) {
-    mpInstance._$vueId = ids[0];
-  } else if (len === 2) {
-    mpInstance._$vueId = ids[0];
-    mpInstance._$vuePid = ids[1];
-  }
-}
-const EXTRAS = ["externalClasses"];
-function initExtraOptions(miniProgramComponentOptions, vueOptions) {
-  EXTRAS.forEach((name) => {
-    if (hasOwn$1(vueOptions, name)) {
-      miniProgramComponentOptions[name] = vueOptions[name];
-    }
-  });
-}
-function initWxsCallMethods(methods, wxsCallMethods) {
-  if (!isArray(wxsCallMethods)) {
-    return;
-  }
-  wxsCallMethods.forEach((callMethod) => {
-    methods[callMethod] = function(args) {
-      return this.$vm[callMethod](args);
-    };
-  });
-}
-function selectAllComponents(mpInstance, selector, $refs) {
-  const components2 = mpInstance.selectAllComponents(selector);
-  components2.forEach((component) => {
-    const ref2 = component.properties.uR;
-    $refs[ref2] = component.$vm || component;
-  });
-}
-function initRefs(instance, mpInstance) {
-  Object.defineProperty(instance, "refs", {
-    get() {
-      const $refs = {};
-      selectAllComponents(mpInstance, ".r", $refs);
-      const forComponents = mpInstance.selectAllComponents(".r-i-f");
-      forComponents.forEach((component) => {
-        const ref2 = component.properties.uR;
-        if (!ref2) {
-          return;
-        }
-        if (!$refs[ref2]) {
-          $refs[ref2] = [];
-        }
-        $refs[ref2].push(component.$vm || component);
-      });
-      return $refs;
-    }
-  });
-}
-function findVmByVueId(instance, vuePid) {
-  const $children = instance.$children;
-  for (let i = $children.length - 1; i >= 0; i--) {
-    const childVm = $children[i];
-    if (childVm.$scope._$vueId === vuePid) {
-      return childVm;
-    }
-  }
-  let parentVm;
-  for (let i = $children.length - 1; i >= 0; i--) {
-    parentVm = findVmByVueId($children[i], vuePid);
-    if (parentVm) {
-      return parentVm;
-    }
-  }
-}
-function nextSetDataTick(mpInstance, fn) {
-  mpInstance.setData({ r1: 1 }, () => fn());
-}
-function initSetRef(mpInstance) {
-  if (!mpInstance._$setRef) {
-    mpInstance._$setRef = (fn) => {
-      nextTick$1(() => nextSetDataTick(mpInstance, fn));
-    };
-  }
-}
-const builtInProps = [
-  // 百度小程序,快手小程序自定义组件不支持绑定动态事件,动态dataset,故通过props传递事件信息
-  // event-opts
-  "eO",
-  // 组件 ref
-  "uR",
-  // 组件 ref-in-for
-  "uRIF",
-  // 组件 id
-  "uI",
-  // 组件类型 m: 小程序组件
-  "uT",
-  // 组件 props
-  "uP",
-  // 小程序不能直接定义 $slots 的 props,所以通过 vueSlots 转换到 $slots
-  "uS"
-];
-function initDefaultProps(options, isBehavior = false) {
-  const properties = {};
-  if (!isBehavior) {
-    builtInProps.forEach((name) => {
-      properties[name] = {
-        type: null,
-        value: ""
-      };
-    });
-    properties.uS = {
-      type: null,
-      value: [],
-      observer: function(newVal) {
-        const $slots = /* @__PURE__ */ Object.create(null);
-        newVal && newVal.forEach((slotName) => {
-          $slots[slotName] = true;
-        });
-        this.setData({
-          $slots
-        });
-      }
-    };
-  }
-  if (options.behaviors) {
-    if (options.behaviors.includes("tt://form-field")) {
-      if (!options.properties || !options.properties.name) {
-        properties.name = {
-          type: null,
-          value: ""
-        };
-      }
-      if (!options.properties || !options.properties.value) {
-        properties.value = {
-          type: null,
-          value: ""
-        };
-      }
-    }
-  }
-  return properties;
-}
-function initVirtualHostProps(options) {
-  const properties = {};
-  return properties;
-}
-function initProps(mpComponentOptions) {
-  if (!mpComponentOptions.properties) {
-    mpComponentOptions.properties = {};
-  }
-  extend(mpComponentOptions.properties, initDefaultProps(mpComponentOptions), initVirtualHostProps(mpComponentOptions.options));
-}
-const PROP_TYPES = [String, Number, Boolean, Object, Array, null];
-function parsePropType(type, defaultValue) {
-  if (isArray(type) && type.length === 1) {
-    return type[0];
-  }
-  return type;
-}
-function normalizePropType(type, defaultValue) {
-  const res = parsePropType(type);
-  return PROP_TYPES.indexOf(res) !== -1 ? res : null;
-}
-function initPageProps({ properties }, rawProps) {
-  if (isArray(rawProps)) {
-    rawProps.forEach((key) => {
-      properties[key] = {
-        type: String,
-        value: ""
-      };
-    });
-  } else if (isPlainObject$1(rawProps)) {
-    Object.keys(rawProps).forEach((key) => {
-      const opts = rawProps[key];
-      if (isPlainObject$1(opts)) {
-        let value = opts.default;
-        if (isFunction(value)) {
-          value = value();
-        }
-        const type = opts.type;
-        opts.type = normalizePropType(type);
-        properties[key] = {
-          type: opts.type,
-          value
-        };
-      } else {
-        properties[key] = {
-          type: normalizePropType(opts)
-        };
-      }
-    });
-  }
-}
-function findPropsData(properties, isPage2) {
-  return (isPage2 ? findPagePropsData(properties) : findComponentPropsData(properties.uP)) || {};
-}
-function findPagePropsData(properties) {
-  const propsData = {};
-  if (isPlainObject$1(properties)) {
-    Object.keys(properties).forEach((name) => {
-      if (builtInProps.indexOf(name) === -1) {
-        propsData[name] = properties[name];
-      }
-    });
-  }
-  return propsData;
-}
-function initFormField(vm) {
-  const vueOptions = vm.$options;
-  if (isArray(vueOptions.behaviors) && vueOptions.behaviors.includes("uni://form-field")) {
-    vm.$watch("modelValue", () => {
-      vm.$scope && vm.$scope.setData({
-        name: vm.name,
-        value: vm.modelValue
-      });
-    }, {
-      immediate: true
-    });
-  }
-}
-function initData(_) {
-  return {};
-}
-function initPropsObserver(componentOptions) {
-  const observe = function observe2() {
-    const up = this.properties.uP;
-    if (!up) {
-      return;
-    }
-    if (this.$vm) {
-      updateComponentProps(up, this.$vm.$);
-    } else if (this.properties.uT === "m") {
-      updateMiniProgramComponentProperties(up, this);
-    }
-  };
-  {
-    componentOptions.properties.uP.observer = observe;
-  }
-}
-function updateMiniProgramComponentProperties(up, mpInstance) {
-  const prevProps = mpInstance.properties;
-  const nextProps = findComponentPropsData(up) || {};
-  if (hasPropsChanged(prevProps, nextProps, false)) {
-    mpInstance.setData(nextProps);
-  }
-}
-function updateComponentProps(up, instance) {
-  const prevProps = toRaw(instance.props);
-  const nextProps = findComponentPropsData(up) || {};
-  if (hasPropsChanged(prevProps, nextProps)) {
-    updateProps(instance, nextProps, prevProps, false);
-    if (hasQueueJob(instance.update)) {
-      invalidateJob(instance.update);
-    }
-    {
-      if (!hasQueueJob(instance.update)) {
-        instance.update();
-      }
-    }
-  }
-}
-function hasPropsChanged(prevProps, nextProps, checkLen = true) {
-  const nextKeys = Object.keys(nextProps);
-  if (checkLen && nextKeys.length !== Object.keys(prevProps).length) {
-    return true;
-  }
-  for (let i = 0; i < nextKeys.length; i++) {
-    const key = nextKeys[i];
-    if (nextProps[key] !== prevProps[key]) {
-      return true;
-    }
-  }
-  return false;
-}
-function initBehaviors(vueOptions) {
-  const vueBehaviors = vueOptions.behaviors;
-  let vueProps = vueOptions.props;
-  if (!vueProps) {
-    vueOptions.props = vueProps = [];
-  }
-  const behaviors = [];
-  if (isArray(vueBehaviors)) {
-    vueBehaviors.forEach((behavior) => {
-      behaviors.push(behavior.replace("uni://", "tt://"));
-      if (behavior === "uni://form-field") {
-        if (isArray(vueProps)) {
-          vueProps.push("name");
-          vueProps.push("modelValue");
-        } else {
-          vueProps.name = {
-            type: String,
-            default: ""
-          };
-          vueProps.modelValue = {
-            type: [String, Number, Boolean, Array, Object, Date],
-            default: ""
-          };
-        }
-      }
-    });
-  }
-  return behaviors;
-}
-function applyOptions(componentOptions, vueOptions) {
-  componentOptions.data = initData();
-  componentOptions.behaviors = initBehaviors(vueOptions);
-}
-function parseComponent(vueOptions, { parse: parse2, mocks: mocks2, isPage: isPage2, initRelation: initRelation2, handleLink: handleLink2, initLifetimes: initLifetimes2 }) {
-  vueOptions = vueOptions.default || vueOptions;
-  const options = {
-    multipleSlots: true,
-    // styleIsolation: 'apply-shared',
-    addGlobalClass: true,
-    pureDataPattern: /^uP$/
-  };
-  if (isArray(vueOptions.mixins)) {
-    vueOptions.mixins.forEach((item) => {
-      if (isObject$1(item.options)) {
-        extend(options, item.options);
-      }
-    });
-  }
-  if (vueOptions.options) {
-    extend(options, vueOptions.options);
-  }
-  const mpComponentOptions = {
-    options,
-    lifetimes: initLifetimes2({ mocks: mocks2, isPage: isPage2, initRelation: initRelation2, vueOptions }),
-    pageLifetimes: {
-      show() {
-        this.$vm && this.$vm.$callHook("onPageShow");
-      },
-      hide() {
-        this.$vm && this.$vm.$callHook("onPageHide");
-      },
-      resize(size2) {
-        this.$vm && this.$vm.$callHook("onPageResize", size2);
-      }
-    },
-    methods: {
-      __l: handleLink2
-    }
-  };
-  {
-    applyOptions(mpComponentOptions, vueOptions);
-  }
-  initProps(mpComponentOptions);
-  initPropsObserver(mpComponentOptions);
-  initExtraOptions(mpComponentOptions, vueOptions);
-  initWxsCallMethods(mpComponentOptions.methods, vueOptions.wxsCallMethods);
-  if (parse2) {
-    parse2(mpComponentOptions, { handleLink: handleLink2 });
-  }
-  return mpComponentOptions;
-}
-function initCreateComponent(parseOptions) {
-  return function createComponent2(vueComponentOptions) {
-    return Component(parseComponent(vueComponentOptions, parseOptions));
-  };
-}
-let $createComponentFn;
-let $destroyComponentFn;
-function getAppVm() {
-  return getApp().$vm;
-}
-function $createComponent(initialVNode, options) {
-  if (!$createComponentFn) {
-    $createComponentFn = getAppVm().$createComponent;
-  }
-  const proxy = $createComponentFn(initialVNode, options);
-  return getExposeProxy(proxy.$) || proxy;
-}
-function $destroyComponent(instance) {
-  if (!$destroyComponentFn) {
-    $destroyComponentFn = getAppVm().$destroyComponent;
-  }
-  return $destroyComponentFn(instance);
-}
-function parsePage(vueOptions, parseOptions) {
-  const { parse: parse2, mocks: mocks2, isPage: isPage2, initRelation: initRelation2, handleLink: handleLink2, initLifetimes: initLifetimes2 } = parseOptions;
-  const miniProgramPageOptions = parseComponent(vueOptions, {
-    mocks: mocks2,
-    isPage: isPage2,
-    initRelation: initRelation2,
-    handleLink: handleLink2,
-    initLifetimes: initLifetimes2
-  });
-  initPageProps(miniProgramPageOptions, (vueOptions.default || vueOptions).props);
-  const methods = miniProgramPageOptions.methods;
-  methods.onLoad = function(query) {
-    this.options = query;
-    this.$page = {
-      fullPath: addLeadingSlash(this.route + stringifyQuery(query))
-    };
-    return this.$vm && this.$vm.$callHook(ON_LOAD, query);
-  };
-  initHooks(methods, PAGE_INIT_HOOKS);
-  {
-    initUnknownHooks(methods, vueOptions);
-  }
-  initRuntimeHooks(methods, vueOptions.__runtimeHooks);
-  initMixinRuntimeHooks(methods);
-  parse2 && parse2(miniProgramPageOptions, { handleLink: handleLink2 });
-  return miniProgramPageOptions;
-}
-function initCreatePage(parseOptions) {
-  return function createPage2(vuePageOptions) {
-    return Component(parsePage(vuePageOptions, parseOptions));
-  };
-}
-const MPPage = Page;
-const MPComponent = Component;
-function initTriggerEvent(mpInstance) {
-  const oldTriggerEvent = mpInstance.triggerEvent;
-  const newTriggerEvent = function(event, ...args) {
-    return oldTriggerEvent.apply(mpInstance, [customizeEvent(event), ...args]);
-  };
-  try {
-    mpInstance.triggerEvent = newTriggerEvent;
-  } catch (error) {
-    mpInstance._triggerEvent = newTriggerEvent;
-  }
-}
-function initMiniProgramHook(name, options, isComponent) {
-  if (isComponent) {
-    options = options.lifetimes || {};
-  }
-  const oldHook = options[name];
-  if (!oldHook) {
-    options[name] = function() {
-      initTriggerEvent(this);
-    };
-  } else {
-    options[name] = function(...args) {
-      initTriggerEvent(this);
-      return oldHook.apply(this, args);
-    };
-  }
-}
-Page = function(options) {
-  initMiniProgramHook(ON_LOAD, options);
-  return MPPage(options);
-};
-Component = function(options) {
-  initMiniProgramHook("created", options, true);
-  const isVueComponent = options.properties && options.properties.uP;
-  if (!isVueComponent) {
-    initProps(options);
-    initPropsObserver(options);
-  }
-  return MPComponent(options);
-};
-function provide(instance, key, value) {
-  if (!instance) {
-    {
-      console.warn(`provide() can only be used inside setup().`);
-    }
-  } else {
-    let provides = instance.provides;
-    const parentProvides = instance.parent && instance.parent.provides;
-    if (parentProvides === provides) {
-      provides = instance.provides = Object.create(parentProvides);
-    }
-    provides[key] = value;
-  }
-}
-function initProvide(instance) {
-  const provideOptions = instance.$options.provide;
-  if (!provideOptions) {
-    return;
-  }
-  const provides = isFunction(provideOptions) ? provideOptions.call(instance) : provideOptions;
-  const internalInstance = instance.$;
-  for (const key in provides) {
-    provide(internalInstance, key, provides[key]);
-  }
-}
-function inject(instance, key, defaultValue, treatDefaultAsFactory = false) {
-  if (instance) {
-    const provides = instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides;
-    if (provides && key in provides) {
-      return provides[key];
-    } else if (arguments.length > 1) {
-      return treatDefaultAsFactory && isFunction(defaultValue) ? defaultValue() : defaultValue;
-    } else {
-      console.warn(`injection "${String(key)}" not found.`);
-    }
-  } else {
-    console.warn(`inject() can only be used inside setup() or functional components.`);
-  }
-}
-function initInjections(instance) {
-  const injectOptions = instance.$options.inject;
-  if (!injectOptions) {
-    return;
-  }
-  const internalInstance = instance.$;
-  const ctx = internalInstance.ctx;
-  if (isArray(injectOptions)) {
-    for (let i = 0; i < injectOptions.length; i++) {
-      const key = injectOptions[i];
-      ctx[key] = inject(internalInstance, key);
-    }
-  } else {
-    for (const key in injectOptions) {
-      const opt = injectOptions[key];
-      let injected;
-      if (isObject$1(opt)) {
-        if ("default" in opt) {
-          injected = inject(
-            internalInstance,
-            opt.from || key,
-            opt.default,
-            true
-            /* treat default function as factory */
-          );
-        } else {
-          injected = inject(internalInstance, opt.from || key);
-        }
-      } else {
-        injected = inject(internalInstance, opt);
-      }
-      if (isRef(injected)) {
-        Object.defineProperty(ctx, key, {
-          enumerable: true,
-          configurable: true,
-          get: () => injected.value,
-          set: (v) => injected.value = v
-        });
-      } else {
-        ctx[key] = injected;
-      }
-    }
-  }
-}
-const components = [];
-function initLifetimes$1({ mocks: mocks2, isPage: isPage2, initRelation: initRelation2, vueOptions }) {
-  function created() {
-    components.push(this);
-  }
-  function attached() {
-    initSetRef(this);
-    const properties = this.properties;
-    initVueIds(properties.uI, this);
-    const relationOptions = {
-      vuePid: this._$vuePid
-    };
-    const mpInstance = this;
-    const mpType = isPage2(mpInstance) ? "page" : "component";
-    if (mpType === "page" && !mpInstance.route && mpInstance.__route__) {
-      mpInstance.route = mpInstance.__route__;
-    }
-    const props = findPropsData(properties, mpType === "page");
-    this.$vm = $createComponent({
-      type: vueOptions,
-      props
-    }, {
-      mpType,
-      mpInstance,
-      slots: properties.uS || {},
-      parentComponent: relationOptions.parent && relationOptions.parent.$,
-      onBeforeSetup(instance, options) {
-        initRefs(instance, mpInstance);
-        initMocks(instance, mpInstance, mocks2);
-        initComponentInstance(instance, options);
-      }
-    });
-    if (mpType === "component") {
-      initFormField(this.$vm);
-    }
-    if (mpType === "page") {
-      {
-        initInjections(this.$vm);
-        initProvide(this.$vm);
-      }
-    }
-    initRelation2(this, relationOptions);
-  }
-  function detached() {
-    if (this.$vm) {
-      pruneComponentPropsCache(this.$vm.$.uid);
-      $destroyComponent(this.$vm);
-    }
-  }
-  return {
-    created,
-    attached() {
-      this.__lifetimes_attached = function() {
-        attached.call(this);
-      };
-      let component = this;
-      while (component && component.__lifetimes_attached && components[0] && component === components[0]) {
-        components.shift();
-        component.__lifetimes_attached();
-        delete component.__lifetimes_attached;
-        component = components[0];
-      }
-    },
-    detached
-  };
-}
-const mocks = [
-  "__route__",
-  "__webviewId__",
-  "__nodeId__",
-  "__nodeid__"
-];
-function isPage(mpInstance) {
-  return mpInstance.__nodeId__ === 0 || mpInstance.__nodeid__ === 0;
-}
-const instances = /* @__PURE__ */ Object.create(null);
-function initRelation(mpInstance, detail) {
-  const nodeId = hasOwn$1(mpInstance, "__nodeId__") ? mpInstance.__nodeId__ : mpInstance.__nodeid__;
-  const webviewId = mpInstance.__webviewId__ + "";
-  instances[webviewId + "_" + nodeId] = mpInstance.$vm;
-  mpInstance.triggerEvent("__l", {
-    vuePid: detail.vuePid,
-    nodeId,
-    webviewId
-  });
-}
-function handleLink({ detail: { vuePid, nodeId, webviewId } }) {
-  const vm = instances[webviewId + "_" + nodeId];
-  if (!vm) {
-    return;
-  }
-  let parentVm;
-  if (vuePid) {
-    parentVm = findVmByVueId(this.$vm, vuePid);
-  }
-  if (!parentVm) {
-    parentVm = this.$vm;
-  }
-  vm.$.parent = parentVm.$;
-  {
-    parentVm.$children.push(vm);
-    const parent = parentVm.$;
-    vm.$.provides = parent ? parent.provides : Object.create(parent.appContext.provides);
-    initInjections(vm);
-    initProvide(vm);
-  }
-  vm.$callCreatedHook();
-  if (vm.$options.inject) {
-    vm.$.update();
-  }
-  nextSetDataTick(this, () => {
-    vm.$callHook("mounted");
-    vm.$callHook(ON_READY);
-  });
-}
-function parse(componentOptions, { handleLink: handleLink2 }) {
-  componentOptions.methods.__l = handleLink2;
-}
-var parseComponentOptions = /* @__PURE__ */ Object.freeze({
-  __proto__: null,
-  handleLink,
-  initLifetimes: initLifetimes$1,
-  initRelation,
-  instances,
-  isPage,
-  mocks,
-  parse
-});
-function initLifetimes(lifetimesOptions) {
-  return extend(initLifetimes$1(lifetimesOptions), {
-    ready() {
-      if (this.$vm && lifetimesOptions.isPage(this)) {
-        if (this.pageinstance) {
-          this.__webviewId__ = this.pageinstance.__pageId__;
-        }
-        this.$vm.$callCreatedHook();
-        nextSetDataTick(this, () => {
-          this.$vm.$callHook("mounted");
-          this.$vm.$callHook(ON_READY);
-        });
-      } else {
-        this.is && console.warn(this.is + " is not ready");
-      }
-    },
-    detached() {
-      this.$vm && $destroyComponent(this.$vm);
-      const webviewId = this.__webviewId__;
-      webviewId && Object.keys(instances).forEach((key) => {
-        if (key.indexOf(webviewId + "_") === 0) {
-          delete instances[key];
-        }
-      });
-    }
-  });
-}
-var parsePageOptions = /* @__PURE__ */ Object.freeze({
-  __proto__: null,
-  handleLink,
-  initLifetimes,
-  initRelation,
-  isPage,
-  mocks,
-  parse
-});
-const createApp = initCreateApp();
-const createPage = initCreatePage(parsePageOptions);
-const createComponent = initCreateComponent(parseComponentOptions);
-const createSubpackageApp = initCreateSubpackageApp();
-tt.EventChannel = EventChannel;
-tt.createApp = global.createApp = createApp;
-tt.createPage = createPage;
-tt.createComponent = createComponent;
-tt.createSubpackageApp = global.createSubpackageApp = createSubpackageApp;
-var isVue2 = false;
-function set(target, key, val) {
-  if (Array.isArray(target)) {
-    target.length = Math.max(target.length, key);
-    target.splice(key, 1, val);
-    return val;
-  }
-  target[key] = val;
-  return val;
-}
-function del(target, key) {
-  if (Array.isArray(target)) {
-    target.splice(key, 1);
-    return;
-  }
-  delete target[key];
-}
-/*!
-  * pinia v2.0.33
-  * (c) 2023 Eduardo San Martin Morote
-  * @license MIT
-  */
-let activePinia;
-const setActivePinia = (pinia) => activePinia = pinia;
-const getActivePinia = () => getCurrentInstance() && inject$1(piniaSymbol) || activePinia;
-const piniaSymbol = Symbol("pinia");
-function isPlainObject(o2) {
-  return o2 && typeof o2 === "object" && Object.prototype.toString.call(o2) === "[object Object]" && typeof o2.toJSON !== "function";
-}
-var MutationType;
-(function(MutationType2) {
-  MutationType2["direct"] = "direct";
-  MutationType2["patchObject"] = "patch object";
-  MutationType2["patchFunction"] = "patch function";
-})(MutationType || (MutationType = {}));
-const IS_CLIENT = typeof window !== "undefined";
-const USE_DEVTOOLS = IS_CLIENT;
-const componentStateTypes = [];
-const getStoreType = (id2) => "🍍 " + id2;
-function registerPiniaDevtools(app, pinia) {
-}
-function addStoreToDevtools(app, store) {
-  if (!componentStateTypes.includes(getStoreType(store.$id))) {
-    componentStateTypes.push(getStoreType(store.$id));
-  }
-}
-function patchActionForGrouping(store, actionNames) {
-  const actions = actionNames.reduce((storeActions, actionName) => {
-    storeActions[actionName] = toRaw(store)[actionName];
-    return storeActions;
-  }, {});
-  for (const actionName in actions) {
-    store[actionName] = function() {
-      const trackedStore = new Proxy(store, {
-        get(...args) {
-          return Reflect.get(...args);
-        },
-        set(...args) {
-          return Reflect.set(...args);
-        }
-      });
-      return actions[actionName].apply(trackedStore, arguments);
-    };
-  }
-}
-function devtoolsPlugin({ app, store, options }) {
-  if (store.$id.startsWith("__hot:")) {
-    return;
-  }
-  if (options.state) {
-    store._isOptionsAPI = true;
-  }
-  if (typeof options.state === "function") {
-    patchActionForGrouping(
-      // @ts-expect-error: can cast the store...
-      store,
-      Object.keys(options.actions)
-    );
-    const originalHotUpdate = store._hotUpdate;
-    toRaw(store)._hotUpdate = function(newStore) {
-      originalHotUpdate.apply(this, arguments);
-      patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions));
-    };
-  }
-  addStoreToDevtools(
-    app,
-    // FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?
-    store
-  );
-}
-function createPinia() {
-  const scope = effectScope(true);
-  const state = scope.run(() => ref({}));
-  let _p = [];
-  let toBeInstalled = [];
-  const pinia = markRaw({
-    install(app) {
-      setActivePinia(pinia);
-      {
-        pinia._a = app;
-        app.provide(piniaSymbol, pinia);
-        app.config.globalProperties.$pinia = pinia;
-        toBeInstalled.forEach((plugin2) => _p.push(plugin2));
-        toBeInstalled = [];
-      }
-    },
-    use(plugin2) {
-      if (!this._a && !isVue2) {
-        toBeInstalled.push(plugin2);
-      } else {
-        _p.push(plugin2);
-      }
-      return this;
-    },
-    _p,
-    // it's actually undefined here
-    // @ts-expect-error
-    _a: null,
-    _e: scope,
-    _s: /* @__PURE__ */ new Map(),
-    state
-  });
-  if (USE_DEVTOOLS && typeof Proxy !== "undefined") {
-    pinia.use(devtoolsPlugin);
-  }
-  return pinia;
-}
-const isUseStore = (fn) => {
-  return typeof fn === "function" && typeof fn.$id === "string";
-};
-function patchObject(newState, oldState) {
-  for (const key in oldState) {
-    const subPatch = oldState[key];
-    if (!(key in newState)) {
-      continue;
-    }
-    const targetValue = newState[key];
-    if (isPlainObject(targetValue) && isPlainObject(subPatch) && !isRef(subPatch) && !isReactive(subPatch)) {
-      newState[key] = patchObject(targetValue, subPatch);
-    } else {
-      {
-        newState[key] = subPatch;
-      }
-    }
-  }
-  return newState;
-}
-function acceptHMRUpdate(initialUseStore, hot) {
-  return (newModule) => {
-    const pinia = hot.data.pinia || initialUseStore._pinia;
-    if (!pinia) {
-      return;
-    }
-    hot.data.pinia = pinia;
-    for (const exportName in newModule) {
-      const useStore = newModule[exportName];
-      if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {
-        const id2 = useStore.$id;
-        if (id2 !== initialUseStore.$id) {
-          console.warn(`The id of the store changed from "${initialUseStore.$id}" to "${id2}". Reloading.`);
-          return hot.invalidate();
-        }
-        const existingStore = pinia._s.get(id2);
-        if (!existingStore) {
-          console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);
-          return;
-        }
-        useStore(pinia, existingStore);
-      }
-    }
-  };
-}
-const noop = () => {
-};
-function addSubscription(subscriptions, callback, detached, onCleanup = noop) {
-  subscriptions.push(callback);
-  const removeSubscription = () => {
-    const idx = subscriptions.indexOf(callback);
-    if (idx > -1) {
-      subscriptions.splice(idx, 1);
-      onCleanup();
-    }
-  };
-  if (!detached && getCurrentScope()) {
-    onScopeDispose(removeSubscription);
-  }
-  return removeSubscription;
-}
-function triggerSubscriptions(subscriptions, ...args) {
-  subscriptions.slice().forEach((callback) => {
-    callback(...args);
-  });
-}
-function mergeReactiveObjects(target, patchToApply) {
-  if (target instanceof Map && patchToApply instanceof Map) {
-    patchToApply.forEach((value, key) => target.set(key, value));
-  }
-  if (target instanceof Set && patchToApply instanceof Set) {
-    patchToApply.forEach(target.add, target);
-  }
-  for (const key in patchToApply) {
-    if (!patchToApply.hasOwnProperty(key))
-      continue;
-    const subPatch = patchToApply[key];
-    const targetValue = target[key];
-    if (isPlainObject(targetValue) && isPlainObject(subPatch) && target.hasOwnProperty(key) && !isRef(subPatch) && !isReactive(subPatch)) {
-      target[key] = mergeReactiveObjects(targetValue, subPatch);
-    } else {
-      target[key] = subPatch;
-    }
-  }
-  return target;
-}
-const skipHydrateSymbol = Symbol("pinia:skipHydration");
-function skipHydrate(obj) {
-  return Object.defineProperty(obj, skipHydrateSymbol, {});
-}
-function shouldHydrate(obj) {
-  return !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);
-}
-const { assign } = Object;
-function isComputed(o2) {
-  return !!(isRef(o2) && o2.effect);
-}
-function createOptionsStore(id2, options, pinia, hot) {
-  const { state, actions, getters } = options;
-  const initialState = pinia.state.value[id2];
-  let store;
-  function setup() {
-    if (!initialState && !hot) {
-      {
-        pinia.state.value[id2] = state ? state() : {};
-      }
-    }
-    const localState = hot ? (
-      // use ref() to unwrap refs inside state TODO: check if this is still necessary
-      toRefs(ref(state ? state() : {}).value)
-    ) : toRefs(pinia.state.value[id2]);
-    return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {
-      if (name in localState) {
-        console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with "${name}" in store "${id2}".`);
-      }
-      computedGetters[name] = markRaw(computed(() => {
-        setActivePinia(pinia);
-        const store2 = pinia._s.get(id2);
-        return getters[name].call(store2, store2);
-      }));
-      return computedGetters;
-    }, {}));
-  }
-  store = createSetupStore(id2, setup, options, pinia, hot, true);
-  return store;
-}
-function createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {
-  let scope;
-  const optionsForPlugin = assign({ actions: {} }, options);
-  if (!pinia._e.active) {
-    throw new Error("Pinia destroyed");
-  }
-  const $subscribeOptions = {
-    deep: true
-    // flush: 'post',
-  };
-  {
-    $subscribeOptions.onTrigger = (event) => {
-      if (isListening) {
-        debuggerEvents = event;
-      } else if (isListening == false && !store._hotUpdating) {
-        if (Array.isArray(debuggerEvents)) {
-          debuggerEvents.push(event);
-        } else {
-          console.error("🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.");
-        }
-      }
-    };
-  }
-  let isListening;
-  let isSyncListening;
-  let subscriptions = markRaw([]);
-  let actionSubscriptions = markRaw([]);
-  let debuggerEvents;
-  const initialState = pinia.state.value[$id];
-  if (!isOptionsStore && !initialState && !hot) {
-    {
-      pinia.state.value[$id] = {};
-    }
-  }
-  const hotState = ref({});
-  let activeListener;
-  function $patch(partialStateOrMutator) {
-    let subscriptionMutation;
-    isListening = isSyncListening = false;
-    {
-      debuggerEvents = [];
-    }
-    if (typeof partialStateOrMutator === "function") {
-      partialStateOrMutator(pinia.state.value[$id]);
-      subscriptionMutation = {
-        type: MutationType.patchFunction,
-        storeId: $id,
-        events: debuggerEvents
-      };
-    } else {
-      mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);
-      subscriptionMutation = {
-        type: MutationType.patchObject,
-        payload: partialStateOrMutator,
-        storeId: $id,
-        events: debuggerEvents
-      };
-    }
-    const myListenerId = activeListener = Symbol();
-    nextTick$1().then(() => {
-      if (activeListener === myListenerId) {
-        isListening = true;
-      }
-    });
-    isSyncListening = true;
-    triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);
-  }
-  const $reset = isOptionsStore ? function $reset2() {
-    const { state } = options;
-    const newState = state ? state() : {};
-    this.$patch(($state) => {
-      assign($state, newState);
-    });
-  } : (
-    /* istanbul ignore next */
-    () => {
-      throw new Error(`🍍: Store "${$id}" is built using the setup syntax and does not implement $reset().`);
-    }
-  );
-  function $dispose() {
-    scope.stop();
-    subscriptions = [];
-    actionSubscriptions = [];
-    pinia._s.delete($id);
-  }
-  function wrapAction(name, action) {
-    return function() {
-      setActivePinia(pinia);
-      const args = Array.from(arguments);
-      const afterCallbackList = [];
-      const onErrorCallbackList = [];
-      function after(callback) {
-        afterCallbackList.push(callback);
-      }
-      function onError(callback) {
-        onErrorCallbackList.push(callback);
-      }
-      triggerSubscriptions(actionSubscriptions, {
-        args,
-        name,
-        store,
-        after,
-        onError
-      });
-      let ret;
-      try {
-        ret = action.apply(this && this.$id === $id ? this : store, args);
-      } catch (error) {
-        triggerSubscriptions(onErrorCallbackList, error);
-        throw error;
-      }
-      if (ret instanceof Promise) {
-        return ret.then((value) => {
-          triggerSubscriptions(afterCallbackList, value);
-          return value;
-        }).catch((error) => {
-          triggerSubscriptions(onErrorCallbackList, error);
-          return Promise.reject(error);
-        });
-      }
-      triggerSubscriptions(afterCallbackList, ret);
-      return ret;
-    };
-  }
-  const _hmrPayload = /* @__PURE__ */ markRaw({
-    actions: {},
-    getters: {},
-    state: [],
-    hotState
-  });
-  const partialStore = {
-    _p: pinia,
-    // _s: scope,
-    $id,
-    $onAction: addSubscription.bind(null, actionSubscriptions),
-    $patch,
-    $reset,
-    $subscribe(callback, options2 = {}) {
-      const removeSubscription = addSubscription(subscriptions, callback, options2.detached, () => stopWatcher());
-      const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {
-        if (options2.flush === "sync" ? isSyncListening : isListening) {
-          callback({
-            storeId: $id,
-            type: MutationType.direct,
-            events: debuggerEvents
-          }, state);
-        }
-      }, assign({}, $subscribeOptions, options2)));
-      return removeSubscription;
-    },
-    $dispose
-  };
-  const store = reactive(
-    assign(
-      {
-        _hmrPayload,
-        _customProperties: markRaw(/* @__PURE__ */ new Set())
-        // devtools custom properties
-      },
-      partialStore
-      // must be added later
-      // setupStore
-    )
-  );
-  pinia._s.set($id, store);
-  const setupStore = pinia._e.run(() => {
-    scope = effectScope();
-    return scope.run(() => setup());
-  });
-  for (const key in setupStore) {
-    const prop = setupStore[key];
-    if (isRef(prop) && !isComputed(prop) || isReactive(prop)) {
-      if (hot) {
-        set(hotState.value, key, toRef(setupStore, key));
-      } else if (!isOptionsStore) {
-        if (initialState && shouldHydrate(prop)) {
-          if (isRef(prop)) {
-            prop.value = initialState[key];
-          } else {
-            mergeReactiveObjects(prop, initialState[key]);
-          }
-        }
-        {
-          pinia.state.value[$id][key] = prop;
-        }
-      }
-      {
-        _hmrPayload.state.push(key);
-      }
-    } else if (typeof prop === "function") {
-      const actionValue = hot ? prop : wrapAction(key, prop);
-      {
-        setupStore[key] = actionValue;
-      }
-      {
-        _hmrPayload.actions[key] = prop;
-      }
-      optionsForPlugin.actions[key] = prop;
-    } else {
-      if (isComputed(prop)) {
-        _hmrPayload.getters[key] = isOptionsStore ? (
-          // @ts-expect-error
-          options.getters[key]
-        ) : prop;
-        if (IS_CLIENT) {
-          const getters = setupStore._getters || // @ts-expect-error: same
-          (setupStore._getters = markRaw([]));
-          getters.push(key);
-        }
-      }
-    }
-  }
-  {
-    assign(store, setupStore);
-    assign(toRaw(store), setupStore);
-  }
-  Object.defineProperty(store, "$state", {
-    get: () => hot ? hotState.value : pinia.state.value[$id],
-    set: (state) => {
-      if (hot) {
-        throw new Error("cannot set hotState");
-      }
-      $patch(($state) => {
-        assign($state, state);
-      });
-    }
-  });
-  {
-    store._hotUpdate = markRaw((newStore) => {
-      store._hotUpdating = true;
-      newStore._hmrPayload.state.forEach((stateKey) => {
-        if (stateKey in store.$state) {
-          const newStateTarget = newStore.$state[stateKey];
-          const oldStateSource = store.$state[stateKey];
-          if (typeof newStateTarget === "object" && isPlainObject(newStateTarget) && isPlainObject(oldStateSource)) {
-            patchObject(newStateTarget, oldStateSource);
-          } else {
-            newStore.$state[stateKey] = oldStateSource;
-          }
-        }
-        set(store, stateKey, toRef(newStore.$state, stateKey));
-      });
-      Object.keys(store.$state).forEach((stateKey) => {
-        if (!(stateKey in newStore.$state)) {
-          del(store, stateKey);
-        }
-      });
-      isListening = false;
-      isSyncListening = false;
-      pinia.state.value[$id] = toRef(newStore._hmrPayload, "hotState");
-      isSyncListening = true;
-      nextTick$1().then(() => {
-        isListening = true;
-      });
-      for (const actionName in newStore._hmrPayload.actions) {
-        const action = newStore[actionName];
-        set(store, actionName, wrapAction(actionName, action));
-      }
-      for (const getterName in newStore._hmrPayload.getters) {
-        const getter = newStore._hmrPayload.getters[getterName];
-        const getterValue = isOptionsStore ? (
-          // special handling of options api
-          computed(() => {
-            setActivePinia(pinia);
-            return getter.call(store, store);
-          })
-        ) : getter;
-        set(store, getterName, getterValue);
-      }
-      Object.keys(store._hmrPayload.getters).forEach((key) => {
-        if (!(key in newStore._hmrPayload.getters)) {
-          del(store, key);
-        }
-      });
-      Object.keys(store._hmrPayload.actions).forEach((key) => {
-        if (!(key in newStore._hmrPayload.actions)) {
-          del(store, key);
-        }
-      });
-      store._hmrPayload = newStore._hmrPayload;
-      store._getters = newStore._getters;
-      store._hotUpdating = false;
-    });
-  }
-  if (USE_DEVTOOLS) {
-    const nonEnumerable = {
-      writable: true,
-      configurable: true,
-      // avoid warning on devtools trying to display this property
-      enumerable: false
-    };
-    ["_p", "_hmrPayload", "_getters", "_customProperties"].forEach((p2) => {
-      Object.defineProperty(store, p2, assign({ value: store[p2] }, nonEnumerable));
-    });
-  }
-  pinia._p.forEach((extender) => {
-    if (USE_DEVTOOLS) {
-      const extensions = scope.run(() => extender({
-        store,
-        app: pinia._a,
-        pinia,
-        options: optionsForPlugin
-      }));
-      Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));
-      assign(store, extensions);
-    } else {
-      assign(store, scope.run(() => extender({
-        store,
-        app: pinia._a,
-        pinia,
-        options: optionsForPlugin
-      })));
-    }
-  });
-  if (store.$state && typeof store.$state === "object" && typeof store.$state.constructor === "function" && !store.$state.constructor.toString().includes("[native code]")) {
-    console.warn(`[🍍]: The "state" must be a plain object. It cannot be
-	state: () => new MyClass()
-Found in store "${store.$id}".`);
-  }
-  if (initialState && isOptionsStore && options.hydrate) {
-    options.hydrate(store.$state, initialState);
-  }
-  isListening = true;
-  isSyncListening = true;
-  return store;
-}
-function defineStore(idOrOptions, setup, setupOptions) {
-  let id2;
-  let options;
-  const isSetupStore = typeof setup === "function";
-  if (typeof idOrOptions === "string") {
-    id2 = idOrOptions;
-    options = isSetupStore ? setupOptions : setup;
-  } else {
-    options = idOrOptions;
-    id2 = idOrOptions.id;
-  }
-  function useStore(pinia, hot) {
-    const currentInstance2 = getCurrentInstance();
-    pinia = // in test mode, ignore the argument provided as we can always retrieve a
-    // pinia instance with getActivePinia()
-    pinia || currentInstance2 && inject$1(piniaSymbol, null);
-    if (pinia)
-      setActivePinia(pinia);
-    if (!activePinia) {
-      throw new Error(`[🍍]: getActivePinia was called with no active Pinia. Did you forget to install pinia?
-	const pinia = createPinia()
-	app.use(pinia)
-This will fail in production.`);
-    }
-    pinia = activePinia;
-    if (!pinia._s.has(id2)) {
-      if (isSetupStore) {
-        createSetupStore(id2, setup, options, pinia);
-      } else {
-        createOptionsStore(id2, options, pinia);
-      }
-      {
-        useStore._pinia = pinia;
-      }
-    }
-    const store = pinia._s.get(id2);
-    if (hot) {
-      const hotId = "__hot:" + id2;
-      const newStore = isSetupStore ? createSetupStore(hotId, setup, options, pinia, true) : createOptionsStore(hotId, assign({}, options), pinia, true);
-      hot._hotUpdate(newStore);
-      delete pinia.state.value[hotId];
-      pinia._s.delete(hotId);
-    }
-    if (IS_CLIENT && currentInstance2 && currentInstance2.proxy && // avoid adding stores that are just built for hot module replacement
-    !hot) {
-      const vm = currentInstance2.proxy;
-      const cache = "_pStores" in vm ? vm._pStores : vm._pStores = {};
-      cache[id2] = store;
-    }
-    return store;
-  }
-  useStore.$id = id2;
-  return useStore;
-}
-let mapStoreSuffix = "Store";
-function setMapStoreSuffix(suffix) {
-  mapStoreSuffix = suffix;
-}
-function mapStores(...stores) {
-  if (Array.isArray(stores[0])) {
-    console.warn(`[🍍]: Directly pass all stores to "mapStores()" without putting them in an array:
-Replace
-	mapStores([useAuthStore, useCartStore])
-with
-	mapStores(useAuthStore, useCartStore)
-This will fail in production if not fixed.`);
-    stores = stores[0];
-  }
-  return stores.reduce((reduced, useStore) => {
-    reduced[useStore.$id + mapStoreSuffix] = function() {
-      return useStore(this.$pinia);
-    };
-    return reduced;
-  }, {});
-}
-function mapState(useStore, keysOrMapper) {
-  return Array.isArray(keysOrMapper) ? keysOrMapper.reduce((reduced, key) => {
-    reduced[key] = function() {
-      return useStore(this.$pinia)[key];
-    };
-    return reduced;
-  }, {}) : Object.keys(keysOrMapper).reduce((reduced, key) => {
-    reduced[key] = function() {
-      const store = useStore(this.$pinia);
-      const storeKey = keysOrMapper[key];
-      return typeof storeKey === "function" ? storeKey.call(this, store) : store[storeKey];
-    };
-    return reduced;
-  }, {});
-}
-const mapGetters = mapState;
-function mapActions(useStore, keysOrMapper) {
-  return Array.isArray(keysOrMapper) ? keysOrMapper.reduce((reduced, key) => {
-    reduced[key] = function(...args) {
-      return useStore(this.$pinia)[key](...args);
-    };
-    return reduced;
-  }, {}) : Object.keys(keysOrMapper).reduce((reduced, key) => {
-    reduced[key] = function(...args) {
-      return useStore(this.$pinia)[keysOrMapper[key]](...args);
-    };
-    return reduced;
-  }, {});
-}
-function mapWritableState(useStore, keysOrMapper) {
-  return Array.isArray(keysOrMapper) ? keysOrMapper.reduce((reduced, key) => {
-    reduced[key] = {
-      get() {
-        return useStore(this.$pinia)[key];
-      },
-      set(value) {
-        return useStore(this.$pinia)[key] = value;
-      }
-    };
-    return reduced;
-  }, {}) : Object.keys(keysOrMapper).reduce((reduced, key) => {
-    reduced[key] = {
-      get() {
-        return useStore(this.$pinia)[keysOrMapper[key]];
-      },
-      set(value) {
-        return useStore(this.$pinia)[keysOrMapper[key]] = value;
-      }
-    };
-    return reduced;
-  }, {});
-}
-function storeToRefs(store) {
-  {
-    store = toRaw(store);
-    const refs = {};
-    for (const key in store) {
-      const value = store[key];
-      if (isRef(value) || isReactive(value)) {
-        refs[key] = // ---
-        toRef(store, key);
-      }
-    }
-    return refs;
-  }
-}
-const PiniaVuePlugin = function(_Vue) {
-  _Vue.mixin({
-    beforeCreate() {
-      const options = this.$options;
-      if (options.pinia) {
-        const pinia = options.pinia;
-        if (!this._provided) {
-          const provideCache = {};
-          Object.defineProperty(this, "_provided", {
-            get: () => provideCache,
-            set: (v) => Object.assign(provideCache, v)
-          });
-        }
-        this._provided[piniaSymbol] = pinia;
-        if (!this.$pinia) {
-          this.$pinia = pinia;
-        }
-        pinia._a = this;
-        if (IS_CLIENT) {
-          setActivePinia(pinia);
-        }
-        if (USE_DEVTOOLS) {
-          registerPiniaDevtools(pinia._a);
-        }
-      } else if (!this.$pinia && options.parent && options.parent.$pinia) {
-        this.$pinia = options.parent.$pinia;
-      }
-    },
-    destroyed() {
-      delete this._pStores;
-    }
-  });
-};
-const Pinia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
-  __proto__: null,
-  get MutationType() {
-    return MutationType;
-  },
-  PiniaVuePlugin,
-  acceptHMRUpdate,
-  createPinia,
-  defineStore,
-  getActivePinia,
-  mapActions,
-  mapGetters,
-  mapState,
-  mapStores,
-  mapWritableState,
-  setActivePinia,
-  setMapStoreSuffix,
-  skipHydrate,
-  storeToRefs
-}, Symbol.toStringTag, { value: "Module" }));
-const createHook = (lifecycle) => (hook, target = getCurrentInstance()) => {
-  !isInSSRComponentSetup && injectHook(lifecycle, hook, target);
-};
-const onLoad = /* @__PURE__ */ createHook(ON_LOAD);
-const onReachBottom = /* @__PURE__ */ createHook(ON_REACH_BOTTOM);
-const onPullDownRefresh = /* @__PURE__ */ createHook(ON_PULL_DOWN_REFRESH);
-exports.Pinia = Pinia;
-exports._export_sfc = _export_sfc;
-exports.createPinia = createPinia;
-exports.createSSRApp = createSSRApp;
-exports.defineComponent = defineComponent;
-exports.defineStore = defineStore;
-exports.e = e;
-exports.f = f;
-exports.index = index;
-exports.initVueI18n = initVueI18n;
-exports.isRef = isRef;
-exports.n = n;
-exports.o = o;
-exports.onLoad = onLoad;
-exports.onMounted = onMounted;
-exports.onPullDownRefresh = onPullDownRefresh;
-exports.onReachBottom = onReachBottom;
-exports.onUnmounted = onUnmounted;
-exports.p = p;
-exports.reactive = reactive;
-exports.ref = ref;
-exports.resolveComponent = resolveComponent;
-exports.s = s;
-exports.sr = sr;
-exports.storeToRefs = storeToRefs;
-exports.t = t;
-exports.unref = unref;
-exports.watch = watch;

+ 0 - 45
xs-app/unpackage/dist/dev/mp-toutiao/components/public/Message.js

@@ -1,45 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-if (!Array) {
-  const _easycom_uni_popup_message2 = common_vendor.resolveComponent("uni-popup-message");
-  const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
-  (_easycom_uni_popup_message2 + _easycom_uni_popup2)();
-}
-const _easycom_uni_popup_message = () => "../../uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.js";
-const _easycom_uni_popup = () => "../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
-if (!Math) {
-  (_easycom_uni_popup_message + _easycom_uni_popup)();
-}
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "Message",
-  props: ["messageText"],
-  emits: ["onFinish"],
-  setup(__props, { emit: emits }) {
-    let msgType = common_vendor.ref("warn");
-    let duration = common_vendor.ref(2e3);
-    const message = common_vendor.ref(null);
-    common_vendor.onMounted(() => {
-      message.value.open();
-    });
-    setTimeout(() => {
-      emits("onFinish");
-    }, duration.value);
-    return (_ctx, _cache) => {
-      return {
-        a: common_vendor.p({
-          type: common_vendor.unref(msgType),
-          message: __props.messageText,
-          duration: common_vendor.unref(duration)
-        }),
-        b: common_vendor.sr(message, "0a64f42e-0", {
-          "k": "message"
-        }),
-        c: common_vendor.p({
-          type: "message"
-        })
-      };
-    };
-  }
-});
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/components/public/Message.vue"]]);
-tt.createComponent(Component);

+ 0 - 58
xs-app/unpackage/dist/dev/mp-toutiao/components/public/alertDialog.js

@@ -1,58 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const framework_log = require("../../framework/log.js");
-require("../../config/config.js");
-if (!Array) {
-  const _easycom_uni_popup_dialog2 = common_vendor.resolveComponent("uni-popup-dialog");
-  const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
-  (_easycom_uni_popup_dialog2 + _easycom_uni_popup2)();
-}
-const _easycom_uni_popup_dialog = () => "../../uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js";
-const _easycom_uni_popup = () => "../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
-if (!Math) {
-  (_easycom_uni_popup_dialog + _easycom_uni_popup)();
-}
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "alertDialog",
-  props: ["titleName", "contentText"],
-  emits: ["dialogConfirm", "dialogClose"],
-  setup(__props, { emit }) {
-    const alertDialog = common_vendor.ref(null);
-    let msgType = common_vendor.ref("warn");
-    function dialogClose() {
-      emit("dialogClose");
-      framework_log.log.Debug("点击关闭");
-    }
-    function dialogConfirm() {
-      framework_log.log.Debug("点击确认");
-      emit("dialogConfirm");
-    }
-    common_vendor.onMounted(() => {
-      framework_log.log.Debug("alertDialog");
-      alertDialog.value.open();
-    });
-    return (_ctx, _cache) => {
-      return {
-        a: common_vendor.o(dialogConfirm),
-        b: common_vendor.o(dialogClose),
-        c: common_vendor.p({
-          type: {
-            msgType: common_vendor.unref(msgType)
-          },
-          cancelText: "关闭",
-          confirmText: "同意",
-          title: __props.titleName,
-          content: __props.contentText
-        }),
-        d: common_vendor.sr(alertDialog, "577ff40b-0", {
-          "k": "alertDialog"
-        }),
-        e: common_vendor.p({
-          type: "dialog"
-        })
-      };
-    };
-  }
-});
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/components/public/alertDialog.vue"]]);
-tt.createComponent(Component);

+ 0 - 27
xs-app/unpackage/dist/dev/mp-toutiao/components/read/readPage.js

@@ -1,27 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const stores_readSetting = require("../../stores/readSetting.js");
-const config_config = require("../../config/config.js");
-require("../../data/data.js");
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "readPage",
-  props: ["text_content"],
-  setup(__props, { expose }) {
-    let read_setting_data = stores_readSetting.ReadSetting().getReadSetting();
-    function showTopLoading() {
-    }
-    function showBottomLoading() {
-    }
-    expose({ showBottomLoading, showTopLoading });
-    return (_ctx, _cache) => {
-      return {
-        a: __props.text_content,
-        b: `${common_vendor.unref(config_config.config).read_config.fontSizeList[common_vendor.unref(read_setting_data).fontSizeIndex]}px`,
-        c: `${common_vendor.unref(config_config.config).read_config.lineHeight * common_vendor.unref(config_config.config).read_config.fontSizeList[common_vendor.unref(read_setting_data).fontSizeIndex]}px`,
-        d: `${common_vendor.unref(config_config.config).read_config.colorList[common_vendor.unref(read_setting_data).colorBgIndex]}`
-      };
-    };
-  }
-});
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-2dec9c91"], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/components/read/readPage.vue"]]);
-tt.createComponent(Component);

+ 0 - 47
xs-app/unpackage/dist/dev/mp-toutiao/config/config.js

@@ -1,47 +0,0 @@
-"use strict";
-const _config = class {
-};
-let config = _config;
-config.Platform = {
-  WEIXIN: "WEIXIN",
-  TOUTIAO: "TOUTIAO",
-  H5: "H5"
-};
-config.LOG_OPEN = true;
-config.isTest = true;
-config.stores_key = {
-  USER_DATA: "USER_DATA"
-};
-config.URL_DEBUG = {
-  Dynamic: "http://",
-  Static: "http://"
-};
-config.URL_RELEASE = {
-  Dynamic: "http://",
-  Static: "http://"
-};
-config.url_addr = {
-  Dynamic: _config.isTest ? _config.URL_DEBUG.Dynamic : _config.URL_RELEASE.Dynamic,
-  //动态接口
-  Static: _config.isTest ? _config.URL_DEBUG.Static : _config.URL_RELEASE.Static
-  //静态接口
-};
-config.url_confg = {
-  /**
-   * 动态
-   */
-  Dynamic: {},
-  /**
-   * 静态
-   */
-  Static: {},
-  StatesCode: {
-    SUCCESS: 1e4
-  }
-};
-config.read_config = {
-  colorList: ["#000", "#666"],
-  lineHeight: 1.8,
-  fontSizeList: [12, 14, 16, 18, 20, 22, 24]
-};
-exports.config = config;

+ 0 - 53
xs-app/unpackage/dist/dev/mp-toutiao/framework/tools.js

@@ -1,53 +0,0 @@
-"use strict";
-const common_vendor = require("../common/vendor.js");
-const config_config = require("../config/config.js");
-const framework_http = require("./http.js");
-const framework_log = require("./log.js");
-const _tools = class {
-  static initPlatform() {
-    _tools.platform = config_config.config.Platform.TOUTIAO;
-    framework_log.log.Debug("当前运行平台:", _tools.platform);
-  }
-  static getCurPlatform() {
-    return _tools.platform;
-  }
-  static setNavigationBar() {
-    if (_tools.getCurPlatform() == config_config.config.Platform.TOUTIAO) {
-      common_vendor.index.setNavigationBarTitle({
-        title: "卿卿小屋"
-      });
-    }
-  }
-  static getChapterList(chapter_path, cb) {
-    framework_http.http.StaticRequest(chapter_path, (err, data) => {
-      if (err) {
-        return;
-      }
-      cb(data);
-    });
-  }
-  static getCurChapterTxt(base_path, chapter_id, emspWidth, cb) {
-    let url = `${base_path}${chapter_id}.txt`;
-    framework_http.http.getStaticText(url, (err, data) => {
-      if (err) {
-        framework_log.log.Error(err);
-        return;
-      }
-      cb(_tools.autoParagraph(data, emspWidth));
-    });
-  }
-  static getChapterReadChapterIdByData(chapter_data) {
-    if (chapter_data.cur_read_chapter_id == void 0 || chapter_data.cur_read_chapter_id == 0 || chapter_data.cur_read_chapter_id == null) {
-      return 1;
-    }
-  }
-  static autoParagraph(text, emspWidth) {
-    const emspStyle = `style="margin-left: ${emspWidth}px;"`;
-    const emsp_html = `<span ${emspStyle}></span>`;
-    const character = `<br><br>${emsp_html}`;
-    return character + text.replace(/\n\s*/g, character);
-  }
-};
-let tools = _tools;
-tools.platform = config_config.config.Platform.H5;
-exports.tools = tools;

+ 0 - 50
xs-app/unpackage/dist/dev/mp-toutiao/pages/bookshelf/bookshelf.js

@@ -1,50 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const framework_log = require("../../framework/log.js");
-const framework_http = require("../../framework/http.js");
-const config_config = require("../../config/config.js");
-const stores_userStatusManager = require("../../stores/userStatusManager.js");
-require("../../stores/userDataManager.js");
-require("../../data/data.js");
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "bookshelf",
-  setup(__props) {
-    function onBtnClick() {
-      jumpRead();
-    }
-    function onClickItem(item) {
-      stores_userStatusManager.UserStatus().updateUserSlectBook(item);
-      common_vendor.index.reLaunch({
-        url: "/pages/readbook/read"
-      });
-    }
-    let book_list = common_vendor.ref();
-    function jumpRead() {
-      framework_http.http.StaticRequest("https://static.hainanmlwl.com/test_books/book_list.json", (err, data) => {
-        if (err) {
-          return;
-        }
-        framework_log.log.Debug("data.code", typeof config_config.config.url_confg.StatesCode.SUCCESS);
-        if (data.code == config_config.config.url_confg.StatesCode.SUCCESS) {
-          framework_log.log.Debug("book_list", data);
-          book_list.value = data.content;
-        }
-      });
-    }
-    return (_ctx, _cache) => {
-      return {
-        a: common_vendor.o(onBtnClick),
-        b: common_vendor.f(common_vendor.unref(book_list), (item, k0, i0) => {
-          return {
-            a: common_vendor.t(item.book_name),
-            b: item.book_cover,
-            c: common_vendor.o(($event) => onClickItem(item)),
-            d: item.book_id
-          };
-        })
-      };
-    };
-  }
-});
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/pages/bookshelf/bookshelf.vue"]]);
-tt.createPage(MiniProgramPage);

+ 0 - 57
xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.js

@@ -1,57 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const framework_util = require("../../framework/util.js");
-const framework_tools = require("../../framework/tools.js");
-require("../../config/config.js");
-require("../../framework/log.js");
-require("../../framework/http.js");
-require("../../stores/userDataManager.js");
-require("../../data/data.js");
-if (!Math) {
-  (templateBook3 + templateBookList)();
-}
-const templateBook3 = () => "./template/template-book-3.js";
-const templateBookList = () => "./template/template-book-list.js";
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "bookstore",
-  setup(__props) {
-    let book_3_data_list = common_vendor.ref([]);
-    var bool = true;
-    common_vendor.onLoad((options) => {
-      console.log("bookstore-options=", options);
-      framework_tools.tools.setNavigationBar();
-      requestData(bool);
-    });
-    function requestData(is) {
-      if (is) {
-        book_3_data_list.value = ["4", "5", "6"];
-      } else {
-        book_3_data_list.value = ["1", "1", "1"];
-      }
-    }
-    function onClickTest() {
-      framework_util.util.showLoading();
-      setTimeout(() => {
-        framework_util.util.hideLoading();
-        bool = !bool;
-        requestData(bool);
-      }, 200);
-    }
-    function onClickNav() {
-      common_vendor.index.navigateTo({
-        url: "/pages/search/search?id=123"
-      });
-    }
-    return (_ctx, _cache) => {
-      return {
-        a: common_vendor.o(onClickTest),
-        b: common_vendor.o(onClickNav),
-        c: common_vendor.p({
-          dataList: common_vendor.unref(book_3_data_list)
-        })
-      };
-    };
-  }
-});
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/pages/bookstore/bookstore.vue"]]);
-tt.createPage(MiniProgramPage);

+ 0 - 7
xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.json

@@ -1,7 +0,0 @@
-{
-  "navigationBarTitleText": "书城",
-  "usingComponents": {
-    "template-book3": "./template/template-book-3",
-    "template-book-list": "./template/template-book-list"
-  }
-}

+ 0 - 1
xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.ttml

@@ -1 +0,0 @@
-<view class="content"><view class="item_demo" bindtap="{{a}}"> 测试更换数据 </view><view class="item_demo" bindtap="{{b}}">跳转</view><view class="container"><template-book3 tt:if="{{c}}" u-i="2e94a22c-0" bind:__l="__l" u-p="{{c}}"></template-book3><template-book-list u-i="2e94a22c-1" bind:__l="__l"></template-book-list></view></view>

+ 0 - 43
xs-app/unpackage/dist/dev/mp-toutiao/pages/bookstore/bookstore.ttss

@@ -1,43 +0,0 @@
-/**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
-/**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
-/* 颜色变量 */
-/* 行为相关颜色 */
-/* 文字基本颜色 */
-/* 背景颜色 */
-/* 边框颜色 */
-/* 尺寸变量 */
-/* 文字尺寸 */
-/* 图片尺寸 */
-/* Border Radius */
-/* 水平间距 */
-/* 垂直间距 */
-/* 透明度 */
-/* 文章场景相关 */
-.content {
-  display: flex;
-  flex-direction: column;
-  width: 100%;
-}
-.content .container {
-  display: flex;
-  flex-direction: column;
-}
-.item_demo {
-  display: flex;
-  margin-top: 30rpx;
-  height: 100rpx;
-  font-size: 30px;
-  background-color: red;
-  justify-content: center;
-  align-items: center;
-}

+ 0 - 8
xs-app/unpackage/dist/dev/mp-toutiao/pages/mine/mine.js

@@ -1,8 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const _sfc_main = {};
-function _sfc_render(_ctx, _cache) {
-  return {};
-}
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/pages/mine/mine.vue"]]);
-tt.createPage(MiniProgramPage);

+ 0 - 91
xs-app/unpackage/dist/dev/mp-toutiao/pages/readbook/read.js

@@ -1,91 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const framework_tools = require("../../framework/tools.js");
-const stores_userStatusManager = require("../../stores/userStatusManager.js");
-require("../../config/config.js");
-require("../../framework/http.js");
-require("../../stores/userDataManager.js");
-require("../../data/data.js");
-require("../../framework/log.js");
-if (!Math) {
-  readPage();
-}
-const readPage = () => "../../components/read/readPage.js";
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "read",
-  setup(__props) {
-    const readPages = common_vendor.ref(null);
-    let book_data = stores_userStatusManager.UserStatus().getUserSlectBook();
-    let cur_read_chapter_id = common_vendor.ref(0);
-    let fontSize = common_vendor.ref(18);
-    common_vendor.ref(1.8);
-    common_vendor.ref(["#000", "#666"]);
-    if (book_data != null) {
-      initView();
-    }
-    let book_text_list = common_vendor.ref([]);
-    function initView() {
-      cur_read_chapter_id.value = framework_tools.tools.getChapterReadChapterIdByData(book_data);
-      framework_tools.tools.getChapterList(book_data.chapter_path, (chapter_ls) => {
-        draw();
-      });
-    }
-    function draw() {
-      if (cur_read_chapter_id.value != 0) {
-        framework_tools.tools.getCurChapterTxt(book_data.base_path, cur_read_chapter_id.value, fontSize.value * 2, (text) => {
-          book_text_list.value.push(text);
-        });
-      }
-    }
-    function lower() {
-      cur_read_chapter_id.value += 1;
-      draw();
-    }
-    function onClickView() {
-    }
-    function hideSetting() {
-    }
-    common_vendor.onPullDownRefresh(async () => {
-      showTopLoadingStatus();
-    });
-    common_vendor.onReachBottom(async () => {
-      showBottomLoadingStatus();
-    });
-    function showBottomLoadingStatus() {
-      readPages.value.find((child, index) => {
-        if (index == book_text_list.value.length - 1) {
-          child.showBottomLoading();
-          lower();
-        }
-      });
-    }
-    function showTopLoadingStatus() {
-      readPages.value.find((child, index) => {
-        if (index == 0) {
-          child.showTopLoading();
-        }
-      });
-    }
-    return (_ctx, _cache) => {
-      return {
-        a: common_vendor.f(common_vendor.unref(book_text_list), (text, index, i0) => {
-          return {
-            a: common_vendor.sr(readPages, "509fbf6f-0-" + i0, {
-              "k": "readPages",
-              "f": 1
-            }),
-            b: index,
-            c: "509fbf6f-0-" + i0,
-            d: common_vendor.p({
-              text_content: text
-            })
-          };
-        }),
-        b: common_vendor.o(onClickView),
-        c: common_vendor.o(hideSetting)
-      };
-    };
-  }
-});
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/pages/readbook/read.vue"]]);
-tt.createPage(MiniProgramPage);

+ 0 - 100
xs-app/unpackage/dist/dev/mp-toutiao/pages/test/index.js

@@ -1,100 +0,0 @@
-"use strict";
-const common_vendor = require("../../common/vendor.js");
-const stores_userDataManager = require("../../stores/userDataManager.js");
-const data_data = require("../../data/data.js");
-const framework_util = require("../../framework/util.js");
-const framework_log = require("../../framework/log.js");
-const framework_http = require("../../framework/http.js");
-const config_config = require("../../config/config.js");
-require("../../framework/tools.js");
-if (!Math) {
-  (alertDialog + MessageVue)();
-}
-const MessageVue = () => "../../components/public/Message.js";
-const alertDialog = () => "../../components/public/alertDialog.js";
-const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
-  __name: "index",
-  setup(__props) {
-    let udata = new data_data.user_data();
-    udata.token = "123";
-    udata.user_id = "1";
-    udata.user_name = "大靓仔";
-    let tip_message = common_vendor.ref("");
-    stores_userDataManager.UserData().updateUserData(udata);
-    const { data } = common_vendor.storeToRefs(stores_userDataManager.UserData());
-    let title = common_vendor.ref("123");
-    let obj = common_vendor.reactive({ a: "12", b: "123" });
-    let cb = function() {
-      framework_util.util.alert("你有点呆呆的!");
-      title.value = "fuck!";
-      obj.a = "world";
-    };
-    let isOpenDialog = common_vendor.ref(false);
-    let titleName = common_vendor.ref("fuck u!");
-    function onDialogClose() {
-      framework_log.log.Debug("onDialogClose!");
-      isOpenDialog.value = false;
-    }
-    function onDialogConfirm() {
-      framework_log.log.Debug("onDialogConfirm!");
-      isOpenDialog.value = false;
-      framework_http.http.StaticRequest("https://static.hainanmlwl.com/test_books/book_list.json", (err, data2) => {
-        if (err) {
-          tip_message = err;
-          isOpenMessage.value = true;
-          return;
-        }
-        framework_log.log.Debug("data.code", typeof config_config.config.url_confg.StatesCode.SUCCESS);
-        if (data2.code == config_config.config.url_confg.StatesCode.SUCCESS) {
-          framework_log.log.Debug("book_list", data2);
-        } else {
-          tip_message = data2.message;
-          isOpenMessage.value = true;
-        }
-      });
-    }
-    let isOpenMessage = common_vendor.ref(false);
-    common_vendor.onMounted(() => {
-    });
-    common_vendor.onUnmounted(() => {
-    });
-    common_vendor.watch(obj, async (new_v, old_v) => {
-      console.log(new_v, old_v);
-    });
-    return (_ctx, _cache) => {
-      return common_vendor.e({
-        a: common_vendor.t(common_vendor.unref(title)),
-        b: common_vendor.t(common_vendor.unref(data).user_name),
-        c: common_vendor.o(
-          //@ts-ignore
-          (...args) => common_vendor.unref(cb) && common_vendor.unref(cb)(...args)
-        ),
-        d: common_vendor.f(common_vendor.unref(obj), (v, k, i) => {
-          return {
-            a: common_vendor.t(v),
-            b: common_vendor.t(i)
-          };
-        }),
-        e: common_vendor.unref(isOpenDialog)
-      }, common_vendor.unref(isOpenDialog) ? {
-        f: common_vendor.o(onDialogConfirm),
-        g: common_vendor.o(onDialogClose),
-        h: common_vendor.p({
-          titleName: common_vendor.unref(titleName),
-          contentText: "你好呀!"
-        })
-      } : {}, {
-        i: common_vendor.o(($event) => common_vendor.isRef(isOpenDialog) ? isOpenDialog.value = true : isOpenDialog = true),
-        j: common_vendor.o(($event) => common_vendor.isRef(isOpenMessage) ? isOpenMessage.value = true : isOpenMessage = true),
-        k: common_vendor.unref(isOpenMessage)
-      }, common_vendor.unref(isOpenMessage) ? {
-        l: common_vendor.o(($event) => common_vendor.isRef(isOpenMessage) ? isOpenMessage.value = false : isOpenMessage = false),
-        m: common_vendor.p({
-          messageText: common_vendor.unref(tip_message)
-        })
-      } : {});
-    };
-  }
-});
-const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-b11b71c1"], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/pages/test/index.vue"]]);
-tt.createPage(MiniProgramPage);

+ 0 - 170
xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js

@@ -1,170 +0,0 @@
-"use strict";
-const uni_modules_uniPopup_components_uniPopup_popup = require("../uni-popup/popup.js");
-const common_vendor = require("../../../../common/vendor.js");
-const uni_modules_uniPopup_components_uniPopup_i18n_index = require("../uni-popup/i18n/index.js");
-const {
-  t
-} = common_vendor.initVueI18n(uni_modules_uniPopup_components_uniPopup_i18n_index.messages);
-const _sfc_main = {
-  name: "uniPopupDialog",
-  mixins: [uni_modules_uniPopup_components_uniPopup_popup.popup],
-  emits: ["confirm", "close", "update:modelValue", "input"],
-  props: {
-    inputType: {
-      type: String,
-      default: "text"
-    },
-    showClose: {
-      type: Boolean,
-      default: true
-    },
-    modelValue: {
-      type: [Number, String],
-      default: ""
-    },
-    placeholder: {
-      type: [String, Number],
-      default: ""
-    },
-    type: {
-      type: String,
-      default: "error"
-    },
-    mode: {
-      type: String,
-      default: "base"
-    },
-    title: {
-      type: String,
-      default: ""
-    },
-    content: {
-      type: String,
-      default: ""
-    },
-    beforeClose: {
-      type: Boolean,
-      default: false
-    },
-    cancelText: {
-      type: String,
-      default: ""
-    },
-    confirmText: {
-      type: String,
-      default: ""
-    },
-    maxlength: {
-      type: Number,
-      default: -1
-    },
-    focus: {
-      type: Boolean,
-      default: true
-    }
-  },
-  data() {
-    return {
-      dialogType: "error",
-      val: ""
-    };
-  },
-  computed: {
-    okText() {
-      return this.confirmText || t("uni-popup.ok");
-    },
-    closeText() {
-      return this.cancelText || t("uni-popup.cancel");
-    },
-    placeholderText() {
-      return this.placeholder || t("uni-popup.placeholder");
-    },
-    titleText() {
-      return this.title || t("uni-popup.title");
-    }
-  },
-  watch: {
-    type(val) {
-      this.dialogType = val;
-    },
-    mode(val) {
-      if (val === "input") {
-        this.dialogType = "info";
-      }
-    },
-    value(val) {
-      if (this.maxlength != -1 && this.mode === "input") {
-        this.val = val.slice(0, this.maxlength);
-      } else {
-        this.val = val;
-      }
-    },
-    val(val) {
-      this.$emit("update:modelValue", val);
-    }
-  },
-  created() {
-    this.popup.disableMask();
-    if (this.mode === "input") {
-      this.dialogType = "info";
-      this.val = this.value;
-      this.val = this.modelValue;
-    } else {
-      this.dialogType = this.type;
-    }
-  },
-  methods: {
-    /**
-     * 点击确认按钮
-     */
-    onOk() {
-      if (this.mode === "input") {
-        this.$emit("confirm", this.val);
-      } else {
-        this.$emit("confirm");
-      }
-      if (this.beforeClose)
-        return;
-      this.popup.close();
-    },
-    /**
-     * 点击取消按钮
-     */
-    closeDialog() {
-      this.$emit("close");
-      if (this.beforeClose)
-        return;
-      this.popup.close();
-    },
-    close() {
-      this.popup.close();
-    }
-  }
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
-  return common_vendor.e({
-    a: common_vendor.t($options.titleText),
-    b: common_vendor.n("uni-popup__" + $data.dialogType),
-    c: $props.mode === "base"
-  }, $props.mode === "base" ? {
-    d: common_vendor.t($props.content)
-  } : {
-    e: $props.maxlength,
-    f: $props.inputType,
-    g: $options.placeholderText,
-    h: $props.focus,
-    i: $data.val,
-    j: common_vendor.o(($event) => $data.val = $event.detail.value)
-  }, {
-    k: $props.showClose
-  }, $props.showClose ? {
-    l: common_vendor.t($options.closeText),
-    m: common_vendor.o((...args) => $options.closeDialog && $options.closeDialog(...args))
-  } : {}, {
-    n: common_vendor.t($options.okText),
-    o: common_vendor.n($props.showClose ? "uni-border-left" : ""),
-    p: common_vendor.o((...args) => $options.onOk && $options.onOk(...args))
-  });
-}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue"]]);
-tt.createComponent(Component);

+ 0 - 60
xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.js

@@ -1,60 +0,0 @@
-"use strict";
-const uni_modules_uniPopup_components_uniPopup_popup = require("../uni-popup/popup.js");
-const common_vendor = require("../../../../common/vendor.js");
-const _sfc_main = {
-  name: "uniPopupMessage",
-  mixins: [uni_modules_uniPopup_components_uniPopup_popup.popup],
-  props: {
-    /**
-     * 主题 success/warning/info/error	  默认 success
-     */
-    type: {
-      type: String,
-      default: "success"
-    },
-    /**
-     * 消息文字
-     */
-    message: {
-      type: String,
-      default: ""
-    },
-    /**
-     * 显示时间,设置为 0 则不会自动关闭
-     */
-    duration: {
-      type: Number,
-      default: 3e3
-    },
-    maskShow: {
-      type: Boolean,
-      default: false
-    }
-  },
-  data() {
-    return {};
-  },
-  created() {
-    this.popup.maskShow = this.maskShow;
-    this.popup.messageChild = this;
-  },
-  methods: {
-    timerClose() {
-      if (this.duration === 0)
-        return;
-      clearTimeout(this.timer);
-      this.timer = setTimeout(() => {
-        this.popup.close();
-      }, this.duration);
-    }
-  }
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
-  return {
-    a: common_vendor.t($props.message),
-    b: common_vendor.n("uni-popup__" + $props.type + "-text"),
-    c: common_vendor.n("uni-popup__" + $props.type)
-  };
-}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue"]]);
-tt.createComponent(Component);

+ 0 - 393
xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-popup/components/uni-popup/uni-popup.js

@@ -1,393 +0,0 @@
-"use strict";
-const common_vendor = require("../../../../common/vendor.js");
-const _sfc_main = {
-  name: "uniPopup",
-  components: {},
-  emits: ["change", "maskClick"],
-  props: {
-    // 开启动画
-    animation: {
-      type: Boolean,
-      default: true
-    },
-    // 弹出层类型,可选值,top: 顶部弹出层;bottom:底部弹出层;center:全屏弹出层
-    // message: 消息提示 ; dialog : 对话框
-    type: {
-      type: String,
-      default: "center"
-    },
-    // maskClick
-    isMaskClick: {
-      type: Boolean,
-      default: null
-    },
-    // TODO 2 个版本后废弃属性 ,使用 isMaskClick
-    maskClick: {
-      type: Boolean,
-      default: null
-    },
-    backgroundColor: {
-      type: String,
-      default: "none"
-    },
-    safeArea: {
-      type: Boolean,
-      default: true
-    },
-    maskBackgroundColor: {
-      type: String,
-      default: "rgba(0, 0, 0, 0.4)"
-    },
-    borderRadius: {
-      type: String
-    }
-  },
-  watch: {
-    /**
-     * 监听type类型
-     */
-    type: {
-      handler: function(type) {
-        if (!this.config[type])
-          return;
-        this[this.config[type]](true);
-      },
-      immediate: true
-    },
-    isDesktop: {
-      handler: function(newVal) {
-        if (!this.config[newVal])
-          return;
-        this[this.config[this.type]](true);
-      },
-      immediate: true
-    },
-    /**
-     * 监听遮罩是否可点击
-     * @param {Object} val
-     */
-    maskClick: {
-      handler: function(val) {
-        this.mkclick = val;
-      },
-      immediate: true
-    },
-    isMaskClick: {
-      handler: function(val) {
-        this.mkclick = val;
-      },
-      immediate: true
-    },
-    // H5 下禁止底部滚动
-    showPopup(show) {
-    }
-  },
-  data() {
-    return {
-      duration: 300,
-      ani: [],
-      showPopup: false,
-      showTrans: false,
-      popupWidth: 0,
-      popupHeight: 0,
-      config: {
-        top: "top",
-        bottom: "bottom",
-        center: "center",
-        left: "left",
-        right: "right",
-        message: "top",
-        dialog: "center",
-        share: "bottom"
-      },
-      maskClass: {
-        position: "fixed",
-        bottom: 0,
-        top: 0,
-        left: 0,
-        right: 0,
-        backgroundColor: "rgba(0, 0, 0, 0.4)"
-      },
-      transClass: {
-        backgroundColor: "transparent",
-        borderRadius: this.borderRadius || "0",
-        position: "fixed",
-        left: 0,
-        right: 0
-      },
-      maskShow: true,
-      mkclick: true,
-      popupstyle: "top"
-    };
-  },
-  computed: {
-    getStyles() {
-      let res = { backgroundColor: this.bg };
-      if (this.borderRadius || "0") {
-        res = Object.assign(res, { borderRadius: this.borderRadius });
-      }
-      return res;
-    },
-    isDesktop() {
-      return this.popupWidth >= 500 && this.popupHeight >= 500;
-    },
-    bg() {
-      if (this.backgroundColor === "" || this.backgroundColor === "none") {
-        return "transparent";
-      }
-      return this.backgroundColor;
-    }
-  },
-  mounted() {
-    const fixSize = () => {
-      const {
-        windowWidth,
-        windowHeight,
-        windowTop,
-        safeArea,
-        screenHeight,
-        safeAreaInsets
-      } = common_vendor.index.getSystemInfoSync();
-      this.popupWidth = windowWidth;
-      this.popupHeight = windowHeight + (windowTop || 0);
-      if (safeArea && this.safeArea) {
-        this.safeAreaInsets = safeAreaInsets.bottom;
-      } else {
-        this.safeAreaInsets = 0;
-      }
-    };
-    fixSize();
-  },
-  // TODO vue3
-  unmounted() {
-    this.setH5Visible();
-  },
-  activated() {
-    this.setH5Visible(!this.showPopup);
-  },
-  deactivated() {
-    this.setH5Visible(true);
-  },
-  created() {
-    if (this.isMaskClick === null && this.maskClick === null) {
-      this.mkclick = true;
-    } else {
-      this.mkclick = this.isMaskClick !== null ? this.isMaskClick : this.maskClick;
-    }
-    if (this.animation) {
-      this.duration = 300;
-    } else {
-      this.duration = 0;
-    }
-    this.messageChild = null;
-    this.clearPropagation = false;
-    this.maskClass.backgroundColor = this.maskBackgroundColor;
-  },
-  methods: {
-    setH5Visible(visible = true) {
-    },
-    /**
-     * 公用方法,不显示遮罩层
-     */
-    closeMask() {
-      this.maskShow = false;
-    },
-    /**
-     * 公用方法,遮罩层禁止点击
-     */
-    disableMask() {
-      this.mkclick = false;
-    },
-    // TODO nvue 取消冒泡
-    clear(e) {
-      e.stopPropagation();
-      this.clearPropagation = true;
-    },
-    open(direction) {
-      if (this.showPopup) {
-        return;
-      }
-      let innerType = ["top", "center", "bottom", "left", "right", "message", "dialog", "share"];
-      if (!(direction && innerType.indexOf(direction) !== -1)) {
-        direction = this.type;
-      }
-      if (!this.config[direction]) {
-        console.error("缺少类型:", direction);
-        return;
-      }
-      this[this.config[direction]]();
-      this.$emit("change", {
-        show: true,
-        type: direction
-      });
-    },
-    close(type) {
-      this.showTrans = false;
-      this.$emit("change", {
-        show: false,
-        type: this.type
-      });
-      clearTimeout(this.timer);
-      this.timer = setTimeout(() => {
-        this.showPopup = false;
-      }, 300);
-    },
-    // TODO 处理冒泡事件,头条的冒泡事件有问题 ,先这样兼容
-    touchstart() {
-      this.clearPropagation = false;
-    },
-    onTap() {
-      if (this.clearPropagation) {
-        this.clearPropagation = false;
-        return;
-      }
-      this.$emit("maskClick");
-      if (!this.mkclick)
-        return;
-      this.close();
-    },
-    /**
-     * 顶部弹出样式处理
-     */
-    top(type) {
-      this.popupstyle = this.isDesktop ? "fixforpc-top" : "top";
-      this.ani = ["slide-top"];
-      this.transClass = {
-        position: "fixed",
-        left: 0,
-        right: 0,
-        backgroundColor: this.bg,
-        borderRadius: this.borderRadius || "0"
-      };
-      if (type)
-        return;
-      this.showPopup = true;
-      this.showTrans = true;
-      this.$nextTick(() => {
-        if (this.messageChild && this.type === "message") {
-          this.messageChild.timerClose();
-        }
-      });
-    },
-    /**
-     * 底部弹出样式处理
-     */
-    bottom(type) {
-      this.popupstyle = "bottom";
-      this.ani = ["slide-bottom"];
-      this.transClass = {
-        position: "fixed",
-        left: 0,
-        right: 0,
-        bottom: 0,
-        paddingBottom: this.safeAreaInsets + "px",
-        backgroundColor: this.bg,
-        borderRadius: this.borderRadius || "0"
-      };
-      if (type)
-        return;
-      this.showPopup = true;
-      this.showTrans = true;
-    },
-    /**
-     * 中间弹出样式处理
-     */
-    center(type) {
-      this.popupstyle = "center";
-      this.ani = ["zoom-out", "fade"];
-      this.transClass = {
-        position: "fixed",
-        display: "flex",
-        flexDirection: "column",
-        bottom: 0,
-        left: 0,
-        right: 0,
-        top: 0,
-        justifyContent: "center",
-        alignItems: "center",
-        borderRadius: this.borderRadius || "0"
-      };
-      if (type)
-        return;
-      this.showPopup = true;
-      this.showTrans = true;
-    },
-    left(type) {
-      this.popupstyle = "left";
-      this.ani = ["slide-left"];
-      this.transClass = {
-        position: "fixed",
-        left: 0,
-        bottom: 0,
-        top: 0,
-        backgroundColor: this.bg,
-        borderRadius: this.borderRadius || "0",
-        display: "flex",
-        flexDirection: "column"
-      };
-      if (type)
-        return;
-      this.showPopup = true;
-      this.showTrans = true;
-    },
-    right(type) {
-      this.popupstyle = "right";
-      this.ani = ["slide-right"];
-      this.transClass = {
-        position: "fixed",
-        bottom: 0,
-        right: 0,
-        top: 0,
-        backgroundColor: this.bg,
-        borderRadius: this.borderRadius || "0",
-        display: "flex",
-        flexDirection: "column"
-      };
-      if (type)
-        return;
-      this.showPopup = true;
-      this.showTrans = true;
-    }
-  }
-};
-if (!Array) {
-  const _easycom_uni_transition2 = common_vendor.resolveComponent("uni-transition");
-  _easycom_uni_transition2();
-}
-const _easycom_uni_transition = () => "../../../uni-transition/components/uni-transition/uni-transition.js";
-if (!Math) {
-  _easycom_uni_transition();
-}
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
-  return common_vendor.e({
-    a: $data.showPopup
-  }, $data.showPopup ? common_vendor.e({
-    b: $data.maskShow
-  }, $data.maskShow ? {
-    c: common_vendor.o($options.onTap),
-    d: common_vendor.p({
-      name: "mask",
-      ["mode-class"]: "fade",
-      styles: $data.maskClass,
-      duration: $data.duration,
-      show: $data.showTrans
-    })
-  } : {}, {
-    e: common_vendor.s($options.getStyles),
-    f: common_vendor.n($data.popupstyle),
-    g: common_vendor.o((...args) => $options.clear && $options.clear(...args)),
-    h: common_vendor.o($options.onTap),
-    i: common_vendor.p({
-      ["mode-class"]: $data.ani,
-      name: "content",
-      styles: $data.transClass,
-      duration: $data.duration,
-      show: $data.showTrans
-    }),
-    j: common_vendor.o((...args) => $options.touchstart && $options.touchstart(...args)),
-    k: common_vendor.n($data.popupstyle),
-    l: common_vendor.n($options.isDesktop ? "fixforpc-z-index" : "")
-  }) : {});
-}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
-tt.createComponent(Component);

+ 0 - 265
xs-app/unpackage/dist/dev/mp-toutiao/uni_modules/uni-transition/components/uni-transition/uni-transition.js

@@ -1,265 +0,0 @@
-"use strict";
-const uni_modules_uniTransition_components_uniTransition_createAnimation = require("./createAnimation.js");
-const common_vendor = require("../../../../common/vendor.js");
-const _sfc_main = {
-  name: "uniTransition",
-  emits: ["click", "change"],
-  props: {
-    show: {
-      type: Boolean,
-      default: false
-    },
-    modeClass: {
-      type: [Array, String],
-      default() {
-        return "fade";
-      }
-    },
-    duration: {
-      type: Number,
-      default: 300
-    },
-    styles: {
-      type: Object,
-      default() {
-        return {};
-      }
-    },
-    customClass: {
-      type: String,
-      default: ""
-    },
-    onceRender: {
-      type: Boolean,
-      default: false
-    }
-  },
-  data() {
-    return {
-      isShow: false,
-      transform: "",
-      opacity: 1,
-      animationData: {},
-      durationTime: 300,
-      config: {}
-    };
-  },
-  watch: {
-    show: {
-      handler(newVal) {
-        if (newVal) {
-          this.open();
-        } else {
-          if (this.isShow) {
-            this.close();
-          }
-        }
-      },
-      immediate: true
-    }
-  },
-  computed: {
-    // 生成样式数据
-    stylesObject() {
-      let styles = {
-        ...this.styles,
-        "transition-duration": this.duration / 1e3 + "s"
-      };
-      let transform = "";
-      for (let i in styles) {
-        let line = this.toLine(i);
-        transform += line + ":" + styles[i] + ";";
-      }
-      return transform;
-    },
-    // 初始化动画条件
-    transformStyles() {
-      return "transform:" + this.transform + ";opacity:" + this.opacity + ";" + this.stylesObject;
-    }
-  },
-  created() {
-    this.config = {
-      duration: this.duration,
-      timingFunction: "ease",
-      transformOrigin: "50% 50%",
-      delay: 0
-    };
-    this.durationTime = this.duration;
-  },
-  methods: {
-    /**
-     *  ref 触发 初始化动画
-     */
-    init(obj = {}) {
-      if (obj.duration) {
-        this.durationTime = obj.duration;
-      }
-      this.animation = uni_modules_uniTransition_components_uniTransition_createAnimation.createAnimation(Object.assign(this.config, obj), this);
-    },
-    /**
-     * 点击组件触发回调
-     */
-    onClick() {
-      this.$emit("click", {
-        detail: this.isShow
-      });
-    },
-    /**
-     * ref 触发 动画分组
-     * @param {Object} obj
-     */
-    step(obj, config = {}) {
-      if (!this.animation)
-        return;
-      for (let i in obj) {
-        try {
-          if (typeof obj[i] === "object") {
-            this.animation[i](...obj[i]);
-          } else {
-            this.animation[i](obj[i]);
-          }
-        } catch (e) {
-          console.error(`方法 ${i} 不存在`);
-        }
-      }
-      this.animation.step(config);
-      return this;
-    },
-    /**
-     *  ref 触发 执行动画
-     */
-    run(fn) {
-      if (!this.animation)
-        return;
-      this.animation.run(fn);
-    },
-    // 开始过度动画
-    open() {
-      clearTimeout(this.timer);
-      this.transform = "";
-      this.isShow = true;
-      let { opacity, transform } = this.styleInit(false);
-      if (typeof opacity !== "undefined") {
-        this.opacity = opacity;
-      }
-      this.transform = transform;
-      this.$nextTick(() => {
-        this.timer = setTimeout(() => {
-          this.animation = uni_modules_uniTransition_components_uniTransition_createAnimation.createAnimation(this.config, this);
-          this.tranfromInit(false).step();
-          this.animation.run();
-          this.$emit("change", {
-            detail: this.isShow
-          });
-        }, 20);
-      });
-    },
-    // 关闭过度动画
-    close(type) {
-      if (!this.animation)
-        return;
-      this.tranfromInit(true).step().run(() => {
-        this.isShow = false;
-        this.animationData = null;
-        this.animation = null;
-        let { opacity, transform } = this.styleInit(false);
-        this.opacity = opacity || 1;
-        this.transform = transform;
-        this.$emit("change", {
-          detail: this.isShow
-        });
-      });
-    },
-    // 处理动画开始前的默认样式
-    styleInit(type) {
-      let styles = {
-        transform: ""
-      };
-      let buildStyle = (type2, mode) => {
-        if (mode === "fade") {
-          styles.opacity = this.animationType(type2)[mode];
-        } else {
-          styles.transform += this.animationType(type2)[mode] + " ";
-        }
-      };
-      if (typeof this.modeClass === "string") {
-        buildStyle(type, this.modeClass);
-      } else {
-        this.modeClass.forEach((mode) => {
-          buildStyle(type, mode);
-        });
-      }
-      return styles;
-    },
-    // 处理内置组合动画
-    tranfromInit(type) {
-      let buildTranfrom = (type2, mode) => {
-        let aniNum = null;
-        if (mode === "fade") {
-          aniNum = type2 ? 0 : 1;
-        } else {
-          aniNum = type2 ? "-100%" : "0";
-          if (mode === "zoom-in") {
-            aniNum = type2 ? 0.8 : 1;
-          }
-          if (mode === "zoom-out") {
-            aniNum = type2 ? 1.2 : 1;
-          }
-          if (mode === "slide-right") {
-            aniNum = type2 ? "100%" : "0";
-          }
-          if (mode === "slide-bottom") {
-            aniNum = type2 ? "100%" : "0";
-          }
-        }
-        this.animation[this.animationMode()[mode]](aniNum);
-      };
-      if (typeof this.modeClass === "string") {
-        buildTranfrom(type, this.modeClass);
-      } else {
-        this.modeClass.forEach((mode) => {
-          buildTranfrom(type, mode);
-        });
-      }
-      return this.animation;
-    },
-    animationType(type) {
-      return {
-        fade: type ? 0 : 1,
-        "slide-top": `translateY(${type ? "0" : "-100%"})`,
-        "slide-right": `translateX(${type ? "0" : "100%"})`,
-        "slide-bottom": `translateY(${type ? "0" : "100%"})`,
-        "slide-left": `translateX(${type ? "0" : "-100%"})`,
-        "zoom-in": `scaleX(${type ? 1 : 0.8}) scaleY(${type ? 1 : 0.8})`,
-        "zoom-out": `scaleX(${type ? 1 : 1.2}) scaleY(${type ? 1 : 1.2})`
-      };
-    },
-    // 内置动画类型与实际动画对应字典
-    animationMode() {
-      return {
-        fade: "opacity",
-        "slide-top": "translateY",
-        "slide-right": "translateX",
-        "slide-bottom": "translateY",
-        "slide-left": "translateX",
-        "zoom-in": "scale",
-        "zoom-out": "scale"
-      };
-    },
-    // 驼峰转中横线
-    toLine(name) {
-      return name.replace(/([A-Z])/g, "-$1").toLowerCase();
-    }
-  }
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
-  return {
-    a: $data.isShow,
-    b: $data.animationData,
-    c: common_vendor.n($props.customClass),
-    d: common_vendor.s($options.transformStyles),
-    e: common_vendor.o((...args) => $options.onClick && $options.onClick(...args))
-  };
-}
-const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/future/Desktop/项目/uni-xs/xs-app/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
-tt.createComponent(Component);