Commit 4c9d14f5 authored by Mac's avatar Mac

1

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