Skip to content

Commit

Permalink
Merge pull request #3 from kadbbz/dev
Browse files Browse the repository at this point in the history
Merge dev to master
  • Loading branch information
kadbbz authored Nov 10, 2022
2 parents 4ec637e + 467f1fb commit 6ab3e49
Show file tree
Hide file tree
Showing 39 changed files with 25,336 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
//noinspection ExpiredTargetSdkVersion
targetSdk 26
versionCode 4
versionName '1.4.1-release'
versionName '1.5.0-release'

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -44,8 +44,8 @@ dependencies {
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'com.zhihu.android:matisse:0.5.3-beta3'
implementation 'com.github.bumptech.glide:glide:4.11.0'
implementation 'com.github.jenly1314:zxing-lite:2.1.1'
Expand Down
2 changes: 1 addition & 1 deletion app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"filters": [],
"attributes": [],
"versionCode": 4,
"versionName": "1.4.0-release",
"versionName": "1.5.0-release",
"outputFile": "app-release.apk"
}
],
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncy.css

Large diffs are not rendered by default.

188 changes: 188 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncy.js

Large diffs are not rendered by default.

130 changes: 130 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncyCalc.js

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncyChart.js

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/importExcel.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/inputMan.css

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/inputMan.js

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/pvTable.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/spread.css

Large diffs are not rendered by default.

135 changes: 135 additions & 0 deletions app/src/main/assets/hzg_bundle_cache_8.0.103.0/spread.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
tooltip和dropdown是bootstrap库的一部分
http://www.bootcss.com/

一. JS
在bootstrap代码包中
tooltip.js文件来源:\js\tooltip.js
dropdown.js文件来源:\js\dropdown.js

a. tooltip
在Forguncy,用于显示validation tooltip
为了不干扰用户引用bootstrap库,
在文件中做了如下修改:
1. 注释了// TOOLTIP PLUGIN DEFINITION 部分代码
2. 注释了// TOOLTIP NO CONFLICT 部分代码
3. 将Tooltip类加入Forguncy命名空间
//Add by Forguncy
// ===================
if (Forguncy) {
Forguncy.Tooltip = Tooltip;
}

b. dropdown
在Forguncy,用于current user cell type
为了不干扰用户引用bootstrap库,
在文件中做了如下修改:
1. 注释了// DROPDOWN PLUGIN DEFINITION 部分代码
2. 注释了// DROPDOWN NO CONFLICT 部分代码
3. 将属性值dropdown改为_dropdown
var toggle = '[data-toggle=_dropdown]'

二. CSS
bootstrap.css文件来源:\dist\css\bootstrap.css
css文件删除了与tooltip,dropdown无关部分,并做了如下修改

.tooltip.top .tooltip-arrow {
border-top-color: #000; ->#f00
}

.tooltip.bottom .tooltip-arrow {
border-bottom-color: #000; ->#f00
}
Loading

0 comments on commit 6ab3e49

Please sign in to comment.