Commit 4c9d14f5 authored by Mac's avatar Mac

1

parent 3dfb2cec
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
<div>{{item.WareHouseName}}</div> <div>{{item.WareHouseName}}</div>
<div>{{item.SupplierName}}</div> <div>{{item.SupplierName}}</div>
</td> </td>
<td>{{delist.SuppliesNum}}</td> <td @click="getCheckDes(delist)" style="text-decoration: underline;cursor: pointer;">{{delist.SuppliesNum}}</td>
<td style="width:300px">{{delist.SuppliesName}}</td> <td style="width:300px">{{delist.SuppliesName}}</td>
<td width="180"> <td width="180">
<span v-for="(x,y) in delist.GoodsSpecificationList" :key="y">{{x}}{{y+1==delist.GoodsSpecificationList.length?'':','}}</span> <span v-for="(x,y) in delist.GoodsSpecificationList" :key="y">{{x}}{{y+1==delist.GoodsSpecificationList.length?'':','}}</span>
...@@ -328,12 +328,20 @@ ...@@ -328,12 +328,20 @@
</div> </div>
</el-form> </el-form>
</el-dialog> </el-dialog>
<el-dialog title="物料详情" top="0" :visible.sync="CheckDetailState" width="1150px">
<wlDetails ref="mychild"></wlDetails>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
export default { import wlDetails from "@/components/global/wlDetails.vue";
export default {
name: 'Supplierman', name: 'Supplierman',
components: {
wlDetails
},
data(){ data(){
return{ return{
morequery:false, morequery:false,
...@@ -402,6 +410,8 @@ export default { ...@@ -402,6 +410,8 @@ export default {
}, },
WarehouseList:[], WarehouseList:[],
ISoperation:false, ISoperation:false,
PropertyId:'',
CheckDetailState:false,
} }
}, },
created(){ created(){
...@@ -425,6 +435,13 @@ export default { ...@@ -425,6 +435,13 @@ export default {
"入库单.xls" "入库单.xls"
); );
}, },
getCheckDes(item){
this.PropertyId=item.SuppliesId;
this.CheckDetailState=true;
setTimeout(()=>{
this.$refs.mychild.InitData(this.PropertyId);
},10)
},
Huifu(item){ Huifu(item){
if(item.itemOperation == true){ if(item.itemOperation == true){
this.Error('此仓库在盘点中,无法操作!') this.Error('此仓库在盘点中,无法操作!')
......
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