Commit eeb13e6e authored by 黄媛媛's avatar 黄媛媛

1

parent de7b5d5e
......@@ -75,7 +75,8 @@
</el-select>
</div>
<div style="margin-top:10px" v-for="(i,j) in dataList" :key="j">
<div v-if="dataList.length==0" style="width:100%;text-align: center;margin:30px 0">暂无打印标签</div>
<div style="margin-top:10px" v-for="(i,j) in dataList" :key="j" v-if="dataList.length>0" v-loading="fullscreenLoading">
<div style="margin:20px 0;font-size:16px;color:rgb(64, 158, 255)">
<span > 商品名称:{{i.GoodsName}}</span>
</div>
......@@ -182,6 +183,7 @@ export default {
data() {
return {
loading:false,
fullscreenLoading:false,
Detaildata:{},
msg:{
ProcurementId:0,
......@@ -234,7 +236,9 @@ export default {
},
getList(){//获取采购单 入库商品标签
this.fullscreenLoading=true
this.assetsApipost("/api/property/GetProcurementStockInLableList", this.msg, res => {
this.fullscreenLoading=false
if (res.data.resultCode == 1) {
let data =res.data.data
data.forEach(x=>{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment