适配小程序代码结构
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"hash": "1782eae7",
|
||||
"configHash": "d7f2024e",
|
||||
"hash": "abb06e63",
|
||||
"configHash": "d56fac9b",
|
||||
"lockfileHash": "b6e87757",
|
||||
"browserHash": "497028f0",
|
||||
"browserHash": "fc49d7cf",
|
||||
"optimized": {},
|
||||
"chunks": {}
|
||||
}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/appInit.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/appInit.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/assets.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/assets.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"assets.js","sources":["static/uni-center/headers.png","uni_modules/uni-id-pages/pages/userinfo/realname-verify/face-verify-icon.svg","static/uni-load-state/disconnection.png","uni_modules/uni-sign-in/static/background.png"],"sourcesContent":["export default \"__VITE_ASSET__c816d0e0__\"","export default \"__VITE_ASSET__da277dd7__\"","export default \"__VITE_ASSET__7a56db78__\"","export default \"__VITE_ASSET__7f3ee520__\""],"names":[],"mappings":";AAAA,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;;;;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/bluetooth.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/bluetooth.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/config.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/config.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"config.js","sources":["common/config.js"],"sourcesContent":["/**\r\n * API 配置\r\n * 统一管理后端接口地址,并根据环境自动切换\r\n */\r\n\r\nimport envConfig from '@/common/env.js'\r\n\r\nconst API_TARGETS = {\r\n\tlocal: 'http://localhost:8090/',\r\n\tprod: 'https://api.huayang-star.com/'\r\n}\r\n\r\nconst ENV_ALIAS = {\r\n\tdevelopment: 'local',\r\n\tproduction: 'prod',\r\n\tlocal: 'local',\r\n\tprod: 'prod'\r\n}\r\n\r\nfunction normalizeBaseUrl(url) {\r\n\treturn url.endsWith('/') ? url : `${url}/`\r\n}\r\n\r\nfunction resolveApiEnv() {\r\n\t// 优先读取 env.js 配置文件\r\n\tconst fileEnv = envConfig?.apiEnv\r\n\tif (fileEnv) {\r\n\t\tconst mapped = ENV_ALIAS[fileEnv.toLowerCase()]\r\n\t\tif (mapped) {\r\n\t\t\tconsole.log('[API Config] 使用 env.js 配置:', fileEnv, '=>', mapped)\r\n\t\t\treturn mapped\r\n\t\t}\r\n\t}\r\n\r\n\t// 其次读取环境变量\r\n\tconst runtimeEnv =\r\n\t\ttypeof process !== 'undefined' && process?.env\r\n\t\t\t? process.env.UNI_APP_API_ENV || process.env.NODE_ENV\r\n\t\t\t: ''\r\n\tconst aliasKey = runtimeEnv ? runtimeEnv.toLowerCase() : ''\r\n\tconst env = ENV_ALIAS[aliasKey] || 'prod'\r\n\tconsole.log('[API Config] 使用环境变量:', runtimeEnv, '=>', env)\r\n\treturn env\r\n}\r\n\r\nconst API_ENV = resolveApiEnv()\r\n\r\n// API 基础地址(根据当前环境自动判定)\r\nexport const API_BASE_URL = normalizeBaseUrl(API_TARGETS[API_ENV] || API_TARGETS.prod)\r\n\r\n// 输出当前配置信息(便于调试)\r\nconsole.log('[API Config] 当前环境:', API_ENV)\r\nconsole.log('[API Config] API_BASE_URL:', API_BASE_URL)\r\n\r\n// 当前 API 环境(local / prod)\r\nexport function getApiEnv() {\r\n\treturn API_ENV\r\n}\r\n\r\n// 导出完整的 API URL 构建函数\r\n// H5环境下:local / prod 均直接使用完整URL,避免依赖本地代理\r\n// 其他环境使用完整URL\r\nexport function getApiUrl(path = '') {\r\n\tconst apiPath = path.startsWith('/') ? path : `/${path}`\r\n\t// #ifdef H5\r\n\t// H5环境下,local / prod 都返回完整URL,确保 prod 时直接请求远程服务器\r\n\tconst fullPath = apiPath.startsWith('/') ? apiPath.slice(1) : apiPath\r\n\tconst fullUrl = `${API_BASE_URL}${fullPath}`\r\n\tconsole.log(`[API Config] H5环境(${API_ENV})直接使用完整URL:`, fullUrl)\r\n\treturn fullUrl\r\n\t// #endif\r\n\t// #ifndef H5\r\n\t// 其他环境使用完整URL\r\n\tconst fullPath = apiPath.startsWith('/') ? apiPath.slice(1) : apiPath\r\n\tconst fullUrl = `${API_BASE_URL}${fullPath}`\r\n\tconsole.log('[API Config] 非H5环境使用完整URL:', fullUrl)\r\n\treturn fullUrl\r\n\t// #endif\r\n}\r\n"],"names":["envConfig","uni"],"mappings":";;;AAOA,MAAM,cAAc;AAAA,EACnB,OAAO;AAAA,EACP,MAAM;AACP;AAEA,MAAM,YAAY;AAAA,EACjB,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,OAAO;AAAA,EACP,MAAM;AACP;AAEA,SAAS,iBAAiB,KAAK;AAC9B,SAAO,IAAI,SAAS,GAAG,IAAI,MAAM,GAAG,GAAG;AACxC;AAEA,SAAS,gBAAgB;;AAExB,QAAM,WAAUA,gBAAW,cAAXA,mBAAW;AACd;AACZ,UAAM,SAAS,UAAU,QAAQ,YAAa,CAAA;AAC9C,QAAI,QAAQ;AACXC,0BAAA,MAAA,OAAA,0BAAY,8BAA8B,SAAS,MAAM,MAAM;AACxD,aAAA;AAAA,IACR;AAAA,EACD;AAGM,QAAA,aACL,OAAO,YAAY,gBAAe,mCAAS,OACxC,QAAQ,IAAI,mBAAmB,gBAC/B;AACJ,QAAM,WAAW,aAAa,WAAW,YAAA,IAAgB;AACnD,QAAA,MAAM,UAAU,QAAQ,KAAK;AACnCA,sBAAA,MAAA,OAAA,0BAAY,wBAAwB,YAAY,MAAM,GAAG;AAClD,SAAA;AACR;AAEA,MAAM,UAAU,cAAc;AAGvB,MAAM,eAAe,iBAAiB,YAAY,OAAO,KAAK,YAAY,IAAI;AAGrFA,cAAA,MAAA,MAAA,OAAA,0BAAY,sBAAsB,OAAO;AACzCA,cAAA,MAAA,MAAA,OAAA,0BAAY,8BAA8B,YAAY;AAG/C,SAAS,YAAY;AACpB,SAAA;AACR;AAKgB,SAAA,UAAU,OAAO,IAAI;AACpC,QAAM,UAAU,KAAK,WAAW,GAAG,IAAI,OAAO,IAAI,IAAI;AAUhD,QAAA,WAAW,QAAQ,WAAW,GAAG,IAAI,QAAQ,MAAM,CAAC,IAAI;AAC9D,QAAM,UAAU,GAAG,YAAY,GAAG,QAAQ;AAC1CA,gBAAA,6CAAY,8BAA8B,OAAO;AAC1C,SAAA;AAER;;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/env.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/env.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"env.js","sources":["common/env.js"],"sourcesContent":["/**\r\n * 环境配置文件\r\n * apiEnv 可选:'local' | 'prod'\r\n */\r\nexport default {\r\n\tapiEnv: 'local'\r\n}\r\n\r\n"],"names":[],"mappings":";AAIA,MAAe,YAAA;AAAA,EACd,QAAQ;AACT;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/openApp.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/openApp.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"openApp.js","sources":["common/openApp.js"],"sourcesContent":["/*\r\n\t创建在h5端全局悬浮引导用户下载app的功能,\r\n\t如不需要本功能直接移除配置文件uni-starter.config.js下的h5/openApp即可\r\n*/\r\n\r\nimport CONFIG from '../uni-starter.config.js';\r\n\r\nconst CONFIG_OPEN = CONFIG.h5.openApp || {};\r\n// 仅H5端添加\"打开APP\"\r\nexport default function() {\r\n\t// #ifdef H5\r\n\tif (!CONFIG_OPEN.openUrl) return;\r\n\r\n\tlet openLogo = CONFIG_OPEN.logo ?\r\n\t\t`<img src=\"${CONFIG_OPEN.logo}\" style=\"width: 2rem;height: 2rem;border-radius: 3px;\">` : '';\r\n\tlet openApp = document.createElement(\"div\");\r\n\topenApp.id = 'openApp';\r\n\topenApp.style =\r\n\t\t'position: fixed;background:#FFFFFF;box-shadow: #eeeeee 1px 1px 9px; ;top: 0;left: 0;right: 0;z-index: 999;width: 100%;height: 45px;display: flex;flex-direction: row;justify-content: space-between;align-items: center;box-sizing: border-box;padding: 0 0.5rem;'\r\n\topenApp.innerHTML = `\r\n\t\t<div style=\"display: flex;flex-direction: row;justify-content: flex-start;align-items: center;\">\r\n\t\t\t${openLogo}\r\n\t\t\t<div style=\"padding-left: 0.3rem;font-size: 12px;\">${CONFIG_OPEN.appname || ''}</div>\r\n\t\t</div>\r\n\t\t<div class=\"openBtn\" style=\"padding: 5px;font-size:12px;border-radius: 2px;border: 1px solid #007AFF;color: #007AFF;\">下载app</div>\r\n\t`;\r\n\tdocument.body.insertBefore(openApp, document.body.firstChild);\r\n\tdocument.body.style = 'height:calc(100% - 45px); margin-top:45px;';\r\n\topenApp.addEventListener('click', e => {\r\n\t\tvar target = e.target || e.srcElement;\r\n\t\tif (target.className.indexOf('openBtn') >= 0) {\r\n\t\t\twindow.location.href = CONFIG_OPEN.openUrl;\r\n\t\t}\r\n\t})\r\n\t//#endif\r\n}\r\n"],"names":["CONFIG"],"mappings":";;AAOoBA,kBAAAA,OAAO,GAAG,WAAW,CAAA;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/request.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/request.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/common_begin_reception.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/common_begin_reception.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-load-state/i18n/index.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-load-state/i18n/index.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sources":["components/uni-load-state/i18n/index.js"],"sourcesContent":["import en from './en.json'\r\nimport zhHans from './zh-Hans.json'\r\nexport default {\r\n\ten,\r\n\t'zh-Hans': zhHans\r\n}\r\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAEA,MAAe,WAAA;AAAA,EACd;AAAA,EACA,WAAW;AACZ;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-load-state/uni-load-state.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-load-state/uni-load-state.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/en.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/en.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/i18n.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/i18n.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"i18n.js","sources":["lang/i18n.js"],"sourcesContent":["import langEn from './en'\r\nimport zhHans from './zh-Hans'\r\nimport uniStarterConfig from '../uni-starter.config.js'\r\nconst {i18n:{enable:i18nEnable} }= uniStarterConfig\r\nconst messages = {\r\n\t'en': langEn,\r\n\t'zh-Hans': zhHans\r\n}\r\nlet currentLang\r\nif(i18nEnable){\r\n\tcurrentLang = uni.getStorageSync('CURRENT_LANG')\r\n}else{\r\n\tcurrentLang = \"zh-Hans\"\r\n}\r\n// console.log(uni.getStorageSync('CURRENT_LANG'),currentLang);\r\nif (!currentLang) {\r\n\tif (uni.getLocale) {\r\n\t\tconsole.log('获取应用语言:', uni.getLocale());\r\n\t\tlet language = 'en'\r\n\t\tif (uni.getLocale() != 'en') {\r\n\t\t\tlanguage = 'zh-Hans'\r\n\t\t}\r\n\t\tuni.setStorageSync('CURRENT_LANG', language)\r\n\t\tcurrentLang = language\r\n\t} else {\r\n\t\tuni.getSystemInfo({\r\n\t\t\tsuccess: function(res) {\r\n\t\t\t\tconsole.log('获取设备信息:', res);\r\n\t\t\t\tlet language = 'zh-Hans'\r\n\t\t\t\tif (res.language == 'en') {\r\n\t\t\t\t\tlanguage = 'en'\r\n\t\t\t\t}\r\n\t\t\t\tuni.setStorageSync('CURRENT_LANG', language)\r\n\t\t\t\tcurrentLang = language\r\n\t\t\t},\r\n\t\t\tfail: (err) => {\r\n\t\t\t\tconsole.error(err)\r\n\t\t\t}\r\n\t\t})\r\n\t}\r\n}\r\nlet i18nConfig = {\r\n\tlocale: currentLang, // set locale\r\n\tmessages // set locale messages\r\n}\r\n\r\n// #ifdef VUE2\r\nimport Vue from 'vue'\r\nimport VueI18n from 'vue-i18n'\r\nVue.use(VueI18n)\r\nconst i18n = new VueI18n(i18nConfig)\r\n// #endif\r\n\r\n// #ifdef VUE3\r\nimport {\r\n\tcreateI18n\r\n} from 'vue-i18n'\r\nconst i18n = createI18n(i18nConfig)\r\n// #endif\r\n\r\nexport default i18n\r\n\r\n\r\nif (i18nEnable) {\r\n\tconsole.log(`\r\n\t你已开启多语言国际化,将自动根据语言获取【lang/en.js】或【lang/zh-Hans.js】文件中配置的tabbar的值,\r\n\t覆盖你在pages.json中的tabbar的值\r\n\t如果你不需要多语言国际化,请打开配置文件uni-starter.config.js找到 -> i18n -> enable把值设置为false\r\n\t`);\r\n\tlet initLanguageAfter = () => {\r\n\t\tfunction $i18n(e) {\r\n\t\t\t// #ifdef VUE3\r\n\t\t\treturn i18n.global.messages[i18n.global.locale][e]\r\n\t\t\t// #endif\r\n\t\t\treturn i18n.messages[i18n.locale][e]\r\n\t\t}\r\n\t\tsetTimeout(function() {\r\n\t\t\t// 底部tabbar更新(仅处理国际化文本,不做权限控制)\r\n\t\t\t$i18n('tabbar').split(',').forEach((text, index) => {\r\n\t\t\t\tuni.setTabBarItem({\r\n\t\t\t\t\tindex,\r\n\t\t\t\t\ttext,\r\n\t\t\t\t\tcomplete: () => {}\r\n\t\t\t\t})\r\n\t\t\t})\r\n\t\t}, 1)\r\n\t}\r\n\tinitLanguageAfter()\r\n\tuni.$on('changeLanguage', e => {\r\n\t\tconsole.log('changeLanguage', e);\r\n\t\tinitLanguageAfter(e)\r\n\t})\r\n}"],"names":["uniStarterConfig","langEn","zhHans","uni","createI18n"],"mappings":";;;;;AAGA,MAAM,EAAC,MAAK,EAAC,QAAO,WAAU,EAAG,IAAEA,kBAAgB;AACnD,MAAM,WAAW;AAAA,EAChB,MAAMC,QAAM;AAAA,EACZ,WAAWC,YAAM;AAClB;AACA,IAAI;AACJ,IAAG,YAAW;AACb,gBAAcC,cAAAA,MAAI,eAAe,cAAc;AAChD,OAAK;AACJ,gBAAc;AACf;AAEA,IAAI,CAAC,aAAa;AACjB,MAAIA,cAAAA,MAAI,WAAW;AAClBA,kBAAA,MAAA,MAAA,OAAA,sBAAY,WAAWA,cAAG,MAAC,UAAS,CAAE;AACtC,QAAI,WAAW;AACf,QAAIA,cAAG,MAAC,UAAW,KAAI,MAAM;AAC5B,iBAAW;AAAA,IACX;AACDA,wBAAI,eAAe,gBAAgB,QAAQ;AAC3C,kBAAc;AAAA,EAChB,OAAQ;AACNA,kBAAAA,MAAI,cAAc;AAAA,MACjB,SAAS,SAAS,KAAK;AACtBA,sBAAA,MAAA,MAAA,OAAA,sBAAY,WAAW,GAAG;AAC1B,YAAI,WAAW;AACf,YAAI,IAAI,YAAY,MAAM;AACzB,qBAAW;AAAA,QACX;AACDA,4BAAI,eAAe,gBAAgB,QAAQ;AAC3C,sBAAc;AAAA,MACd;AAAA,MACD,MAAM,CAAC,QAAQ;AACdA,sBAAAA,MAAA,MAAA,SAAA,sBAAc,GAAG;AAAA,MACjB;AAAA,IACJ,CAAG;AAAA,EACD;AACF;AACA,IAAI,aAAa;AAAA,EAChB,QAAQ;AAAA;AAAA,EACR;AAAA;AACD;AAaK,MAAC,OAAOC,cAAU,WAAC,UAAU;AAMlC,IAAI,YAAY;AACfD,gBAAAA,MAAA,MAAA,OAAA,sBAAY;AAAA;AAAA;AAAA;AAAA,EAIX;AACD,MAAI,oBAAoB,MAAM;AAC7B,aAAS,MAAM,GAAG;AAEjB,aAAO,KAAK,OAAO,SAAS,KAAK,OAAO,MAAM,EAAE,CAAC;AAAA,IAGjD;AACD,eAAW,WAAW;AAErB,YAAM,QAAQ,EAAE,MAAM,GAAG,EAAE,QAAQ,CAAC,MAAM,UAAU;AACnDA,sBAAAA,MAAI,cAAc;AAAA,UACjB;AAAA,UACA;AAAA,UACA,UAAU,MAAM;AAAA,UAAE;AAAA,QACvB,CAAK;AAAA,MACL,CAAI;AAAA,IACD,GAAE,CAAC;AAAA,EACJ;AACD,oBAAmB;AACnBA,sBAAI,IAAI,kBAAkB,OAAK;AAC9BA,2DAAY,kBAAkB,CAAC;AAC/B,sBAAmB;AAAA,EACrB,CAAE;AACF;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/zh-Hans.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/lang/zh-Hans.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/bluetooth-recorder/bluetooth-recorder.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/bluetooth-recorder/bluetooth-recorder.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/champion.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/champion.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/material-tab.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/material-tab.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/practice-tab.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/practice-tab.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/training-tab.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/champion/components/training-tab.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/components/CustomerList.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/components/CustomerList.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/components/ServiceList.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/components/ServiceList.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/customer.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/customer.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/utils/dataInit.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/customer/utils/dataInit.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_customer/furniture_customer.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_customer/furniture_customer.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_customer/utils/dataInit.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_customer/utils/dataInit.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"common_begin_reception.js","sources":["../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvZnVybml0dXJlX3JlY2VwdGlvbi9jb21tb25fYmVnaW5fcmVjZXB0aW9uLnZ1ZQ"],"sourcesContent":["import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/furniture_reception/common_begin_reception.vue'\nwx.createPage(MiniProgramPage)"],"names":["MiniProgramPage"],"mappings":";;AACA,GAAG,WAAWA,uBAAe,eAAA;"}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"common_begin_reception2.js","sources":["../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3BhZ2VzL2Z1cm5pdHVyZV9yZWNlcHRpb24vY29tbW9uX2JlZ2luX3JlY2VwdGlvbi52dWU"],"sourcesContent":["import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/furniture_reception/common_begin_reception.vue'\nwx.createPage(MiniProgramPage)"],"names":["MiniProgramPage"],"mappings":";;AACA,GAAG,WAAWA,uBAAe,eAAA;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_reception/furniture_reception.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_reception/furniture_reception.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_top_sales/furniture_top_sales.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/furniture_top_sales/furniture_top_sales.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/grid/grid.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/grid/grid.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/detail.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/detail.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/list.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/list.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/search/search.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/search/search.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_me/meeting_me.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_me/meeting_me.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"meeting_me.js","sources":["pages/meeting_me/meeting_me.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWVldGluZ19tZS9tZWV0aW5nX21lLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view class=\"page\">\r\n\t\t<!-- #ifdef APP -->\r\n\t\t<statusBar></statusBar>\r\n\t\t<!-- #endif -->\r\n\t\t\r\n\t\t<!-- 导航栏 -->\r\n\t\t<uni-nav-bar \r\n\t\t\t:fixed=\"true\" \r\n\t\t\t:statusBar=\"true\" \r\n\t\t\t:border=\"false\"\r\n\t\t\ttitle=\"我的\" \r\n\t\t\tleftIcon=\"left\" \r\n\t\t\t@clickLeft=\"goBack\"\r\n\t\t\tcolor=\"#333\"\r\n\t\t\tbackgroundColor=\"#FFFFFF\">\r\n\t\t</uni-nav-bar>\r\n\t\t\r\n\t\t<view class=\"content\">\r\n\t\t\t<view class=\"empty-state\">\r\n\t\t\t\t<text class=\"empty-text\">我的功能开发中...</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t// #ifdef APP\r\n\timport statusBar from \"@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar\";\r\n\t// #endif\r\n\t\r\n\texport default {\r\n\t\t// #ifdef APP\r\n\t\tcomponents: {\r\n\t\t\tstatusBar\r\n\t\t},\r\n\t\t// #endif\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgoBack() {\r\n\t\t\t\tuni.navigateBack();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\tpage {\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.content {\r\n\t\tpadding-top: 88rpx;\r\n\t\tmin-height: calc(100vh - 88rpx - 96rpx);\r\n\t\tpadding-bottom: 96rpx;\r\n\t}\r\n\t\r\n\t.empty-state {\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t\theight: 100%;\r\n\t\tpadding: 48rpx;\r\n\t}\r\n\t\r\n\t.empty-text {\r\n\t\tfont-size: 28rpx;\r\n\t\tcolor: #999;\r\n\t}\r\n</style>\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/meeting_me/meeting_me.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AA+BC,MAAK,YAAU;AAAA,EAMd,OAAO;AACN,WAAO,CACP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,EACR;AAAA,EACD,SAAS;AAAA,IACR,SAAS;AACRA,oBAAG,MAAC,aAAY;AAAA,IACjB;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;AC/CD,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_meeting/meeting_meeting.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_meeting/meeting_meeting.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"meeting_meeting.js","sources":["pages/meeting_meeting/meeting_meeting.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWVldGluZ19tZWV0aW5nL21lZXRpbmdfbWVldGluZy52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"page\">\r\n\t\t<!-- #ifdef APP -->\r\n\t\t<statusBar></statusBar>\r\n\t\t<!-- #endif -->\r\n\t\t\r\n\t\t<!-- 导航栏 -->\r\n\t\t<uni-nav-bar \r\n\t\t\t:fixed=\"true\" \r\n\t\t\t:statusBar=\"true\" \r\n\t\t\t:border=\"false\"\r\n\t\t\ttitle=\"开会\" \r\n\t\t\tleftIcon=\"left\" \r\n\t\t\t@clickLeft=\"goBack\"\r\n\t\t\tcolor=\"#333\"\r\n\t\t\tbackgroundColor=\"#FFFFFF\">\r\n\t\t</uni-nav-bar>\r\n\t\t\r\n\t\t<view class=\"content\">\r\n\t\t\t<view class=\"empty-state\">\r\n\t\t\t\t<text class=\"empty-text\">开会功能开发中...</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t// #ifdef APP\r\n\timport statusBar from \"@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar\";\r\n\t// #endif\r\n\t\r\n\texport default {\r\n\t\t// #ifdef APP\r\n\t\tcomponents: {\r\n\t\t\tstatusBar\r\n\t\t},\r\n\t\t// #endif\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgoBack() {\r\n\t\t\t\tuni.navigateBack();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\tpage {\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.content {\r\n\t\tpadding-top: 88rpx;\r\n\t\tmin-height: calc(100vh - 88rpx - 96rpx);\r\n\t\tpadding-bottom: 96rpx;\r\n\t}\r\n\t\r\n\t.empty-state {\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t\theight: 100%;\r\n\t\tpadding: 48rpx;\r\n\t}\r\n\t\r\n\t.empty-text {\r\n\t\tfont-size: 28rpx;\r\n\t\tcolor: #999;\r\n\t}\r\n</style>\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/meeting_meeting/meeting_meeting.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AA+BC,MAAK,YAAU;AAAA,EAMd,OAAO;AACN,WAAO,CACP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,EACR;AAAA,EACD,SAAS;AAAA,IACR,SAAS;AACRA,oBAAG,MAAC,aAAY;AAAA,IACjB;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;AC/CD,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_prepare/meeting_prepare.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_prepare/meeting_prepare.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"meeting_prepare.js","sources":["pages/meeting_prepare/meeting_prepare.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWVldGluZ19wcmVwYXJlL21lZXRpbmdfcHJlcGFyZS52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"page\">\r\n\t\t<!-- #ifdef APP -->\r\n\t\t<statusBar></statusBar>\r\n\t\t<!-- #endif -->\r\n\t\t\r\n\t\t<!-- 导航栏 -->\r\n\t\t<uni-nav-bar \r\n\t\t\t:fixed=\"true\" \r\n\t\t\t:statusBar=\"true\" \r\n\t\t\t:border=\"false\"\r\n\t\t\ttitle=\"会议准备\" \r\n\t\t\tleftIcon=\"left\" \r\n\t\t\t@clickLeft=\"goBack\"\r\n\t\t\tcolor=\"#333\"\r\n\t\t\tbackgroundColor=\"#FFFFFF\">\r\n\t\t</uni-nav-bar>\r\n\t\t\r\n\t\t<view class=\"content\">\r\n\t\t\t<view class=\"empty-state\">\r\n\t\t\t\t<text class=\"empty-text\">会议准备功能开发中...</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t// #ifdef APP\r\n\timport statusBar from \"@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar\";\r\n\t// #endif\r\n\t\r\n\texport default {\r\n\t\t// #ifdef APP\r\n\t\tcomponents: {\r\n\t\t\tstatusBar\r\n\t\t},\r\n\t\t// #endif\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgoBack() {\r\n\t\t\t\tuni.navigateBack();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\tpage {\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.content {\r\n\t\tpadding-top: 88rpx;\r\n\t\tmin-height: calc(100vh - 88rpx - 96rpx);\r\n\t\tpadding-bottom: 96rpx;\r\n\t}\r\n\t\r\n\t.empty-state {\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t\theight: 100%;\r\n\t\tpadding: 48rpx;\r\n\t}\r\n\t\r\n\t.empty-text {\r\n\t\tfont-size: 28rpx;\r\n\t\tcolor: #999;\r\n\t}\r\n</style>\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/meeting_prepare/meeting_prepare.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AA+BC,MAAK,YAAU;AAAA,EAMd,OAAO;AACN,WAAO,CACP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,EACR;AAAA,EACD,SAAS;AAAA,IACR,SAAS;AACRA,oBAAG,MAAC,aAAY;AAAA,IACjB;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;AC/CD,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_summary/meeting_summary.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/meeting_summary/meeting_summary.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"meeting_summary.js","sources":["pages/meeting_summary/meeting_summary.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWVldGluZ19zdW1tYXJ5L21lZXRpbmdfc3VtbWFyeS52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"page\">\r\n\t\t<!-- #ifdef APP -->\r\n\t\t<statusBar></statusBar>\r\n\t\t<!-- #endif -->\r\n\t\t\r\n\t\t<!-- 导航栏 -->\r\n\t\t<uni-nav-bar \r\n\t\t\t:fixed=\"true\" \r\n\t\t\t:statusBar=\"true\" \r\n\t\t\t:border=\"false\"\r\n\t\t\ttitle=\"总结和统计\" \r\n\t\t\tleftIcon=\"left\" \r\n\t\t\t@clickLeft=\"goBack\"\r\n\t\t\tcolor=\"#333\"\r\n\t\t\tbackgroundColor=\"#FFFFFF\">\r\n\t\t</uni-nav-bar>\r\n\t\t\r\n\t\t<view class=\"content\">\r\n\t\t\t<view class=\"empty-state\">\r\n\t\t\t\t<text class=\"empty-text\">总结和统计功能开发中...</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t// #ifdef APP\r\n\timport statusBar from \"@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar\";\r\n\t// #endif\r\n\t\r\n\texport default {\r\n\t\t// #ifdef APP\r\n\t\tcomponents: {\r\n\t\t\tstatusBar\r\n\t\t},\r\n\t\t// #endif\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgoBack() {\r\n\t\t\t\tuni.navigateBack();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\tpage {\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground-color: #F5F5F5;\r\n\t}\r\n\t\r\n\t.content {\r\n\t\tpadding-top: 88rpx;\r\n\t\tmin-height: calc(100vh - 88rpx - 96rpx);\r\n\t\tpadding-bottom: 96rpx;\r\n\t}\r\n\t\r\n\t.empty-state {\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t\theight: 100%;\r\n\t\tpadding: 48rpx;\r\n\t}\r\n\t\r\n\t.empty-text {\r\n\t\tfont-size: 28rpx;\r\n\t\tcolor: #999;\r\n\t}\r\n</style>\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/meeting_summary/meeting_summary.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AA+BC,MAAK,YAAU;AAAA,EAMd,OAAO;AACN,WAAO,CACP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,EACR;AAAA,EACD,SAAS;AAAA,IACR,SAAS;AACRA,oBAAG,MAAC,aAAY;AAAA,IACjB;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;AC/CD,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/reception/reception.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/reception/reception.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"DeviceTab.js","sources":["pages/speaking_training_edu/components/DeviceTab.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3BhZ2VzL3NwZWFraW5nX3RyYWluaW5nX2VkdS9jb21wb25lbnRzL0RldmljZVRhYi52dWU"],"sourcesContent":["<template>\r\n <view class=\"device-tab\">\r\n <!-- 设备列表入口按钮 -->\r\n <view class=\"device-entry\" @click=\"openDeviceList\">\r\n <view class=\"entry-content\">\r\n <uni-icons type=\"list\" size=\"24\" color=\"#2A68FF\" />\r\n <text class=\"entry-text\">查看设备列表</text>\r\n </view>\r\n <uni-icons type=\"right\" size=\"16\" color=\"#999\" />\r\n </view>\r\n\r\n <!-- 设备列表弹窗 -->\r\n <DeviceListPopup ref=\"deviceListPopup\" />\r\n </view>\r\n</template>\r\n\r\n<script>\r\nimport DeviceListPopup from '@/pages/ucenter/components/DeviceListPopup.vue';\r\n\r\nexport default {\r\n name: 'DeviceTab',\r\n components: {\r\n DeviceListPopup,\r\n },\r\n methods: {\r\n // 打开设备列表弹窗\r\n openDeviceList() {\r\n if (this.$refs.deviceListPopup) {\r\n this.$refs.deviceListPopup.open();\r\n }\r\n },\r\n // 对外暴露的\"加载更多\"方法,供页面 onReachBottom 调用(保留接口兼容性)\r\n loadMore() {\r\n // 弹窗内部已处理滚动加载,这里不需要额外处理\r\n },\r\n },\r\n};\r\n</script>\r\n\r\n<style>\r\n.device-tab {\r\n padding: 148rpx 32rpx 32rpx;\r\n box-sizing: border-box;\r\n background-color: #f5f5f5;\r\n min-height: 100vh;\r\n}\r\n\r\n.device-entry {\r\n display: flex;\r\n align-items: center;\r\n justify-content: space-between;\r\n padding: 32rpx 24rpx;\r\n background-color: #ffffff;\r\n border-radius: 16rpx;\r\n box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);\r\n margin-bottom: 24rpx;\r\n}\r\n\r\n.entry-content {\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n.entry-text {\r\n margin-left: 16rpx;\r\n font-size: 30rpx;\r\n color: #333;\r\n font-weight: 500;\r\n}\r\n</style>\r\n\r\n\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/pages/speaking_training_edu/components/DeviceTab.vue'\nwx.createComponent(Component)"],"names":[],"mappings":";;AAiBA,wBAAwB,MAAW;AAEnC,MAAK,YAAU;AAAA,EACb,MAAM;AAAA,EACN,YAAY;AAAA,IACV;AAAA,EACD;AAAA,EACD,SAAS;AAAA;AAAA,IAEP,iBAAiB;AACf,UAAI,KAAK,MAAM,iBAAiB;AAC9B,aAAK,MAAM,gBAAgB;MAC7B;AAAA,IACD;AAAA;AAAA,IAED,WAAW;AAAA,IAEV;AAAA,EACF;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;ACnCA,GAAG,gBAAgB,SAAS;"}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"HomeworkTab.js","sources":["pages/speaking_training_edu/components/HomeworkTab.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3BhZ2VzL3NwZWFraW5nX3RyYWluaW5nX2VkdS9jb21wb25lbnRzL0hvbWV3b3JrVGFiLnZ1ZQ"],"sourcesContent":["<template>\r\n <scroll-view\r\n class=\"tab-content\"\r\n scroll-y\r\n >\r\n <view class=\"section\">\r\n <text class=\"section-title\">作业列表</text>\r\n <view class=\"placeholder-box\">\r\n <text class=\"placeholder-text\">\r\n 这里展示布置 / 提交的作业记录(待接入接口)\r\n </text>\r\n </view>\r\n </view>\r\n <view class=\"section\">\r\n <text class=\"section-title\">常用操作</text>\r\n <view class=\"btn-row\">\r\n <button class=\"primary-btn\" type=\"primary\" size=\"mini\">\r\n 布置作业\r\n </button>\r\n <button class=\"outline-btn\" type=\"default\" size=\"mini\">\r\n 批改作业\r\n </button>\r\n </view>\r\n </view>\r\n </scroll-view>\r\n</template>\r\n\r\n<script>\r\nexport default {\r\n name: 'HomeworkTab',\r\n};\r\n</script>\r\n\r\n<style>\r\n.tab-content {\r\n padding: 148rpx 32rpx 32rpx;\r\n box-sizing: border-box;\r\n}\r\n\r\n.section {\r\n margin-bottom: 32rpx;\r\n}\r\n\r\n.section-title {\r\n font-size: 32rpx;\r\n font-weight: 600;\r\n color: #333;\r\n margin-bottom: 16rpx;\r\n display: block;\r\n}\r\n\r\n.placeholder-box {\r\n padding: 40rpx 32rpx;\r\n background-color: #ffffff;\r\n border-radius: 16rpx;\r\n border: 1px dashed #e0e0e0;\r\n}\r\n\r\n.placeholder-text {\r\n font-size: 26rpx;\r\n color: #999;\r\n}\r\n\r\n.btn-row {\r\n flex-direction: row;\r\n display: flex;\r\n gap: 24rpx;\r\n}\r\n\r\n.primary-btn {\r\n background-color: #007aff;\r\n border-radius: 999rpx;\r\n}\r\n\r\n.outline-btn {\r\n border-radius: 999rpx;\r\n}\r\n</style>\r\n\r\n\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/pages/speaking_training_edu/components/HomeworkTab.vue'\nwx.createComponent(Component)"],"names":[],"mappings":";;AA4BA,MAAK,YAAU;AAAA,EACb,MAAM;AACR;;;;;AC7BA,GAAG,gBAAgB,SAAS;"}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"speaking_training_edu.js","sources":["pages/speaking_training_edu/speaking_training_edu.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvc3BlYWtpbmdfdHJhaW5pbmdfZWR1L3NwZWFraW5nX3RyYWluaW5nX2VkdS52dWU"],"sourcesContent":["<template>\r\n <view class=\"page\">\r\n <!-- 顶部导航栏 -->\r\n <uni-nav-bar\r\n :fixed=\"true\"\r\n :statusBar=\"true\"\r\n title=\"教务\"\r\n leftIcon=\"\"\r\n color=\"#333\"\r\n backgroundColor=\"#FFFFFF\"\r\n />\r\n\r\n <view class=\"content\">\r\n <!-- 顶部 Tab -->\r\n <view class=\"tabs\">\r\n <view\r\n class=\"tab-item\"\r\n :class=\"{ active: activeTab === 'device' }\"\r\n @click=\"switchTab('device')\"\r\n >\r\n <text>设备管理</text>\r\n </view>\r\n <view\r\n class=\"tab-item\"\r\n :class=\"{ active: activeTab === 'homework' }\"\r\n @click=\"switchTab('homework')\"\r\n >\r\n <text>作业管理</text>\r\n </view>\r\n </view>\r\n\r\n <!-- 设备管理 -->\r\n <DeviceTab v-if=\"activeTab === 'device'\" ref=\"deviceTab\" />\r\n\r\n <!-- 作业管理 -->\r\n <HomeworkTab v-else />\r\n </view>\r\n </view>\r\n</template>\r\n\r\n<script>\r\nimport DeviceTab from './components/DeviceTab.vue';\r\nimport HomeworkTab from './components/HomeworkTab.vue';\r\n\r\nexport default {\r\n components: {\r\n DeviceTab,\r\n HomeworkTab,\r\n },\r\n onShow() {\r\n // 所有登录人都可以访问,已移除权限限制\r\n },\r\n data() {\r\n return {\r\n activeTab: 'device', // device | homework\r\n };\r\n },\r\n onReachBottom() {\r\n // 页面触底时,如果当前在设备管理 Tab,则触发子组件加载更多\r\n if (this.activeTab === 'device' && this.$refs.deviceTab && this.$refs.deviceTab.loadMore) {\r\n this.$refs.deviceTab.loadMore();\r\n }\r\n },\r\n methods: {\r\n switchTab(tab) {\r\n this.activeTab = tab;\r\n },\r\n },\r\n};\r\n</script>\r\n\r\n<style>\r\n.page {\r\n min-height: 100vh;\r\n background-color: #f5f5f5;\r\n}\r\n\r\n.content {\r\n padding-top: 88rpx;\r\n}\r\n\r\n.tabs {\r\n position: fixed;\r\n top: 88rpx;\r\n left: 0;\r\n right: 0;\r\n display: flex;\r\n background-color: #ffffff;\r\n border-bottom: 1px solid #e0e0e0;\r\n z-index: 10;\r\n}\r\n\r\n.tab-item {\r\n flex: 1;\r\n padding: 24rpx 0;\r\n text-align: center;\r\n position: relative;\r\n}\r\n\r\n.tab-item text {\r\n font-size: 30rpx;\r\n color: #666;\r\n}\r\n\r\n.tab-item.active text {\r\n color: #333;\r\n font-weight: 500;\r\n}\r\n\r\n.tab-item.active::after {\r\n content: '';\r\n position: absolute;\r\n bottom: 0;\r\n left: 25%;\r\n right: 25%;\r\n height: 4rpx;\r\n border-radius: 2rpx;\r\n background-color: #007aff;\r\n}\r\n\r\n.tab-content {\r\n padding: 148rpx 32rpx 32rpx;\r\n box-sizing: border-box;\r\n}\r\n</style>\r\n\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/speaking_training_edu/speaking_training_edu.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;AAyCA,kBAAkB,MAAW;AAC7B,oBAAoB,MAAW;AAE/B,MAAK,YAAU;AAAA,EACb,YAAY;AAAA,IACV;AAAA,IACA;AAAA,EACD;AAAA,EACD,SAAS;AAAA,EAER;AAAA,EACD,OAAO;AACL,WAAO;AAAA,MACL,WAAW;AAAA;AAAA;EAEd;AAAA,EACD,gBAAgB;AAEd,QAAI,KAAK,cAAc,YAAY,KAAK,MAAM,aAAa,KAAK,MAAM,UAAU,UAAU;AACxF,WAAK,MAAM,UAAU;IACvB;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACP,UAAU,KAAK;AACb,WAAK,YAAY;AAAA,IAClB;AAAA,EACF;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACnEA,GAAG,WAAW,eAAe;"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"speaking_training_homework.js","sources":["pages/speaking_training_homework/speaking_training_homework.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvc3BlYWtpbmdfdHJhaW5pbmdfaG9tZXdvcmsvc3BlYWtpbmdfdHJhaW5pbmdfaG9tZXdvcmsudnVl"],"sourcesContent":["<template>\r\n <view class=\"homework-page\">\r\n <view class=\"hero\">\r\n <view class=\"hero-title\">作业</view>\r\n <view class=\"hero-desc\">提交与查看口训作业,按时完成练习</view>\r\n </view>\r\n\r\n <view class=\"panel\">\r\n <view class=\"panel-title\">暂无作业</view>\r\n <view class=\"panel-desc\">请等待老师发布作业或与老师联系。</view>\r\n </view>\r\n </view>\r\n</template>\r\n\r\n<script>\r\nexport default {\r\n onShow() {\r\n uni.setNavigationBarTitle({ title: '作业' });\r\n },\r\n};\r\n</script>\r\n\r\n<style>\r\n.homework-page {\r\n min-height: 100vh;\r\n padding: 16px 14px calc(64px + env(safe-area-inset-bottom));\r\n background: #f7f8fb;\r\n box-sizing: border-box;\r\n}\r\n\r\n.hero {\r\n background: linear-gradient(135deg, #7c8cff, #9fb1ff);\r\n color: #ffffff;\r\n border-radius: 14px;\r\n padding: 16px 14px;\r\n margin-bottom: 14px;\r\n box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);\r\n}\r\n\r\n.hero-title {\r\n font-size: 20px;\r\n font-weight: 700;\r\n margin-bottom: 6px;\r\n}\r\n\r\n.hero-desc {\r\n font-size: 13px;\r\n opacity: 0.92;\r\n}\r\n\r\n.panel {\r\n background: #ffffff;\r\n border-radius: 12px;\r\n padding: 14px 12px 16px;\r\n box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);\r\n}\r\n\r\n.panel-title {\r\n font-size: 16px;\r\n font-weight: 700;\r\n color: #111827;\r\n margin-bottom: 8px;\r\n}\r\n\r\n.panel-desc {\r\n font-size: 13px;\r\n color: #4b5563;\r\n line-height: 1.6;\r\n}\r\n</style>\r\n\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/speaking_training_homework/speaking_training_homework.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AAeA,MAAK,YAAU;AAAA,EACb,SAAS;AACPA,kBAAAA,MAAI,sBAAsB,EAAE,OAAO,KAAM,CAAA;AAAA,EAC1C;AACH;;;;;AClBA,GAAG,WAAW,eAAe;"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/team/team.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/team/team.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/components/DeviceBindPopup.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/components/DeviceBindPopup.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/components/DeviceListPopup.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/components/DeviceListPopup.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/read-news-log/read-news-log.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/read-news-log/read-news-log.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"read-news-log.js","sources":["pages/ucenter/read-news-log/read-news-log.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvdWNlbnRlci9yZWFkLW5ld3MtbG9nL3JlYWQtbmV3cy1sb2cudnVl"],"sourcesContent":["<template>\r\n\t<view class=\"container\">\r\n\t\t<unicloud-db ref=\"udb\" v-slot:default=\"{data, pagination, loading, hasMore, error}\" :where=\"udbWhere\"\r\n\t\t\tcollection=\"opendb-news-articles\" @load=\"isLoading == false\" @error=\"isLoading == false\"\r\n\t\t\tfield=\"title,_id\" :page-size=\"10\">\r\n\t\t\t<uni-list>\r\n\t\t\t\t<uni-list-item v-for=\"(item, index) in data\" :key=\"index\" :clickable=\"true\"\r\n\t\t\t\t\t@click=\"handleItemClick(item)\">\r\n\t\t\t\t\t<template v-slot:body>\r\n\t\t\t\t\t\t<view class=\"item\">\r\n\t\t\t\t\t\t\t<text>{{item.title}}</text>\r\n\t\t\t\t\t\t\t<uni-dateformat class=\"article-date\" :date=\"readNewsLog[index].last_time\" format=\"yyyy-MM-dd hh:mm\"\r\n\t\t\t\t\t\t\t\t:threshold=\"[0, 0]\" />\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</template>\r\n\t\t\t\t</uni-list-item>\r\n\t\t\t</uni-list>\r\n\t\t\t<uni-load-state @networkResume=\"refreshData\" :state=\"{data,pagination,hasMore, loading, error}\"></uni-load-state>\r\n\t\t</unicloud-db>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tisLoading: true,\r\n\t\t\t\tloadMore: {\r\n\t\t\t\t\tcontentdown: '',\r\n\t\t\t\t\tcontentrefresh: '',\r\n\t\t\t\t\tcontentnomore: '',\r\n\t\t\t\t},\r\n\t\t\t\treadNewsLog:[],\r\n\t\t\t\tudbWhere:''\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t\tthis.readNewsLog = uni.getStorageSync('readNewsLog')||[];\r\n\t\t\tlet readNewsLogIds = this.readNewsLog.map(({article_id})=>article_id)\r\n\t\t\tconsole.log(typeof readNewsLogIds,readNewsLogIds);\r\n\t\t\tthis.udbWhere = `\"_id\" in ${JSON.stringify(readNewsLogIds)}`\r\n\t\t\tuni.setNavigationBarTitle({\r\n\t\t\t\ttitle: this.$t('newsLog.navigationBarTitle')\r\n\t\t\t})\r\n\t\t},\r\n\t\tonPullDownRefresh() {\r\n\t\t\tthis.refreshData();\r\n\t\t},\r\n\t\tonReachBottom() {\r\n\t\t\tthis.$refs.udb.loadMore()\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\trefreshData() {\r\n\t\t\t\tthis.$refs.udb.loadData({\r\n\t\t\t\t\tclear: true\r\n\t\t\t\t}, (res) => {\r\n\t\t\t\t\tuni.stopPullDownRefresh()\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\thandleItemClick(item) {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: '/pages/list/detail?id=' + item._id + '&title=' + item.title\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\t.item{\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t}\r\n\t.article-date {\r\n\t\tcolor: #C8C7CC;\r\n\t}\r\n</style>\r\n","import MiniProgramPage from 'D:/work2/code/smartDriveEEUniApp1111/pages/ucenter/read-news-log/read-news-log.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;AAuBC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO;AAAA,MACN,WAAW;AAAA,MACX,UAAU;AAAA,QACT,aAAa;AAAA,QACb,gBAAgB;AAAA,QAChB,eAAe;AAAA,MACf;AAAA,MACD,aAAY,CAAE;AAAA,MACd,UAAS;AAAA,IACV;AAAA,EACA;AAAA,EACD,SAAS;AACR,SAAK,cAAcA,cAAG,MAAC,eAAe,aAAa,KAAG,CAAA;AACtD,QAAI,iBAAiB,KAAK,YAAY,IAAI,CAAC,EAAC,WAAU,MAAI,UAAU;AACpEA,kBAAA,MAAA,MAAA,OAAA,uDAAY,OAAO,gBAAe,cAAc;AAChD,SAAK,WAAW,YAAY,KAAK,UAAU,cAAc,CAAC;AAC1DA,kBAAAA,MAAI,sBAAsB;AAAA,MACzB,OAAO,KAAK,GAAG,4BAA4B;AAAA,KAC3C;AAAA,EACD;AAAA,EACD,oBAAoB;AACnB,SAAK,YAAW;AAAA,EAChB;AAAA,EACD,gBAAgB;AACf,SAAK,MAAM,IAAI,SAAS;AAAA,EACxB;AAAA,EACD,SAAS;AAAA,IACR,cAAc;AACb,WAAK,MAAM,IAAI,SAAS;AAAA,QACvB,OAAO;AAAA,MACP,GAAE,CAAC,QAAQ;AACXA,sBAAAA,MAAI,oBAAoB;AAAA,OACxB;AAAA,IACD;AAAA,IACD,gBAAgB,MAAM;AACrBA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK,2BAA2B,KAAK,MAAM,YAAY,KAAK;AAAA,OAC5D;AAAA,IACF;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AChED,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/settings/dc-push/push.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/settings/dc-push/push.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/settings/settings.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/settings/settings.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/ucenter.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/ucenter.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-agree/uni-agree.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-agree/uni-agree.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-agree/utils/uni-agree.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-agree/utils/uni-agree.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-agree.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/workspace/scene-detail.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/workspace/scene-detail.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/workspace/workspace.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/workspace/workspace.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni-starter.config.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni-starter.config.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-starter.config.js","sources":["uni-starter.config.js"],"sourcesContent":["//这是应用的配置页面,App.vue挂载到getApp().globalData.config\r\nexport default {\r\n\t\"h5\": {\r\n\t\t\"url\": \"https://uni-starter.dcloud.net.cn\", //\t前端网页托管的域名\t\r\n\t\t // 在h5端全局悬浮引导用户下载app的功能 更多自定义要求在/common/openApp.js中修改\t\r\n\t\t\"openApp\": { //如不需要本功能直接移除本节点即可\t\r\n\t\t\t// //点击悬浮下载栏后打开的网页链接\r\n\t\t\t// \"openUrl\": '/#/pages/ucenter/invite/invite',\r\n\t\t\t// //左侧显示的应用名称\t\r\n\t\t\t// \"appname\": 'uni-starter',\r\n\t\t\t// //应用的图标\t\r\n\t\t\t// \"logo\": './static/logo.png',\r\n\t\t}\r\n\t},\r\n\t\"mp\": {\r\n\t\t\"weixin\": {\r\n\t\t\t//微信小程序原始id,微信小程序分享时\r\n\t\t\t\"id\": \"\"\r\n\t\t}\r\n\t},\r\n\t//关于应用\r\n\t\"about\": {\r\n\t\t//应用名称\r\n\t\t\"appName\": \"uni-starter\",\r\n\t\t//应用logo\r\n\t\t\"logo\": \"/static/logo.png\",\r\n\t\t//公司名称\r\n\t\t\"company\": \"北京xx网络技术有限公司\",\r\n\t\t//口号\r\n\t\t\"slogan\": \"云端一体应用快速开发模版\",\r\n\t\t//应用的链接,用于分享到第三方平台和生成关于我们页的二维码\r\n\t\t\"download\": \"https://itunes.apple.com/cn/app/hello-uni-app/id1417078253?mt=8\",\r\n\t\t//version\r\n\t\t\"version\":\"1.0.0\" //用于非app端显示,app端自动获取\r\n\t},\r\n\t\"download\":{ //用于生成二合一下载页面\r\n\t\t\"ios\":\"https://itunes.apple.com/cn/app/hello-uni-app/id1417078253?mt=8\",\r\n\t\t\"android\":\"https://vkceyugu.cdn.bspapp.com/VKCEYUGU-97fca9f2-41f6-449f-a35e-3f135d4c3875/6d754387-a6c3-48ed-8ad2-e8f39b40fc01.apk\"\r\n\t},\r\n\t//用于打开应用市场评分界面\r\n\t\"marketId\":{\r\n\t\t\"ios\":\"\",\r\n\t\t\"android\":\"\"\r\n\t},\r\n\t//配置多语言国际化。i18n为英文单词 internationalization的首末字符i和n,18为中间的字符数 是“国际化”的简称\r\n\t\"i18n\":{\r\n\t\t\"enable\":false //默认关闭,国际化。如果你想使用国际化相关功能,请改为true\r\n\t}\r\n}"],"names":[],"mappings":";AACA,MAAe,SAAA;AAAA,EACd,MAAM;AAAA,IACL,OAAO;AAAA;AAAA;AAAA,IAEP,WAAW;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAOV;AAAA,EACD;AAAA,EACD,MAAM;AAAA,IACL,UAAU;AAAA;AAAA,MAET,MAAM;AAAA,IACN;AAAA,EACD;AAAA;AAAA,EAED,SAAS;AAAA;AAAA,IAER,WAAW;AAAA;AAAA,IAEX,QAAQ;AAAA;AAAA,IAER,WAAW;AAAA;AAAA,IAEX,UAAU;AAAA;AAAA,IAEV,YAAY;AAAA;AAAA,IAEZ,WAAU;AAAA;AAAA,EACV;AAAA,EACD,YAAW;AAAA;AAAA,IACV,OAAM;AAAA,IACN,WAAU;AAAA,EACV;AAAA;AAAA,EAED,YAAW;AAAA,IACV,OAAM;AAAA,IACN,WAAU;AAAA,EACV;AAAA;AAAA,EAED,QAAO;AAAA,IACN,UAAS;AAAA;AAAA,EACT;AACF;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/json-gps/js_sdk/gps.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/json-gps/js_sdk/gps.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-popup-captcha.js","sources":["uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup-captcha.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3VuaV9tb2R1bGVzL3VuaS1jYXB0Y2hhL2NvbXBvbmVudHMvdW5pLXBvcHVwLWNhcHRjaGEvdW5pLXBvcHVwLWNhcHRjaGEudnVl"],"sourcesContent":["<template>\r\n\t<uni-popup ref=\"popup\" type=\"center\">\r\n\t\t<view class=\"popup-captcha\">\r\n\t\t\t<view class=\"content\">\r\n\t\t\t\t<text class=\"title\">{{title}}</text>\r\n\t\t\t\t<uni-captcha :focus=\"focus\" :scene=\"scene\" v-model=\"val\"></uni-captcha>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"button-box\">\r\n\t\t\t\t<view @click=\"close\" class=\"btn\">取消</view>\r\n\t\t\t\t<view @click=\"confirm\" class=\"btn confirm\">确认</view>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</uni-popup>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tfocus: false\r\n\t\t\t}\r\n\t\t},\r\n\t\tprops: {\r\n\t\t\tmodelValue:String,\r\n\t\t\tvalue:String,\r\n\t\t\tscene: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn \"\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\ttitle: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn \"\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t},\r\n\t\tcomputed:{\r\n\t\t\tval:{\r\n\t\t\t\tget(){\r\n\t\t\t\t\treturn this.value||this.modelValue\r\n\t\t\t\t},\r\n\t\t\t\tset(value){\r\n\t\t\t\t\t// console.log(value);\r\n\t\t\t\t\t// TODO 兼容 vue2\r\n\t\t\t\t\t// #ifdef VUE2\r\n\t\t\t\t\tthis.$emit('input', value);\r\n\t\t\t\t\t// #endif\r\n\t\t\t\t\t\r\n\t\t\t\t\t// TODO 兼容 vue3\r\n\t\t\t\t\t// #ifdef VUE3\r\n\t\t\t\t\tthis.$emit('update:modelValue', value)\r\n\t\t\t\t\t// #endif\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\topen() {\r\n\t\t\t\tthis.focus = true\r\n\t\t\t\tthis.val = \"\"\r\n\t\t\t\tthis.$refs.popup.open()\r\n\t\t\t},\r\n\t\t\tclose() {\r\n\t\t\t\tthis.focus = false\r\n\t\t\t\tthis.$refs.popup.close()\r\n\t\t\t},\r\n\t\t\tconfirm() {\r\n\t\t\t\tif(!this.val){\r\n\t\t\t\t\treturn uni.showToast({\r\n\t\t\t\t\t\ttitle: '请填写验证码',\r\n\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\t\t\t\tthis.close()\r\n\t\t\t\tthis.$emit('confirm')\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t/* #ifndef APP-NVUE */\r\n\tview {\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t}\r\n\r\n\t/* #endif */\r\n\t.popup-captcha {\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tdisplay: flex;\r\n\t\tmax-width: 600px;\r\n\t\t/* #endif */\r\n\t\twidth: 600rpx;\r\n\t\tpadding-bottom: 0;\r\n\t\tbackground-color: #FFF;\r\n\t\tborder-radius: 10px;\r\n\t\tflex-direction: column;\r\n\t\tposition: relative;\r\n\t}\r\n\r\n\t.popup-captcha .content {\r\n\t\tpadding: 1.3em 0.8em;\r\n\t}\r\n\r\n\t.popup-captcha .title {\r\n\t\ttext-align: center;\r\n\t\tword-wrap: break-word;\r\n\t\tword-break: break-all;\r\n\t\twhite-space: pre-wrap;\r\n\t\tfont-weight: 400;\r\n\t\tfont-size: 18px;\r\n\t\toverflow: hidden;\r\n\t\ttext-overflow: ellipsis;\r\n\t\tcolor: #111;\r\n\t\tmargin-bottom: 15px;\r\n\t}\r\n\r\n\t.button-box {\r\n\t\theight: 44px;\r\n\t\tborder-top: solid 1px #eee;\r\n\t\tflex-direction: row;\r\n\t\talign-items: center;\r\n\t\tjustify-content: space-around;\r\n\t}\r\n\t.button-box ,.btn{\r\n\t\theight: 44px;\r\n\t\tline-height: 44px;\r\n\t}\r\n\t.button-box .btn{\r\n\t\tflex: 1;\r\n\t\tmargin: 1px;\r\n\t\ttext-align: center;\r\n\t}\r\n\t.button-box .confirm{\r\n\t\tcolor: #007aff;\r\n\t\tborder-left: solid 1px #eee;\r\n\t}\r\n</style>\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup-captcha.vue'\nwx.createComponent(Component)"],"names":["uni"],"mappings":";;AAgBC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO;AAAA,MACN,OAAO;AAAA,IACR;AAAA,EACA;AAAA,EACD,OAAO;AAAA,IACN,YAAW;AAAA,IACX,OAAM;AAAA,IACN,OAAO;AAAA,MACN,MAAM;AAAA,MACN,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,IACD,OAAO;AAAA,MACN,MAAM;AAAA,MACN,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,EACD;AAAA,EACD,UAAS;AAAA,IACR,KAAI;AAAA,MACH,MAAK;AACJ,eAAO,KAAK,SAAO,KAAK;AAAA,MACxB;AAAA,MACD,IAAI,OAAM;AAST,aAAK,MAAM,qBAAqB,KAAK;AAAA,MAEtC;AAAA,IACD;AAAA,EACA;AAAA,EACD,SAAS;AAAA,IACR,OAAO;AACN,WAAK,QAAQ;AACb,WAAK,MAAM;AACX,WAAK,MAAM,MAAM,KAAK;AAAA,IACtB;AAAA,IACD,QAAQ;AACP,WAAK,QAAQ;AACb,WAAK,MAAM,MAAM,MAAM;AAAA,IACvB;AAAA,IACD,UAAU;AACT,UAAG,CAAC,KAAK,KAAI;AACZ,eAAOA,cAAAA,MAAI,UAAU;AAAA,UACpB,OAAO;AAAA,UACP,MAAM;AAAA,QACP,CAAC;AAAA,MACF;AACA,WAAK,MAAM;AACX,WAAK,MAAM,SAAS;AAAA,IACrB;AAAA,EACD;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC7ED,GAAG,gBAAgB,SAAS;"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-dateformat.js","sources":["uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3VuaV9tb2R1bGVzL3VuaS1kYXRlZm9ybWF0L2NvbXBvbmVudHMvdW5pLWRhdGVmb3JtYXQvdW5pLWRhdGVmb3JtYXQudnVl"],"sourcesContent":["<template>\r\n\t<text>{{dateShow}}</text>\r\n</template>\r\n\r\n<script>\r\n\timport {friendlyDate} from './date-format.js'\r\n\t/**\r\n\t * Dateformat 日期格式化\r\n\t * @description 日期格式化组件\r\n\t * @tutorial https://ext.dcloud.net.cn/plugin?id=3279\r\n\t * @property {Object|String|Number} date 日期对象/日期字符串/时间戳\r\n\t * @property {String} locale 格式化使用的语言\r\n\t * \t@value zh 中文\r\n\t * \t@value en 英文\r\n\t * @property {Array} threshold 应用不同类型格式化的阈值\r\n\t * @property {String} format 输出日期字符串时的格式\r\n\t */\r\n\texport default {\r\n\t\tname: 'uniDateformat',\r\n\t\tprops: {\r\n\t\t\tdate: {\r\n\t\t\t\ttype: [Object, String, Number],\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn '-'\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tlocale: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: 'zh',\r\n\t\t\t},\r\n\t\t\tthreshold: {\r\n\t\t\t\ttype: Array,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn [0, 0]\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tformat: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: 'yyyy/MM/dd hh:mm:ss'\r\n\t\t\t},\r\n\t\t\t// refreshRate使用不当可能导致性能问题,谨慎使用\r\n\t\t\trefreshRate: {\r\n\t\t\t\ttype: [Number, String],\r\n\t\t\t\tdefault: 0\r\n\t\t\t}\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\trefreshMark: 0\r\n\t\t\t}\r\n\t\t},\r\n\t\tcomputed: {\r\n\t\t\tdateShow() {\r\n\t\t\t\tthis.refreshMark\r\n\t\t\t\treturn friendlyDate(this.date, {\r\n\t\t\t\t\tlocale: this.locale,\r\n\t\t\t\t\tthreshold: this.threshold,\r\n\t\t\t\t\tformat: this.format\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t},\r\n\t\twatch: {\r\n\t\t\trefreshRate: {\r\n\t\t\t\thandler() {\r\n\t\t\t\t\tthis.setAutoRefresh()\r\n\t\t\t\t},\r\n\t\t\t\timmediate: true\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\trefresh() {\r\n\t\t\t\tthis.refreshMark++\r\n\t\t\t},\r\n\t\t\tsetAutoRefresh() {\r\n\t\t\t\tclearInterval(this.refreshInterval)\r\n\t\t\t\tif (this.refreshRate) {\r\n\t\t\t\t\tthis.refreshInterval = setInterval(() => {\r\n\t\t\t\t\t\tthis.refresh()\r\n\t\t\t\t\t}, parseInt(this.refreshRate))\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\r\n</style>\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue'\nwx.createComponent(Component)"],"names":["friendlyDate"],"mappings":";;;AAiBC,MAAK,YAAU;AAAA,EACd,MAAM;AAAA,EACN,OAAO;AAAA,IACN,MAAM;AAAA,MACL,MAAM,CAAC,QAAQ,QAAQ,MAAM;AAAA,MAC7B,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,IACD,QAAQ;AAAA,MACP,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,WAAW;AAAA,MACV,MAAM;AAAA,MACN,UAAW;AACV,eAAO,CAAC,GAAG,CAAC;AAAA,MACb;AAAA,IACA;AAAA,IACD,QAAQ;AAAA,MACP,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA;AAAA,IAED,aAAa;AAAA,MACZ,MAAM,CAAC,QAAQ,MAAM;AAAA,MACrB,SAAS;AAAA,IACV;AAAA,EACA;AAAA,EACD,OAAO;AACN,WAAO;AAAA,MACN,aAAa;AAAA,IACd;AAAA,EACA;AAAA,EACD,UAAU;AAAA,IACT,WAAW;AACV,WAAK;AACL,aAAOA,8DAAY,aAAC,KAAK,MAAM;AAAA,QAC9B,QAAQ,KAAK;AAAA,QACb,WAAW,KAAK;AAAA,QAChB,QAAQ,KAAK;AAAA,OACb;AAAA,IACF;AAAA,EACA;AAAA,EACD,OAAO;AAAA,IACN,aAAa;AAAA,MACZ,UAAU;AACT,aAAK,eAAe;AAAA,MACpB;AAAA,MACD,WAAW;AAAA,IACZ;AAAA,EACA;AAAA,EACD,SAAS;AAAA,IACR,UAAU;AACT,WAAK;AAAA,IACL;AAAA,IACD,iBAAiB;AAChB,oBAAc,KAAK,eAAe;AAClC,UAAI,KAAK,aAAa;AACrB,aAAK,kBAAkB,YAAY,MAAM;AACxC,eAAK,QAAQ;AAAA,WACX,SAAS,KAAK,WAAW,CAAC;AAAA,MAC9B;AAAA,IACD;AAAA,EACD;AACD;;;;;;;ACjFD,GAAG,gBAAgB,SAAS;"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"opendb-feedback.js","sources":["uni_modules/uni-feedback/js_sdk/validator/opendb-feedback.js"],"sourcesContent":["// 表单校验规则由 schema2code 生成,不建议直接修改校验规则,而建议通过 schema2code 生成, 详情: https://uniapp.dcloud.net.cn/uniCloud/schema\r\n\r\n\r\nconst validator = {\r\n \"content\": {\r\n \"rules\": [\r\n {\r\n \"required\": true\r\n },\r\n {\r\n \"format\": \"string\"\r\n }\r\n ],\r\n \"label\": \"留言内容/回复内容\"\r\n },\r\n \"imgs\": {\r\n \"rules\": [\r\n {\r\n \"format\": \"array\"\r\n },\r\n {\r\n \"arrayType\": \"file\"\r\n },\r\n {\r\n \"maxLength\": 6\r\n }\r\n ],\r\n \"label\": \"图片列表\"\r\n },\r\n \"contact\": {\r\n \"rules\": [\r\n {\r\n \"format\": \"string\"\r\n }\r\n ],\r\n \"label\": \"联系人\"\r\n },\r\n \"mobile\": {\r\n \"rules\": [\r\n {\r\n \"format\": \"string\"\r\n },\r\n {\r\n \"pattern\": \"^\\\\+?[0-9-]{3,20}$\"\r\n }\r\n ],\r\n \"label\": \"联系电话\"\r\n }\r\n}\r\n\r\nconst enumConverter = {}\r\n\r\nfunction filterToWhere(filter, command) {\r\n let where = {}\r\n for (let field in filter) {\r\n let { type, value } = filter[field]\r\n switch (type) {\r\n case \"search\":\r\n if (typeof value === 'string' && value.length) {\r\n where[field] = new RegExp(value)\r\n }\r\n break;\r\n case \"select\":\r\n if (value.length) {\r\n let selectValue = []\r\n for (let s of value) {\r\n selectValue.push(command.eq(s))\r\n }\r\n where[field] = command.or(selectValue)\r\n }\r\n break;\r\n case \"range\":\r\n if (value.length) {\r\n let gt = value[0]\r\n let lt = value[1]\r\n where[field] = command.and([command.gte(gt), command.lte(lt)])\r\n }\r\n break;\r\n case \"date\":\r\n if (value.length) {\r\n let [s, e] = value\r\n let startDate = new Date(s)\r\n let endDate = new Date(e)\r\n where[field] = command.and([command.gte(startDate), command.lte(endDate)])\r\n }\r\n break;\r\n case \"timestamp\":\r\n if (value.length) {\r\n let [startDate, endDate] = value\r\n where[field] = command.and([command.gte(startDate), command.lte(endDate)])\r\n }\r\n break;\r\n }\r\n }\r\n return where\r\n}\r\n\r\nexport { validator, enumConverter, filterToWhere }\r\n"],"names":[],"mappings":";AAGK,MAAC,YAAY;AAAA,EAChB,WAAW;AAAA,IACT,SAAS;AAAA,MACP;AAAA,QACE,YAAY;AAAA,MACb;AAAA,MACD;AAAA,QACE,UAAU;AAAA,MACX;AAAA,IACF;AAAA,IACD,SAAS;AAAA,EACV;AAAA,EACD,QAAQ;AAAA,IACN,SAAS;AAAA,MACP;AAAA,QACE,UAAU;AAAA,MACX;AAAA,MACD;AAAA,QACE,aAAa;AAAA,MACd;AAAA,MACD;AAAA,QACE,aAAa;AAAA,MACd;AAAA,IACF;AAAA,IACD,SAAS;AAAA,EACV;AAAA,EACD,WAAW;AAAA,IACT,SAAS;AAAA,MACP;AAAA,QACE,UAAU;AAAA,MACX;AAAA,IACF;AAAA,IACD,SAAS;AAAA,EACV;AAAA,EACD,UAAU;AAAA,IACR,SAAS;AAAA,MACP;AAAA,QACE,UAAU;AAAA,MACX;AAAA,MACD;AAAA,QACE,WAAW;AAAA,MACZ;AAAA,IACF;AAAA,IACD,SAAS;AAAA,EACV;AACH;;"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"utils.js","sources":["uni_modules/uni-file-picker/components/uni-file-picker/utils.js"],"sourcesContent":["/**\r\n * 获取文件名和后缀\r\n * @param {String} name\r\n */\r\nexport const get_file_ext = (name) => {\r\n\tconst last_len = name.lastIndexOf('.')\r\n\tconst len = name.length\r\n\treturn {\r\n\t\tname: name.substring(0, last_len),\r\n\t\text: name.substring(last_len + 1, len)\r\n\t}\r\n}\r\n\r\n/**\r\n * 获取扩展名\r\n * @param {Array} fileExtname\r\n */\r\nexport const get_extname = (fileExtname) => {\r\n\tif (!Array.isArray(fileExtname)) {\r\n\t\tlet extname = fileExtname.replace(/(\\[|\\])/g, '')\r\n\t\treturn extname.split(',')\r\n\t} else {\r\n\t\treturn fileExtname\r\n\t}\r\n\treturn []\r\n}\r\n\r\n/**\r\n * 获取文件和检测是否可选\r\n */\r\nexport const get_files_and_is_max = (res, _extname) => {\r\n\tlet filePaths = []\r\n\tlet files = []\r\n\tif(!_extname || _extname.length === 0){\r\n\t\treturn {\r\n\t\t\tfilePaths,\r\n\t\t\tfiles\r\n\t\t}\r\n\t}\r\n\tres.tempFiles.forEach(v => {\r\n\t\tlet fileFullName = get_file_ext(v.name)\r\n\t\tconst extname = fileFullName.ext.toLowerCase()\r\n\t\tif (_extname.indexOf(extname) !== -1) {\r\n\t\t\tfiles.push(v)\r\n\t\t\tfilePaths.push(v.path)\r\n\t\t}\r\n\t})\r\n\tif (files.length !== res.tempFiles.length) {\r\n\t\tuni.showToast({\r\n\t\t\ttitle: `当前选择了${res.tempFiles.length}个文件 ,${res.tempFiles.length - files.length} 个文件格式不正确`,\r\n\t\t\ticon: 'none',\r\n\t\t\tduration: 5000\r\n\t\t})\r\n\t}\r\n\r\n\treturn {\r\n\t\tfilePaths,\r\n\t\tfiles\r\n\t}\r\n}\r\n\r\n\r\n/**\r\n * 获取图片信息\r\n * @param {Object} filepath\r\n */\r\nexport const get_file_info = (filepath) => {\r\n\treturn new Promise((resolve, reject) => {\r\n\t\tuni.getImageInfo({\r\n\t\t\tsrc: filepath,\r\n\t\t\tsuccess(res) {\r\n\t\t\t\tresolve(res)\r\n\t\t\t},\r\n\t\t\tfail(err) {\r\n\t\t\t\treject(err)\r\n\t\t\t}\r\n\t\t})\r\n\t})\r\n}\r\n/**\r\n * 获取封装数据\r\n */\r\nexport const get_file_data = async (files, type = 'image') => {\r\n\t// 最终需要上传数据库的数据\r\n\tlet fileFullName = get_file_ext(files.name)\r\n\tconst extname = fileFullName.ext.toLowerCase()\r\n\tlet filedata = {\r\n\t\tname: files.name,\r\n\t\tuuid: files.uuid,\r\n\t\textname: extname || '',\r\n\t\tcloudPath: files.cloudPath,\r\n\t\tfileType: files.fileType,\r\n\t\tthumbTempFilePath: files.thumbTempFilePath,\r\n\t\turl: files.path || files.path,\r\n\t\tsize: files.size, //单位是字节\r\n\t\timage: {},\r\n\t\tpath: files.path,\r\n\t\tvideo: {}\r\n\t}\r\n\tif (type === 'image') {\r\n\t\tconst imageinfo = await get_file_info(files.path)\r\n\t\tdelete filedata.video\r\n\t\tfiledata.image.width = imageinfo.width\r\n\t\tfiledata.image.height = imageinfo.height\r\n\t\tfiledata.image.location = imageinfo.path\r\n\t} else {\r\n\t\tdelete filedata.image\r\n\t}\r\n\treturn filedata\r\n}\r\n"],"names":["uni"],"mappings":";;AAIO,MAAM,eAAe,CAAC,SAAS;AACrC,QAAM,WAAW,KAAK,YAAY,GAAG;AACrC,QAAM,MAAM,KAAK;AACjB,SAAO;AAAA,IACN,MAAM,KAAK,UAAU,GAAG,QAAQ;AAAA,IAChC,KAAK,KAAK,UAAU,WAAW,GAAG,GAAG;AAAA,EACrC;AACF;AAMY,MAAC,cAAc,CAAC,gBAAgB;AAC3C,MAAI,CAAC,MAAM,QAAQ,WAAW,GAAG;AAChC,QAAI,UAAU,YAAY,QAAQ,YAAY,EAAE;AAChD,WAAO,QAAQ,MAAM,GAAG;AAAA,EAC1B,OAAQ;AACN,WAAO;AAAA,EACP;AAEF;AAKY,MAAC,uBAAuB,CAAC,KAAK,aAAa;AACtD,MAAI,YAAY,CAAE;AAClB,MAAI,QAAQ,CAAE;AACd,MAAG,CAAC,YAAY,SAAS,WAAW,GAAE;AACrC,WAAO;AAAA,MACN;AAAA,MACA;AAAA,IACA;AAAA,EACD;AACD,MAAI,UAAU,QAAQ,OAAK;AAC1B,QAAI,eAAe,aAAa,EAAE,IAAI;AACtC,UAAM,UAAU,aAAa,IAAI,YAAa;AAC9C,QAAI,SAAS,QAAQ,OAAO,MAAM,IAAI;AACrC,YAAM,KAAK,CAAC;AACZ,gBAAU,KAAK,EAAE,IAAI;AAAA,IACrB;AAAA,EACH,CAAE;AACD,MAAI,MAAM,WAAW,IAAI,UAAU,QAAQ;AAC1CA,kBAAAA,MAAI,UAAU;AAAA,MACb,OAAO,QAAQ,IAAI,UAAU,MAAM,QAAQ,IAAI,UAAU,SAAS,MAAM,MAAM;AAAA,MAC9E,MAAM;AAAA,MACN,UAAU;AAAA,IACb,CAAG;AAAA,EACD;AAED,SAAO;AAAA,IACN;AAAA,IACA;AAAA,EACA;AACF;AAOO,MAAM,gBAAgB,CAAC,aAAa;AAC1C,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,aAAa;AAAA,MAChB,KAAK;AAAA,MACL,QAAQ,KAAK;AACZ,gBAAQ,GAAG;AAAA,MACX;AAAA,MACD,KAAK,KAAK;AACT,eAAO,GAAG;AAAA,MACV;AAAA,IACJ,CAAG;AAAA,EACH,CAAE;AACF;AAIY,MAAC,gBAAgB,OAAO,OAAO,OAAO,YAAY;AAE7D,MAAI,eAAe,aAAa,MAAM,IAAI;AAC1C,QAAM,UAAU,aAAa,IAAI,YAAa;AAC9C,MAAI,WAAW;AAAA,IACd,MAAM,MAAM;AAAA,IACZ,MAAM,MAAM;AAAA,IACZ,SAAS,WAAW;AAAA,IACpB,WAAW,MAAM;AAAA,IACjB,UAAU,MAAM;AAAA,IAChB,mBAAmB,MAAM;AAAA,IACzB,KAAK,MAAM,QAAQ,MAAM;AAAA,IACzB,MAAM,MAAM;AAAA;AAAA,IACZ,OAAO,CAAE;AAAA,IACT,MAAM,MAAM;AAAA,IACZ,OAAO,CAAE;AAAA,EACT;AACD,MAAI,SAAS,SAAS;AACrB,UAAM,YAAY,MAAM,cAAc,MAAM,IAAI;AAChD,WAAO,SAAS;AAChB,aAAS,MAAM,QAAQ,UAAU;AACjC,aAAS,MAAM,SAAS,UAAU;AAClC,aAAS,MAAM,WAAW,UAAU;AAAA,EACtC,OAAQ;AACN,WAAO,SAAS;AAAA,EAChB;AACD,SAAO;AACR;;;;"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-grid-item.js","sources":["uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3VuaV9tb2R1bGVzL3VuaS1ncmlkL2NvbXBvbmVudHMvdW5pLWdyaWQtaXRlbS91bmktZ3JpZC1pdGVtLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view v-if=\"width\" :style=\"'width:'+width+';'+(square?'height:'+width:'')\" class=\"uni-grid-item\">\r\n\t\t<view :class=\"{ 'uni-grid-item--border': showBorder, 'uni-grid-item--border-top': showBorder && index < column, 'uni-highlight': highlight }\"\r\n\t\t :style=\"{'border-right-color': borderColor ,'border-bottom-color': borderColor ,'border-top-color': borderColor }\"\r\n\t\t class=\"uni-grid-item__box\" @click=\"_onClick\">\r\n\t\t\t<slot />\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t/**\r\n\t * GridItem 宫格\r\n\t * @description 宫格组件\r\n\t * @tutorial https://ext.dcloud.net.cn/plugin?id=27\r\n\t * @property {Number} index 子组件的唯一标识 ,点击gird会返回当前的标识\r\n\t */\r\n\texport default {\r\n\t\tname: 'UniGridItem',\r\n\t\tinject: ['grid'],\r\n\t\tprops: {\r\n\t\t\tindex: {\r\n\t\t\t\ttype: Number,\r\n\t\t\t\tdefault: 0\r\n\t\t\t}\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tcolumn: 0,\r\n\t\t\t\tshowBorder: true,\r\n\t\t\t\tsquare: true,\r\n\t\t\t\thighlight: true,\r\n\t\t\t\tleft: 0,\r\n\t\t\t\ttop: 0,\r\n\t\t\t\topenNum: 2,\r\n\t\t\t\twidth: 0,\r\n\t\t\t\tborderColor: '#e5e5e5'\r\n\t\t\t}\r\n\t\t},\r\n\t\tcreated() {\r\n\t\t\tthis.column = this.grid.column\r\n\t\t\tthis.showBorder = this.grid.showBorder\r\n\t\t\tthis.square = this.grid.square\r\n\t\t\tthis.highlight = this.grid.highlight\r\n\t\t\tthis.top = this.hor === 0 ? this.grid.hor : this.hor\r\n\t\t\tthis.left = this.ver === 0 ? this.grid.ver : this.ver\r\n\t\t\tthis.borderColor = this.grid.borderColor\r\n\t\t\tthis.grid.children.push(this)\r\n\t\t\t// this.grid.init()\r\n\t\t\tthis.width = this.grid.width\r\n\t\t},\r\n\t\tbeforeDestroy() {\r\n\t\t\tthis.grid.children.forEach((item, index) => {\r\n\t\t\t\tif (item === this) {\r\n\t\t\t\t\tthis.grid.children.splice(index, 1)\r\n\t\t\t\t}\r\n\t\t\t})\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t_onClick() {\r\n\t\t\t\tthis.grid.change({\r\n\t\t\t\t\tdetail: {\r\n\t\t\t\t\t\tindex: this.index\r\n\t\t\t\t\t}\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t.uni-grid-item {\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\theight: 100%;\r\n\t\tdisplay: flex;\r\n\t\t/* #endif */\r\n\t\t/* #ifdef H5 */\r\n\t\tcursor: pointer;\r\n\t\t/* #endif */\r\n\t}\r\n\r\n\t.uni-grid-item__box {\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tdisplay: flex;\r\n\t\twidth: 100%;\r\n\t\t/* #endif */\r\n\t\tposition: relative;\r\n\t\tflex: 1;\r\n\t\tflex-direction: column;\r\n\t\t// justify-content: center;\r\n\t\t// align-items: center;\r\n\t}\r\n\r\n\t.uni-grid-item--border {\r\n\t\tposition: relative;\r\n\t\t/* #ifdef APP-NVUE */\r\n\t\tborder-bottom-color: #D2D2D2;\r\n\t\tborder-bottom-style: solid;\r\n\t\tborder-bottom-width: 0.5px;\r\n\t\tborder-right-color: #D2D2D2;\r\n\t\tborder-right-style: solid;\r\n\t\tborder-right-width: 0.5px;\r\n\t\t/* #endif */\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tz-index: 0;\r\n\t\tborder-bottom: 1px #D2D2D2 solid;\r\n\t\tborder-right: 1px #D2D2D2 solid;\r\n\t\t/* #endif */\r\n\t}\r\n\t.uni-grid-item--border-top {\r\n\t\tposition: relative;\r\n\t\t/* #ifdef APP-NVUE */\r\n\t\tborder-top-color: #D2D2D2;\r\n\t\tborder-top-style: solid;\r\n\t\tborder-top-width: 0.5px;\r\n\t\t/* #endif */\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tborder-top: 1px #D2D2D2 solid;\r\n\t\tz-index: 0;\r\n\t\t/* #endif */\r\n\t}\r\n\r\n\r\n\t.uni-highlight:active {\r\n\t\tbackground-color: #f1f1f1;\r\n\t}\r\n</style>\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue'\nwx.createComponent(Component)"],"names":[],"mappings":";;AAiBC,MAAK,YAAU;AAAA,EACd,MAAM;AAAA,EACN,QAAQ,CAAC,MAAM;AAAA,EACf,OAAO;AAAA,IACN,OAAO;AAAA,MACN,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACA;AAAA,EACD,OAAO;AACN,WAAO;AAAA,MACN,QAAQ;AAAA,MACR,YAAY;AAAA,MACZ,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,MAAM;AAAA,MACN,KAAK;AAAA,MACL,SAAS;AAAA,MACT,OAAO;AAAA,MACP,aAAa;AAAA,IACd;AAAA,EACA;AAAA,EACD,UAAU;AACT,SAAK,SAAS,KAAK,KAAK;AACxB,SAAK,aAAa,KAAK,KAAK;AAC5B,SAAK,SAAS,KAAK,KAAK;AACxB,SAAK,YAAY,KAAK,KAAK;AAC3B,SAAK,MAAM,KAAK,QAAQ,IAAI,KAAK,KAAK,MAAM,KAAK;AACjD,SAAK,OAAO,KAAK,QAAQ,IAAI,KAAK,KAAK,MAAM,KAAK;AAClD,SAAK,cAAc,KAAK,KAAK;AAC7B,SAAK,KAAK,SAAS,KAAK,IAAI;AAE5B,SAAK,QAAQ,KAAK,KAAK;AAAA,EACvB;AAAA,EACD,gBAAgB;AACf,SAAK,KAAK,SAAS,QAAQ,CAAC,MAAM,UAAU;AAC3C,UAAI,SAAS,MAAM;AAClB,aAAK,KAAK,SAAS,OAAO,OAAO,CAAC;AAAA,MACnC;AAAA,KACA;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACR,WAAW;AACV,WAAK,KAAK,OAAO;AAAA,QAChB,QAAQ;AAAA,UACP,OAAO,KAAK;AAAA,QACb;AAAA,OACA;AAAA,IACF;AAAA,EACD;AACD;;;;;;;;;;;;;;;;AClED,GAAG,gBAAgB,SAAS;"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"uni-icons.js","sources":["uni_modules/uni-icons/components/uni-icons/uni-icons.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3VuaV9tb2R1bGVzL3VuaS1pY29ucy9jb21wb25lbnRzL3VuaS1pY29ucy91bmktaWNvbnMudnVl"],"sourcesContent":["<template>\r\n\t<!-- #ifdef APP-NVUE -->\r\n\t<text :style=\"styleObj\" class=\"uni-icons\" @click=\"_onClick\">{{unicode}}</text>\r\n\t<!-- #endif -->\r\n\t<!-- #ifndef APP-NVUE -->\r\n\t<text :style=\"styleObj\" class=\"uni-icons\" :class=\"['uniui-'+type,customPrefix,customPrefix?type:'']\" @click=\"_onClick\">\r\n\t\t<slot></slot>\r\n\t</text>\r\n\t<!-- #endif -->\r\n</template>\r\n\r\n<script>\r\n\timport { fontData } from './uniicons_file_vue.js';\r\n\r\n\tconst getVal = (val) => {\r\n\t\tconst reg = /^[0-9]*$/g\r\n\t\treturn (typeof val === 'number' || reg.test(val)) ? val + 'px' : val;\r\n\t}\r\n\r\n\t// #ifdef APP-NVUE\r\n\tvar domModule = weex.requireModule('dom');\r\n\timport iconUrl from './uniicons.ttf'\r\n\tdomModule.addRule('fontFace', {\r\n\t\t'fontFamily': \"uniicons\",\r\n\t\t'src': \"url('\" + iconUrl + \"')\"\r\n\t});\r\n\t// #endif\r\n\r\n\t/**\r\n\t * Icons 图标\r\n\t * @description 用于展示 icons 图标\r\n\t * @tutorial https://ext.dcloud.net.cn/plugin?id=28\r\n\t * @property {Number} size 图标大小\r\n\t * @property {String} type 图标图案,参考示例\r\n\t * @property {String} color 图标颜色\r\n\t * @property {String} customPrefix 自定义图标\r\n\t * @event {Function} click 点击 Icon 触发事件\r\n\t */\r\n\texport default {\r\n\t\tname: 'UniIcons',\r\n\t\temits: ['click'],\r\n\t\tprops: {\r\n\t\t\ttype: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t},\r\n\t\t\tcolor: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: '#333333'\r\n\t\t\t},\r\n\t\t\tsize: {\r\n\t\t\t\ttype: [Number, String],\r\n\t\t\t\tdefault: 16\r\n\t\t\t},\r\n\t\t\tcustomPrefix: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t},\r\n\t\t\tfontFamily: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t}\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\ticons: fontData\r\n\t\t\t}\r\n\t\t},\r\n\t\tcomputed: {\r\n\t\t\tunicode() {\r\n\t\t\t\tlet code = this.icons.find(v => v.font_class === this.type)\r\n\t\t\t\tif (code) {\r\n\t\t\t\t\treturn code.unicode\r\n\t\t\t\t}\r\n\t\t\t\treturn ''\r\n\t\t\t},\r\n\t\t\ticonSize() {\r\n\t\t\t\treturn getVal(this.size)\r\n\t\t\t},\r\n\t\t\tstyleObj() {\r\n\t\t\t\tif (this.fontFamily !== '') {\r\n\t\t\t\t\treturn `color: ${this.color}; font-size: ${this.iconSize}; font-family: ${this.fontFamily};`\r\n\t\t\t\t}\r\n\t\t\t\treturn `color: ${this.color}; font-size: ${this.iconSize};`\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t_onClick() {\r\n\t\t\t\tthis.$emit('click')\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t/* #ifndef APP-NVUE */\r\n\t@import './uniicons.css';\r\n\r\n\t@font-face {\r\n\t\tfont-family: uniicons;\r\n\t\tsrc: url('./uniicons.ttf');\r\n\t}\r\n\r\n\t/* #endif */\r\n\t.uni-icons {\r\n\t\tfont-family: uniicons;\r\n\t\ttext-decoration: none;\r\n\t\ttext-align: center;\r\n\t}\r\n</style>\r\n","import Component from 'D:/work2/code/smartDriveEEUniApp1111/uni_modules/uni-icons/components/uni-icons/uni-icons.vue'\nwx.createComponent(Component)"],"names":["fontData"],"mappings":";;;AAcC,MAAM,SAAS,CAAC,QAAQ;AACvB,QAAM,MAAM;AACZ,SAAQ,OAAO,QAAQ,YAAY,IAAI,KAAK,GAAG,IAAK,MAAM,OAAO;AAClE;AAqBA,MAAK,YAAU;AAAA,EACd,MAAM;AAAA,EACN,OAAO,CAAC,OAAO;AAAA,EACf,OAAO;AAAA,IACN,MAAM;AAAA,MACL,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,OAAO;AAAA,MACN,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,MAAM;AAAA,MACL,MAAM,CAAC,QAAQ,MAAM;AAAA,MACrB,SAAS;AAAA,IACT;AAAA,IACD,cAAc;AAAA,MACb,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,YAAY;AAAA,MACX,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACA;AAAA,EACD,OAAO;AACN,WAAO;AAAA,MACN,OAAOA,2DAAO;AAAA,IACf;AAAA,EACA;AAAA,EACD,UAAU;AAAA,IACT,UAAU;AACT,UAAI,OAAO,KAAK,MAAM,KAAK,OAAK,EAAE,eAAe,KAAK,IAAI;AAC1D,UAAI,MAAM;AACT,eAAO,KAAK;AAAA,MACb;AACA,aAAO;AAAA,IACP;AAAA,IACD,WAAW;AACV,aAAO,OAAO,KAAK,IAAI;AAAA,IACvB;AAAA,IACD,WAAW;AACV,UAAI,KAAK,eAAe,IAAI;AAC3B,eAAO,UAAU,KAAK,KAAK,gBAAgB,KAAK,QAAQ,kBAAkB,KAAK,UAAU;AAAA,MAC1F;AACA,aAAO,UAAU,KAAK,KAAK,gBAAgB,KAAK,QAAQ;AAAA,IACzD;AAAA,EACA;AAAA,EACD,SAAS;AAAA,IACR,WAAW;AACV,WAAK,MAAM,OAAO;AAAA,IACnB;AAAA,EACD;AACD;;;;;;;;;;;AC1FD,GAAG,gBAAgB,SAAS;"}
|
||||
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/check-id-card.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/check-id-card.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"check-id-card.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"login-page.mixin.js","sources":["uni_modules/uni-id-pages/common/login-page.mixin.js"],"sourcesContent":["import {\r\n\tmutations\r\n} from '@/uni_modules/uni-id-pages/common/store.js'\r\nimport config from '@/uni_modules/uni-id-pages/config.js'\r\nconst mixin = {\r\n\tdata() {\r\n\t\treturn {\r\n\t\t\tconfig,\r\n\t\t\tuniIdRedirectUrl: '',\r\n\t\t\tisMounted: false\r\n\t\t}\r\n\t},\r\n\tonUnload() {\r\n\t\t// #ifdef H5\r\n\t\tdocument.onkeydown = false\r\n\t\t// #endif\r\n\t},\r\n\tmounted() {\r\n\t\tthis.isMounted = true\r\n\t},\r\n\tonLoad(e) {\r\n\t\tif (e.is_weixin_redirect) {\r\n\t\t\tuni.showLoading({\r\n\t\t\t\tmask: true\r\n\t\t\t})\r\n\r\n\t\t\tif (window.location.href.includes('#')) {\r\n\t\t\t\t// 将url通过 ? 分割获取后面的参数字符串 再通过 & 将每一个参数单独分割出来\r\n\t\t\t\tconst paramsArr = window.location.href.split('?')[1].split('&')\r\n\t\t\t\tparamsArr.forEach(item => {\r\n\t\t\t\t\tconst arr = item.split('=')\r\n\t\t\t\t\tif (arr[0] == 'code') {\r\n\t\t\t\t\t\te.code = arr[1]\r\n\t\t\t\t\t}\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t\tthis.$nextTick(n => {\r\n\t\t\t\t// console.log(this.$refs.uniFabLogin);\r\n\t\t\t\tthis.$refs.uniFabLogin.login({\r\n\t\t\t\t\tcode: e.code\r\n\t\t\t\t}, 'weixin')\r\n\t\t\t})\r\n\t\t}\r\n\r\n\t\tif (e.uniIdRedirectUrl) {\r\n\t\t\tthis.uniIdRedirectUrl = decodeURIComponent(e.uniIdRedirectUrl)\r\n\t\t}\r\n\r\n\t\t// #ifdef MP-WEIXIN\r\n\t\tif (getCurrentPages().length === 1) {\r\n\t\t\tuni.hideHomeButton()\r\n\t\t\tconsole.log('已隐藏:返回首页按钮');\r\n\t\t}\r\n\t\t// #endif\r\n\t},\r\n\tcomputed: {\r\n\t\tneedAgreements() {\r\n\t\t\tif (this.isMounted) {\r\n\t\t\t\tif (this.$refs.agreements) {\r\n\t\t\t\t\treturn this.$refs.agreements.needAgreements\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn false\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\tagree: {\r\n\t\t\tget() {\r\n\t\t\t\tif (this.isMounted) {\r\n\t\t\t\t\tif (this.$refs.agreements) {\r\n\t\t\t\t\t\treturn this.$refs.agreements.isAgree\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\treturn true\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tset(agree) {\r\n\t\t\t\tif (this.$refs.agreements) {\r\n\t\t\t\t\tthis.$refs.agreements.isAgree = agree\r\n\t\t\t\t} else {\r\n\t\t\t\t\tconsole.log('不存在 隐私政策协议组件');\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\tmethods: {\r\n\t\tloginSuccess(e) {\r\n\t\t\tmutations.loginSuccess({\r\n\t\t\t\t...e,\r\n\t\t\t\tuniIdRedirectUrl: this.uniIdRedirectUrl\r\n\t\t\t})\r\n\t\t}\r\n\t}\r\n}\r\n\r\nexport default mixin\r\n"],"names":["config","uni","mutations"],"mappings":";;;;AAIK,MAAC,QAAQ;AAAA,EACb,OAAO;AACN,WAAO;AAAA,MACT,QAAGA,8BAAM;AAAA,MACN,kBAAkB;AAAA,MAClB,WAAW;AAAA,IACX;AAAA,EACD;AAAA,EACD,WAAW;AAAA,EAIV;AAAA,EACD,UAAU;AACT,SAAK,YAAY;AAAA,EACjB;AAAA,EACD,OAAO,GAAG;AACT,QAAI,EAAE,oBAAoB;AACzBC,oBAAAA,MAAI,YAAY;AAAA,QACf,MAAM;AAAA,MACV,CAAI;AAED,UAAI,OAAO,SAAS,KAAK,SAAS,GAAG,GAAG;AAEvC,cAAM,YAAY,OAAO,SAAS,KAAK,MAAM,GAAG,EAAE,CAAC,EAAE,MAAM,GAAG;AAC9D,kBAAU,QAAQ,UAAQ;AACzB,gBAAM,MAAM,KAAK,MAAM,GAAG;AAC1B,cAAI,IAAI,CAAC,KAAK,QAAQ;AACrB,cAAE,OAAO,IAAI,CAAC;AAAA,UACd;AAAA,QACN,CAAK;AAAA,MACD;AACD,WAAK,UAAU,OAAK;AAEnB,aAAK,MAAM,YAAY,MAAM;AAAA,UAC5B,MAAM,EAAE;AAAA,QACR,GAAE,QAAQ;AAAA,MACf,CAAI;AAAA,IACD;AAED,QAAI,EAAE,kBAAkB;AACvB,WAAK,mBAAmB,mBAAmB,EAAE,gBAAgB;AAAA,IAC7D;AAGD,QAAI,gBAAe,EAAG,WAAW,GAAG;AACnCA,oBAAAA,MAAI,eAAgB;AACpBA,oBAAAA,MAAA,MAAA,OAAA,6DAAY,YAAY;AAAA,IACxB;AAAA,EAED;AAAA,EACD,UAAU;AAAA,IACT,iBAAiB;AAChB,UAAI,KAAK,WAAW;AACnB,YAAI,KAAK,MAAM,YAAY;AAC1B,iBAAO,KAAK,MAAM,WAAW;AAAA,QAClC,OAAW;AACN,iBAAO;AAAA,QACP;AAAA,MACD;AAAA,IACD;AAAA,IACD,OAAO;AAAA,MACN,MAAM;AACL,YAAI,KAAK,WAAW;AACnB,cAAI,KAAK,MAAM,YAAY;AAC1B,mBAAO,KAAK,MAAM,WAAW;AAAA,UACnC,OAAY;AACN,mBAAO;AAAA,UACP;AAAA,QACD;AAAA,MACD;AAAA,MACD,IAAI,OAAO;AACV,YAAI,KAAK,MAAM,YAAY;AAC1B,eAAK,MAAM,WAAW,UAAU;AAAA,QACrC,OAAW;AACNA,wBAAAA,gFAAY,cAAc;AAAA,QAC1B;AAAA,MACD;AAAA,IACD;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACR,aAAa,GAAG;AACfC,0CAAAA,UAAU,aAAa;AAAA,QACtB,GAAG;AAAA,QACH,kBAAkB,KAAK;AAAA,MAC3B,CAAI;AAAA,IACD;AAAA,EACD;AACF;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/password.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/password.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"password.js","sources":["uni_modules/uni-id-pages/common/password.js"],"sourcesContent":["// 导入配置\r\nimport config from '@/uni_modules/uni-id-pages/config.js'\r\n\r\nconst {passwordStrength} = config\r\n\r\n// 密码强度表达式\r\nconst passwordRules = {\r\n\t// 密码必须包含大小写字母、数字和特殊符号\r\n\tsuper: /^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/])[0-9a-zA-Z~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/]{8,16}$/,\r\n\t// 密码必须包含字母、数字和特殊符号\r\n\tstrong: /^(?=.*[0-9])(?=.*[a-zA-Z])(?=.*[~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/])[0-9a-zA-Z~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/]{8,16}$/,\r\n\t// 密码必须为字母、数字和特殊符号任意两种的组合\r\n\tmedium: /^(?![0-9]+$)(?![a-zA-Z]+$)(?![~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/]+$)[0-9a-zA-Z~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/]{8,16}$/,\r\n\t// 密码必须包含字母和数字\r\n\tweak: /^(?=.*[0-9])(?=.*[a-zA-Z])[0-9a-zA-Z~!@#$%^&*_\\-+=`|\\\\(){}[\\]:;\"'<>,.?/]{6,16}$/\r\n}\r\n\r\nconst ERROR = {\r\n\tnormal: {\r\n\t\tnoPwd: '请输入密码',\r\n\t\tnoRePwd: '再次输入密码',\r\n\t\trePwdErr: '两次输入密码不一致'\r\n\t},\r\n\tpasswordStrengthError: {\r\n\t\tsuper: '密码必须包含大小写字母、数字和特殊符号,密码长度必须在8-16位之间',\r\n\t\tstrong: '密码必须包含字母、数字和特殊符号,密码长度必须在8-16位之间',\r\n\t\tmedium: '密码必须为字母、数字和特殊符号任意两种的组合,密码长度必须在8-16位之间',\r\n\t\tweak: '密码必须包含字母,密码长度必须在6-16位之间'\r\n\t}\r\n}\r\n\r\nfunction validPwd(password) {\r\n\t//强度校验\r\n\tif (passwordStrength && passwordRules[passwordStrength]) {\r\n\t\tif (!new RegExp(passwordRules[passwordStrength]).test(password)) {\r\n\t\t\treturn ERROR.passwordStrengthError[passwordStrength]\r\n\t\t}\r\n\t}\r\n\treturn true\r\n}\r\n\r\nfunction getPwdRules(pwdName = 'password', rePwdName = 'password2') {\r\n\tconst rules = {}\r\n\trules[pwdName] = {\r\n\t\trules: [{\r\n\t\t\t\trequired: true,\r\n\t\t\t\terrorMessage: ERROR.normal.noPwd,\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\tvalidateFunction: function(rule, value, data, callback) {\r\n\t\t\t\t\tconst checkRes = validPwd(value)\r\n\t\t\t\t\tif (checkRes !== true) {\r\n\t\t\t\t\t\tcallback(checkRes)\r\n\t\t\t\t\t}\r\n\t\t\t\t\treturn true\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n\r\n\tif (rePwdName) {\r\n\t\trules[rePwdName] = {\r\n\t\t\trules: [{\r\n\t\t\t\t\trequired: true,\r\n\t\t\t\t\terrorMessage: ERROR.normal.noRePwd,\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\tvalidateFunction: function(rule, value, data, callback) {\r\n\t\t\t\t\t\tif (value != data[pwdName]) {\r\n\t\t\t\t\t\t\tcallback(ERROR.normal.rePwdErr)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\treturn true\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n\treturn rules\r\n}\r\n\r\nexport default {\r\n\tERROR,\r\n\tvalidPwd,\r\n\tgetPwdRules\r\n}\r\n"],"names":["config"],"mappings":";;AAGA,MAAM,EAAC,iBAAgB,IAAIA,8BAAM;AAGjC,MAAM,gBAAgB;AAAA;AAAA,EAErB,OAAO;AAAA;AAAA,EAEP,QAAQ;AAAA;AAAA,EAER,QAAQ;AAAA;AAAA,EAER,MAAM;AACP;AAEA,MAAM,QAAQ;AAAA,EACb,QAAQ;AAAA,IACP,OAAO;AAAA,IACP,SAAS;AAAA,IACT,UAAU;AAAA,EACV;AAAA,EACD,uBAAuB;AAAA,IACtB,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,QAAQ;AAAA,IACR,MAAM;AAAA,EACN;AACF;AAEA,SAAS,SAAS,UAAU;AAE3B,MAAI,oBAAoB,cAAc,gBAAgB,GAAG;AACxD,QAAI,CAAC,IAAI,OAAO,cAAc,gBAAgB,CAAC,EAAE,KAAK,QAAQ,GAAG;AAChE,aAAO,MAAM,sBAAsB,gBAAgB;AAAA,IACnD;AAAA,EACD;AACD,SAAO;AACR;AAEA,SAAS,YAAY,UAAU,YAAY,YAAY,aAAa;AACnE,QAAM,QAAQ,CAAE;AAChB,QAAM,OAAO,IAAI;AAAA,IAChB,OAAO;AAAA,MAAC;AAAA,QACN,UAAU;AAAA,QACV,cAAc,MAAM,OAAO;AAAA,MAC3B;AAAA,MACD;AAAA,QACC,kBAAkB,SAAS,MAAM,OAAO,MAAM,UAAU;AACvD,gBAAM,WAAW,SAAS,KAAK;AAC/B,cAAI,aAAa,MAAM;AACtB,qBAAS,QAAQ;AAAA,UACjB;AACD,iBAAO;AAAA,QACP;AAAA,MACD;AAAA,IACD;AAAA,EACD;AAED,MAAI,WAAW;AACd,UAAM,SAAS,IAAI;AAAA,MAClB,OAAO;AAAA,QAAC;AAAA,UACN,UAAU;AAAA,UACV,cAAc,MAAM,OAAO;AAAA,QAC3B;AAAA,QACD;AAAA,UACC,kBAAkB,SAAS,MAAM,OAAO,MAAM,UAAU;AACvD,gBAAI,SAAS,KAAK,OAAO,GAAG;AAC3B,uBAAS,MAAM,OAAO,QAAQ;AAAA,YAC9B;AACD,mBAAO;AAAA,UACP;AAAA,QACD;AAAA,MACD;AAAA,IACD;AAAA,EACD;AACD,SAAO;AACR;AAEA,MAAe,cAAA;AAAA,EACd;AAAA,EACA;AAAA,EACA;AACD;;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/store.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-id-pages/common/store.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"cloud-image.js","sources":["uni_modules/uni-id-pages/components/cloud-image/cloud-image.vue","../../../work/soft/HBuilderX.4.87.20251210/plugins/uniapp-cli-vite/uniComponent:/RDovd29yazIvY29kZS9zbWFydERyaXZlRUVVbmlBcHAxMTExL3VuaV9tb2R1bGVzL3VuaS1pZC1wYWdlcy9jb21wb25lbnRzL2Nsb3VkLWltYWdlL2Nsb3VkLWltYWdlLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view @click=\"onClick\" :style=\"{width,height}\" style=\"justify-content: center;\">\r\n\t\t<image v-if=\"cSrc\" :style=\"{width,height}\" :src=\"cSrc\" :mode=\"mode\"></image>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\t/**\r\n\t* cloud-image \r\n\t* @description 兼容普通资源和unicloud图片资源渲染的组件\r\n\t* @property {String} mode\t图片裁剪、缩放的模式。默认为widthFix,支持所有image组件的mode值\r\n\t* @property {String} src\t资源完了链接或uniCloud云存储资源的fileid\r\n\t* @property {String} width\t图片的宽,默认为:100rpx\r\n\t* @property {String} height\t图片的高,默认为:100rpx\r\n\t* @event {Function} click 点击 cloud-image 触发事件\r\n\t*/\r\n\texport default {\r\n\t\tname: \"cloud-image\",\r\n\t\temits:['click'],\r\n\t\tprops: {\r\n\t\t\tmode: {\r\n\t\t\t\ttype:String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn 'widthFix'\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tsrc: {\r\n\t\t\t\t// type:String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn \"\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\twidth: {\r\n\t\t\t\ttype:String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn '100rpx'\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\theight: {\r\n\t\t\t\ttype:String,\r\n\t\t\t\tdefault () {\r\n\t\t\t\t\treturn '100rpx'\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\twatch: {\r\n\t\t\tsrc:{\r\n\t\t\t\thandler(src) {\r\n\t\t\t\t\tif (src&&src.substring(0, 8) == \"cloud://\") {\r\n\t\t\t\t\t\tuniCloud.getTempFileURL({\r\n\t\t\t\t\t\t\tfileList: [src]\r\n\t\t\t\t\t\t}).then(res=>{\r\n\t\t\t\t\t\t\tthis.cSrc = res.fileList[0].tempFileURL\r\n\t\t\t\t\t\t})\r\n\t\t\t\t\t}else{\r\n\t\t\t\t\t\tthis.cSrc = src\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\t\t\t\timmediate: true\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods:{\r\n\t\t\tonClick(){\r\n\t\t\t\tthis.$emit('click')\r\n\t\t\t}\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tcSrc:false\r\n\t\t\t};\r\n\t\t}\r\n\t}\r\n</script>","import Component from 'D:/work2/code/smartDriveEEUniApp1111/uni_modules/uni-id-pages/components/cloud-image/cloud-image.vue'\nwx.createComponent(Component)"],"names":["uniCloud"],"mappings":";;AAgBC,MAAK,YAAU;AAAA,EACd,MAAM;AAAA,EACN,OAAM,CAAC,OAAO;AAAA,EACd,OAAO;AAAA,IACN,MAAM;AAAA,MACL,MAAK;AAAA,MACL,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,IACD,KAAK;AAAA;AAAA,MAEJ,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,IACD,OAAO;AAAA,MACN,MAAK;AAAA,MACL,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACA;AAAA,IACD,QAAQ;AAAA,MACP,MAAK;AAAA,MACL,UAAW;AACV,eAAO;AAAA,MACR;AAAA,IACD;AAAA,EACA;AAAA,EACD,OAAO;AAAA,IACN,KAAI;AAAA,MACH,QAAQ,KAAK;AACZ,YAAI,OAAK,IAAI,UAAU,GAAG,CAAC,KAAK,YAAY;AAC3CA,wBAAAA,GAAS,eAAe;AAAA,YACvB,UAAU,CAAC,GAAG;AAAA,WACd,EAAE,KAAK,SAAK;AACZ,iBAAK,OAAO,IAAI,SAAS,CAAC,EAAE;AAAA,WAC5B;AAAA,eACG;AACJ,eAAK,OAAO;AAAA,QACb;AAAA,MACA;AAAA,MACD,WAAW;AAAA,IACZ;AAAA,EACA;AAAA,EACD,SAAQ;AAAA,IACP,UAAS;AACR,WAAK,MAAM,OAAO;AAAA,IACnB;AAAA,EACA;AAAA,EACD,OAAO;AACN,WAAO;AAAA,MACN,MAAK;AAAA;EAEP;AACD;;;;;;;;;;;;;;;;ACtED,GAAG,gBAAgB,SAAS;"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user