5740e8b7 by joe

1

1 parent 8a796e68
...@@ -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();
......