|
@@ -214,14 +214,14 @@ onMounted(() => {
|
|
|
<a-select-option v-for="(v, i) in statusList.arr" :key="i" :value="v.status">{{ v.name }}</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
- <a-form-item label="" name="searchKey">
|
|
|
+ <a-form-item-rest>
|
|
|
<a-input-group compact>
|
|
|
<a-select v-model:value="formState.type" style="width: 130px">
|
|
|
<a-select-option v-for="(v, i) in searchKeyType.arr" :key="i" :value="v.type">{{ v.name }}</a-select-option>
|
|
|
</a-select>
|
|
|
<a-input style="width: 200px" v-model:value="formState.searchKey" placeholder="请输入要查询的数据" allowClear />
|
|
|
</a-input-group>
|
|
|
- </a-form-item>
|
|
|
+ </a-form-item-rest>
|
|
|
<a-form-item label="日期" name="time">
|
|
|
<a-range-picker v-model:value="time.arr" valueFormat="YYYY/MM/DD" />
|
|
|
</a-form-item>
|
|
@@ -230,7 +230,7 @@ onMounted(() => {
|
|
|
<!-- <a-button class="ml-20px" type="primary" ghost html-type="submit">导 出</a-button> -->
|
|
|
</a-form-item>
|
|
|
</a-form>
|
|
|
- <a-table :columns="columns" rowKey="id" :data-source="data.arr" :pagination="pagination" bordered :scroll="true"
|
|
|
+ <a-table :columns="columns" rowKey="id" :data-source="data.arr" :pagination="pagination" bordered
|
|
|
@change="handleTableChange">
|
|
|
<template #bodyCell="{ column, text, record }">
|
|
|
<template v-if="column.dataIndex === 'outOrderSn'">
|
|
@@ -363,7 +363,10 @@ onMounted(() => {
|
|
|
.ant-form-inline :deep(.ant-form-item) {
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
-
|
|
|
+:deep(.ant-input-group){
|
|
|
+ width: inherit;
|
|
|
+ margin-right: 16px
|
|
|
+}
|
|
|
.modal {
|
|
|
@apply mt-20px;
|
|
|
|