From 7fb0a8f0ab16c149484bf043754cd10cfa94de2f Mon Sep 17 00:00:00 2001
From: wangyi <2946747746@qq.com>
Date: 星期一, 19 一月 2026 14:48:05 +0800
Subject: [PATCH] 增加了业务员,保管员和验收员的对应的显示

---
 src/views/scMould/warehouse/Sc_MouldProdMoveBillList.vue |   27 +++++++++++++++------------
 1 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/src/views/scMould/warehouse/Sc_MouldProdMoveBillList.vue b/src/views/scMould/warehouse/Sc_MouldProdMoveBillList.vue
index 1c2ea4d..bcbe0a1 100644
--- a/src/views/scMould/warehouse/Sc_MouldProdMoveBillList.vue
+++ b/src/views/scMould/warehouse/Sc_MouldProdMoveBillList.vue
@@ -129,7 +129,7 @@
       </el-col>
       <el-col :span="1.5">
         <el-button type="primary" icon="el-icon-edit" size="mini" :disabled="single"
-          @click="handleEdit(row = rowForm, OperationType = 3)">缂栬緫</el-button>
+          @click="handleEdit(row = rowForm, OperationType = 2)">缂栬緫</el-button>
       </el-col>
       <el-col :span="1.5">
         <el-button type="primary" icon="el-icon-document-copy" size="mini" :disabled="single"
@@ -171,7 +171,7 @@
               <el-checkbox v-model="checked" v-if="item.type == 'checkbox'"></el-checkbox>
               <div :style="item.style">
                 <span v-if="column.property.includes('鏃ユ湡')">{{ parseTime(row[column.property], '{y}-{m}-{d}') }}</span>
-                <el-button type="text" @click="handleEdit(row, OperationType = 3)"
+                <el-button type="text" @click="handleEdit(row, OperationType = 2)"
                   v-else-if="column.property == '鍗曟嵁鍙�'">{{
                     row.鍗曟嵁鍙�
                   }}</el-button>
@@ -256,7 +256,7 @@
       HStatusList: [{name:'鍏ㄩ儴',value:'-1'},{name:'鏈鏍�',value:'0'},{name:'宸插鏍�',value:'1'},{name:'宸插叧闂�',value:'2'}],
       addBtnShow: false,
       dialogTitle: '',
-      OperationType: null,//淇濆瓨绫诲瀷锛堟柊澧�1淇敼3锛�
+      OperationType: null,//淇濆瓨绫诲瀷锛堟柊澧�1淇敼2锛�
       HInterID: null,
       baseURL: process.env.VUE_APP_BASE_API,
       lastSelectedRowIndex: null, // 鐢ㄤ簬璁板綍涓婃鐐瑰嚮鐨勮绱㈠紩
@@ -359,6 +359,7 @@
       const end = new Date();
       const start = new Date();
       start.setTime(start.getTime() - 3600 * 1000 * 24 * this.queryParams.HInitTimeCycle);
+      end.setTime(end.getTime() - 3600 * 1000 * 24);
       const yyyyS = start.getFullYear();
       const mmS = String(start.getMonth() + 1).padStart(2, '0'); // 鏈堜唤鏄粠0寮�濮嬬殑
       const ddS = String(start.getDate()).padStart(2, '0');
@@ -383,7 +384,7 @@
         this.pageSize = 50
       }
       // 閿�鍞嚭搴撳崟鍒楄〃
-      axios.get(this.baseURL + '/Sc_MouldProdMoveBillController/page', {
+      axios.get(this.$baseUrl + '/Sc_MouldProdMoveBillController/page', {
         params: {
           "sWhere": this.sWhere,
           "user": sessionStorage["HUserName"],
@@ -427,6 +428,8 @@
           option.data = data1.data
           this.dataList = option
           this.DisPlay_HideColumn(this.HModName, sessionStorage["HUserName"], option, this.dataList);
+        }else{
+          this.$modal.msgError(response.data.Message);
         }
       }).catch(error => {
         this.$modal.msgError("鎺ュ彛璇锋眰澶辫触!");
@@ -434,7 +437,7 @@
     },
     DisPlay_HideColumn(HModName, user, option, dataOption) {
       this.totalNameList = []
-      axios.get(this.baseURL + '/Xt_grdAlignment_WMES/grdAlignmentWMESList', {
+      axios.get(this.$baseUrl + '/Xt_grdAlignment_WMES/grdAlignmentWMESList', {
         params: {
           "HModName": HModName,
           "user": user,
@@ -584,7 +587,7 @@
     },
     //鍙屽嚮琛�
     handleDblclick(row, column, cell, event) {
-      this.OperationType = 3
+      this.OperationType = 2
       this.handleEdit(row)
     },
     // 澶氶�夋閫変腑鏁版嵁
@@ -770,14 +773,14 @@
     /** 鍒犻櫎鎸夐挳鎿嶄綔 */
     handleDelete() {
       this.$modal.confirm('纭瑕佸垹闄ゅ悧锛屽垹闄ゅ悗涓嶈兘鎭㈠').then(() => {
-        axios.get(this.baseURL + "/Sc_MouldProdMoveBill/DeltetMouldProdMoveBill", {
-          params: { 'HInterID': this.rowForm.hmainid.toString(), 'user': sessionStorage["HUserName"] }
+        axios.get(this.$baseUrl + "/Sc_MouldProdMoveBillController/GetSc_MouldProdMoveBill_Delete_Json", {
+          params: { 'HInterID': this.rowForm.hmainid.toString(), 'HMaker': sessionStorage["HUserName"] }
         }).then(response => {
           if (response.data.count == 1) {
             this.getList()
             this.$modal.msgSuccess("鍒犻櫎鎴愬姛")
           } else {
-            this.$modal.msgError("閿欒:" + result.code + result.Message);
+            this.$modal.msgError("閿欒:" + response.data.code + response.data.Message);
           }
         }).catch(error => {
           this.$modal.msgError("鎺ュ彛璇锋眰澶辫触!");
@@ -788,7 +791,7 @@
     set_CheckBill(num, form) {
       var InterID = form.hmainid || form.HInterID
       //閫昏緫瀹℃牳鏂规硶
-      axios.get(this.baseURL + "/Sc_MouldProdMoveBill/AuditMouldProdMoveBill", {
+      axios.get(this.$baseUrl + "/Sc_MouldProdMoveBill/AuditMouldProdMoveBill", {
         params: { "HInterID": InterID, "flag": num, "user": sessionStorage["HUserName"] }
       }).then(response => {
         let result = response.data
@@ -818,7 +821,7 @@
       } else if (this.rowForm.鐘舵�� != "宸插鏍�" && !this.defaintOperationByCompanyName()) {
         this.$modal.msgError("鎵撳嵃澶辫触!鍘熷洜锛氬崟鎹姸鎬佷笉涓�'宸插鏍�'鐘舵��!!");
       } else {
-        axios.get(this.baseURL + "/Kf_SellOutBill/CheckSellOutBill_IsExist", {
+        axios.get(this.$baseUrl + "/Kf_SellOutBill/CheckSellOutBill_IsExist", {
           params: { "HInterID": this.rowForm.hmainid }
         }).then(response => {
           var result = response.data
@@ -841,7 +844,7 @@
     //#region 鑾峰彇鍏徃鍚嶏紝鏍规嵁鍏徃杩涜瀹氬埗鍖栧紑鍙�
     defaintOperationByCompanyName() {
       var result = false;
-      axios.get(this.baseURL + '/Xt_getInfo/getCompanyName').then(response => {
+      axios.get(this.$baseUrl + '/Xt_getInfo/getCompanyName').then(response => {
         var data1 = response.data
         if (data1.count == 1) {
           if (data1.data == "姘村姟") {

--
Gitblit v1.9.1