Commit 433b885b by li

no message

parent 41d545eb
node_modules/
<script> <script>
export default { export default {
onLaunch: function() { onLaunch: function() {
if(process.uniEnv.name == 'bjst') if (process.uniEnv.name == 'bjst') {
{ document.getElementsByTagName('body')[0].style.background =
document.getElementsByTagName('body')[0].style.background = "linear-gradient(0deg, #187B47, #13A13F, #15A147, #12794C)" "linear-gradient(0deg, #187B47, #13A13F, #15A147, #12794C)"
} }
// 禁止 ios 缩放屏幕 // 禁止 ios 缩放屏幕
document.addEventListener('gesturestart', function (event) { document.addEventListener('gesturestart', function(event) {
event.preventDefault(); event.preventDefault();
}); });
// 禁止移动端(IOS)双击页面变大 // 禁止移动端(IOS)双击页面变大
let touchTime = 0; let touchTime = 0;
document.addEventListener('touchstart', function (event) { document.addEventListener('touchstart', function(event) {
if (event.touches.length > 1) { if (event.touches.length > 1) {
event.preventDefault(); event.preventDefault();
} }
}); });
document.addEventListener( document.addEventListener(
'touchend', 'touchend',
function (event) { function(event) {
//记录当前点击的时间与下一次时间的间隔 //记录当前点击的时间与下一次时间的间隔
const nowTime = new Date(); const nowTime = new Date();
if (nowTime.getTime() - touchTime <= 300) { if (nowTime.getTime() - touchTime <= 300) {
...@@ -35,7 +35,8 @@ ...@@ -35,7 +35,8 @@
let isMobile = getArr.length ? true : false; let isMobile = getArr.length ? true : false;
// this.$store.state.isMobile = isMobile // this.$store.state.isMobile = isMobile
if (!(window && window.plus) && ((location.host.includes("127.0.0.1") || location.host.includes("localhost")))) { if (!(window && window.plus) && ((location.host.includes("127.0.0.1") || location.host.includes(
"localhost")))) {
if (!isMobile && window.frames.length == parent.frames.length) { if (!isMobile && window.frames.length == parent.frames.length) {
//pc携带参数跳转 //pc携带参数跳转
...@@ -48,35 +49,36 @@ ...@@ -48,35 +49,36 @@
} }
} }
}, },
onShow: function() { onShow: function() {},
}, onHide: function() {}
onHide: function() {
}
} }
</script> </script>
<style lang="scss"> <style lang="scss">
:root{ :root {
// --theme--:#00ba29; // --theme--:#00ba29;
// --borderTheme--:rgba(5, 156, 92, 0.2); // --borderTheme--:rgba(5, 156, 92, 0.2);
--theme--:#f18403; --theme--: #f18403;
--borderTheme--:#A3A3A3; --borderTheme--: #A3A3A3;
} }
// body{ // body{
// background: linear-gradient(0deg, #187B47, #13A13F, #15A147, #12794C); // background: linear-gradient(0deg, #187B47, #13A13F, #15A147, #12794C);
// } // }
/*每个页面公共css */ /*每个页面公共css */
@import 'vant/lib/index.css'; @import 'vant/lib/index.css';
@import "uview-ui/index.scss"; @import "uview-ui/index.scss";
.u-form-item__body__right__message{
.u-form-item__body__right__message {
display: none !important; display: none !important;
} }
uni-toast .uni-toast{
uni-toast .uni-toast {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 20rpx 15rpx; padding: 20rpx 15rpx;
width: auto; width: auto;
box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(0,0,0,0.1); box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(0, 0, 0, 0.1);
border: 1px solid #D3D4D3; border: 1px solid #D3D4D3;
background: white !important; background: white !important;
color: black !important; color: black !important;
...@@ -85,16 +87,19 @@ ...@@ -85,16 +87,19 @@
font-size: 30rpx; font-size: 30rpx;
color: #606266; color: #606266;
} }
uni-toast .uni-simple-toast__text{
uni-toast .uni-simple-toast__text {
background: white !important; background: white !important;
color: black !important; color: black !important;
} }
.uni-toast .uni-toast__content{
.uni-toast .uni-toast__content {
margin: 0; margin: 0;
margin-left: 10rpx; margin-left: 10rpx;
white-space: nowrap; white-space: nowrap;
} }
uni-toast .uni-toast__icon{
uni-toast .uni-toast__icon {
margin: 0; margin: 0;
} }
</style> </style>
\ No newline at end of file
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<view v-if="item.type" style="flex: 1;" @click="getCurrentNmae(item.prop)"> <view v-if="item.type" style="flex: 1;" @click="getCurrentNmae(item.prop)">
<van-uploader :after-read="afterRead" :deletable="false" accept="all"> <van-uploader :after-read="afterRead" :deletable="false" accept="all">
<u-button class="btn" type="primary" <u-button class="btn" type="primary"
style="height: auto;padding: 10rpx 20rpx;background-color: white;color: #059c5c;"> style="height: auto;padding: 10rpx 20rpx;">
<text class="btnText" style="font-size: 18rpx;"> <text class="btnText" style="font-size: 18rpx;">
{{$t('components.form.choose')}} {{$t('components.form.choose')}}
</text> </text>
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
data() { data() {
return { return {
// propShow:false, // propShow:false,
BackToACHA:"Back To ACHA", BackToACHA: "Back To ACHA",
labelStyle: { labelStyle: {
"font-family": "Arial", "font-family": "Arial",
"font-weight": 400, "font-weight": 400,
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
// 当前选中字段 // 当前选中字段
currentName: "", currentName: "",
OBS: null, OBS: null,
param:null param: null
}; };
}, },
methods: { methods: {
...@@ -133,8 +133,15 @@ ...@@ -133,8 +133,15 @@
// #endif // #endif
}, },
getFilepath(e) { getFilepath(e) {
let date = new Date().getTime() let date = new Date().toLocaleDateString().split('/')
return date + e if (date[1] < 10) {
date[1] = '0' + date[1]
}
if (date[2] < 10) {
date[2] = '0' + date[2]
}
date = date.join('')
return date + '/' + new Date().getTime() + Math.round(Math.random() * 1000) + e
}, },
afterRead(file) { afterRead(file) {
let fileObj = file.file let fileObj = file.file
...@@ -170,7 +177,6 @@ ...@@ -170,7 +177,6 @@
'content-type': file.file.type, 'content-type': file.file.type,
'content-length': file.file.size 'content-length': file.file.size
} }
let filepath = this.getFilepath(fileObj.name) let filepath = this.getFilepath(fileObj.name)
let t = this; let t = this;
obsJiami(fileObj).then(r => { obsJiami(fileObj).then(r => {
...@@ -274,13 +280,10 @@ ...@@ -274,13 +280,10 @@
} }
}, },
created() { created() {
if(process.uniEnv.name == 'bjst') if (process.uniEnv.name == 'bjst') {
{
this.labelStyle.color = 'white' this.labelStyle.color = 'white'
this.BackToACHA = 'Back To ACHA' this.BackToACHA = 'Back To ACHA'
} } else {
else
{
this.labelStyle.color = 'black' this.labelStyle.color = 'black'
this.BackToACHA = 'Back To TC' this.BackToACHA = 'Back To TC'
} }
...@@ -367,6 +370,7 @@ ...@@ -367,6 +370,7 @@
font-size: 24rpx; font-size: 24rpx;
color: white; color: white;
} }
::v-deep.u-button--primary { ::v-deep.u-button--primary {
background: var(--theme--); background: var(--theme--);
border-color: white; border-color: white;
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
"proxy" : { "proxy" : {
// 代理配置 // 代理配置
"/" : { "/" : {
"target" : "http://38.47.232.137:18001/", "target" : "http://156.240.106.35:18001/",
"changeOrigin" : true, // 是否跨域 "changeOrigin" : true, // 是否跨域
"secure" : true, // 是否支持https协议的代理 "secure" : true, // 是否支持https协议的代理
"pathRewrite" : { "pathRewrite" : {
......
{ {
"name": "indiaapp", "name": "indiaapp",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 1, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": {
"": {
"name": "indiaapp",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"crypto-js": "^4.2.0",
"element-ui": "^2.15.14",
"esdk-obs-browserjs": "^3.23.5",
"uview-ui": "^2.0.36",
"vant": "^2.13.2",
"vue-i18n": "^9.10.2"
}
},
"node_modules/@babel/runtime": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.1.tgz",
"integrity": "sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime/node_modules/regenerator-runtime": {
"version": "0.14.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
},
"node_modules/@intlify/core-base": {
"version": "9.10.2",
"resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.10.2.tgz",
"integrity": "sha512-HGStVnKobsJL0DoYIyRCGXBH63DMQqEZxDUGrkNI05FuTcruYUtOAxyL3zoAZu/uDGO6mcUvm3VXBaHG2GdZCg==",
"dependencies": {
"@intlify/message-compiler": "9.10.2",
"@intlify/shared": "9.10.2"
},
"engines": {
"node": ">= 16"
},
"funding": {
"url": "https://github.com/sponsors/kazupon"
}
},
"node_modules/@intlify/message-compiler": {
"version": "9.10.2",
"resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.10.2.tgz",
"integrity": "sha512-ntY/kfBwQRtX5Zh6wL8cSATujPzWW2ZQd1QwKyWwAy5fMqJyyixHMeovN4fmEyCqSu+hFfYOE63nU94evsy4YA==",
"dependencies": {
"@intlify/shared": "9.10.2",
"source-map-js": "^1.0.2"
},
"engines": {
"node": ">= 16"
},
"funding": {
"url": "https://github.com/sponsors/kazupon"
}
},
"node_modules/@intlify/shared": {
"version": "9.10.2",
"resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.10.2.tgz",
"integrity": "sha512-ttHCAJkRy7R5W2S9RVnN9KYQYPIpV2+GiS79T4EE37nrPyH6/1SrOh3bmdCRC1T3ocL8qCDx7x2lBJ0xaITU7Q==",
"engines": {
"node": ">= 16"
},
"funding": {
"url": "https://github.com/sponsors/kazupon"
}
},
"node_modules/@vant/icons": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@vant/icons/-/icons-3.0.2.tgz",
"integrity": "sha512-4OlRVMd0uiDtD9hgSISZW8hB95vU0fFtc41tQchRIyiXkR0tS+DydZOLb8/bQkithrNWhW7Uud38MbKjlJ9lJw=="
},
"node_modules/@vant/popperjs": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@vant/popperjs/-/popperjs-1.3.0.tgz",
"integrity": "sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw=="
},
"node_modules/@vue/babel-helper-vue-jsx-merge-props": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz",
"integrity": "sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA=="
},
"node_modules/@vue/devtools-api": {
"version": "6.6.1",
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.1.tgz",
"integrity": "sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA=="
},
"node_modules/async-validator": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/async-validator/-/async-validator-1.8.5.tgz",
"integrity": "sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==",
"dependencies": {
"babel-runtime": "6.x"
}
},
"node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/babel-helper-vue-jsx-merge-props": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz",
"integrity": "sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg=="
},
"node_modules/babel-runtime": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==",
"dependencies": {
"core-js": "^2.4.0",
"regenerator-runtime": "^0.11.0"
}
},
"node_modules/blueimp-md5": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz",
"integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w=="
},
"node_modules/core-js": {
"version": "2.6.12",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
"integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==",
"deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.",
"hasInstallScript": true
},
"node_modules/crypto-js": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
"integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q=="
},
"node_modules/deepmerge": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz",
"integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/element-ui": {
"version": "2.15.14",
"resolved": "https://registry.npmjs.org/element-ui/-/element-ui-2.15.14.tgz",
"integrity": "sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==",
"dependencies": {
"async-validator": "~1.8.1",
"babel-helper-vue-jsx-merge-props": "^2.0.0",
"deepmerge": "^1.2.0",
"normalize-wheel": "^1.0.1",
"resize-observer-polyfill": "^1.5.0",
"throttle-debounce": "^1.0.1"
},
"peerDependencies": {
"vue": "^2.5.17"
}
},
"node_modules/esdk-obs-browserjs": {
"version": "3.23.5",
"resolved": "https://registry.npmjs.org/esdk-obs-browserjs/-/esdk-obs-browserjs-3.23.5.tgz",
"integrity": "sha512-i4DTT2bbE3fjy0H84hg1qBHjr5a9dbO39TmVfEkzkjBSNceOU/UX2UXORtjTojju6rpM4TiQh8CthcXeJKqbMA==",
"dependencies": {
"axios": "^0.26.1",
"blueimp-md5": "^2.18.0",
"js-base64": "^3.7.1",
"jssha": "^3.2.0",
"urijs": "^1.19.7"
},
"engines": {
"node": ">=0.12.7"
}
},
"node_modules/follow-redirects": {
"version": "1.15.6",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/RubenVerborgh"
}
],
"engines": {
"node": ">=4.0"
},
"peerDependenciesMeta": {
"debug": {
"optional": true
}
}
},
"node_modules/js-base64": {
"version": "3.7.7",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz",
"integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw=="
},
"node_modules/jssha": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/jssha/-/jssha-3.3.1.tgz",
"integrity": "sha512-VCMZj12FCFMQYcFLPRm/0lOBbLi8uM2BhXPTqw3U4YAfs4AZfiApOoBLoN8cQE60Z50m1MYMTQVCfgF/KaCVhQ==",
"engines": {
"node": "*"
}
},
"node_modules/normalize-wheel": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz",
"integrity": "sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA=="
},
"node_modules/regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
},
"node_modules/resize-observer-polyfill": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
"integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
},
"node_modules/source-map-js": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.1.0.tgz",
"integrity": "sha512-9vC2SfsJzlej6MAaMPLu8HiBSHGdRAJ9hVFYN1ibZoNkeanmDmLUcIrj6G9DGL7XMJ54AKg/G75akXl1/izTOw==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/throttle-debounce": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-1.1.0.tgz",
"integrity": "sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==",
"engines": {
"node": ">=4"
}
},
"node_modules/urijs": {
"version": "1.19.11",
"resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
"integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ=="
},
"node_modules/uview-ui": {
"version": "2.0.36",
"resolved": "https://registry.npmjs.org/uview-ui/-/uview-ui-2.0.36.tgz",
"integrity": "sha512-ASSZT6M8w3GTO1eFPbsgEFV0U5UujK+8pTNr+MSUbRNcRMC1u63DDTLJVeArV91kWM0bfAexK3SK9pnTqF9TtA==",
"engines": {
"HBuilderX": "^3.1.0"
}
},
"node_modules/vant": {
"version": "2.13.2",
"resolved": "https://registry.npmjs.org/vant/-/vant-2.13.2.tgz",
"integrity": "sha512-anZbbLqXCq+rUJk10D67mn+V/1/i9tfOTdoR+64B0e+0BzV3KFgpHBF76noLa+yX9i/L+8DeL560WMk0GEN38g==",
"dependencies": {
"@babel/runtime": "7.x",
"@vant/icons": "^3.0.2",
"@vant/popperjs": "^1.1.0",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"vue-lazyload": "1.2.3"
},
"peerDependencies": {
"vue": ">= 2.6.0"
}
},
"node_modules/vue-i18n": {
"version": "9.10.2",
"resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.10.2.tgz",
"integrity": "sha512-ECJ8RIFd+3c1d3m1pctQ6ywG5Yj8Efy1oYoAKQ9neRdkLbuKLVeW4gaY5HPkD/9ssf1pOnUrmIFjx2/gkGxmEw==",
"dependencies": {
"@intlify/core-base": "9.10.2",
"@intlify/shared": "9.10.2",
"@vue/devtools-api": "^6.5.0"
},
"engines": {
"node": ">= 16"
},
"funding": {
"url": "https://github.com/sponsors/kazupon"
},
"peerDependencies": {
"vue": "^3.0.0"
}
},
"node_modules/vue-lazyload": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/vue-lazyload/-/vue-lazyload-1.2.3.tgz",
"integrity": "sha512-DC0ZwxanbRhx79tlA3zY5OYJkH8FYp3WBAnAJbrcuoS8eye1P73rcgAZhyxFSPUluJUTelMB+i/+VkNU/qVm7g=="
}
},
"dependencies": { "dependencies": {
"@babel/runtime": { "@babel/runtime": {
"version": "7.24.1", "version": "7.24.1",
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)')) var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />') document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script> </script>
<!-- <link rel="icon" href="<%= BASE_URL %>static/indiaLogo.png" /> -->
<link rel="icon" href="<%= BASE_URL %>static/indiaLogo.png" /> <link rel="icon" href="<%= BASE_URL %>static/indiaLogo.png" />
<!-- <link rel="icon" href="<%= BASE_URL %>static/logo1.ico" /> -->
<link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" /> <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
</head> </head>
<body> <body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment