|
|
@@ -10,9 +10,10 @@
|
|
|
<sapn style="margin-left: 20px">{{form.uid}}</sapn>
|
|
|
</p>
|
|
|
<p>申请人昵称:{{form.apply_info.nickname}}</p>
|
|
|
+ <p>申请人真名:真实名字待绑定!!!!!</p>
|
|
|
<p>申请人手机:{{form.apply_info.login_mobile}}</p>
|
|
|
<p>申请人微信:{{form.apply_info.weixin}}</p>
|
|
|
- <p>申请人主页:<a :href="form.apply_info.url" target="_blank">{{form.apply_info.url}}</a></p>
|
|
|
+ <p>申请人主页:<a :href="'/rooter/user/'+form.uid" target="_blank">{{form.apply_info.url}}</a></p>
|
|
|
</el-col>
|
|
|
<el-col :span="10">
|
|
|
<div class="pform-head">
|
|
|
@@ -36,14 +37,16 @@
|
|
|
</div>
|
|
|
<p>认证费用:{{form.pay_money}}</p>
|
|
|
<p>付款日期:{{form.addtime}}</p>
|
|
|
- <p>认证领域:{{form.occupation_name}}</p>
|
|
|
+ <p>认证领域:{{form.occupation_name}} / 二级领域 待添加!!!</p>
|
|
|
<p>认证等级:{{form.item_id}}</p>
|
|
|
<p>最终等级:
|
|
|
<el-select v-model="form.confirm_item_id" placeholder="请选择用户最终的面试等级">
|
|
|
<el-option
|
|
|
v-for="item in freeworklevel"
|
|
|
+ :key="item.item_id"
|
|
|
:label="item.name"
|
|
|
:value="item.item_id">
|
|
|
+
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
<el-button @click="confirm_item_id" v-if="form.order_status==5" type="success">确定</el-button>
|
|
|
@@ -64,17 +67,22 @@
|
|
|
<div v-for="item in form.interview_list">
|
|
|
<el-row style="background: #e5e9f2;border-radius: 15px;padding: 20px;margin-top: 20px">
|
|
|
<el-col :span="10">
|
|
|
- <div class="pform-head">
|
|
|
+ <div class="pform-head" style="display:flex;">
|
|
|
<h3>面试官</h3>
|
|
|
</div>
|
|
|
<p>面试官昵称:{{item.userInfo.uid}}</p>
|
|
|
<p>面试官昵称:{{item.userInfo.nickname}}</p>
|
|
|
+ <p>面试官真名:面试官真名数据待绑定!!!!</p>
|
|
|
<p>面试官电话:{{item.userInfo.login_mobile}}</p>
|
|
|
- <p>面试官主页:<a :href="item.userInfo.url" target="_blank">{{item.userInfo.url}}</a></p>
|
|
|
+ <p>面试官主页:<a :href="'/rooter/user/'+item.userInfo.uid" target="_blank">{{item.userInfo.url}}</a></p>
|
|
|
</el-col>
|
|
|
- <el-col :span="7">
|
|
|
+ <el-col :span="10">
|
|
|
<div class="pform-head">
|
|
|
<el-button @click="del_invite(item)" v-if="form.order_status==5" type="success">删除</el-button>
|
|
|
+ <!-- TODO:绑定确认打款逻辑 -->
|
|
|
+ <el-button v-if="form.order_status==5" type="success">确认打款</el-button>
|
|
|
+ <span>薪资:159元(待绑定)</span>
|
|
|
+
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="7">
|
|
|
@@ -115,7 +123,11 @@
|
|
|
<p v-for="(item,index) in form.skill">
|
|
|
技能:<el-input style="width: 220px" v-model="item.skill_name" placeholder="请输入内容"></el-input>
|
|
|
<el-input style="width: 0px;" type="hidden" v-model="item.skill_id" placeholder="请输入内容"></el-input>
|
|
|
- 分数:<el-input style="width: 220px" v-model="item.skill_rand" placeholder="请输入内容"></el-input>
|
|
|
+
|
|
|
+ 分数:
|
|
|
+ <!-- <el-input style="width: 220px" v-model="item.skill_rand" placeholder="请输入内容"></el-input> -->
|
|
|
+ <el-input-number v-model="item.skill_rand" controls-position="right" :min="1" :max="5"></el-input-number>
|
|
|
+
|
|
|
<el-button @click="skill" v-if="form.order_status==5" type="success">确定</el-button>
|
|
|
</p>
|
|
|
</el-col>
|
|
|
@@ -222,6 +234,10 @@
|
|
|
let res = await this.$post("/uapi/cert/info_admin",{id:id});
|
|
|
if (res && res.status === 1) {
|
|
|
this.form=res.data;
|
|
|
+
|
|
|
+ // if(Number(this.form.interview_list.pay_money) == 0){
|
|
|
+ // this.form.interview_list.pay_money
|
|
|
+ // }
|
|
|
this.form.confirm_item_id=res.data.confirm_item_id+"";
|
|
|
}
|
|
|
},
|