9 changed files with 203 additions and 117 deletions
@ -0,0 +1,120 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<div class="flex flex-mean flex-y" style="background-color: #FFFFFF; height: 200px;"> |
||||
|
<img src="../../assets/images/peoSuggestion/6.jpg" style="width: 100%; height: 200px;" /> |
||||
|
<div style="position: absolute;font-size: 30px;color: #ffff;text-align: center;width: 100%;"> |
||||
|
<span>{{ title }}</span> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div class='' style="position: relative;top: -10px;"> |
||||
|
<div class="card"> |
||||
|
<span> |
||||
|
{{ subjectContent }} |
||||
|
</span> |
||||
|
<br> |
||||
|
<!-- <span>  为贯彻落实”以人民为中心”的发展思想,坚持新时代党的群众路线,践行’大社会、大治理、大服务”工作理念,进一步畅通和规范人民建议征集通道,根据《城阳区人民建议征集工作办法(试行)》有关规定,现征求您的建议。注意事项:</span> |
||||
|
<br> |
||||
|
<span> |
||||
|
注意事项: |
||||
|
</span> |
||||
|
<br> |
||||
|
<span>1、人民建议,是指公民、法人或社会组织(简称建议人)为了社会公共利益,针对社会公共事务,对我市经济建设、政治建设、文化建设、社会建设生态文明建设等各级党委和政府反映情况并提出建议。 </span> |
||||
|
<br> |
||||
|
<span>2、申诉求决类、检举控告类事项和依法应通过诉讼、仲裁、行政复议等法定途径可解决的事项不纳入人民征集事项范畴。</span> --> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="flex flex-center1 " style="position: fixed; bottom: 30px;left: 40px;"> |
||||
|
<van-button block color="linear-gradient(to right, #81B5FB, #3E92FF)" style="width: 300px;" round @click="onClickdaily">开始填写</van-button> |
||||
|
</div> |
||||
|
|
||||
|
<Android @send-number="handleNumber" /> |
||||
|
</div> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import {sphereLifeSearcdetail } from "@/api/lingCircle" |
||||
|
import Share from "@/components/Share" |
||||
|
import registerDialog from '@/components/registerDialog'; |
||||
|
import { setConfig } from '@/utils/jweixin' |
||||
|
import { Toast, Dialog } from 'vant' |
||||
|
|
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
title:"", |
||||
|
subjectContent:"", |
||||
|
id:"" |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
|
||||
|
}, |
||||
|
async mounted() { |
||||
|
this.title = this.$route.query.title |
||||
|
this.id = this.$route.query.id |
||||
|
this.subjectContent = this.$route.query.subjectContent |
||||
|
|
||||
|
}, |
||||
|
methods: { |
||||
|
//建议征集 |
||||
|
onClickdaily(){ |
||||
|
this.$router.push({path:`SpecialsolicitationFill`,query: { title:this.title,subjectContent: this.subjectContent,id:this.id |
||||
|
}},) |
||||
|
}, |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
}, |
||||
|
components: { Share, registerDialog }, |
||||
|
computed: { |
||||
|
disabledRecord() { |
||||
|
return (item) => { |
||||
|
if (!item.cutOffTime || item.online != 1) return true |
||||
|
let flag = new Date(item.cutOffTime.replace(/-/g, '/')).getTime() < Date.now() || item.currentParticipants >= item.participants || item.currentParticipants >= item.participants; |
||||
|
return flag || false |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
watch: {}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang='less' scoped> |
||||
|
.phone{ |
||||
|
height: 50px; |
||||
|
bottom:8vh; |
||||
|
} |
||||
|
:deep img{ |
||||
|
max-width: 100%; |
||||
|
} |
||||
|
:deep(.p0>.van-cell) { |
||||
|
padding: 0; |
||||
|
} |
||||
|
|
||||
|
:deep(.van-cell) { |
||||
|
padding: 16px 8px; |
||||
|
} |
||||
|
|
||||
|
:deep(.van-cell__title) { |
||||
|
color: #666666; |
||||
|
display: flex; |
||||
|
|
||||
|
&>span { |
||||
|
flex: 1; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
:deep(.van-cell__value) { |
||||
|
text-align: left; |
||||
|
} |
||||
|
|
||||
|
:deep(.van-cell--required) { |
||||
|
&::before { |
||||
|
left: -5px; |
||||
|
} |
||||
|
} |
||||
|
</style> |
Loading…
Reference in new issue