修改显示图片及签约流程
authorsijun.li <sijun.li@supwisdom.com>
Tue, 21 Apr 2020 10:52:28 +0000 (18:52 +0800)
committersijun.li <sijun.li@supwisdom.com>
Tue, 21 Apr 2020 10:52:28 +0000 (18:52 +0800)
22 files changed:
.gitignore
package-lock.json
package.json
platforms/android/app/src/main/assets/www/js/bindcard.js
platforms/android/app/src/main/assets/www/js/main.js
platforms/android/app/src/main/assets/www/main.html
platforms/ios/dlapp.xcarchive/Products/Applications/dlapp.app/JPushConfig.plist
platforms/ios/dlapp.xcodeproj/project.pbxproj
platforms/ios/dlapp/config.xml
platforms/ios/dlapp/dlapp-Info.plist
www/cardinfor.html
www/img/p2.png [new file with mode: 0644]
www/img/p3.png [new file with mode: 0644]
www/img/p4.png [new file with mode: 0644]
www/img/s1.jpg
www/img/s2.jpg
www/img/s3.jpg
www/img/splashscreen.png
www/js/mainmenu.js
www/main.html
www/signsfp.html [new file with mode: 0644]
www/startload.html

index 77b125f..d360db4 100644 (file)
@@ -92,3 +92,6 @@ typings/
 .fusebox/
 .dynamodb/
 
+# ide
+.idea/*
+
index ab7c5fd..937680e 100644 (file)
@@ -1,5 +1,5 @@
 {
-    "name": "com.dalicitycard.app",
+    "name": "com.dalipolice.app",
     "version": "1.0.3",
     "lockfileVersion": 1,
     "requires": true,
                 "properties-parser": "^0.3.1",
                 "q": "^1.4.1",
                 "shelljs": "^0.5.3"
+            },
+            "dependencies": {
+                "shelljs": {
+                    "version": "0.5.3",
+                    "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz",
+                    "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM="
+                }
             }
         },
         "cordova-browser": {
                 "cordova-serve": "^3.0.0",
                 "nopt": "^4.0.1",
                 "shelljs": "^0.5.3"
+            },
+            "dependencies": {
+                "shelljs": {
+                    "version": "0.5.3",
+                    "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz",
+                    "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM="
+                }
             }
         },
         "cordova-common": {
                 "unorm": "^1.4.1",
                 "xcode": "^2.0.0",
                 "xml-escape": "^1.1.0"
+            },
+            "dependencies": {
+                "shelljs": {
+                    "version": "0.5.3",
+                    "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz",
+                    "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM="
+                }
             }
         },
         "cordova-plugin-add-swift-support": {
             "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
             "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
         },
+        "interpret": {
+            "version": "1.2.0",
+            "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
+            "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw=="
+        },
         "ios-sim": {
             "version": "8.0.1",
             "resolved": "https://registry.npmjs.org/ios-sim/-/ios-sim-8.0.1.tgz",
                 }
             }
         },
+        "rechoir": {
+            "version": "0.6.2",
+            "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
+            "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
+            "requires": {
+                "resolve": "^1.1.6"
+            }
+        },
         "resolve": {
             "version": "1.10.1",
             "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.1.tgz",
             "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
         },
         "shelljs": {
-            "version": "0.5.3",
-            "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz",
-            "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM="
+            "version": "0.8.3",
+            "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz",
+            "integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==",
+            "requires": {
+                "glob": "^7.0.0",
+                "interpret": "^1.0.0",
+                "rechoir": "^0.6.2"
+            }
         },
         "simctl": {
             "version": "2.0.0",
index d267972..e94d001 100644 (file)
@@ -31,7 +31,8 @@
     "cordova-plugin-themeablebrowser": "^0.2.18",
     "cordova-plugin-touch-id": "^3.4.0",
     "cordova-plugin-wkwebview-engine": "^1.2.1",
-    "jpush-phonegap-plugin": "^3.7.2"
+    "jpush-phonegap-plugin": "^3.7.2",
+    "shelljs": "^0.8.3"
   },
   "cordova": {
     "plugins": {
index 7af7d38..0ee9d01 100644 (file)
@@ -85,7 +85,7 @@ var app = {
                     window.localStorage.setItem("signed", ret.signed);
                     window.localStorage.setItem("paypwdset", ret.paypwdset);
                     if(ret.signed=='yes'){
-                        window.location = "main.html"
+                        window.location = "signsfp.html";
                     }else{
                         window.location = "bindcheck.html";
                     }
index 78b896f..066334a 100644 (file)
@@ -260,10 +260,10 @@ var app = {
Content-type: text/html Supwisdom Source - dali_platform/mobile.git/commitdiff


500 - Internal Server Error

Unknown encoding 'gb18030' at /usr/local/share/gitweb/gitweb.cgi line 1539