|
@@ -118,10 +118,20 @@
|
|
<view class="name">
|
|
<view class="name">
|
|
<text style="color: rgba(34, 34, 34, 1);">作者简介及目录上传</text>
|
|
<text style="color: rgba(34, 34, 34, 1);">作者简介及目录上传</text>
|
|
</view>
|
|
</view>
|
|
- <view class="uploading" @click="upload1">
|
|
|
|
|
|
+ <view v-if="showd" class="uploading" style="position: relative;">
|
|
|
|
+ <view class="" @click="close">
|
|
|
|
+ <image src="../../static/images/close (2).png" style="position: absolute;top:-20rpx;right: -20rpx;width: 40rpx;height: 40rpx;" mode=""></image>
|
|
|
|
+ </view>
|
|
|
|
+ <image src="../../static/images/pdf (2).png" style="width: 64rpx;height: 64rpx;" mode=""></image>
|
|
|
|
+ <view style="margin-top: 16rpx;font-size: 20rpx;
|
|
|
|
+font-family: PingFangSC, PingFang SC;
|
|
|
|
+font-weight: 400;
|
|
|
|
+color: #222222;">{{name}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view v-else class="uploading" @click="upload1">
|
|
<image src="../../static/images/uploading.png" style="width: 64rpx;height: 64rpx;" mode=""></image>
|
|
<image src="../../static/images/uploading.png" style="width: 64rpx;height: 64rpx;" mode=""></image>
|
|
<view class="up" style="margin-top: 16rpx;">选择文件</view>
|
|
<view class="up" style="margin-top: 16rpx;">选择文件</view>
|
|
- <view class="up">(不超过10M)</view>
|
|
|
|
|
|
+ <view class="up" style="text-align: center;">请上传pdf,不超过10M</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btn" @click="touploading">
|
|
<view class="btn" @click="touploading">
|
|
@@ -193,13 +203,21 @@
|
|
manuscript: '', //稿件状态
|
|
manuscript: '', //稿件状态
|
|
showa: false,
|
|
showa: false,
|
|
showb: false,
|
|
showb: false,
|
|
|
|
+ name:'',
|
|
|
|
+ path1:'',
|
|
|
|
+ path:'',
|
|
|
|
+ showd:false
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ close(){
|
|
|
|
+ this.showd = false
|
|
|
|
+ this.from.biographical_url = ''
|
|
|
|
+ },
|
|
upload1() {
|
|
upload1() {
|
|
let that = this;
|
|
let that = this;
|
|
uni.chooseFile({
|
|
uni.chooseFile({
|
|
- count: 1, //限制选择的文件数量
|
|
|
|
|
|
+ // count: , //限制选择的文件数量
|
|
type: 'all', //非图片和视频的文件,不选默认为all
|
|
type: 'all', //非图片和视频的文件,不选默认为all
|
|
extension: [".pdf", 'pdf'], //此处限制文件类型
|
|
extension: [".pdf", 'pdf'], //此处限制文件类型
|
|
success(res) {
|
|
success(res) {
|
|
@@ -223,7 +241,6 @@
|
|
'user': 'test'
|
|
'user': 'test'
|
|
},
|
|
},
|
|
success: (res) => {
|
|
success: (res) => {
|
|
- console.log('uploadImage success, res is:', res)
|
|
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: '上传成功',
|
|
title: '上传成功',
|
|
@@ -231,8 +248,9 @@
|
|
duration: 1000
|
|
duration: 1000
|
|
})
|
|
})
|
|
var obj = JSON.parse(res.data)
|
|
var obj = JSON.parse(res.data)
|
|
- this.path = obj.data.fullurl
|
|
|
|
- this.flielist.push(obj.data.fullurl)
|
|
|
|
|
|
+ this.from.biographical_url = obj.data.fullurl
|
|
|
|
+ this.showd = true
|
|
|
|
+ // this.flielist.push(obj.data.fullurl)
|
|
},
|
|
},
|
|
fail: (err) => {
|
|
fail: (err) => {
|
|
console.log('uploadImage fail', err);
|
|
console.log('uploadImage fail', err);
|
|
@@ -264,7 +282,12 @@
|
|
this.$u.post('api/books/addContribute', {
|
|
this.$u.post('api/books/addContribute', {
|
|
...this.from
|
|
...this.from
|
|
}).then(res => {
|
|
}).then(res => {
|
|
- console.log(res);
|
|
|
|
|
|
+ if(res.code==1){
|
|
|
|
+ this.$u.toast('提交成功')
|
|
|
|
+ uni.switchTab({
|
|
|
|
+ url:'/pages/index/index'
|
|
|
|
+ })
|
|
|
|
+ }
|
|
})
|
|
})
|
|
},
|
|
},
|
|
toshowb() {
|
|
toshowb() {
|