bug修改

master
mabo 2021-06-30 09:45:36 +08:00
parent 72ed363ac3
commit 950b8a097c
3 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@
<td>{{param.paramName}}</td><td>{{param.paramValue}}</td> <td>{{param.paramName}}</td><td>{{param.paramValue}}</td>
</tr> </tr>
</table> </table>
<!-- <div v-else></div> --> <div v-else></div>
</TabPane> </TabPane>
</Tabs> </Tabs>
</div> </div>

View File

@ -112,7 +112,7 @@ export default {
handler: function (v) { handler: function (v) {
this.type = v; this.type = v;
} }
}, }
} }
}; };
</script> </script>

View File

@ -200,9 +200,9 @@ export default {
width: 100, width: 100,
render: (h, params) => { render: (h, params) => {
if (params.row.marketEnable == "DOWN") { if (params.row.marketEnable == "DOWN") {
return h("Tag", {props: {color: "green"},},"上架"); return h("Tag", {props: {color: "volcano"},},"下架");
} else if (params.row.marketEnable == "UPPER") { } else if (params.row.marketEnable == "UPPER") {
return h("Tag", {props: {color: "volcano",},},"下架"); return h("Tag", {props: {color: "green",},},"上架");
} }
}, },
}, },