Commit 0041f961 authored by 黄奎's avatar 黄奎

1

parent 98d499ab
......@@ -321,7 +321,6 @@
return (value / (1024 * 1024)).toFixed(2) + 'G'
}
}
}
},
methods: {
......
......@@ -100,7 +100,7 @@
</div>
</td>
<td>{{item.shareStatus=='1'?$t('pub.normalSel'):$t('pub.cancelBtn')}}</td>
<td>{{item.shareType| shareTypeFormat(item.shareType)}}</td>
<td>{{shareTypeFormat(item.shareType)}}</td>
<td>{{item.createTime}}</td>
<td>
<el-button-group>
......@@ -424,18 +424,7 @@
}
}
},
shareTypeFormat(value) {
console.log("shareTypes", this.shareTypes);
if (value == 1) {
return this.shareTypes.t1
}
if (value == 2) {
return this.shareTypes.t2
}
if (value == 3) {
return this.shareTypes.t3
}
},
reciveFormat(value) {
if (value.shareType == 1 || value.shareType == 2) {
if (value.recive != null) {
......@@ -447,7 +436,17 @@
}
},
methods: {
shareTypeFormat(value) {
if (value == 1) {
return this.shareTypes.t1
}
if (value == 2) {
return this.shareTypes.t2
}
if (value == 3) {
return this.shareTypes.t3
}
},
// 图片验证码
createCode() {
//先清空验证码的输入
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment