Compare commits
No commits in common. "fa7e160ab05a83b50e6ad32aabb3354121e5df2d" and "2dd107411d249248c2a6b6e214287a123b156391" have entirely different histories.
fa7e160ab0
...
2dd107411d
|
@ -1,14 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<el-card class="layout-query">
|
<el-card class="layout-query">
|
||||||
<el-form ref="queryRef" :inline="true" :model="state.queryForm" @keyup.enter="getDataList()">
|
<el-form ref="queryRef" :inline="true" :model="state.queryForm" @keyup.enter="getDataList()">
|
||||||
|
|
||||||
<el-form-item prop="id">
|
|
||||||
<el-input v-model="state.queryForm.id" placeholder="序号"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item prop="">
|
|
||||||
<el-input v-model="state.queryForm.totalPrice" placeholder="订单总价"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button icon="Search" type="primary" @click="getDataList()">查询</el-button>
|
<el-button icon="Search" type="primary" @click="getDataList()">查询</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -67,8 +59,6 @@
|
||||||
dataListUrl: '/maku/t_purchase/page',
|
dataListUrl: '/maku/t_purchase/page',
|
||||||
deleteUrl: '/maku/t_purchase',
|
deleteUrl: '/maku/t_purchase',
|
||||||
queryForm: {
|
queryForm: {
|
||||||
id: '',
|
|
||||||
totalPrice: ''
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<el-card class="layout-query">
|
<el-card class="layout-query">
|
||||||
<el-form ref="queryRef" :inline="true" :model="state.queryForm" @keyup.enter="getDataList()">
|
<el-form ref="queryRef" :inline="true" :model="state.queryForm" @keyup.enter="getDataList()">
|
||||||
|
|
||||||
<el-form-item prop="userId">
|
|
||||||
<el-input v-model="state.queryForm.userId" placeholder="用户序号"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item prop="bookId">
|
|
||||||
<el-input v-model="state.queryForm.bookId" placeholder="书本序号"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button icon="Search" type="primary" @click="getDataList()">查询</el-button>
|
<el-button icon="Search" type="primary" @click="getDataList()">查询</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -65,8 +58,6 @@
|
||||||
dataListUrl: '/maku/t_shopping_trolley/page',
|
dataListUrl: '/maku/t_shopping_trolley/page',
|
||||||
deleteUrl: '/maku/t_shopping_trolley',
|
deleteUrl: '/maku/t_shopping_trolley',
|
||||||
queryForm: {
|
queryForm: {
|
||||||
bookId: '',
|
|
||||||
userId: ''
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive, ref } from 'vue'
|
import { reactive, ref } from 'vue'
|
||||||
import { useI18n } from 'vue-i18n'
|
import { useI18n } from 'vue-i18n'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user