8.18 hebing
Showing
3 changed files
with
20 additions
and
4 deletions
| 1 | <template> | 1 | <template> |
| 2 | <div class="pd20"> | 2 | <div class="pd20"> |
| 3 | <div style="margin-bottom: 20px"> | 3 | <div style="margin-bottom: 20px"> |
| 4 | <el-button type="primary" @click="downloadAll">合并生成缴费单</el-button> | 4 | <el-button type="primary" @click="downloadAll">{{ language == 0 ? '合并生成缴费单' : 'Download Consolidated Invoice' }}</el-button> |
| 5 | <!-- <el-button type="primary" @click="showDialog">合并上传缴费单</el-button>--> | 5 | <el-button type="primary" @click="showDialog">合并上传缴费单</el-button> |
| 6 | </div> | 6 | </div> |
| 7 | <div v-for="b in list" class="item"> | 7 | <div v-for="b in list" class="item"> |
| 8 | <div class="title"> | 8 | <div class="title"> | ... | ... |
| ... | @@ -535,6 +535,22 @@ const submit = async () => { | ... | @@ -535,6 +535,22 @@ const submit = async () => { |
| 535 | ElMessage.warning(`Please specify Date OF Departure position`) | 535 | ElMessage.warning(`Please specify Date OF Departure position`) |
| 536 | return; | 536 | return; |
| 537 | } | 537 | } |
| 538 | if (!row.lastName) { | ||
| 539 | ElMessage.warning(`Please specify lastName`) | ||
| 540 | return; | ||
| 541 | } | ||
| 542 | if (!row.fristName) { | ||
| 543 | ElMessage.warning(`Please specify fristName`) | ||
| 544 | return; | ||
| 545 | } | ||
| 546 | if (!row.birthday) { | ||
| 547 | ElMessage.warning(`Please specify birth`) | ||
| 548 | return; | ||
| 549 | } | ||
| 550 | if (!row.issueDate) { | ||
| 551 | ElMessage.warning(`Please specify issueDate`) | ||
| 552 | return; | ||
| 553 | } | ||
| 538 | } | 554 | } |
| 539 | 555 | ||
| 540 | if (form.value.files && Array.isArray(form.value.files)) { | 556 | if (form.value.files && Array.isArray(form.value.files)) { | ... | ... |
| ... | @@ -84,8 +84,8 @@ export default defineConfig(({mode, command}) => { | ... | @@ -84,8 +84,8 @@ export default defineConfig(({mode, command}) => { |
| 84 | }, | 84 | }, |
| 85 | '/dev-api': { | 85 | '/dev-api': { |
| 86 | // target: 'http://192.168.1.118:8082/', | 86 | // target: 'http://192.168.1.118:8082/', |
| 87 | target: 'http://192.168.1.22:8082', | 87 | // target: 'http://192.168.1.22:8082', |
| 88 | // target: 'https://tk005.wxjylt.com/stage-api', | 88 | target: 'https://tk005.wxjylt.com/stage-api', |
| 89 | // target: 'http://124.70.181.90:1880/stage-api', | 89 | // target: 'http://124.70.181.90:1880/stage-api', |
| 90 | // target: 'https://sys.2025wtcwuxi.com/stage-api/', | 90 | // target: 'https://sys.2025wtcwuxi.com/stage-api/', |
| 91 | changeOrigin: true, | 91 | changeOrigin: true, | ... | ... |
-
Please register or sign in to post a comment