system-clients 3.1.98-aode → 3.1.99-aode
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -261,7 +261,7 @@ export default {
|
|
261
261
|
// let gen = saveGen(this)
|
262
262
|
// return co(gen)
|
263
263
|
if (this.$login.Verification) {
|
264
|
-
if (this.picLyanzhengma) {
|
264
|
+
if (!this.picLyanzhengma) {
|
265
265
|
this.$showMessage("请输入验证码!").then(() => {
|
266
266
|
this.login = false
|
267
267
|
$('form').fadeIn(500)
|
@@ -282,11 +282,11 @@ let GetLoginInfoService = {
|
|
282
282
|
Vue.getParams(param, [null])
|
283
283
|
} else {
|
284
284
|
let result = []
|
285
|
-
if (hasBlank)
|
286
|
-
|
287
|
-
|
288
|
-
value: '请在系统设置里更新参数'
|
289
|
-
|
285
|
+
if (hasBlank)
|
286
|
+
result.push({label: blankHint, value: null})
|
287
|
+
if (!Vue.param || !Vue.param[param])
|
288
|
+
result.push({label: '请在系统设置里更新参数', value: '请在系统设置里更新参数'})
|
289
|
+
else {
|
290
290
|
let p = Vue.param[param]
|
291
291
|
p.forEach(function (item) {
|
292
292
|
result.push({label: item.name, value: item.name})
|