1. 解决首次登陆可能出错的问题

2. 表单配置后数据为1111的问题
3.下单时可能出现错误配置提示的问题
This commit is contained in:
stivepeim
2021-01-07 15:56:58 +08:00
parent 4ef5b480ec
commit d9bd170169
4 changed files with 1935 additions and 1223 deletions

View File

@@ -14327,6 +14327,11 @@
"integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=",
"dev": true "dev": true
}, },
"qrcodejs2": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/qrcodejs2/-/qrcodejs2-0.0.2.tgz",
"integrity": "sha1-Rlr+Xjnxn6zsuTLBH3oYYQkUauE="
},
"qs": { "qs": {
"version": "6.9.4", "version": "6.9.4",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",

View File

@@ -246,7 +246,7 @@ export default {
_fields.push({ _fields.push({
name: key, name: key,
title: key, title: key,
value: formValue[key] || '1111' value: formValue[key]
}) })
}) })
_pram.fields = _fields _pram.fields = _fields

View File

File diff suppressed because one or more lines are too long

View File

@@ -48,7 +48,7 @@ if test -e $APP_NAME;then
#通过检测日志来判断 #通过检测日志来判断
while [ -f $LOG_FILE ] while [ -f $LOG_FILE ]
do do
success=`grep "Started CrmebApplication in " $LOG_FILE` success=`grep "CRMEB Started!" $LOG_FILE`
if [[ "$success" != "" ]] if [[ "$success" != "" ]]
then then
# echo "Crmeb start ........." # echo "Crmeb start ........."