BUG 27621
This commit is contained in:
@@ -40,6 +40,7 @@ import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "add",
|
||||
appName:"活动报名",
|
||||
computed: {
|
||||
...mapState(['user'])
|
||||
},
|
||||
|
||||
@@ -26,6 +26,7 @@ import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "addContent",
|
||||
appName: "填写活动日志",
|
||||
computed: {
|
||||
...mapState(['user'])
|
||||
},
|
||||
|
||||
@@ -25,6 +25,7 @@ import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'logDetail',
|
||||
appName:"活动日志",
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
export default {
|
||||
name: "userList",
|
||||
appName: "活动报名情况",
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
|
||||
@@ -74,6 +74,7 @@
|
||||
|
||||
export default {
|
||||
name: "agAdd",
|
||||
appName:"发布晒农产品",
|
||||
data() {
|
||||
return {
|
||||
show: false,
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
<script>
|
||||
export default {
|
||||
name: "agDetail",
|
||||
appName: "农产品详情",
|
||||
data() {
|
||||
return {
|
||||
id: null,
|
||||
|
||||
@@ -87,7 +87,7 @@ export default {
|
||||
params: {names: this.names}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.categorys = res.data[0]["categoryList"];
|
||||
this.categorys = res.data?.[0]?.categoryList || [];
|
||||
this.search.moduleId = res.data?.[0]?.id;
|
||||
this.search.categoryId = res.data?.[0]?.categoryList?.[0]?.id;
|
||||
this.getCategoryList();
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
export default {
|
||||
name: "contentDetail",
|
||||
appName:"内容详情",
|
||||
data() {
|
||||
return {
|
||||
detail: {title: "内容详情"},
|
||||
@@ -37,7 +38,7 @@ export default {
|
||||
|
||||
onShareAppMessage() {
|
||||
return {
|
||||
title: detail.title,
|
||||
title: this.detail.title,
|
||||
path: '/mods/AppContent/contentDetail?id=' + this.id
|
||||
};
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@ import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: "contentManager",
|
||||
appName: "搜索结果",
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
loadmore() {
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"提交",
|
||||
data() {
|
||||
return {
|
||||
type: '0'
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "结算",
|
||||
data() {
|
||||
return {
|
||||
total: 0,
|
||||
|
||||
@@ -60,7 +60,7 @@ import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'supermarket',
|
||||
|
||||
appName: "信用好超市",
|
||||
data() {
|
||||
return {
|
||||
numList: [],
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
<script>
|
||||
export default {
|
||||
name: "compJob",
|
||||
appName: "企业招工详情",
|
||||
data() {
|
||||
return {
|
||||
id: null,
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<script>
|
||||
export default {
|
||||
name: "persJob",
|
||||
appName:"个人求职详情",
|
||||
data() {
|
||||
return {
|
||||
id: null,
|
||||
|
||||
@@ -53,6 +53,7 @@
|
||||
|
||||
export default {
|
||||
name: "pubJob",
|
||||
appName: "我要找工作",
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
|
||||
@@ -65,6 +65,7 @@
|
||||
|
||||
export default {
|
||||
name: "marAdd",
|
||||
appName: "我要上报",
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
|
||||
@@ -40,6 +40,8 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "orderInfo",
|
||||
appName: "订单详情",
|
||||
data() {
|
||||
return {
|
||||
info: {},
|
||||
|
||||
@@ -50,7 +50,8 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "my",
|
||||
name: "add",
|
||||
appName:"我要提问",
|
||||
computed: {
|
||||
...mapState(['global'])
|
||||
},
|
||||
|
||||
@@ -49,7 +49,8 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "my",
|
||||
name: "questionList",
|
||||
appName: "提问记录",
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
|
||||
@@ -27,7 +27,8 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "my",
|
||||
name: "reply",
|
||||
appName: "发表回复",
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name:"progressAnnex",
|
||||
data() {
|
||||
return {
|
||||
img: '',
|
||||
|
||||
@@ -148,6 +148,8 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "progressDetail",
|
||||
appName: "进度详情",
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
|
||||
@@ -132,6 +132,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "进度详情",
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
|
||||
@@ -172,6 +172,7 @@ import {mapState} from 'vuex'
|
||||
import Handwriting from '@/utils/signature.js'
|
||||
|
||||
export default {
|
||||
name:"serviceForm",
|
||||
data() {
|
||||
return {
|
||||
pageShow: false,
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"网上办事",
|
||||
data () {
|
||||
return {
|
||||
id: '',
|
||||
|
||||
@@ -13,12 +13,10 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "个人人员参保申报",
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
return {}
|
||||
},
|
||||
|
||||
onLoad(query) {
|
||||
uni.setNavigationBarTitle({
|
||||
title: query.title
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"网上办事",
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "个人人员参保申报",
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
|
||||
@@ -48,6 +48,7 @@
|
||||
|
||||
export default {
|
||||
name: 'balance',
|
||||
appName:"订单结算",
|
||||
data() {
|
||||
return {
|
||||
selected: null,
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
|
||||
export default {
|
||||
name: "search",
|
||||
appName:"积分超市搜索",
|
||||
data() {
|
||||
return {
|
||||
keyword: "",
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "话题详情",
|
||||
data() {
|
||||
return {
|
||||
info: {},
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
<template>
|
||||
<section class="monitorDetail">
|
||||
<div class="videoBox">
|
||||
<iframe ref="monitorIns" :style="style" :src="monitor.url" allow="autoplay *; microphone *; fullscreen *" allowfullscreen allowtransparency allowusermedia frameBorder="no" />
|
||||
<iframe ref="monitorIns" :style="style" :src="monitor.url" allow="autoplay *; microphone *; fullscreen *"
|
||||
allowfullscreen allowtransparency allowusermedia frameBorder="no"/>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
@@ -9,6 +10,7 @@
|
||||
<script>
|
||||
export default {
|
||||
name: 'monitorDetail',
|
||||
appName: "监控详情",
|
||||
data() {
|
||||
return {
|
||||
style: {},
|
||||
|
||||
@@ -88,6 +88,7 @@
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"活动详情",
|
||||
data () {
|
||||
return {
|
||||
currIndex: 0,
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<script>
|
||||
|
||||
export default {
|
||||
appName: "添加活动动态",
|
||||
data() {
|
||||
return {
|
||||
content: '',
|
||||
|
||||
@@ -64,7 +64,10 @@
|
||||
<div class="input" @click="show = true">我来说两句...</div>
|
||||
</div>
|
||||
<div class="btn-wrapper" v-if="info.type === '1' && !info.isTimeout && info.status === '0'">
|
||||
<div class="btn" :class="[info.myVote ? 'disabled' : '']" @click="signUp" hover-class="text-hover">{{ buttonText }}</div>
|
||||
<div class="btn" :class="[info.myVote ? 'disabled' : '']" @click="signUp" hover-class="text-hover">{{
|
||||
buttonText
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
<!-- 弹框 -->
|
||||
<u-popup v-model="show" mode="bottom">
|
||||
@@ -91,7 +94,9 @@
|
||||
|
||||
<script>
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName: "详情",
|
||||
data() {
|
||||
return {
|
||||
content: '',
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "投票详情",
|
||||
data() {
|
||||
return {
|
||||
pageShow: false,
|
||||
|
||||
@@ -135,6 +135,7 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"今日上报",
|
||||
data() {
|
||||
return {
|
||||
isShowDate: false,
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"添加上报人员",
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"上报详情",
|
||||
data () {
|
||||
return {
|
||||
info: {},
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div class="record" v-if="pageShow">
|
||||
<div class="record-item" v-for="(item, index) in list" :key="index" @click="$linkTo('./Detail?id=' + item.id)" hover-class="bg-hover">
|
||||
<div class="record-item" v-for="(item, index) in list" :key="index" @click="$linkTo('./Detail?id=' + item.id)"
|
||||
hover-class="bg-hover">
|
||||
<div class="left">{{ item.createTime.split(' ')[0] }}的健康上报</div>
|
||||
<div class="right">
|
||||
<i v-if="item.status === '0'">健康数据异常</i>
|
||||
@@ -13,6 +14,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "上报记录",
|
||||
data() {
|
||||
return {
|
||||
list: [],
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"个人信息",
|
||||
data () {
|
||||
return {
|
||||
info: {},
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<template>
|
||||
<div class="photo-detail" v-if="pageShow">
|
||||
<h2>{{ info.content }}</h2>
|
||||
<div class="status-name" :class="'status-' + info.eventStatus">{{ $dict.getLabel('clapEventStatus', info.eventStatus) }}</div>
|
||||
<div class="status-name" :class="'status-' + info.eventStatus">
|
||||
{{ $dict.getLabel('clapEventStatus', info.eventStatus) }}
|
||||
</div>
|
||||
<div class="photo-detail__info">
|
||||
<div class="photo-detail__item">
|
||||
<i>事件类型</i>
|
||||
@@ -41,6 +43,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "随手拍详情",
|
||||
data() {
|
||||
return {
|
||||
pageShow: false,
|
||||
|
||||
@@ -104,6 +104,7 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"上报随手拍",
|
||||
data() {
|
||||
return {
|
||||
isShowType: false,
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName:"上报随手拍",
|
||||
data () {
|
||||
return {
|
||||
id: ''
|
||||
|
||||
@@ -261,6 +261,7 @@
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
appName:"添加返乡记录",
|
||||
data() {
|
||||
return {
|
||||
isShowType: false,
|
||||
|
||||
@@ -49,7 +49,9 @@
|
||||
<label>人员类别</label>
|
||||
</div>
|
||||
<div class="right">
|
||||
<span :style="{color: info.type === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicMemberType', info.type) }}</span>
|
||||
<span :style="{color: info.type === '0' ? '#42D784' : '#FF4466'}">{{
|
||||
$dict.getLabel('epidemicMemberType', info.type)
|
||||
}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -135,7 +137,9 @@
|
||||
<label>核酸检测结果</label>
|
||||
</div>
|
||||
<div class="right">
|
||||
<span :style="{color: info.checkResult === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicRecentTestResult', info.checkResult) }}</span>
|
||||
<span :style="{color: info.checkResult === '0' ? '#42D784' : '#FF4466'}">{{
|
||||
$dict.getLabel('epidemicRecentTestResult', info.checkResult)
|
||||
}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item detail-info__item--img">
|
||||
@@ -162,7 +166,9 @@
|
||||
<label>14天内是否接触新冠确诊或疑似患者</label>
|
||||
</div>
|
||||
<div class="right">
|
||||
<span :style="{color: info.touchInFourteen === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicTouchInFourteen', info.touchInFourteen) }}</span>
|
||||
<span :style="{color: info.touchInFourteen === '0' ? '#42D784' : '#FF4466'}">{{
|
||||
$dict.getLabel('epidemicTouchInFourteen', info.touchInFourteen)
|
||||
}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item">
|
||||
@@ -179,6 +185,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
appName: "返乡登记详情",
|
||||
data() {
|
||||
return {
|
||||
info: {},
|
||||
|
||||
Reference in New Issue
Block a user