样式修改
This commit is contained in:
@@ -420,36 +420,36 @@ uni-button{
|
|||||||
}
|
}
|
||||||
.pop-wraper {
|
.pop-wraper {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 10%;
|
top: 50%;
|
||||||
left: 10%;
|
left: 10%;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
height: 80%;
|
|
||||||
padding: 1% 2%;
|
padding: 1% 2%;
|
||||||
background: center / 100% 100% url(./static/images/pop_bg.png) no-repeat;
|
background: center / 100% 100% url(./static/images/pop_bg.png) no-repeat;
|
||||||
z-index: 102;
|
z-index: 102;
|
||||||
transition: all .4s;
|
transition: all .5s;
|
||||||
}
|
|
||||||
.pop-wraper_1 {
|
|
||||||
bottom: 30%;
|
|
||||||
height: 40%;
|
|
||||||
}
|
}
|
||||||
.kwcode_wraper {
|
.kwcode_wraper {
|
||||||
height: calc(100% - 85px)
|
height: calc(100% - 85px);
|
||||||
|
margin: 60px auto;
|
||||||
}
|
}
|
||||||
.pop-title {
|
.pop-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: 'YouSheBiaoTiHei';
|
font-family: 'YouSheBiaoTiHei';
|
||||||
line-height: 35px;
|
line-height: 35px;
|
||||||
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
.pop-grid-wraper {
|
.pop-grid-wraper {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
height: calc(100% - 125px);
|
height: calc(80vh - 105px);
|
||||||
margin: 20px auto;
|
margin: 0 auto 20px auto;
|
||||||
|
padding: 0 6px;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
.zd-pop-th-wraper {
|
.zd-pop-th-wraper {
|
||||||
background-color: #031328
|
background-color: #031328;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
.zd-pop-td {
|
.zd-pop-td {
|
||||||
background-color: RGBA(23, 123, 172, 0.4);
|
background-color: RGBA(23, 123, 172, 0.4);
|
||||||
|
|||||||
@@ -151,10 +151,10 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
|
|||||||
margin-bottom: 20px
|
margin-bottom: 20px
|
||||||
}
|
}
|
||||||
.popshow {
|
.popshow {
|
||||||
transform: translateY(0);
|
transform: translateY(-50%);
|
||||||
}
|
}
|
||||||
.pophide {
|
.pophide {
|
||||||
transform: translateY(120%);
|
transform: translateY(100vh);
|
||||||
}
|
}
|
||||||
.scale8 {
|
.scale8 {
|
||||||
transform: scale(0.8)
|
transform: scale(0.8)
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
cur: '',
|
cur: '',
|
||||||
focusState: true
|
focusState: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
model: {
|
model: {
|
||||||
|
|||||||
@@ -92,7 +92,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<pagination v-show="dataList1.length > 0" :total="totalCount1" :page-size="queryParams1.pageSize" :current-page="currentPage1" @page-change="handlePageChange1" />
|
<pagination v-show="dataList1.length > 0" :total="totalCount1" :page-size="queryParams1.pageSize" :current-page="currentPage1" @page-change="handlePageChange1" />
|
||||||
</view>
|
</view>
|
||||||
<view class="pop-wraper" :class="{'popshow': show, 'pophide': !show, 'pop-wraper_1': type === '2'}">
|
<view class="pop-wraper" :class="{'popshow': show, 'pophide': !show}">
|
||||||
<view class="allwidth pop-title">{{type === '1' ?'库位修改' : '库位确认'}}</view>
|
<view class="allwidth pop-title">{{type === '1' ?'库位修改' : '库位确认'}}</view>
|
||||||
<view v-if="type === '1'" class="pop-grid-wraper">
|
<view v-if="type === '1'" class="pop-grid-wraper">
|
||||||
<view class="zd-row zd-sec-th-wraper zd-pop-th-wraper">
|
<view class="zd-row zd-sec-th-wraper zd-pop-th-wraper">
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd-row jcenter">
|
<view class="mgb20 zd-row jcenter">
|
||||||
<view class="zd-col-4">
|
<view class="zd-col-4">
|
||||||
<button class="confirm-button confirm-button_cancle" @tap="show = false">取消</button>
|
<button class="confirm-button confirm-button_cancle" @tap="show = false">取消</button>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -57,143 +57,4 @@ export const queryInventoryInfo = (arr) => request({
|
|||||||
export const easOutInBillDetailUpdate = (arr) => request({
|
export const easOutInBillDetailUpdate = (arr) => request({
|
||||||
url:'/api/easOutInBillDetail/update',
|
url:'/api/easOutInBillDetail/update',
|
||||||
data: arr
|
data: arr
|
||||||
})
|
})
|
||||||
|
|
||||||
// export const pdaUpdate = () => {
|
|
||||||
// let res = {
|
|
||||||
// versionName: '1.0.0',
|
|
||||||
// androidUrl: 'https://mp-e979e0eb-882b-42b3-a4a1-923ad08ea194.cdn.bspapp.com/cloudstorage/f72ec59f-7b25-487d-a034-fead1b6654c6.apk'
|
|
||||||
// }
|
|
||||||
// return res
|
|
||||||
// }
|
|
||||||
// export const getBillsCount = (area) => {
|
|
||||||
// let res = {
|
|
||||||
// "code": 1,
|
|
||||||
// "desc": "操作成功",
|
|
||||||
// "result": [
|
|
||||||
// {
|
|
||||||
// "djlx": "CGRKD",
|
|
||||||
// "ywlx": "IN",
|
|
||||||
// "name": "采购入库",
|
|
||||||
// "counts": "1"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "CGTHD",
|
|
||||||
// "ywlx": "OUT",
|
|
||||||
// "name": "采购退货出库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "DBCKD",
|
|
||||||
// "ywlx": "OUT",
|
|
||||||
// "name": "调拨出库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "DBRKD",
|
|
||||||
// "ywlx": "IN",
|
|
||||||
// "name": "调拨入库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "LLCKD",
|
|
||||||
// "ywlx": "OUT",
|
|
||||||
// "name": "生产出库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "LLTHD",
|
|
||||||
// "ywlx": "IN",
|
|
||||||
// "name": "生产退料入库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "WWFLD",
|
|
||||||
// "ywlx": "OUT",
|
|
||||||
// "name": "委外出库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "WWRKD",
|
|
||||||
// "ywlx": "IN",
|
|
||||||
// "name": "委外入库",
|
|
||||||
// "counts": "0"
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "djlx": "XSCKD",
|
|
||||||
// "ywlx": "OUT",
|
|
||||||
// "name": "销售出库",
|
|
||||||
// "counts": "0"
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// }
|
|
||||||
// return res
|
|
||||||
// }
|
|
||||||
// export const easOutInBillPage = (size, page, fuzzy, djlx) => {
|
|
||||||
// let res = {
|
|
||||||
// code: '1',
|
|
||||||
// desc: '',
|
|
||||||
// pageNum: '1',
|
|
||||||
// pageSize: '10',
|
|
||||||
// totalElements: '50',
|
|
||||||
// result: [
|
|
||||||
// {id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '6', code: 'IO20218', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '7', code: 'IO20219', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '8', code: 'IO20220', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '9', code: 'IO20221', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '10', code: 'IO20222', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
|
||||||
// }
|
|
||||||
// return res
|
|
||||||
// }
|
|
||||||
// export const easOutInBillDetailPage = (djid, page, size) => {
|
|
||||||
// let res = {}
|
|
||||||
// if (page === '1') {
|
|
||||||
// res = {
|
|
||||||
// code: '1',
|
|
||||||
// desc: '',
|
|
||||||
// pageNum: '2',
|
|
||||||
// pageSize: '5',
|
|
||||||
// totalElements: '50',
|
|
||||||
// result: [
|
|
||||||
// {id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
|
||||||
// }
|
|
||||||
// } else {
|
|
||||||
// res = {
|
|
||||||
// code: '1',
|
|
||||||
// desc: '',
|
|
||||||
// pageNum: '2',
|
|
||||||
// pageSize: '5',
|
|
||||||
// totalElements: '50',
|
|
||||||
// result: [
|
|
||||||
// {id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
|
||||||
// {id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// return res
|
|
||||||
// }
|
|
||||||
// export const queryInventoryInfo = (arr) => {
|
|
||||||
// let res = {
|
|
||||||
// code: '1',
|
|
||||||
// desc: '',
|
|
||||||
// pageNum: '2',
|
|
||||||
// pageSize: '5',
|
|
||||||
// totalElements: '50',
|
|
||||||
// result: [
|
|
||||||
// {id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
|
||||||
// {id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
|
||||||
// {id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
|
||||||
// {id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
|
||||||
// {id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'}]
|
|
||||||
// }
|
|
||||||
// return res
|
|
||||||
// }
|
|
||||||
138
utils/mork2.js
Normal file
138
utils/mork2.js
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
export const pdaUpdate = () => {
|
||||||
|
let res = {
|
||||||
|
versionName: '1.0.0',
|
||||||
|
androidUrl: 'https://mp-e979e0eb-882b-42b3-a4a1-923ad08ea194.cdn.bspapp.com/cloudstorage/f72ec59f-7b25-487d-a034-fead1b6654c6.apk'
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
export const getBillsCount = (area) => {
|
||||||
|
let res = {
|
||||||
|
"code": 1,
|
||||||
|
"desc": "操作成功",
|
||||||
|
"result": [
|
||||||
|
{
|
||||||
|
"djlx": "CGRKD",
|
||||||
|
"ywlx": "IN",
|
||||||
|
"name": "采购入库",
|
||||||
|
"counts": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "CGTHD",
|
||||||
|
"ywlx": "OUT",
|
||||||
|
"name": "采购退货出库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "DBCKD",
|
||||||
|
"ywlx": "OUT",
|
||||||
|
"name": "调拨出库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "DBRKD",
|
||||||
|
"ywlx": "IN",
|
||||||
|
"name": "调拨入库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "LLCKD",
|
||||||
|
"ywlx": "OUT",
|
||||||
|
"name": "生产出库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "LLTHD",
|
||||||
|
"ywlx": "IN",
|
||||||
|
"name": "生产退料入库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "WWFLD",
|
||||||
|
"ywlx": "OUT",
|
||||||
|
"name": "委外出库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "WWRKD",
|
||||||
|
"ywlx": "IN",
|
||||||
|
"name": "委外入库",
|
||||||
|
"counts": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"djlx": "XSCKD",
|
||||||
|
"ywlx": "OUT",
|
||||||
|
"name": "销售出库",
|
||||||
|
"counts": "0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
export const easOutInBillPage = (size, page, fuzzy, djlx) => {
|
||||||
|
let res = {
|
||||||
|
code: 1,
|
||||||
|
desc: '',
|
||||||
|
pageNum: '1',
|
||||||
|
pageSize: '10',
|
||||||
|
totalElements: '50',
|
||||||
|
result: [
|
||||||
|
{id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '6', code: 'IO20218', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '7', code: 'IO20219', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '8', code: 'IO20220', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '9', code: 'IO20221', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '10', code: 'IO20222', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
export const easOutInBillDetailPage = (djid, page, size) => {
|
||||||
|
let res = {}
|
||||||
|
if (page === '1') {
|
||||||
|
res = {
|
||||||
|
code: '1',
|
||||||
|
desc: '',
|
||||||
|
pageNum: '2',
|
||||||
|
pageSize: '5',
|
||||||
|
totalElements: '50',
|
||||||
|
result: [
|
||||||
|
{id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
res = {
|
||||||
|
code: '1',
|
||||||
|
desc: '',
|
||||||
|
pageNum: '2',
|
||||||
|
pageSize: '5',
|
||||||
|
totalElements: '50',
|
||||||
|
result: [
|
||||||
|
{id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'},
|
||||||
|
{id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文'}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
export const queryInventoryInfo = (arr) => {
|
||||||
|
let res = {
|
||||||
|
code: '1',
|
||||||
|
desc: '',
|
||||||
|
pageNum: '2',
|
||||||
|
pageSize: '5',
|
||||||
|
totalElements: '50',
|
||||||
|
result: [
|
||||||
|
{id: '1', code: 'IO20213', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
||||||
|
{id: '2', code: 'IO20214', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
||||||
|
{id: '3', code: 'IO20215', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
||||||
|
{id: '4', code: 'IO20216', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'},
|
||||||
|
{id: '5', code: 'IO20217', djbh: 'SOUT4201', djzt: '未审核', ckmc: '叉车装配线', cksj: '2023-06-16', llr: '陈晓华', cjr: 'EAS_钱丽文', qty: '1000'}]
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user