修复发放到外部
This commit is contained in:
parent
ff255c7e94
commit
efc0b77542
@ -762,6 +762,7 @@ export default {
|
||||
sn: sn,
|
||||
projectName: this.formInline.projectName,
|
||||
}).then((res) => {
|
||||
console.log('培训人数',res)
|
||||
if (res.result) {
|
||||
this.statictisData = res.result;
|
||||
console.log(this.statictisData, '列表数据')
|
||||
|
||||
@ -116,7 +116,6 @@ import {
|
||||
import {
|
||||
getDockingUrlApi
|
||||
} from "@/assets/js/api/configManage";
|
||||
import Axios from "axios";
|
||||
export default {
|
||||
name: "projectIndex",
|
||||
components: { vhead },
|
||||
|
||||
@ -452,7 +452,7 @@
|
||||
<img src="@/assets/images/icon-edit.png" style="margin-right:5px" />
|
||||
<span>{{$t('message.laborMange.edit')}}</span>
|
||||
</div> -->
|
||||
|
||||
<!-- 再次进场 -->
|
||||
<el-button
|
||||
class="operationText"
|
||||
type="text"
|
||||
@ -1684,6 +1684,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import axios from 'axios'
|
||||
import {
|
||||
deleteTeamInfo,
|
||||
editTeamInfo,
|
||||
@ -2514,8 +2515,7 @@ export default {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
//编辑 人员信息
|
||||
editWorkerInfo(value, type) {
|
||||
this.personDialogTitle = this.$t(
|
||||
@ -2554,6 +2554,7 @@ export default {
|
||||
personSerial: "",
|
||||
};
|
||||
this.getUfaceDevList();
|
||||
this.goTwo();
|
||||
this.addPersonDialog = true;
|
||||
this.personForm = JSON.parse(JSON.stringify(value));
|
||||
this.personForm.sex = Number(value.sex);
|
||||
|
||||
@ -336,7 +336,7 @@
|
||||
type="primary"
|
||||
:disabled="checkedWorker.length == 0"
|
||||
@click="issuePersonFn"
|
||||
v-if="!key"
|
||||
v-if="key"
|
||||
>{{ $t("message.laborMange.aKeyIssued") }}</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
@ -477,7 +477,7 @@
|
||||
type="primary"
|
||||
size="mini"
|
||||
@click="issuePersonOneFn(scope.row.id)"
|
||||
v-if="!key"
|
||||
v-if="key"
|
||||
>{{ $t("message.laborMange.aKeyIssued") }}</el-button
|
||||
>
|
||||
</div>
|
||||
@ -497,7 +497,7 @@
|
||||
</div> -->
|
||||
<div
|
||||
class="personItemBottom"
|
||||
v-if="!key"
|
||||
v-if="key"
|
||||
>
|
||||
<el-checkbox
|
||||
v-model="scope.row.isUploadHousing"
|
||||
@ -2260,6 +2260,7 @@ import {
|
||||
updateByIdWorkerInfo,
|
||||
sendBatchWokerApi
|
||||
} from "@/assets/js/api/laborPerson";
|
||||
import axios from 'axios'
|
||||
import {
|
||||
selectUserDevAuthorityByUserIdApi,
|
||||
exporExcelWorkerTemplateApi,
|
||||
@ -3326,6 +3327,15 @@ export default {
|
||||
},
|
||||
//编辑 人员信息 按钮
|
||||
editWorkerInfo(value, type) {
|
||||
console.log('当前行',value)
|
||||
// 点击再次进场同时再发一个请求
|
||||
axios({
|
||||
method:"GET",
|
||||
originId : value.id,
|
||||
url:'http://192.168.34.148:8080/workerReEntry'
|
||||
}).then((res)=>{
|
||||
console.log('调用成功了吗',res)
|
||||
})
|
||||
this.personDialogTitle = this.$t("message.laborMange.editCrewInfo");
|
||||
this.titleType = "edit";
|
||||
this.personForm = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user