|
|
|
@ -82,7 +82,13 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tables">
|
|
|
|
|
<el-table v-loading="loading" :data="newList" height="350">
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="newList"
|
|
|
|
|
height="350"
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="企业名称"
|
|
|
|
|
align="center"
|
|
|
|
@ -144,12 +150,6 @@
|
|
|
|
|
<span>加入草稿箱</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="tabs-btns">
|
|
|
|
|
<div class="look" @click="handleInfo(scope.row)">
|
|
|
|
|
<img src="@/assets/images/lookInfo.png" alt="" />
|
|
|
|
|
<span>查看详情</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div> -->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -168,6 +168,7 @@
|
|
|
|
|
草稿箱(<span> {{ enterpriseTotal }} 家</span>)
|
|
|
|
|
</div>
|
|
|
|
|
<div class="btn" ref="next" @click="btnNext">下一步</div>
|
|
|
|
|
<div class="btn-add" ref="next" @click="btnAdd">批量加入草稿箱</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<firm-dialog ref="firmDialog"></firm-dialog>
|
|
|
|
@ -290,6 +291,12 @@ export default {
|
|
|
|
|
this.refreshList();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.ids = selection.map((item) => item.id);
|
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
|
},
|
|
|
|
|
refreshList() {
|
|
|
|
|
let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO"));
|
|
|
|
|
if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") {
|
|
|
|
@ -321,6 +328,7 @@ export default {
|
|
|
|
|
btnNext() {
|
|
|
|
|
this.$emit("nextTab", 2);
|
|
|
|
|
},
|
|
|
|
|
btnAdd() {},
|
|
|
|
|
// 加入草稿箱
|
|
|
|
|
handleAddDrafts(row) {
|
|
|
|
|
this.resetPlanEnterprise();
|
|
|
|
@ -545,7 +553,6 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tables {
|
|
|
|
|
// background-color: #eaf2fd;
|
|
|
|
|
.tabs-btns {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
@ -585,13 +592,6 @@ export default {
|
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #525966;
|
|
|
|
|
.el-checkbox {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-table__body-wrapper {
|
|
|
|
|
// height: 448px !important;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-table::before {
|
|
|
|
@ -727,6 +727,22 @@ export default {
|
|
|
|
|
color: #2378ec;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.btn-add {
|
|
|
|
|
width: 150px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border: 1px solid #3ecaa7;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
background-color: #eff6ff;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #48e1bb;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
.selectBtn {
|
|
|
|
|
background-color: #2378ec;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|