feat:1.0.7版本

This commit is contained in:
houjunxiang
2026-01-17 14:28:16 +08:00
parent cc5cb34b18
commit feb4997a69
2 changed files with 10 additions and 9 deletions

View File

@@ -2,8 +2,8 @@
"name" : "实验室管理系统", "name" : "实验室管理系统",
"appid" : "__UNI__4B3B4B0", "appid" : "__UNI__4B3B4B0",
"description" : "实验室管理系统", "description" : "实验室管理系统",
"versionName" : "1.0.6", "versionName" : "1.0.7",
"versionCode" : 106, "versionCode" : 107,
"transformPx" : false, "transformPx" : false,
"app-plus" : { "app-plus" : {
"usingComponents" : true, "usingComponents" : true,
@@ -95,21 +95,21 @@
/* JSONUserAgent **/ /* JSONUserAgent **/
"useragent" : { "useragent" : {
/* userAgent */ /* userAgent */
"value" : "LIMS-PDA/1.0.6", "value" : "LIMS-PDA/1.0.7",
/* BooleanvalueuserAgent */ /* BooleanvalueuserAgent */
"concatenate" : true "concatenate" : true
}, },
/* JSONAndroidUserAgentuseragent */ /* JSONAndroidUserAgentuseragent */
"useragent_android" : { "useragent_android" : {
/* userAgent */ /* userAgent */
"value" : "LIMS-PDA/1.0.6", "value" : "LIMS-PDA/1.0.7",
/* BooleanvalueuserAgent */ /* BooleanvalueuserAgent */
"concatenate" : true "concatenate" : true
}, },
/* JSONiOSUserAgentuseragent */ /* JSONiOSUserAgentuseragent */
"useragent_ios" : { "useragent_ios" : {
/* userAgent */ /* userAgent */
"value" : "LIMS-PDA/1.0.6", "value" : "LIMS-PDA/1.0.7",
/* BooleanvalueuserAgent */ /* BooleanvalueuserAgent */
"concatenate" : true "concatenate" : true
} }

View File

@@ -49,12 +49,13 @@ onShow(() => {
} else { } else {
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
showCancel: false,
content: '打印服务未配置,请在系统设置中配置打印服务', content: '打印服务未配置,请在系统设置中配置打印服务',
success: function (res) { success: function (res) {
uni.navigateTo({ if (res.confirm) {
url: '/pages/setting/print' uni.navigateTo({
}) url: '/pages/setting/print'
})
}
} }
}) })
} }