Browse Source

stash

demo-nn-class
kola-web 6 days ago
parent
commit
749d674bd6
  1. BIN
      .DS_Store
  2. 1
      .gitignore
  3. 22
      project.config.json
  4. 4
      src/utils/page.ts

BIN
.DS_Store vendored

Binary file not shown.

1
.gitignore vendored

@ -1,3 +1,4 @@ @@ -1,3 +1,4 @@
node_modules
src/images/.svn
/src/images/nmosd
/src/images

22
project.config.json

@ -3,10 +3,7 @@ @@ -3,10 +3,7 @@
"miniprogramRoot": "src/",
"compileType": "src",
"setting": {
"useCompilerPlugins": [
"typescript",
"sass"
],
"useCompilerPlugins": ["typescript", "sass"],
"babelSetting": {
"ignore": [],
"disablePlugins": [],
@ -51,23 +48,11 @@ @@ -51,23 +48,11 @@
"packOptions": {
"ignore": [
{
"value": "/images/*.jpg",
"type": "glob"
},
{
"value": "/images/**/*.jpg",
"type": "glob"
},
{
"value": "/images/*.png",
"type": "glob"
},
{
"value": "/images/**/*.png",
"value": "/images/*",
"type": "glob"
},
{
"value": "/images/**/*.gif",
"value": "/images/**/*",
"type": "glob"
}
],
@ -75,3 +60,4 @@ @@ -75,3 +60,4 @@
},
"appid": "wx96104303877e3fd9"
}

4
src/utils/page.ts

@ -54,14 +54,14 @@ function page(config: WechatMiniprogram.Page.Instance<WechatMiniprogram.IAnyObje @@ -54,14 +54,14 @@ function page(config: WechatMiniprogram.Page.Instance<WechatMiniprogram.IAnyObje
if (url.includes('doctor/pages')) {
return {
title: "华秉科技数字化解决方案",
path: "/pages/1/index",
path: "/pages/webview/index",
// imageUrl: `${getApp().globalData.imageUrl}1/1.png?t=${Timestamp}`,
};
}
return {
title: "华秉科技数字化解决方案",
path: "/pages/1/index",
path: "/pages/webview/index",
// imageUrl: `${getApp().globalData.imageUrl}1/1.png?t=${Timestamp}`,
};
}

Loading…
Cancel
Save