检查部位分割格式
parent
d4ea8bb4d5
commit
3eeefaaa2c
|
@ -791,7 +791,7 @@ export default {
|
|||
this.loading = true
|
||||
// 保存配置信息
|
||||
var params = Object.assign({}, this.form)
|
||||
params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', ' | ')
|
||||
params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', '|')
|
||||
|
||||
configTrialBasicInfo(params).then(res => {
|
||||
this.loading = false
|
||||
|
@ -866,7 +866,7 @@ export default {
|
|||
signConfirm(signInfo) {
|
||||
this.loading = true
|
||||
var obj = Object.assign({}, this.form)
|
||||
obj.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', ' | ')
|
||||
obj.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', '|')
|
||||
const params = {
|
||||
data: obj,
|
||||
signInfo: signInfo
|
||||
|
|
Loading…
Reference in New Issue