|
|
@@ -50,6 +50,7 @@
|
|
|
:value="item.direction_id"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
+ <el-input placeholder="工作ID" v-model="jobID"></el-input>
|
|
|
<el-input placeholder="企业方ID" v-model="comID"></el-input>
|
|
|
<el-input placeholder="开发者ID" v-model="devID"></el-input>
|
|
|
<el-input placeholder="审核人员名字" v-model="checkID"></el-input>
|
|
|
@@ -88,6 +89,7 @@
|
|
|
@click="clickDetail(scope.row['id'])"
|
|
|
>{{scope.row[prop]}}</el-button>
|
|
|
<span v-else-if="prop === 'status'">{{scope.row['statusName']}}</span>
|
|
|
+ <span v-else-if="prop === 'id'">{{scope.row['id']}}<span v-if="!scope.row.deposit_status" style="color: red;">(待托管)</span></span>
|
|
|
<span v-else>{{scope.row[prop] || '--'}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
@@ -162,6 +164,8 @@ export default {
|
|
|
devID: '',
|
|
|
// 企业id
|
|
|
comID: '',
|
|
|
+ // 工作ID
|
|
|
+ jobID: '',
|
|
|
// 审核人员id
|
|
|
checkID: '',
|
|
|
unDeposit: false,
|
|
|
@@ -248,6 +252,7 @@ export default {
|
|
|
developer_id: this.devID,
|
|
|
uid: this.comID,
|
|
|
checker_id: this.checkID,
|
|
|
+ job_id: this.jobID,
|
|
|
direction_id: this.selectedDirection,
|
|
|
status: this.selectedStatus,
|
|
|
not_deposit: this.unDeposit ? '1' : '0',
|