Commit 1280bd38 authored by xulihui's avatar xulihui

Merge remote-tracking branch 'origin/master'

parents a9f89a94 f65ce9b9
...@@ -90,6 +90,13 @@ export default { ...@@ -90,6 +90,13 @@ export default {
xiaohidden:false, xiaohidden:false,
receivedList:[], receivedList:[],
routerPath:"", routerPath:"",
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 100,
status:5,
enterpriseId:""
},
} }
}, },
computed: { computed: {
......
...@@ -1125,7 +1125,7 @@ export class EditorMap { ...@@ -1125,7 +1125,7 @@ export class EditorMap {
const pipe = this.createPipeLine({ const pipe = this.createPipeLine({
id:id, id:id,
path: eval(path), path: eval(path),
strokeWeight: objData.strokeWeight || 4, strokeWeight: objData.strokeWeight || 2,
strokeColor: color, strokeColor: color,
extData: objData, extData: objData,
cursor: "pointer", cursor: "pointer",
......
...@@ -203,7 +203,7 @@ export default { ...@@ -203,7 +203,7 @@ export default {
title: "", title: "",
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
// 申报状态:1 已上报,2 未上报,3 已通过,4未通过 字典 // 申报状态:1 已上报,2 未上报 字典
fRepStatusOptions: [], fRepStatusOptions: [],
// 查询参数 // 查询参数
queryParams: { queryParams: {
...@@ -232,7 +232,7 @@ export default { ...@@ -232,7 +232,7 @@ export default {
}, },
created() { created() {
this.getList(); this.getList();
this.getDicts("t_rep_status").then(response => { this.getDicts("t_expert_rep_status").then(response => {
this.fRepStatusOptions = response.data; this.fRepStatusOptions = response.data;
}); });
}, },
......
...@@ -138,6 +138,7 @@ ...@@ -138,6 +138,7 @@
icon="el-icon-download" icon="el-icon-download"
size="mini" size="mini"
:loading="exportLoading" :loading="exportLoading"
@click="handleExport"
>导出</el-button> >导出</el-button>
</el-col> </el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
...@@ -379,7 +380,12 @@ ...@@ -379,7 +380,12 @@
<el-col :span="12"> <el-col :span="12">
<el-form-item label="从事专业工作年限" prop="fMajorLife"> <el-form-item label="从事专业工作年限" prop="fMajorLife">
<el-input v-model="form.fMajorLife" placeholder="请输入从事专业工作年限" /> <el-input-number
:style="{width: '320px'}"
controls-position="right"
:min="0"
v-model="form.fMajorLife"
placeholder="请输入从事专业工作年限" />
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -528,7 +534,7 @@ export default { ...@@ -528,7 +534,7 @@ export default {
fThisProvinceFlagOptions: [], fThisProvinceFlagOptions: [],
// 是否有效:0 有效,1 无效字典 // 是否有效:0 有效,1 无效字典
fValidTypeOptions: [], fValidTypeOptions: [],
//1 已上报,2 未上报,3 已通过,4未通过 //1 已上报,2 未上报
repStatusOptions: [], repStatusOptions: [],
// 查询参数 // 查询参数
queryParams: { queryParams: {
...@@ -649,7 +655,7 @@ export default { ...@@ -649,7 +655,7 @@ export default {
this.getDicts("t_valid_type").then(response => { this.getDicts("t_valid_type").then(response => {
this.fValidTypeOptions = response.data; this.fValidTypeOptions = response.data;
}); });
this.getDicts("t_rep_status").then(response => { this.getDicts("t_expert_rep_status").then(response => {
this.repStatusOptions = response.data; this.repStatusOptions = response.data;
}); });
}, },
...@@ -691,6 +697,9 @@ export default { ...@@ -691,6 +697,9 @@ export default {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
filterNum(value){
this.form.fMajorLife = Math.abs(this.value) //去除中文输入下的负号和 this.value是字符时00开头等乱输
},
// 表单重置 // 表单重置
reset() { reset() {
this.form = { this.form = {
...@@ -838,3 +847,10 @@ export default { ...@@ -838,3 +847,10 @@ export default {
} }
}; };
</script> </script>
<style>
.el-input-number .el-input__inner{
text-align: left;
}
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment