BUG 27621

This commit is contained in:
aixianling
2022-02-23 15:16:23 +08:00
parent 92ffbc1231
commit 8ab0d46eaf
46 changed files with 1057 additions and 1000 deletions

View File

@@ -40,6 +40,7 @@ import {mapState} from 'vuex'
export default { export default {
name: "add", name: "add",
appName:"活动报名",
computed: { computed: {
...mapState(['user']) ...mapState(['user'])
}, },

View File

@@ -26,6 +26,7 @@ import {mapState} from 'vuex'
export default { export default {
name: "addContent", name: "addContent",
appName: "填写活动日志",
computed: { computed: {
...mapState(['user']) ...mapState(['user'])
}, },

View File

@@ -25,6 +25,7 @@ import {mapState} from 'vuex'
export default { export default {
name: 'logDetail', name: 'logDetail',
appName:"活动日志",
computed: { computed: {
...mapState(['user']), ...mapState(['user']),
}, },

View File

@@ -17,6 +17,7 @@
export default { export default {
name: "userList", name: "userList",
appName: "活动报名情况",
data() { data() {
return { return {
id: '', id: '',

View File

@@ -74,6 +74,7 @@
export default { export default {
name: "agAdd", name: "agAdd",
appName:"发布晒农产品",
data() { data() {
return { return {
show: false, show: false,

View File

@@ -34,6 +34,7 @@
<script> <script>
export default { export default {
name: "agDetail", name: "agDetail",
appName: "农产品详情",
data() { data() {
return { return {
id: null, id: null,

View File

@@ -87,7 +87,7 @@ export default {
params: {names: this.names} params: {names: this.names}
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
this.categorys = res.data[0]["categoryList"]; this.categorys = res.data?.[0]?.categoryList || [];
this.search.moduleId = res.data?.[0]?.id; this.search.moduleId = res.data?.[0]?.id;
this.search.categoryId = res.data?.[0]?.categoryList?.[0]?.id; this.search.categoryId = res.data?.[0]?.categoryList?.[0]?.id;
this.getCategoryList(); this.getCategoryList();

View File

@@ -8,6 +8,7 @@
export default { export default {
name: "contentDetail", name: "contentDetail",
appName:"内容详情",
data() { data() {
return { return {
detail: {title: "内容详情"}, detail: {title: "内容详情"},
@@ -37,7 +38,7 @@ export default {
onShareAppMessage() { onShareAppMessage() {
return { return {
title: detail.title, title: this.detail.title,
path: '/mods/AppContent/contentDetail?id=' + this.id path: '/mods/AppContent/contentDetail?id=' + this.id
}; };
} }

View File

@@ -19,6 +19,7 @@ import {mapState} from "vuex";
export default { export default {
name: "contentManager", name: "contentManager",
appName: "搜索结果",
computed: { computed: {
...mapState(['user']), ...mapState(['user']),
loadmore() { loadmore() {

View File

@@ -9,6 +9,7 @@
<script> <script>
export default { export default {
appName:"提交",
data() { data() {
return { return {
type: '0' type: '0'

View File

@@ -41,6 +41,7 @@
<script> <script>
export default { export default {
appName: "结算",
data() { data() {
return { return {
total: 0, total: 0,

View File

@@ -60,7 +60,7 @@ import {mapState} from 'vuex'
export default { export default {
name: 'supermarket', name: 'supermarket',
appName: "信用好超市",
data() { data() {
return { return {
numList: [], numList: [],

View File

@@ -35,6 +35,7 @@
<script> <script>
export default { export default {
name: "compJob", name: "compJob",
appName: "企业招工详情",
data() { data() {
return { return {
id: null, id: null,

View File

@@ -32,6 +32,7 @@
<script> <script>
export default { export default {
name: "persJob", name: "persJob",
appName:"个人求职详情",
data() { data() {
return { return {
id: null, id: null,

View File

@@ -53,6 +53,7 @@
export default { export default {
name: "pubJob", name: "pubJob",
appName: "我要找工作",
data() { data() {
return { return {
form: { form: {

View File

@@ -65,6 +65,7 @@
export default { export default {
name: "marAdd", name: "marAdd",
appName: "我要上报",
data() { data() {
return { return {
form: { form: {

View File

@@ -40,6 +40,8 @@
<script> <script>
export default { export default {
name: "orderInfo",
appName: "订单详情",
data() { data() {
return { return {
info: {}, info: {},

View File

@@ -50,7 +50,8 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
name: "my", name: "add",
appName:"我要提问",
computed: { computed: {
...mapState(['global']) ...mapState(['global'])
}, },

View File

@@ -49,7 +49,8 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
name: "my", name: "questionList",
appName: "提问记录",
computed: { computed: {
...mapState(['user', 'token']) ...mapState(['user', 'token'])
}, },

View File

@@ -27,7 +27,8 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
name: "my", name: "reply",
appName: "发表回复",
computed: { computed: {
...mapState(['user', 'token']) ...mapState(['user', 'token'])
}, },

View File

@@ -14,6 +14,7 @@
<script> <script>
export default { export default {
name:"progressAnnex",
data() { data() {
return { return {
img: '', img: '',

View File

@@ -148,6 +148,8 @@
<script> <script>
export default { export default {
name: "progressDetail",
appName: "进度详情",
data() { data() {
return { return {
title: '', title: '',

View File

@@ -132,6 +132,7 @@
<script> <script>
export default { export default {
appName: "进度详情",
data() { data() {
return { return {
title: '', title: '',

View File

@@ -172,6 +172,7 @@ import {mapState} from 'vuex'
import Handwriting from '@/utils/signature.js' import Handwriting from '@/utils/signature.js'
export default { export default {
name:"serviceForm",
data() { data() {
return { return {
pageShow: false, pageShow: false,

View File

@@ -18,6 +18,7 @@
<script> <script>
export default { export default {
appName:"网上办事",
data () { data () {
return { return {
id: '', id: '',

View File

@@ -13,12 +13,10 @@
<script> <script>
export default { export default {
appName: "个人人员参保申报",
data() { data() {
return { return {}
}
}, },
onLoad(query) { onLoad(query) {
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: query.title title: query.title

View File

@@ -15,6 +15,7 @@
<script> <script>
export default { export default {
appName:"网上办事",
data() { data() {
return { return {
id: '', id: '',

View File

@@ -13,6 +13,7 @@
<script> <script>
export default { export default {
appName: "个人人员参保申报",
data() { data() {
return {} return {}
}, },

View File

@@ -48,6 +48,7 @@
export default { export default {
name: 'balance', name: 'balance',
appName:"订单结算",
data() { data() {
return { return {
selected: null, selected: null,

View File

@@ -22,6 +22,7 @@
export default { export default {
name: "search", name: "search",
appName:"积分超市搜索",
data() { data() {
return { return {
keyword: "", keyword: "",

View File

@@ -35,6 +35,7 @@
<script> <script>
export default { export default {
appName: "话题详情",
data() { data() {
return { return {
info: {}, info: {},

View File

@@ -1,7 +1,8 @@
<template> <template>
<section class="monitorDetail"> <section class="monitorDetail">
<div class="videoBox"> <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> </div>
</section> </section>
</template> </template>
@@ -9,6 +10,7 @@
<script> <script>
export default { export default {
name: 'monitorDetail', name: 'monitorDetail',
appName: "监控详情",
data() { data() {
return { return {
style: {}, style: {},

View File

@@ -88,6 +88,7 @@
import { mapState } from 'vuex' import { mapState } from 'vuex'
export default { export default {
appName:"活动详情",
data () { data () {
return { return {
currIndex: 0, currIndex: 0,

View File

@@ -32,6 +32,7 @@
<script> <script>
export default { export default {
appName: "添加活动动态",
data() { data() {
return { return {
content: '', content: '',

View File

@@ -64,7 +64,10 @@
<div class="input" @click="show = true">我来说两句...</div> <div class="input" @click="show = true">我来说两句...</div>
</div> </div>
<div class="btn-wrapper" v-if="info.type === '1' && !info.isTimeout && info.status === '0'"> <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> </div>
<!-- 弹框 --> <!-- 弹框 -->
<u-popup v-model="show" mode="bottom"> <u-popup v-model="show" mode="bottom">
@@ -91,7 +94,9 @@
<script> <script>
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
appName: "详情",
data() { data() {
return { return {
content: '', content: '',

View File

@@ -16,6 +16,7 @@
<script> <script>
export default { export default {
appName: "投票详情",
data() { data() {
return { return {
pageShow: false, pageShow: false,

View File

@@ -135,6 +135,7 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
appName:"今日上报",
data() { data() {
return { return {
isShowDate: false, isShowDate: false,

View File

@@ -75,6 +75,7 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
appName:"添加上报人员",
data() { data() {
return { return {
form: { form: {

View File

@@ -75,6 +75,7 @@
<script> <script>
export default { export default {
appName:"上报详情",
data () { data () {
return { return {
info: {}, info: {},

View File

@@ -1,6 +1,7 @@
<template> <template>
<div class="record" v-if="pageShow"> <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="left">{{ item.createTime.split(' ')[0] }}的健康上报</div>
<div class="right"> <div class="right">
<i v-if="item.status === '0'">健康数据异常</i> <i v-if="item.status === '0'">健康数据异常</i>
@@ -13,6 +14,7 @@
<script> <script>
export default { export default {
appName: "上报记录",
data() { data() {
return { return {
list: [], list: [],

View File

@@ -57,6 +57,7 @@
<script> <script>
export default { export default {
appName:"个人信息",
data () { data () {
return { return {
info: {}, info: {},

View File

@@ -1,7 +1,9 @@
<template> <template>
<div class="photo-detail" v-if="pageShow"> <div class="photo-detail" v-if="pageShow">
<h2>{{ info.content }}</h2> <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__info">
<div class="photo-detail__item"> <div class="photo-detail__item">
<i>事件类型</i> <i>事件类型</i>
@@ -41,6 +43,7 @@
<script> <script>
export default { export default {
appName: "随手拍详情",
data() { data() {
return { return {
pageShow: false, pageShow: false,

View File

@@ -104,6 +104,7 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
appName:"上报随手拍",
data() { data() {
return { return {
isShowType: false, isShowType: false,

View File

@@ -8,6 +8,7 @@
<script> <script>
export default { export default {
appName:"上报随手拍",
data () { data () {
return { return {
id: '' id: ''

View File

@@ -261,6 +261,7 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
appName:"添加返乡记录",
data() { data() {
return { return {
isShowType: false, isShowType: false,

View File

@@ -49,7 +49,9 @@
<label>人员类别</label> <label>人员类别</label>
</div> </div>
<div class="right"> <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> </div>
</div> </div>
@@ -135,7 +137,9 @@
<label>核酸检测结果</label> <label>核酸检测结果</label>
</div> </div>
<div class="right"> <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> </div>
<div class="detail-info__item detail-info__item--img"> <div class="detail-info__item detail-info__item--img">
@@ -162,7 +166,9 @@
<label>14天内是否接触新冠确诊或疑似患者</label> <label>14天内是否接触新冠确诊或疑似患者</label>
</div> </div>
<div class="right"> <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> </div>
<div class="detail-info__item"> <div class="detail-info__item">
@@ -179,6 +185,7 @@
<script> <script>
export default { export default {
appName: "返乡登记详情",
data() { data() {
return { return {
info: {}, info: {},