|
@@ -42,13 +42,14 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6" v-show="advanced">
|
|
|
- <a-form-item label="记账数量" name="accountNumber">
|
|
|
- <div class="account-number">
|
|
|
- <a-input-number v-model:value="searchFormState.accountNumberMin" placeholder="请输入"/>
|
|
|
- 至
|
|
|
- <a-input-number v-model:value="searchFormState.accountNumberMax" placeholder="请输入"/>
|
|
|
- </div>
|
|
|
- </a-form-item>
|
|
|
+ <div class="account-number">
|
|
|
+ <a-form-item label="记账数量" name="accountNumberMin">
|
|
|
+ <a-input-number v-model:value="searchFormState.accountNumberMin" placeholder="请输入" style="width: 100%;"/>
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item label="至" name="accountNumberMax">
|
|
|
+ <a-input-number v-model:value="searchFormState.accountNumberMax" placeholder="请输入" style="width: 100%;"/>
|
|
|
+ </a-form-item>
|
|
|
+ </div>
|
|
|
</a-col>
|
|
|
<a-col :span="6" v-show="advanced">
|
|
|
<a-form-item label="法定计量单位" name="measurementUnit">
|
|
@@ -145,13 +146,13 @@
|
|
|
import tool from '@/utils/tool'
|
|
|
import { cloneDeep } from 'lodash-es'
|
|
|
import Detail from './detail.vue'
|
|
|
- import qyFrontlineWarehouseApi from '@/api/biz/qyFrontlineWarehouseApi'
|
|
|
+ import qyFrontlineWarehouseApi from '@/api/yqyc/qyFrontlineWarehouseApi'
|
|
|
import downloadUtil from "@/utils/downloadUtil";
|
|
|
const { proxy } = getCurrentInstance()
|
|
|
const searchFormState = ref({
|
|
|
- warehouseType: '1'
|
|
|
+ warehouseType: '0'
|
|
|
})
|
|
|
- const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
|
|
|
+ const searchFormStateReal = ref(searchFormState.value) // 点击搜索后备份的查询参数
|
|
|
const searchFormRef = ref()
|
|
|
const tableRef = ref()
|
|
|
const filterParam = ref({})
|
|
@@ -328,10 +329,13 @@
|
|
|
<style lang="less" scoped>
|
|
|
.account-number {
|
|
|
display: flex;
|
|
|
- align-items: center;
|
|
|
- gap: 6px;
|
|
|
- >* {
|
|
|
- flex: 1;
|
|
|
+ :deep(.ant-form-item:last-child) {
|
|
|
+ .ant-form-item-label {
|
|
|
+ margin: 0 6px;
|
|
|
+ >label:after {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|