Browse Source

配送目录管理 保存传id,

liumy 9 months ago
parent
commit
7d10d24322

+ 2 - 0
src/views/page/consumCataManage-sup/catalogdetailsadd.vue

@@ -594,6 +594,7 @@ export default {
         purcPric: null,
         status: "",
         isPub: "0",
+        id:"",
       },
       listLoading: false,
       planForm: {},
@@ -778,6 +779,7 @@ export default {
                 message: "保存成功",
                 type: "success",
               });
+              this.infoData.id = response.data.id
               this.saveLoad = false;
             })
             .catch(() => {

+ 0 - 5
src/views/page/consumCataManage-sup/distributionmanage.vue

@@ -678,7 +678,6 @@ export default {
     },
     // 点击获取医院药品列表
     handleNodeClick(data) {
-      console.log(data, "data");
       this.listLoading = true;
       this.spdId = data.spdId;
       this.listQuery.spdId = this.spdId;
@@ -687,7 +686,6 @@ export default {
           this.list = res.data.records;
           this.total = res.data.total;
           this.listLoading = false;
-          console.log(res, "医院目录");
           this.btnShow = true;
         })
         .catch((err) => {
@@ -702,7 +700,6 @@ export default {
         .then((res) => {
           this.listQuery.spdId = res.data[0].spdId;
           this.data = res.data;
-          console.log(this.data, "dadad");
           this.listLoading = false;
         })
         .catch((err) => {
@@ -793,7 +790,6 @@ export default {
       this.dialogAdd = true;
       selectSplerMcsListIntf(this.listQuery).then((res)=>{
         this.list1 = res.data.records;
-        console.log(this.list1,"23")
       })
       this.getdialog();
     },
@@ -975,7 +971,6 @@ export default {
           this.list = res.data.records;
           this.total = res.data.total;
           this.listLoading = false;
-          console.log(res, "医院目录");
           this.btnShow = true;
         })
         .catch((err) => {

+ 0 - 4
src/views/page/consumCataManage-sup/index.vue

@@ -639,7 +639,6 @@ export default {
       this.listQuery.spdId = this.spdId;
       selectSplerMcsListIntf(this.listQuery)
         .then((res) => {
-          console.log(222);
           this.list = res.data.records;
           this.total = res.data.total;
           this.listLoading = false;
@@ -657,7 +656,6 @@ export default {
       this.listLoading = true;
       selectSplerMcsListIntf(this.listQuery)
         .then((res) => {
-          console.log(333);
           this.list = res.data.records;
           this.total = res.data.total;
           this.listLoading = false;
@@ -880,11 +878,9 @@ export default {
   mounted() {
     this.getData();
     if (this.$route.query.spdId) {
-      console.log(this.$route.query.spdId,"this.$route.query.spdId");
       this.listQuery.spdId = this.$route.query.spdId;
       selectSplerMcsListIntf(this.listQuery)
         .then((res) => {
-          console.log(111);
           this.list = res.data.records;
           this.total = res.data.total;
           this.listLoading = false;

+ 6 - 2
src/views/page/orderManage-sup/purOrderDelivery/purchaseDetails.vue

@@ -193,7 +193,7 @@
       <!-- <el-button type="success" @click="handleSave">保存</el-button> -->
       <el-button type="primary" @click="handleDelivery">出库</el-button>
     </div>
-    <el-dialog title="提取采购单" :visible.sync="dialog" width="70%">
+    <el-dialog class="dialog-tq" title="提取采购单" :visible.sync="dialog" width="70%">
       <template>
         <el-form :model="listQuery" ref="listQuery" :inline="true" label-width="90px">
           <el-form-item size="mini" label="采购单号" prop="purcOrdId" class="long">
@@ -809,4 +809,8 @@ export default {
 };
 </script>
 
-<style lang="scss" scoped></style>
+<style lang="scss" scoped>
+.dialog-tq ::v-deep .el-input__inner {
+  width: 170px;
+}
+</style>