商城优化
This commit is contained in:
parent
aaa3488cfd
commit
96822c4fbf
|
|
@ -18,6 +18,7 @@ declare module 'vue' {
|
|||
ElCheckbox: typeof import('element-plus/es')['ElCheckbox']
|
||||
ElCol: typeof import('element-plus/es')['ElCol']
|
||||
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
||||
ElCountdown: typeof import('element-plus/es')['ElCountdown']
|
||||
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||
ElDialog: typeof import('element-plus/es')['ElDialog']
|
||||
ElEmpty: typeof import('element-plus/es')['ElEmpty']
|
||||
|
|
@ -31,6 +32,7 @@ declare module 'vue' {
|
|||
ElMenu: typeof import('element-plus/es')['ElMenu']
|
||||
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
|
||||
ElOption: typeof import('element-plus/es')['ElOption']
|
||||
ElPageHeader: typeof import('element-plus/es')['ElPageHeader']
|
||||
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||
ElPopconfirm: typeof import('element-plus/es')['ElPopconfirm']
|
||||
ElProgress: typeof import('element-plus/es')['ElProgress']
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ VITE_API_URL = '/proxyApi'
|
|||
# 开发环境接口地址
|
||||
# VITE_proxyTarget = 'http://10.40.92.74:8080' #盛旭
|
||||
|
||||
# VITE_proxyTarget = 'http://192.168.2.246:28080' # 马帅
|
||||
VITE_proxyTarget = 'http://192.168.2.123:28080' # 梁超
|
||||
VITE_proxyTarget = 'http://192.168.2.246:28080' # 马帅
|
||||
# VITE_proxyTarget = 'http://192.168.2.123:28080' # 梁超
|
||||
# VITE_proxyTarget = 'http://192.168.0.244:28580' # 马帅
|
||||
# VITE_proxyTarget = 'http://192.168.2.129:18080' # 马帅
|
||||
|
||||
|
|
|
|||
|
|
@ -475,6 +475,7 @@ const submitBtn = () => {
|
|||
insurancePdf: insurancePdf.value, //合格证
|
||||
examinationPdf: examinationPdf.value, //检测证明
|
||||
}
|
||||
param.maStatus == 0 ? (param.maStatus = 1) : param.maStatus
|
||||
if (
|
||||
equipmentDeploymentParams.value.maId &&
|
||||
equipmentDeploymentParams.value.maId != ''
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@
|
|||
<el-table-column align="center" prop="endTime" label="需求截止日期" width="120" />
|
||||
<el-table-column align="center" prop="startTime" label="发布时间" />
|
||||
<el-table-column align="center" prop="orderUser" label="接单人" />
|
||||
<el-table-column align="center" prop="" label="接单人联系方式" width="140" />
|
||||
<el-table-column align="center" prop="orderPhone" label="接单人联系方式" width="140" />
|
||||
<el-table-column align="center" prop="leaseStatusName" label="需求状态" />
|
||||
<el-table-column align="center" label="操作" :width="220">
|
||||
<template #default="{ row }">
|
||||
|
|
@ -622,6 +622,9 @@ const onSubmit = (type: boolean) => {
|
|||
addOrEditForm.value.typeId =
|
||||
addOrEditForm.value.typeIds[addOrEditForm.value.typeIds.length - 1]
|
||||
addOrEditForm.value.fileInfoList.push(...fileListTemp.value)
|
||||
addOrEditForm.value.maStatus == 0
|
||||
? (addOrEditForm.value.maStatus = 1)
|
||||
: addOrEditForm.value.maStatus
|
||||
const SUBMIT_API = isRepublish.value ? addLeaseInfoApi : editLeaseInfoApi
|
||||
const res: any = await SUBMIT_API(addOrEditForm.value)
|
||||
if (res.code === 200) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue