|
@@ -29,6 +29,13 @@
|
|
|
<u-input placeholder="请输入标题内容" v-model="applyInfo.title"></u-input>
|
|
<u-input placeholder="请输入标题内容" v-model="applyInfo.title"></u-input>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+ <view style="margin-bottom: 64rpx;">
|
|
|
|
|
+ <text style="color: #010101; font-size: 28rpx; font-weight: bold;"><text style="color: #f00;">*</text> 参赛者</text>
|
|
|
|
|
+ <view style="padding: 32rpx 0 0; border-bottom: 1rpx solid #E3E3E3;">
|
|
|
|
|
+ <u-input placeholder="请输入参赛者名称" v-model="applyInfo.player"></u-input>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
|
|
|
<view style="margin-bottom: 64rpx;">
|
|
<view style="margin-bottom: 64rpx;">
|
|
|
<text style="color: #010101; font-size: 28rpx; font-weight: bold;"><text style="color: #f00;">*</text> 详细介绍</text>
|
|
<text style="color: #010101; font-size: 28rpx; font-weight: bold;"><text style="color: #f00;">*</text> 详细介绍</text>
|
|
@@ -117,6 +124,7 @@
|
|
|
imgUrl: "",
|
|
imgUrl: "",
|
|
|
videoUrl: "",
|
|
videoUrl: "",
|
|
|
content: "",
|
|
content: "",
|
|
|
|
|
+ player: "",
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
/**
|
|
/**
|
|
@@ -293,8 +301,12 @@
|
|
|
this.$refs.toast.warn('请输入标题内容')
|
|
this.$refs.toast.warn('请输入标题内容')
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
|
|
|
+ if (this.$isEmpty(this.applyInfo.player)) {
|
|
|
|
|
+ this.$refs.toast.warn('请输入参赛者名称')
|
|
|
|
|
+ return
|
|
|
|
|
+ }
|
|
|
if (this.$isEmpty(this.applyInfo.content)) {
|
|
if (this.$isEmpty(this.applyInfo.content)) {
|
|
|
- this.$refs.toast.warn('请上传作品封面')
|
|
|
|
|
|
|
+ this.$refs.toast.warn('请输入详细介绍')
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
|
if (this.$isEmpty(this.applyInfo.phone)) {
|
|
if (this.$isEmpty(this.applyInfo.phone)) {
|