diff --git a/.env.development b/.env.development index 076c341c..464348e8 100644 --- a/.env.development +++ b/.env.development @@ -5,7 +5,7 @@ ENV = 'development' # VITE_APP_BASE_API_Url = 'https://aits.jlbank.com.cn:7001' -VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7001' +VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002' # VITE_APP_BASE_API_Url = 'http://192.168.247.200' # VITE_APP_BASE_API_Url = 'http://aitscdn.jlbank.com.cn:7001' diff --git a/src/androidPrivacy.json b/src/androidPrivacy.json new file mode 100644 index 00000000..8d5dd2ee --- /dev/null +++ b/src/androidPrivacy.json @@ -0,0 +1,38 @@ +{ + "version": "1", + "prompt": "template", + "title": "服务协议和隐私政策", + "message": "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。
  你可阅读《服务协议》《隐私政策》了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。", + "buttonAccept": "同意并接受", + "buttonRefuse": "暂不同意", + "hrefLoader": "system", + "backToExit":"false", + "second": { + "title": "确认提示", + "message": "  进入应用前,你需先同意《服务协议》《隐私政策》,否则将退出应用。", + "buttonAccept": "同意并继续", + "buttonRefuse": "退出应用" + }, + "disagreeMode":{ + "support": false, + "loadNativePlugins": false, + "visitorEntry": false, + "showAlways": false + }, + "styles": { + "backgroundColor": "#00FF00", + "borderRadius":"5px", + "title": { + "color": "#ff00ff" + }, + "buttonAccept": { + "color": "#ffff00" + }, + "buttonRefuse": { + "color": "#00ffff" + }, + "buttonVisitor": { + "color": "#00ffff" + } + } +} diff --git a/src/common/imgSvg.ts b/src/common/imgSvg.ts index 5608ed43..ae7f6951 100644 --- a/src/common/imgSvg.ts +++ b/src/common/imgSvg.ts @@ -94,7 +94,7 @@ export const pkAnonymousClose = () : string => { // Pk页匿名开 export const pkAnonymousOpen = () : string => { const svgXml = ` - + `.trim(); return `data:image/svg+xml;charset=utf-8,${encodeURIComponent(svgXml)}`; }; diff --git a/src/components/points-and-badge/badge.vue b/src/components/points-and-badge/badge.vue index 4f12ec4c..e2bffedb 100644 --- a/src/components/points-and-badge/badge.vue +++ b/src/components/points-and-badge/badge.vue @@ -87,14 +87,19 @@ // 退出签到 const close = () => { - uni.showTabBar({ - success() { - opacity.value = 0; - nextTick(() => { - popup.value.close(); - }); - } + opacity.value = 0; + nextTick(() => { + popup.value.close(); }); + + // uni.showTabBar({ + // success() { + // opacity.value = 0; + // nextTick(() => { + // popup.value.close(); + // }); + // } + // }); }; // 点击 const clickFun = (status = true) => { @@ -109,19 +114,25 @@ console.log('badges', badges); badgesList.value = badges; pointsList.value = points; - // popup.value.open(); - uni.hideTabBar({ - success() { - opacity.value = 1; - console.log('成功'); - popup.value.open('center'); - } - }); + + + opacity.value = 1; + console.log('成功'); + popup.value.open('center'); + // uni.hideTabBar({ + // success() { + + + // opacity.value = 1; + // console.log('成功'); + // popup.value.open('center'); + // } + // }); }; onUnmounted(() => { - uni.showTabBar({ - success() {} - }); + // uni.showTabBar({ + // success() {} + // }); }); defineExpose({ open, close }); diff --git a/src/manifest.json b/src/manifest.json index 5bb0c580..05f2606c 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,101 +1,102 @@ { - "name": "tra-app", - "appid": "__UNI__EDE0E52", - "description": "", - "versionName": "0.0.3", - "versionCode": 3, - "transformPx": false, - /* 5+App特有相关 */ - "app-plus": { - "usingComponents": true, - "nvueStyleCompiler": "uni-app", - "compilerVersion": 3, - "renderer": "auto", - "orientation": ["portrait-primary"], - "splashscreen": { - "alwaysShowBeforeRender": true, - "waiting": false, - "autoclose": true, - "delay": 0 - }, - "safearea": { - "background": "#CCCCCC", - "bottom": { - "offset": "none|auto" - }, - "left": { - "offset": "none|auto" - }, - "right": { - "offset": "none|auto" - } - }, - /* 模块配置 */ - "modules": { - "Camera": {}, - "Barcode": {}, - "Record": {}, - "VideoPlayer": {} - }, - /* 应用发布信息 */ - "distribute": { - /* android打包配置 */ - "android": { - "permissions": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] - }, - /* ios打包配置 */ - "ios": { - "dSYMs": false - }, - /* SDK配置 */ - "sdkConfigs": {}, - "splashscreen": { - "androidStyle": "common", - "android": { - "hdpi": "src/static/images/login/open.9.png", - "xhdpi": "src/static/images/login/open.9.png", - "xxhdpi": "src/static/images/login/open.9.png" - } - } - } - }, - /* 快应用特有相关 */ - "quickapp": {}, - /* 小程序特有相关 */ - "mp-weixin": { - "appid": "", - "setting": { - "urlCheck": false - }, - "usingComponents": true - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "vueVersion": "3" -} \ No newline at end of file + "name" : "tra-app", + "appid" : "__UNI__EDE0E52", + "description" : "", + "versionName" : "0.0.3", + "versionCode" : 3, + "transformPx" : false, + /* 5+App特有相关 */ + "app-plus" : { + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "renderer" : "auto", + "orientation" : [ "portrait-primary" ], + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : false, + "autoclose" : true, + "delay" : 0 + }, + "safearea" : { + "background" : "#CCCCCC", + "bottom" : { + "offset" : "none|auto" + }, + "left" : { + "offset" : "none|auto" + }, + "right" : { + "offset" : "none|auto" + } + }, + /* 模块配置 */ + "modules" : { + "Camera" : {}, + "Barcode" : {}, + "Record" : {}, + "VideoPlayer" : {} + }, + /* 应用发布信息 */ + "distribute" : { + /* android打包配置 */ + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + /* ios打包配置 */ + "ios" : { + "dSYMs" : false + }, + /* SDK配置 */ + "sdkConfigs" : {}, + "splashscreen" : { + "androidStyle" : "common", + "android" : { + "hdpi" : "src/static/images/login/open.9.png", + "xhdpi" : "src/static/images/login/open.9.png", + "xxhdpi" : "src/static/images/login/open.9.png" + }, + "useOriginalMsgbox" : true + } + } + }, + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "", + "setting" : { + "urlCheck" : false + }, + "usingComponents" : true + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "vueVersion" : "3" +} diff --git a/src/pages/competition/matching.vue b/src/pages/competition/matching.vue index 6ebc258e..e3c64d40 100644 --- a/src/pages/competition/matching.vue +++ b/src/pages/competition/matching.vue @@ -8,7 +8,7 @@ - + {{ data_info.isAnony === 'N' ? '不匿名' : '匿名' }} diff --git a/上架信息/应用截图/2064-2752/1.png b/上架信息/应用截图/2064-2752/1.png new file mode 100644 index 00000000..6ed317c8 Binary files /dev/null and b/上架信息/应用截图/2064-2752/1.png differ diff --git a/上架信息/应用截图/2064-2752/2.png b/上架信息/应用截图/2064-2752/2.png new file mode 100644 index 00000000..9bc1653b Binary files /dev/null and b/上架信息/应用截图/2064-2752/2.png differ diff --git a/上架信息/应用截图/2064-2752/3.png b/上架信息/应用截图/2064-2752/3.png new file mode 100644 index 00000000..3c7650db Binary files /dev/null and b/上架信息/应用截图/2064-2752/3.png differ diff --git a/上架信息/应用截图/2064-2752/4.png b/上架信息/应用截图/2064-2752/4.png new file mode 100644 index 00000000..40d858d1 Binary files /dev/null and b/上架信息/应用截图/2064-2752/4.png differ