| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- <template>
- <view class="default_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='编辑问卷'></cus-header>
- <view class="box adfacjb" style="padding: 32rpx 24rpx 40rpx;">
- <view class="box-left">
- <view class="box-title">问卷名称</view>
- <view class="box-tip" style="margin-top: 32rpx;">{{'GW+MC PREILL36测评题库版本'}}</view>
- </view>
- <view class="box-right adfac" @click="handlePreview">
- <text>预览</text>
- <image :src="imgBase+'my_arrow_right.png'"></image>
- </view>
- </view>
- <view class="box" style="padding: 32rpx 24rpx;">
- <view class="box-title">选择团队</view>
- <view class="box-team adfacjb" @click="teamShow=true">
- <view class="box-tip">{{'甜梦2025一期团队'}}</view>
- <image :src="imgBase+'my_arrow_right.png'"></image>
- </view>
- </view>
- <view class="box" style="padding: 32rpx 24rpx 0;">
- <view class="box-title">问卷作答时间设置</view>
- <view class="box-time adfacjb" style="margin-top: 32rpx;" @click="startShow=true">
- <view class="box-time-left">开始时间</view>
- <view class="box-time-right adfac">
- <text>{{'2025-10-13 00:00'}}</text>
- <image :src="imgBase+'my_arrow_right.png'"></image>
- </view>
- </view>
- <view class="box-time adfacjb">
- <view class="box-time-left">截止时间</view>
- <view class="box-time-right adfac" @click="endShow=true">
- <text>{{'2025-10-20 00:00'}}</text>
- <image :src="imgBase+'my_arrow_right.png'"></image>
- </view>
- </view>
- </view>
- <view class="box" style="padding: 32rpx 24rpx 18rpx;">
- <view class="box-title adfacjb">
- <text>限制每位用户提交次数</text>
- <u-switch v-model="limit" activeColor="#199C9C" size="38"></u-switch>
- </view>
- <view class="box-num adfacjb">
- <view class="box-num-title">可提交次数</view>
- <view class="box-num-right">
- <cus-number-box :min="1" :number="dto.submitNum" @valChange="valChange"></cus-number-box>
- </view>
- </view>
- </view>
- <view class="box" style="padding: 30rpx 24rpx 0;">
- <view class="box-title adfacjb">
- <text>团队人员</text>
- <view class="box-add">+ 添加</view>
- </view>
- <view class="box-user">
- <view class="box-user-item adfacjb" v-for="(item,index) in dto.userList" :key="index">
- <view class="box-user-item-left">
- <view class="box-user-item-left-name adfac">
- <text>{{'吴亦可'}}</text>
- <view class="type">{{'赞助人Sponsor'}}</view>
- </view>
- <view class="box-user-item-left-email">{{'123456789@qq.com'}}</view>
- </view>
- <image class="box-user-item-right" :src="imgBase+'icon_delete.png'"></image>
- </view>
- </view>
- </view>
- <view class="bottom">
- <view class="zt_btn" @click="confirmPublish">确认发布</view>
- </view>
- <view class="dialog adffc" v-if="teamShow">
- <view class="dbox adffc">
- <view class="db-top">选择团队</view>
- <image class="db-close" :src="imgBase+'remind_close.png'" @click="teamShow=false"></image>
- <view class="db-bottom" @click="addTeam">+ 新增团队</view>
- <view class="db-list">
- <view class="db-list-item adfacjb" v-for="(item,index) in teamList" :key="item.id" @click="selectTeam(item,index)">
- <view class="db-list-item-left" :class="{'active':item.select}">{{item.name}}</view>
- <view class="db-list-item-right">
- <u-icon name="checkbox-mark" color="#199C9C" size="42rpx" v-if="item.select"></u-icon>
- </view>
- </view>
- </view>
- <view class="zt_btn" style="margin-top: 40rpx;" @click="confirmTeam">确定</view>
- </view>
- </view>
- <u-datetime-picker ref="datetimePicker1" title="开始时间" :minDate="minStartTime" itemHeight="88" :show="startShow" v-model="dto.startTime" mode="datetime" :formatter="formatter" @cancel="startShow=false" @confirm="startConfirm"></u-datetime-picker>
- <u-datetime-picker ref="datetimePicker2" title="结束时间" :minDate="minEndTime" itemHeight="88" :show="endShow" v-model="dto.endTime" mode="datetime" :formatter="formatter" @cancel="endShow=false" @confirm="endConfirm"></u-datetime-picker>
- </view>
- </template>
- <script>
- import CusNumberBox from '@/components/CusNumberBox/index.vue'
- export default {
- components:{ CusNumberBox },
- data(){
- return {
- limit:true,
- teamShow:false,
- startShow:false,
- endShow:false,
- dto:{
- submitNum:1,
- userList:[1,1,1,1],
- startTime:'',
- endTime:''
- },
- teamList:[
- {id:1,name:'甜梦巧克力有限公司',select:false},
- {id:2,name:'美银证券',select:false},
- {id:3,name:'中国银行',select:false}
- ],
- minStartTime:new Date().getTime(),
- minEndTime:''
- }
- },
- onReady() {
- this.$refs.datetimePicker1.setFormatter(this.formatter)
- this.$refs.datetimePicker2.setFormatter(this.formatter)
- },
- methods:{
- formatter(type, value) {
- if (type === 'year') {
- return `${value}年`
- }
- if (type === 'month') {
- return `${value}月`
- }
- if (type === 'day') {
- return `${value}日`
- }
- return value
- },
- valChange(e){
- this.dto.submitNum = e;
- },
- handlePreview(){
- uni.navigateTo({
- url:'/pagesPublish/questionnairePreview'
- })
- },
- selectTeam(item,index){
- this.teamList.forEach((t,i)=>{
- this.$set(this.teamList[i],'select',i===index)
- })
- },
- addTeam(){
- uni.navigateTo({
- url:'/pagesPublish/fillTeamInfo?type=add',
- events:{
- saveTeamInfo: data =>{
- console.log(data);
- }
- }
- })
- },
- confirmTeam(){
- this.teamShow = false;
- },
- startConfirm(e){
- this.dto.startTime = e.value;
- this.minEndTime = e.value;
- this.startShow = false;
- },
- endConfirm(e){
- this.dto.endTime = e.value;
- this.endShow = false;
- },
- confirmPublish(){
- uni.navigateTo({
- url:'/pagesPublish/publishResult'
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .default_page{
- padding: 0 24rpx 182rpx;
- box-sizing: border-box;
-
- .box{
- background: #FFFFFF;
- box-shadow: inset 0rpx -1rpx 0rpx 0rpx rgba(229,231,235,0.5);
- border-radius: 24rpx;
- margin-top: 20rpx;
-
- &-title,&-title>text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #002846;
- line-height: 32rpx;
- }
- &-tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #667E90;
- line-height: 32rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- &-left{
- width: calc(100% - 150rpx);
- }
- &-right{
- &>text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #33A7A7;
- line-height: 32rpx;
- }
- &>image{
- width: 32rpx;
- height: 32rpx;
- margin-left: 10rpx;
- }
- }
- &-team{
- margin-top: 31rpx;
- &>image{
- width: 36rpx;
- height: 36rpx;
- }
- }
- &-time{
- padding: 33rpx 0;
- box-shadow: inset 0rpx -1rpx 0rpx 0rpx rgba(229,231,235,0.5);
- &-left{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #002846;
- line-height: 32rpx;
- }
- &-right{
- &>text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #667E90;
- line-height: 32rpx;
- }
- &>image{
- width: 36rpx;
- height: 36rpx;
- margin-left: 10rpx;
- }
- }
- }
- &-num{
- margin-top: 65rpx;
- &-left{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #002846;
- line-height: 32rpx;
- }
- }
- &-add{
- width: 120rpx;
- height: 54rpx;
- border-radius: 27rpx;
- border: 1rpx solid #33A7A7;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 24rpx;
- color: #33A7A7;
- line-height: 54rpx;
- text-align: center;
- }
- &-user{
- margin-top: 21rpx;
- &-item{
- box-shadow: inset 0rpx -1rpx 0rpx 0rpx #EFEFEF;
- border-radius: 24rpx;
- padding: 30rpx 0 36rpx;
- &-left{
- &-name{
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #002846;
- line-height: 32rpx;
- }
- .type{
- background: #F8F4F8;
- border-radius: 21rpx;
- margin-left: 20rpx;
- padding: 5rpx 16rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 22rpx;
- color: #9F6196;
- line-height: 30rpx;
- text-align: center;
- }
- }
- &-email{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #667E90;
- line-height: 28rpx;
- margin-top: 20rpx;
- }
- }
- &-right{
- width: 36rpx;
- height: 36rpx;
- }
- }
- }
- }
-
- .bottom{
- width: 100%;
- height: 162rpx;
- background: #FFFFFF;
- padding: 20rpx 50rpx;
- box-sizing: border-box;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 888;
- }
-
- .dialog{
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 1000;
- background: rgba(0, 0, 0, .4);
- justify-content: flex-end;
- .dbox{
- width: 100%;
- height: 1200rpx;
- background: #FFFFFF;
- box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.07);
- border-radius: 24rpx 24rpx 0rpx 0rpx;
- padding: 41rpx 30rpx 64rpx;
- box-sizing: border-box;
- position: relative;
- .db-top{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 36rpx;
- color: #002846;
- line-height: 36rpx;
- text-align: center;
- }
- .db-close{
- width: 48rpx;
- height: 48rpx;
- position: absolute;
- top: 35rpx;
- right: 30rpx;
- }
- .db-list{
- flex: 1;
- overflow-y: auto;
- margin-top: 58rpx;
- &-item{
- box-shadow: inset 0rpx -1rpx 0rpx 0rpx #EFEFEF;
- padding: 39rpx 0;
- &-left{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 32rpx;
- color: #002846;
- line-height: 32rpx;
- &.active{
- font-weight: bold;
- color: #009191;
- }
- }
- }
- }
- .db-bottom{
- width: 100%;
- height: 88rpx;
- background: rgba(25,156,156,0.1);
- border-radius: 44rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #009191;
- line-height: 88rpx;
- text-align: center;
- margin-top: 40rpx;
- }
- }
- }
- }
- </style>
|