|
|
@@ -124,8 +124,8 @@
|
|
|
sortable
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
-
|
|
|
<!--正式会员-->
|
|
|
+ <div v-if="scope.row.IsTmpUser != 1">
|
|
|
<el-select v-model="scope.row.group_no"
|
|
|
filterable
|
|
|
:disabled="FinishClass == 2 && scope.row.DpId != 0"
|
|
|
@@ -137,6 +137,20 @@
|
|
|
:value="item.value">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
+ </div>
|
|
|
+ <div v-if="scope.row.IsTmpUser == 1">
|
|
|
+ <el-select v-model="scope.row.group_no"
|
|
|
+ filterable
|
|
|
+ :disabled="FinishClass == 2 && scope.row.HrSubmitFlag == 1"
|
|
|
+ placeholder="请选团队">
|
|
|
+ <el-option
|
|
|
+ v-for="item in panel.groupList"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
@@ -581,7 +595,13 @@
|
|
|
});
|
|
|
},
|
|
|
takeTempBack(row){
|
|
|
- this.$message.error('临时会员无法替换心率带,请删除临时会员后重新添加');
|
|
|
+ let that = this;
|
|
|
+ if(this.FinishClass == 2){
|
|
|
+ that.$message.error('请删除临时会员后重新添加');
|
|
|
+ }else{
|
|
|
+ that.$message.error('临时会员无法替换心率带');
|
|
|
+ }
|
|
|
+
|
|
|
// let that = this;
|
|
|
// let text = "";
|
|
|
// if (this.$route.query.FinishClass == 2) {
|