parent
3a1c2263b0
commit
57670bb7c7
@ -1,53 +0,0 @@
|
||||
<script setup>
|
||||
|
||||
const gridData = {
|
||||
id: 1,
|
||||
name: "Mike Lee",
|
||||
phone: '0987564231',
|
||||
email: 'gfdsa33@asd.com',
|
||||
address: "台北市大安區天龍一路588巷66號",
|
||||
message: "測試測試測試測試測試測試測試測試測,試測試測試測試測試測試測試測試測試測試測試測試測,試測試測試測試測試測試測試測試測試測試測試測試測,試測試測試測試",
|
||||
date: '2023/12/7',
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<el-card :body-style="{ padding: '0px' }">
|
||||
<el-descriptions :column="1" border>
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">客戶姓名</div></template>
|
||||
{{gridData.name}}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">聯絡電話</div></template>
|
||||
{{gridData.phone}}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">聯絡地址</div></template>
|
||||
{{gridData.address}}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">電子信箱</div></template>
|
||||
{{gridData.email}}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">留言內容</div></template>
|
||||
{{gridData.message}}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item min-width="90px" label-align="right">
|
||||
<template #label><div class="cell-item">留言時間</div></template>
|
||||
{{gridData.date}}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
@ -1 +0,0 @@
|
||||
1
|
||||
|
After Width: | Height: | Size: 456 KiB |
|
After Width: | Height: | Size: 625 KiB |
|
After Width: | Height: | Size: 446 KiB |
|
Before Width: | Height: | Size: 241 KiB After Width: | Height: | Size: 867 KiB |
@ -0,0 +1,8 @@
|
||||
FROM krisss/docker-webman:8.2-cli-alpine
|
||||
|
||||
RUN apk add msmtp
|
||||
|
||||
COPY ./webman/msmtprc /etc/msmtprc
|
||||
|
||||
RUN ln -sf /usr/bin/msmtp /usr/bin/sendmail
|
||||
RUN ln -sf /usr/bin/msmtp /usr/sbin/sendmail
|
||||
@ -0,0 +1,9 @@
|
||||
defaults
|
||||
port 25
|
||||
tls off
|
||||
|
||||
account default
|
||||
auth off
|
||||
host mail
|
||||
domain zltest.com.tw
|
||||
from prodio@zltest.com.tw
|
||||
Loading…
Reference in new issue