BUG 28034
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
</div>
|
||||
<div class="item-info" v-if="showAll">
|
||||
<span class="info-label">签到时间:</span>
|
||||
<div class="info-value">
|
||||
<div class="info-value flex">
|
||||
<i v-if="data.signMethod == 1 && signStart">{{ signStart }}</i>
|
||||
<i class="sign-end" v-if="data.signMethod == 1 && signEnd">至 {{ signEnd }}</i>
|
||||
<i v-if="data.signMethod != 1">-</i>
|
||||
@@ -107,7 +107,7 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"会议详情",
|
||||
appName: "会议详情",
|
||||
data() {
|
||||
return {
|
||||
titleList: [
|
||||
@@ -181,8 +181,8 @@ export default {
|
||||
},
|
||||
getDetailInfo() {
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appthreemeetinginfo/queryDetailById?id=${this.id}`, null, {}).then(res => {
|
||||
if (res.data) {
|
||||
this.$instance.post(`/app/appthreemeetinginfo/queryDetailById?id=${this.id}`).then(res => {
|
||||
if (res?.data) {
|
||||
var data = res.data
|
||||
if (data.startTime && data.meetingBefore) {
|
||||
var dStart = new Date(data.startTime.replaceAll('-', '/'));
|
||||
@@ -220,10 +220,9 @@ export default {
|
||||
|
||||
// var topicClassificationObj = data.topicClassification
|
||||
// this.objInit(topicClassificationObj, 'topicClassification')
|
||||
|
||||
this.$hideLoading()
|
||||
}
|
||||
})
|
||||
|
||||
}).then(()=>this.$hideLoading())
|
||||
},
|
||||
objInit(obj, name) {
|
||||
this.data[name] = []
|
||||
@@ -338,10 +337,6 @@ export default {
|
||||
right: 48px;
|
||||
}
|
||||
|
||||
.sign-end {
|
||||
padding-left: 150px;
|
||||
}
|
||||
|
||||
.btn-bottom {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
|
||||
Reference in New Issue
Block a user