Commit 79a2ed03 authored by 黄奎's avatar 黄奎

页面修改

parent f611885c
...@@ -1341,7 +1341,7 @@ ...@@ -1341,7 +1341,7 @@
<li> <li>
<span> <span>
<em>操作人</em> <em>操作人</em>
<el-select v-model="msg.CreateBy" filterable :placeholder="$t('system.ph_in')" class="w120"> <el-select v-model="msg.CreateBy" filterable :placeholder="$t('system.ph_in')" class="w120" clearable>
<el-option :label="$t('pub.unlimitedSel')" :value="defaultSelectValue"></el-option> <el-option :label="$t('pub.unlimitedSel')" :value="defaultSelectValue"></el-option>
<el-option v-for="item in EmployeeList" :label="item.EmName" :value="item.EmployeeId" <el-option v-for="item in EmployeeList" :label="item.EmName" :value="item.EmployeeId"
:key="item.EmployeeId"></el-option> :key="item.EmployeeId"></el-option>
...@@ -1470,7 +1470,6 @@ ...@@ -1470,7 +1470,6 @@
</el-tooltip> </el-tooltip>
<span class="_oll_adrr">{{item.FreightSpaceStr}}</span> <span class="_oll_adrr">{{item.FreightSpaceStr}}</span>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="vmiddle"> <el-col :span="4" class="vmiddle">
<div class="FlightDivDetailsTM"> <div class="FlightDivDetailsTM">
...@@ -2939,7 +2938,8 @@ ...@@ -2939,7 +2938,8 @@
message: "请填写B2C单价", message: "请填写B2C单价",
trigger: "change" trigger: "change"
}] }]
} },
userInfo: {}, //当前登录用户
}; };
}, },
methods: { methods: {
...@@ -4131,9 +4131,17 @@ ...@@ -4131,9 +4131,17 @@
} }
}, },
mounted() { mounted() {
this.userInfo = this.getLocalStorage();
var id = this.$route.query.id; var id = this.$route.query.id;
if (id) { if (id) {
this.msg.ID = id; this.msg.ID = id;
} else {
//358,359,360,361,362,363
if (this.userInfo.RB_Department_Id == 358 || this.userInfo.RB_Department_Id == 359 || this.userInfo
.RB_Department_Id == 360 || this.userInfo.RB_Department_Id == 361 || this.userInfo.RB_Department_Id == 362 ||
this.userInfo.RB_Department_Id == 363) {
this.msg.CreateBy = this.userInfo.EmployeeId;
}
} }
this.GetChinaCityList(); this.GetChinaCityList();
this.GetLineList(); this.GetLineList();
......
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