|
@@ -148,14 +148,14 @@
|
148
|
148
|
<el-form-item label="收费员姓名">
|
149
|
149
|
<el-input v-model="formLabelAlign2.tollmanName"></el-input>
|
150
|
150
|
</el-form-item>
|
151
|
|
- <el-form-item label="出生日期">
|
152
|
|
- <el-date-picker
|
153
|
|
- v-model="formLabelAlign2.birthDay"
|
154
|
|
- type="date"
|
155
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
156
|
|
- placeholder="选择日期时间">
|
157
|
|
- </el-date-picker>
|
158
|
|
- </el-form-item>
|
|
151
|
+<!-- <el-form-item label="出生日期">-->
|
|
152
|
+<!-- <el-date-picker-->
|
|
153
|
+<!-- v-model="formLabelAlign2.birthDay"-->
|
|
154
|
+<!-- type="date"-->
|
|
155
|
+<!-- value-format="yyyy-MM-dd HH:mm:ss"-->
|
|
156
|
+<!-- placeholder="选择日期时间">-->
|
|
157
|
+<!-- </el-date-picker>-->
|
|
158
|
+<!-- </el-form-item>-->
|
159
|
159
|
<el-form-item label="岗位权限">
|
160
|
160
|
<el-input v-model="formLabelAlign2.positionPermission"></el-input>
|
161
|
161
|
</el-form-item>
|
|
@@ -254,10 +254,10 @@ export default {
|
254
|
254
|
label: '收费员姓名',
|
255
|
255
|
key: 'tollmanName'
|
256
|
256
|
},
|
257
|
|
- {
|
258
|
|
- label: '出生日期',
|
259
|
|
- key: 'birthDay'
|
260
|
|
- },
|
|
257
|
+ // {
|
|
258
|
+ // label: '出生日期',
|
|
259
|
+ // key: 'birthDay'
|
|
260
|
+ // },
|
261
|
261
|
{
|
262
|
262
|
label: '岗位权限',
|
263
|
263
|
key: 'positionPermission'
|
|
@@ -372,12 +372,12 @@ export default {
|
372
|
372
|
},
|
373
|
373
|
handleConfirm2() {
|
374
|
374
|
if (this.title2 === '修改') {
|
375
|
|
- api_l.optPersonnelManagementShiftEdit({id: this.formLabelAlign2.id,parkId: this.formLabelAlign2.parkId,tollmanName: this.formLabelAlign2.tollmanName,birthDay: this.formLabelAlign2.birthDay,positionPermission: this.formLabelAlign2.positionPermission}).then(res => {
|
|
375
|
+ api_l.optPersonnelManagementBasicEdit(this.formLabelAlign2).then(res => {
|
376
|
376
|
this.dialogVisible2 = false
|
377
|
377
|
this.getTableData2()
|
378
|
378
|
})
|
379
|
379
|
}else if (this.title2 === '添加') {
|
380
|
|
- api_l.optPersonnelManagementBasicAdd({parkId: this.formLabelAlign2.parkId,tollmanName: this.formLabelAlign2.tollmanName,birthDay: this.formLabelAlign2.birthDay,positionPermission: this.formLabelAlign2.positionPermission}).then(res => {
|
|
380
|
+ api_l.optPersonnelManagementBasicAdd(this.formLabelAlign2).then(res => {
|
381
|
381
|
this.dialogVisible2 = false
|
382
|
382
|
this.getTableData2()
|
383
|
383
|
})
|