y595705120 3 năm trước cách đây
mục cha
commit
e34c7c990d

+ 1 - 1
src/view/data/visit.vue

@@ -182,7 +182,7 @@
 				delVisitInfo(param).then((res) => {
 					if (res.code == 200) {
 						this.getTableData();
-						that.$message.successMsgg("删除成功", 2)
+						that.$message.successMsg("删除成功", 2)
 					}
 				})
 			}

+ 1 - 1
src/view/import/out/components/IUploadOut.vue

@@ -6,7 +6,7 @@
 	</div>
 	<span>必须列【姓名,职务,外出事由,外出时间,回来时间,签批人1,签批人2】 </span>
     <el-table :data="tableData.slice( page*size-size, page*size)" border highlight-current-row style="width: 100%;margin-top:20px;">
-	  <el-table-column prop="name"   label="姓名"></el-table-column>
+	  <el-table-column prop="username"   label="姓名"></el-table-column>
 	  <el-table-column prop="post"     label="性别"></el-table-column>
 	  <el-table-column prop="reasons"     label="外出事由"></el-table-column>
 	  <el-table-column prop="fromDate"      label="外出时间"></el-table-column>

+ 1 - 1
src/view/import/out/infoList.vue

@@ -238,7 +238,7 @@ export default {
 		cancelImportOut( param).then( (res)=>{
 			if( res.code == 200){
 				this.getTableData( this.logId );
-				this.$message.successMsgg("删除成功", 2)
+				this.$message.successMsg("删除成功", 2)
 			}
 		})
 	},

+ 1 - 1
src/view/import/visit/components/IUploadVisit.vue

@@ -116,7 +116,7 @@ export default {
 			recvDate: 	excelDate(item["来文日期"]),
 			fromDate: 	excelDate(item["莅临时间"]),
 			toDate: 	excelDate(item["回去时间"]),
-			proposed: (''+item["拟办意见"]||'').trim(),
+			proposed: (''+(item["拟办意见"]||'')).trim(),
 			edit: false,
 		}
 	  })

+ 1 - 1
src/view/import/visit/infoList.vue

@@ -216,7 +216,7 @@
 				cancelImportVisit(param).then((res) => {
 					if (res.code == 200) {
 						this.getTableData(this.logId);
-						this.$message.successMsgg("删除成功", 2)
+						this.$message.successMsg("删除成功", 2)
 					}
 				})
 			},

+ 2 - 2
vue.config.js

@@ -4,8 +4,8 @@ const path = require('path')
 const buildConf = require('./build.config')
 const packageConf = require('./package.json')
 
-// const HOST = "http://proxy.hqedust.com/aishu/"
-const HOST = "http://localhost:8000"
+const HOST = "http://ndzxadmin.hqedust.com:8888"
+// const HOST = "http://localhost:8000"
 function resolve(dir) {
     return path.join(__dirname, dir)
 }