Commit 894f7bdc authored by renjintao's avatar renjintao

orderlist

parent 31a0ab97
......@@ -12,8 +12,8 @@
:lazy="true"
:conditions="easySearch"
:action="action"
:set="false"
:gutter="30"
:set="set"
:gutter="80"
>
<template slot="easySearch">
<Form ref="formInline" :model="easySearch" inline>
......@@ -184,6 +184,7 @@ export default {
}
}
],
set:false,
typeInfo: "card",
iconInfo: "md-apps",
titleInfo: "卡片模式",
......@@ -221,13 +222,15 @@ export default {
changeShwo() {
//显示模式切换
if (this.typeInfo == "card") {
this.set=true;
this.typeInfo = "table";
this.iconInfo = "md-list";
this.titleInfo = "列表模式";
} else {
this.set=false;
this.typeInfo = "card";
this.iconInfo = "md-apps";
this.titleInfo = "列表模式";
this.titleInfo = "卡片模式";
}
},
compareTime(dateStart) {
......
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