1
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -41,7 +41,7 @@ | ... | @@ -41,7 +41,7 @@ |
41 | <el-table-column label="跳转路径" min-width="200px"> | 41 | <el-table-column label="跳转路径" min-width="200px"> |
42 | <template slot-scope="scope"> | 42 | <template slot-scope="scope"> |
43 | <div v-if="scope.row.linkType == 'minipro'">{{scope.row.miniproAppId}}</div> | 43 | <div v-if="scope.row.linkType == 'minipro'">{{scope.row.miniproAppId}}</div> |
44 | <div>{{scope.row.link}}</div> | 44 | <div v-if="scope.row.linkType != 'none'">{{scope.row.link}}</div> |
45 | </template> | 45 | </template> |
46 | </el-table-column> | 46 | </el-table-column> |
47 | 47 | ||
... | @@ -327,7 +327,7 @@ export default { | ... | @@ -327,7 +327,7 @@ export default { |
327 | link: "", | 327 | link: "", |
328 | linkType: "web", | 328 | linkType: "web", |
329 | classify: "", | 329 | classify: "", |
330 | miniproAppId : "" | 330 | miniproAppId: "" |
331 | }; | 331 | }; |
332 | try { | 332 | try { |
333 | this.$refs["editForm"].resetFields(); | 333 | this.$refs["editForm"].resetFields(); | ... | ... |
-
Please register or sign in to post a comment