yangpeilai 3 недель назад
Родитель
Сommit
6aedddfa06

+ 11
- 0
src/views/system/branch/index.vue Просмотреть файл

@@ -733,6 +733,17 @@ function submitClick() {
if (!params.superServiceHallId) {
params.superServiceHallId = null
}
params.latitude =Number(params.latitude)
params.longitude = Number(params.longitude)
params.radial = Number(params.radial)
if(!(params.locationModels === '' || params.locationModels === undefined || params.locationModels === null)){
let locationModels = params.locationModels
locationModels.forEach( item => {
item.latitude = Number(item.latitude)
item.longitude = Number(item.longitude)
item.radial = Number(item.radial)
})
}
BaseService.postN(api, params).then((res: any) => {
if (res && res.code === 0) {
ElMessage.success('操作成功')

+ 1
- 0
src/views/system/gateway/singInfo/data.js Просмотреть файл

@@ -212,6 +212,7 @@ export const getZxqdFindConfig = (route, agencyIdList) => ({
form: {
formLabelWidth: formLabelWidth,
type: 'input',
hide: true,
required: true,
disabled: false
}

+ 1
- 1
src/views/system/gateway/singInfo/index.vue Просмотреть файл

@@ -98,7 +98,7 @@ function customSelectorSelection(value, title) {
crudRef.value.tableFrom.dialogArray[index].form.required = true
}
}
if (element.prop == 'privateKey' || element.prop == 'serialNo'
if (element.prop == 'planId' || element.prop == 'privateKey' || element.prop == 'serialNo'
|| element.prop == 'wxPublicKey' || element.prop == 'wxPublicKeyId') {
if (value == '3') {
crudRef.value.tableFrom.dialogArray[index].form.hide = false

+ 1
- 1
src/views/system/updatePassword/index.vue Просмотреть файл

@@ -218,7 +218,7 @@
//iaw/message/sendMessage
BaseService.post('/iaw/portal/sendCode', {
mobile: dataForm.value.mobile,
businessType: 3
businessType: 2
}).then((res: any) => {
if (res && res.statusCode === 0) {
ElMessage.success("验证码已成功");

Загрузка…
Отмена
Сохранить