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