mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 03:12:27 +09:00
fix : 등록폼에서 '가격조사완료'시 이슈 해결
fix : 문구 견적요청 -> 견적서 확인 변경
This commit is contained in:
@@ -133,12 +133,12 @@ const onChangeFinal = async () => {
|
|||||||
try {
|
try {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
res = await putSurveyPrcsNo(params.prcsNo)
|
res = await putSurveyPrcsNo(params.prcsNo)
|
||||||
notyf.dismissAll()
|
|
||||||
if (res.request.status === 200) {
|
if (res.request.status === 200) {
|
||||||
notyf.primary('가격조사 완료 되었습니다.')
|
notyf.primary('가격조사 완료 되었습니다.')
|
||||||
router.push({path: '/app/contractManagement'})
|
router.push({path: '/app/contractManagement'})
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
console.log('error')
|
||||||
notyf.error(e.message)
|
notyf.error(e.message)
|
||||||
} finally {
|
} finally {
|
||||||
loading.value = false
|
loading.value = false
|
||||||
@@ -294,7 +294,7 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>첨부파일</td>
|
<td>첨부파일</td>
|
||||||
<td colspan="4">
|
<td colspan="9">
|
||||||
<div class="column is-12">
|
<div class="column is-12">
|
||||||
<VField>
|
<VField>
|
||||||
<VLabel>첨부파일</VLabel>
|
<VLabel>첨부파일</VLabel>
|
||||||
@@ -320,11 +320,12 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>견적요청</td>
|
<td>견적서확인</td>
|
||||||
<td colspan="9">
|
<td colspan="9">
|
||||||
<slot name="status" v-if="!params.svyYn">
|
<slot name="status"
|
||||||
|
v-if="!params.svyYn"
|
||||||
|
>
|
||||||
<div style="display: flex; justify-content: flex-end; gap: 8px;">
|
<div style="display: flex; justify-content: flex-end; gap: 8px;">
|
||||||
|
|
||||||
<VButton
|
<VButton
|
||||||
color="primary"
|
color="primary"
|
||||||
icon="fas fa-circle"
|
icon="fas fa-circle"
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ export async function updatePrcsNo(param) {
|
|||||||
export async function putSurveyPrcsNo(params = {}) {
|
export async function putSurveyPrcsNo(params = {}) {
|
||||||
try {
|
try {
|
||||||
const result = await axios.put(`/api/prcs/survey/${params}`)
|
const result = await axios.put(`/api/prcs/survey/${params}`)
|
||||||
return result.data
|
return result
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const serverError = e.response?.data;
|
const serverError = e.response?.data;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user