mushencc 3 лет назад
Родитель
Сommit
6c182d8acc

+ 2 - 1
src/views/BidSystem/DeepeningOrder/list.vue

@@ -66,7 +66,7 @@
           >
           <a
             style="margin: 0 5px"
-            :disabled="row.deep_status != 1"
+            :disabled="row.deep_status == 2"
             @click="handleSet(row, index, 2)"
             >编辑</a
           >
@@ -387,6 +387,7 @@ export default {
     getData(row) {
       this.loading = true;
       this.axios("/api/order_area_deep_list", { params: row }).then((res) => {
+        console.log(res.data)
         this.loading = false;
         this.tableData = res.data.data;
         this.total = res.data.total;

+ 1 - 1
src/views/PurchasingManage/InstockOrder/edit.vue

@@ -1,6 +1,6 @@
 <template>
   <div>
-    <Toptitle :title="$route.query.type==1?'新增入库单':$route.query.type==2?'查看入库单':'编辑入库单'">
+    <Toptitle :title="$route.query.type==1?'新增入库单':$route.query.type==2?'入库单详情':'编辑入库单'">
       <slot name="titleButton">
         <Button @click="handleReference(5,1)"
                 type="primary"

+ 1 - 1
src/views/PurchasingManage/OutstockOrder/edit.vue

@@ -1,6 +1,6 @@
 <template>
   <div>
-    <Toptitle :title="$route.query.type == 1 ? '新增出库单' : '编辑出库单'">
+    <Toptitle :title="$route.query.type == 1 ? '新增出库单' :$route.query.type == 2 ?'出库单详情':'编辑出库单'">
       <slot name="titleButton">
         <Button
           @click="handleReference(8, 1)"