|
@@ -3,15 +3,14 @@ import { queryReckonPriceLog } from '@/services/go/ermcp/qhj';
|
|
|
import { QhjReckonPriceLog, QueryReckonPriceLogReq } from '@/services/go/ermcp/qhj/interface';
|
|
import { QhjReckonPriceLog, QueryReckonPriceLogReq } from '@/services/go/ermcp/qhj/interface';
|
|
|
import { ref } from 'vue';
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
-export function queryTableList() {
|
|
|
|
|
|
|
+export function queryTableList(goodsid: number, tradedate: string) {
|
|
|
// 加载状态
|
|
// 加载状态
|
|
|
const loading = ref<boolean>(false);
|
|
const loading = ref<boolean>(false);
|
|
|
// 表格数据
|
|
// 表格数据
|
|
|
const tableList = ref<QhjReckonPriceLog[]>([]);
|
|
const tableList = ref<QhjReckonPriceLog[]>([]);
|
|
|
function queryTable() {
|
|
function queryTable() {
|
|
|
const param: QueryReckonPriceLogReq = {
|
|
const param: QueryReckonPriceLogReq = {
|
|
|
- goodsid: 1,
|
|
|
|
|
- tradedate: '20210609'
|
|
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
queryResultLoadingAndInfo(queryReckonPriceLog, loading, param)
|
|
queryResultLoadingAndInfo(queryReckonPriceLog, loading, param)
|
|
|
.then(res => {
|
|
.then(res => {
|