新增公会默认选择地区
This commit is contained in:
@@ -193,6 +193,7 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.partitionArr = res.data;
|
this.partitionArr = res.data;
|
||||||
|
this.searchForm.partitionId=this.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
this.getDateCycleList();
|
this.getDateCycleList();
|
||||||
},
|
},
|
||||||
|
@@ -192,6 +192,7 @@ export default {
|
|||||||
// this.getData();
|
// this.getData();
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.partitionArr = res.data;
|
this.partitionArr = res.data;
|
||||||
|
this.searchForm.partitionId=this.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@@ -355,7 +355,7 @@ export default {
|
|||||||
erbanNo: null,
|
erbanNo: null,
|
||||||
partitionId: null,
|
partitionId: null,
|
||||||
},
|
},
|
||||||
partitionArr:[],
|
partitionArr: [],
|
||||||
searchRule: {
|
searchRule: {
|
||||||
startTime: [
|
startTime: [
|
||||||
{
|
{
|
||||||
@@ -401,6 +401,7 @@ export default {
|
|||||||
this.getDateCycleList();
|
this.getDateCycleList();
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.partitionArr = res.data;
|
this.partitionArr = res.data;
|
||||||
|
this.searchForm.partitionId = this.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@@ -161,6 +161,7 @@ export default {
|
|||||||
// this.getData();
|
// this.getData();
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.inquire.partitionArr = res.data;
|
this.inquire.partitionArr = res.data;
|
||||||
|
this.inquire.partitionId = this.inquire.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@@ -511,7 +511,7 @@ import {
|
|||||||
addMember,
|
addMember,
|
||||||
setManager,
|
setManager,
|
||||||
removeMember,
|
removeMember,
|
||||||
listPartitionInfo
|
listPartitionInfo,
|
||||||
} from "@/api/noblemanNew/noblemanNew";
|
} from "@/api/noblemanNew/noblemanNew";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import { dateFormat } from "@/utils/system-helper";
|
import { dateFormat } from "@/utils/system-helper";
|
||||||
@@ -580,6 +580,7 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.inquire.partitionArr = res.data;
|
this.inquire.partitionArr = res.data;
|
||||||
|
this.inquire.partitionId = this.inquire.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
this.getData();
|
this.getData();
|
||||||
},
|
},
|
||||||
|
@@ -83,7 +83,9 @@
|
|||||||
|
|
||||||
<el-form-item label-width="40px">
|
<el-form-item label-width="40px">
|
||||||
<el-button type="primary" @click="handSearch">搜索</el-button>
|
<el-button type="primary" @click="handSearch">搜索</el-button>
|
||||||
<el-button type="primary" plain @click="resetSearchForm">重置搜索</el-button>
|
<el-button type="primary" plain @click="resetSearchForm"
|
||||||
|
>重置搜索</el-button
|
||||||
|
>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
class="exportBtn"
|
class="exportBtn"
|
||||||
@@ -114,7 +116,7 @@
|
|||||||
v-loading="tableLoading"
|
v-loading="tableLoading"
|
||||||
@header-click="headerCopy"
|
@header-click="headerCopy"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
style="width: 100%;overflow-x: auto;"
|
style="width: 100%; overflow-x: auto"
|
||||||
>
|
>
|
||||||
<el-table-column type="selection"> </el-table-column>
|
<el-table-column type="selection"> </el-table-column>
|
||||||
<el-table-column align="center" prop="erbanNo" label="MoliStar ID" />
|
<el-table-column align="center" prop="erbanNo" label="MoliStar ID" />
|
||||||
@@ -161,7 +163,12 @@
|
|||||||
{{ scope.row.remark ? scope.row.remark : "/" }}
|
{{ scope.row.remark ? scope.row.remark : "/" }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" prop="hallSalary" label="操作" width="150">
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
prop="hallSalary"
|
||||||
|
label="操作"
|
||||||
|
width="150"
|
||||||
|
>
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<div v-if="scope.row.status == 0">
|
<div v-if="scope.row.status == 0">
|
||||||
<el-button
|
<el-button
|
||||||
@@ -297,7 +304,7 @@ export default {
|
|||||||
country: null,
|
country: null,
|
||||||
partitionId: null,
|
partitionId: null,
|
||||||
},
|
},
|
||||||
partitionArr:[],
|
partitionArr: [],
|
||||||
adminCountryArr: [],
|
adminCountryArr: [],
|
||||||
searchRule: {
|
searchRule: {
|
||||||
startTime: [
|
startTime: [
|
||||||
@@ -353,6 +360,7 @@ export default {
|
|||||||
});
|
});
|
||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
this.partitionArr = res.data;
|
this.partitionArr = res.data;
|
||||||
|
this.searchForm.partitionId = this.partitionArr[0].id;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@@ -300,7 +300,6 @@
|
|||||||
>
|
>
|
||||||
<!-- 这里是原来的图片预览 -->
|
<!-- 这里是原来的图片预览 -->
|
||||||
<el-image
|
<el-image
|
||||||
|
|
||||||
style="width: 100px; height: 100px"
|
style="width: 100px; height: 100px"
|
||||||
:src="dialogObj.imageUrl2"
|
:src="dialogObj.imageUrl2"
|
||||||
:zoom-rate="1.1"
|
:zoom-rate="1.1"
|
||||||
@@ -415,6 +414,7 @@ export default {
|
|||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
console.log(res);
|
console.log(res);
|
||||||
this.inquire.partitionArr = res.data;
|
this.inquire.partitionArr = res.data;
|
||||||
|
this.inquire.partitionId = this.inquire.partitionArr[0].id;
|
||||||
this.getData();
|
this.getData();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@@ -224,6 +224,7 @@ export default {
|
|||||||
listPartitionInfo().then((res) => {
|
listPartitionInfo().then((res) => {
|
||||||
console.log(res);
|
console.log(res);
|
||||||
this.inquire.partitionArr = res.data;
|
this.inquire.partitionArr = res.data;
|
||||||
|
this.inquire.partitionId = this.inquire.partitionArr[0].id;
|
||||||
this.getData();
|
this.getData();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user