diff --git a/subpkg/withdrawDeposit/company.vue b/subpkg/withdrawDeposit/company.vue
index 4eb8863..d906cf3 100644
--- a/subpkg/withdrawDeposit/company.vue
+++ b/subpkg/withdrawDeposit/company.vue
@@ -15,28 +15,34 @@
-
- 选择附件
+ 请选择PDF类型的发票
- {{item.name}}
+
+
+ {{item.name}}
+
重新上传
- 删除
+ 删除
提示
上一周期截至时间是{{payMoney.end_cycle}};
- 可提现金额是每一个提现周期内的收益,当前是上一个周期的可提现金额,并不是当前公司收益金额,提现后将会由后台审核,审核通过后会直接往您所上传的银行卡汇款,请耐心等待;
+ 可提现金额是上一个周期的收益金额,并不是当前公司收益金额,提现后将会由后台审核,审核通过后会直接往您所上传的银行卡汇款,请耐心等待;
+ 提现时请注意,需要先上传PDF类型的电子发票后方可提现
+
@@ -65,7 +71,9 @@
payTimer: null,
timeCount: 5,
fileOption: {},
- files: new Map()
+ files: new Map(),
+ modelShow: false,
+ del_name: ''
}
},
// 点击提现记录
@@ -97,7 +105,6 @@
*/
onuploadEnd(item) {
console.log(`${item.name}已上传结束,上传状态=${item.type}`);
- console.log(item);
// 更新当前窗口状态变化的文件
this.files.set(item.name, item);
// 强制更新视图
@@ -140,6 +147,11 @@
// name=指定文件名,不传name默认移除所有文件
this.$refs.lsjUpload.clear(name);
},
+ clearShow(name) {
+ console.log(name);
+ this.del_name = name;
+ this.modelShow = true;
+ },
copyPhone(str = "") {
uni.setClipboardData({
data: str + "",
@@ -175,7 +187,9 @@
})
file = JSON.parse(file);
this.payMoney.invoice = file.data.uri;
- if(this.payMoney.invoice.slice(-4)!='.pdf') return false;
+ if (this.payMoney.invoice.slice(-4) != '.pdf') {
+ return false;
+ }
return true;
} catch (e) {
return false
@@ -183,7 +197,7 @@
},
// 提现
pay() {
- if (!this.isFile()) return Toast('请先上传PDF类型附件!')
+ if (!this.isFile()) return Toast('请先上传PDF类型的发票!')
if (+this.payMoney.money <= 0) return Toast('提现金额不能小于0!')
if (!this.payTimer) {
this.goApply();
@@ -377,7 +391,7 @@
margin: 0 auto;
width: 694rpx;
height: 200rpx;
- border: 2px solid #ccc;
+ border: 2px dashed #ccc;
border-radius: 14rpx;
color: #999;
font-size: 32rpx;