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

1

parent 98d499ab
...@@ -321,7 +321,6 @@ ...@@ -321,7 +321,6 @@
return (value / (1024 * 1024)).toFixed(2) + 'G' return (value / (1024 * 1024)).toFixed(2) + 'G'
} }
} }
} }
}, },
methods: { methods: {
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
</div> </div>
</td> </td>
<td>{{item.shareStatus=='1'?$t('pub.normalSel'):$t('pub.cancelBtn')}}</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>{{item.createTime}}</td>
<td> <td>
<el-button-group> <el-button-group>
...@@ -424,18 +424,7 @@ ...@@ -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) { reciveFormat(value) {
if (value.shareType == 1 || value.shareType == 2) { if (value.shareType == 1 || value.shareType == 2) {
if (value.recive != null) { if (value.recive != null) {
...@@ -447,7 +436,17 @@ ...@@ -447,7 +436,17 @@
} }
}, },
methods: { 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() { 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