Browse Source

库存查询

master
liupeng 6 months ago
parent
commit
a82071a32d
  1. 13
      src/views/inventory/query.vue

13
src/views/inventory/query.vue

@ -127,19 +127,19 @@ function serverSideDatasource(params: IServerSideGetRowsParams) {
</script> </script>
<template> <template>
<div class="dashboard flex-column-container"> <div class="common-layout dashboard flex-column-container">
<div class="tools flex-item-fixed"> <div class="flex-item-fixed toolbar">
<ElButton :icon="Search" :loading="state.loading" @click="reload">查询</ElButton> <ElButton :icon="Search" :loading="state.loading" @click="reload" type="warning" plain>查询</ElButton>
</div> </div>
<DataForm <DataForm
class="query-form flex-item-fixed" class="query-form flex-item-fixed"
style="width: 500px;"
:data="state.queryData" :data="state.queryData"
:formFields="data.formFields" :formFields="data.formFields"
:columnCount="2" :columnCount="2"
layout="bothFixed" layout="bothFixed"
labelWidth="85px" labelWidth="85px"
inputWidth="200px" inputWidth="200px"
:inline="true"
/> />
<AgGridVue <AgGridVue
ref="gridRef" ref="gridRef"
@ -154,11 +154,6 @@ function serverSideDatasource(params: IServerSideGetRowsParams) {
.dashboard { .dashboard {
height: 100%; height: 100%;
} }
.tools {
margin-bottom: 8px;
}
.query-form { .query-form {
height: unset; height: unset;
} }

Loading…
Cancel
Save