Commit 1c9f114a authored by ww-xxy's avatar ww-xxy

修改预约报表bug

parent 8d2afe0a
...@@ -79,28 +79,28 @@ ...@@ -79,28 +79,28 @@
v-if="text.status == 0" v-if="text.status == 0"
color="#108ee9" color="#108ee9"
> >
未签到 {{statusItem[text.status]}}
</a-tag> </a-tag>
<a-tag <a-tag
@click="openDetails(text.id)" @click="openDetails(text.id)"
v-else-if="text.status == 1" v-else-if="text.status == 1"
color="#2db7f5" color="#2db7f5"
> >
排队中 {{statusItem[text.status]}}
</a-tag> </a-tag>
<a-tag <a-tag
@click="openDetails(text.id)" @click="openDetails(text.id)"
v-else-if="text.status == 2" v-else-if="text.status == 2"
color="#f50" color="#f50"
> >
超时未取号 {{statusItem[text.status]}}
</a-tag> </a-tag>
<a-tag <a-tag
@click="openDetails(text.id)" @click="openDetails(text.id)"
v-else-if="text.status == 3" v-else-if="text.status == 3"
color="red" color="red"
> >
已取消 {{statusItem[text.status]}}
</a-tag> </a-tag>
</template> </template>
</a-table> </a-table>
......
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
<img v-for="(item,index) in fromData.url" :key="index" <img v-for="(item,index) in fromData.url" :key="index"
:src="process.env.VUE_APP_API_BASE_URL+item"> :src="process.env.VUE_APP_API_BASE_URL+item">
</div> </div>
<div v-else>--</div>
</div> </div>
<div class="infoDetail"> <div class="infoDetail">
<div class="card"> <div class="card">
...@@ -81,7 +82,7 @@ ...@@ -81,7 +82,7 @@
<div class="cardTitle"> <div class="cardTitle">
回复内容<span>(必填)</span> 回复内容<span>(必填)</span>
</div> </div>
<div class="cardContent"></div> <div class="cardContent">{{ fromData.recontent }}</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -90,9 +91,9 @@ ...@@ -90,9 +91,9 @@
position: 'absolute', right: 0, bottom: 0, width: '100%', borderTop: '1px solid #e9e9e9', position: 'absolute', right: 0, bottom: 0, width: '100%', borderTop: '1px solid #e9e9e9',
padding: '10px 16px', background: '#fff', textAlign: 'right', zIndex: 1, padding: '10px 16px', background: '#fff', textAlign: 'right', zIndex: 1,
}"> }">
<a-button type="primary" @click="onClose"> <!-- <a-button type="primary" @click="onClose">
确定 确定
</a-button> </a-button> -->
<a-button :style="{ marginRight: '8px' }" @click="onClose"> <a-button :style="{ marginRight: '8px' }" @click="onClose">
取消 取消
</a-button> </a-button>
......
...@@ -139,7 +139,7 @@ export default { ...@@ -139,7 +139,7 @@ export default {
{ {
title: "所属部门", title: "所属部门",
align: "center", align: "center",
dataIndex: "dateName", dataIndex: "deptName",
}, },
{ {
title: "操作", title: "操作",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment