|
|
@@ -45,6 +45,12 @@
|
|
|
<el-radio :label="false">不筛选</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
+ <div class="RequestAccess-li">
|
|
|
+ <label>公司层级:</label>
|
|
|
+ <el-radio-group v-model="orgLevel">
|
|
|
+ <el-radio v-for="(item,index) in orgLevels" :key="index" :label="item">{{item}}</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </div>
|
|
|
<div class="RequestAccess-li" style="align-items: flex-start;">
|
|
|
<label>其他信息:</label>
|
|
|
<el-input style="width:312px" type="textarea" rows="3" size="small" v-model="otherConstraints"></el-input>
|
|
|
@@ -155,7 +161,7 @@
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="nameCn" label="名称">
|
|
|
+ <el-table-column prop="nameEn" label="名称">
|
|
|
<template slot-scope="scope">
|
|
|
<el-input type="textarea" autosize placeholder="请输入内容" size="small" v-model="scope.row.nameCn">
|
|
|
</el-input>
|
|
|
@@ -310,7 +316,9 @@ export default {
|
|
|
status: null,
|
|
|
text: ''
|
|
|
},
|
|
|
- isUploading: false // 添加上传锁标识,防止重复上传
|
|
|
+ isUploading: false, // 添加上传锁标识,防止重复上传
|
|
|
+ orgLevels:[],
|
|
|
+ orgLevel:'',
|
|
|
}
|
|
|
},
|
|
|
methods:{
|
|
|
@@ -389,6 +397,7 @@ export default {
|
|
|
this.orgScale = this.entry!={}?this.entry.scaleTypes:[];
|
|
|
this.industryNode = this.entry!={}?this.entry.industries:[];
|
|
|
this.isBackground = this.entry!={}?this.entry.isBackground:'';
|
|
|
+ this.orgLevel = this.entry!={}?this.entry.orgLevel:'';
|
|
|
this.RequestAccessVisible=true;
|
|
|
|
|
|
},
|
|
|
@@ -416,6 +425,7 @@ export default {
|
|
|
that.countriess = that.countries;
|
|
|
that.orgScales = res.data.data.orgScales;
|
|
|
that.industryNodes = res.data.data.industryNodes;
|
|
|
+ that.orgLevels = res.data.data.orgLevels;
|
|
|
resolve();
|
|
|
} else {
|
|
|
that.$message({
|
|
|
@@ -1399,7 +1409,8 @@ export default {
|
|
|
scaleTypes: that.orgScale,
|
|
|
isBackground: that.isBackground,
|
|
|
otherConstraints: that.otherConstraints,
|
|
|
- currUserId: that.userid
|
|
|
+ currUserId: that.userid,
|
|
|
+ orgLevel: that.orgLevel,
|
|
|
}
|
|
|
}).then(function (res) {
|
|
|
if (res.data.code == 200) {
|