@@ -213,10 +210,7 @@ watch(pbAtts.value, (newValue) => {
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
diff --git a/src/components/pages/contract/ContractView.vue b/src/components/pages/contract/ContractView.vue
index 719d2ff..80a8970 100644
--- a/src/components/pages/contract/ContractView.vue
+++ b/src/components/pages/contract/ContractView.vue
@@ -207,10 +207,7 @@ watch(pbAtts.value, (newValue) => {
- {{ f.logiFnm }}
-
-
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
diff --git a/src/components/pages/estimate/EstimateList.vue b/src/components/pages/estimate/EstimateList.vue
index b970893..204730e 100644
--- a/src/components/pages/estimate/EstimateList.vue
+++ b/src/components/pages/estimate/EstimateList.vue
@@ -142,8 +142,8 @@ function onTabLeave(e: any) {
{{ estimate.totAmt.toString().replace(regex.currency, ',') }} |
-
{{ estimate.mngNm }} |
-
{{ dateFormat.millisecondsRemove(estimate.estDt) }} |
+
{{ estimate.mngNm }} |
+
{{ dateFormat.millisecondsRemove(estimate.estDt) }} |
{{ estimate.estStat }} ({{ dateFormat.converterDate(estimate.svyDt) }}) |
@@ -187,6 +187,9 @@ function onTabLeave(e: any) {
.text-right {
text-align:right !important;
}
+.text-center {
+ text-align:center !important;
+}
.is-navbar {
.datatable-toolbar {
diff --git a/src/components/pages/estimate/EstimateUpdate.vue b/src/components/pages/estimate/EstimateUpdate.vue
index d295b59..055c568 100644
--- a/src/components/pages/estimate/EstimateUpdate.vue
+++ b/src/components/pages/estimate/EstimateUpdate.vue
@@ -231,10 +231,7 @@ watch(pbAtts.value, (newValue) => {
class="content estimate-file-wrapper"
>
- {{ f.logiFnm }}
-
-
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
@@ -274,15 +271,10 @@ watch(pbAtts.value, (newValue) => {
class="content estimate-file-wrapper"
>
- {{ f.logiFnm }}
-
-
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
-
-
diff --git a/src/components/pages/estimate/EstimateView.vue b/src/components/pages/estimate/EstimateView.vue
index beae2a2..285c6d6 100644
--- a/src/components/pages/estimate/EstimateView.vue
+++ b/src/components/pages/estimate/EstimateView.vue
@@ -186,10 +186,7 @@ const totPrc = computed(() => {
class="content estimate-file-wrapper"
>
- {{ f.logiFnm }}
-
-
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
@@ -220,10 +217,7 @@ const totPrc = computed(() => {
class="content estimate-file-wrapper"
>
- {{ f.logiFnm }}
-
-
- {{ Math.ceil(f.size / 1024) }}kb
+ {{ f.logiFnm }} ({{ Math.ceil(f.size / 1024) }}kb)
diff --git a/vite.config.ts b/vite.config.ts
index cdafe65..11ca3c4 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -51,8 +51,8 @@ export default defineConfig(({ isSsrBuild }) => ({
port: 3000,
proxy: {
'/api': {
- target: 'https://svcm.hmsn.ink',
- // target: 'http://localhost:8010',
+ // target: 'https://svcm.hmsn.ink',
+ target: 'http://localhost:8010',
changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ''),
},