|
|
@@ -8,8 +8,8 @@
|
|
|
@submit.native.prevent
|
|
|
>
|
|
|
<el-row :gutter="10">
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
<el-col v-bind="styleResponsive ? { md: 6 } : { span: 6 }">
|
|
|
<el-form-item label="关键词">
|
|
|
<el-input
|
|
|
@@ -20,9 +20,9 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<el-col v-bind="styleResponsive ? { md: 6 } : { span: 6 }">
|
|
|
<el-form-item label="编码">
|
|
|
<el-input
|
|
|
@@ -43,9 +43,9 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<el-col v-bind="styleResponsive ? { md: 6 } : { span: 4 }">
|
|
|
<el-form-item>
|
|
|
<el-button
|
|
|
@@ -57,7 +57,7 @@
|
|
|
>
|
|
|
查询
|
|
|
</el-button>
|
|
|
-
|
|
|
+
|
|
|
<el-button
|
|
|
@click="reset"
|
|
|
icon="el-icon-refresh"
|
|
|
@@ -65,14 +65,14 @@
|
|
|
size="medium"
|
|
|
>重置</el-button
|
|
|
>
|
|
|
-
|
|
|
+
|
|
|
<slot></slot>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
</template>
|
|
|
-
|
|
|
+
|
|
|
<script>
|
|
|
export default {
|
|
|
data() {
|
|
|
@@ -80,7 +80,7 @@
|
|
|
const defaultWhere = {
|
|
|
name: '',
|
|
|
code: '',
|
|
|
- modelType: ''
|
|
|
+ modelType: '',
|
|
|
};
|
|
|
return {
|
|
|
defaultWhere,
|
|
|
@@ -105,8 +105,7 @@
|
|
|
this.where = { ...this.defaultWhere };
|
|
|
this.search();
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
-
|