|
@@ -1,51 +1,21 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- label-width="68px"
|
|
|
- >
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
<el-form-item label="类型名称" prop="lxmc">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.lxmc"
|
|
|
- placeholder="请输入类型名称"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
+ <el-input v-model="queryParams.lxmc" placeholder="请输入类型名称" clearable @keyup.enter.native="handleQuery" />
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-search"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery"
|
|
|
- >搜索</el-button
|
|
|
- >
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
- >重置</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['business:xmsbXmlx:add']"
|
|
|
- >新增</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
+ v-hasPermi="['business:xmsbXmlx:add']">新增</el-button>
|
|
|
</el-col>
|
|
|
- <right-toolbar
|
|
|
- :showSearch.sync="showSearch"
|
|
|
- @queryTable="getList"
|
|
|
- ></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="xmsbXmlxList">
|
|
@@ -57,83 +27,36 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="应用范围" align="center" prop="xzqhName">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.xzqhName ? scope.row.xzqhName : '全省'}}
|
|
|
+ {{ scope.row.xzqhName ? scope.row.xzqhName : '全省' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="数据状态" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-switch
|
|
|
- v-model="scope.row.status"
|
|
|
- active-value="0"
|
|
|
- inactive-value="99"
|
|
|
- @change="handleStatusChange(scope.row)"
|
|
|
- ></el-switch>
|
|
|
+ <el-switch v-model="scope.row.status" active-value="0" inactive-value="99"
|
|
|
+ @change="handleStatusChange(scope.row)"></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- class-name="small-padding fixed-width"
|
|
|
- fixed="right"
|
|
|
- >
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:xmsbXmlx:edit']"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '99'"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row, scope.$index)"
|
|
|
- v-hasPermi="['business:xmsbXmlx:remove']"
|
|
|
- >删除</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '0'"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-document-copy"
|
|
|
- @click="handleView(scope.row, scope.$index)"
|
|
|
- v-hasPermi="['business:xmsbFjlx:list']"
|
|
|
- >附件类型</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '0'"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-tickets"
|
|
|
- @click="handleViewForm(scope.row, scope.$index)"
|
|
|
- v-hasPermi="['business:xmbdpz:list']"
|
|
|
- >项目表单配置</el-button
|
|
|
- >
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['business:xmsbXmlx:edit']">修改</el-button>
|
|
|
+ <el-button v-if="scope.row.status == '99'" size="mini" type="text" icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row, scope.$index)" v-hasPermi="['business:xmsbXmlx:remove']">删除</el-button>
|
|
|
+ <el-button v-if="scope.row.status == '0'" size="mini" type="text" icon="el-icon-document-copy"
|
|
|
+ @click="handleView(scope.row, scope.$index)" v-hasPermi="['business:xmsbFjlx:list']">附件类型</el-button>
|
|
|
+ <el-button v-if="scope.row.status == '0'" size="mini" type="text" icon="el-icon-tickets"
|
|
|
+ @click="handleViewForm(scope.row, scope.$index)" v-hasPermi="['business:xmbdpz:list']">项目表单配置</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <pagination
|
|
|
- v-show="total > 0"
|
|
|
- :total="total"
|
|
|
- :page.sync="queryParams.pageNum"
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList" />
|
|
|
|
|
|
<!-- 添加或修改项目申报项目类型信息对话框 -->
|
|
|
- <el-dialog
|
|
|
- v-dialog-drag
|
|
|
- :title="title"
|
|
|
- :visible.sync="open"
|
|
|
- width="500px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
+ <el-dialog v-dialog-drag :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
<el-form-item label="应用行政区划" prop="zyXzqh" style="display: none">
|
|
|
<el-input v-model="form.zyXzqh" placeholder="请输入应用行政区划" />
|
|
@@ -143,44 +66,34 @@
|
|
|
<el-input v-model="form.lxmc" placeholder="请输入项目类型名称" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="是否地区专用" prop="isDqzy">
|
|
|
- <el-select v-model="form.isDqzy" placeholder="请选择是否地区专用">
|
|
|
- <el-option v-for="dict in dict.type.CZ035" :key="dict.value" :label="dict.label" :value="dict.value">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
+ <el-select v-model="form.isDqzy" placeholder="请选择是否地区专用">
|
|
|
+ <el-option v-for="dict in dict.type.CZ035" :key="dict.value" :label="dict.label" :value="dict.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
|
|
|
- <el-form-item v-if="form.isDqzy=='1'" label="应用行政区划" prop="xzqhName" class="itemFlex">
|
|
|
- <el-input v-model="form.xzqhName" placeholder="请输入专用行政区划" :disabled="true"/>
|
|
|
- <el-button type="primary" @click="handleds" style="margin-left: 5px">选择行政区划</el-button>
|
|
|
+ <el-form-item v-if="form.isDqzy == '1'" label="应用行政区划" prop="xzqhName" class="itemFlex">
|
|
|
+ <el-input v-model="form.xzqhName" placeholder="请输入专用行政区划" :disabled="true" />
|
|
|
+ <el-button type="primary" @click="handleds" style="margin-left: 5px">选择行政区划</el-button>
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="submitForm"
|
|
|
- :loading="submitFormLoading"
|
|
|
- >确 定</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" @click="submitForm" :loading="submitFormLoading">确 定</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
<el-dialog title="行政区划选择" :visible.sync="openSelect" width="400px" append-to-body>
|
|
|
- <span class="sxzd">行政区划</span>
|
|
|
- <dept-tree :userId="user.userData.dept.parentId" @handleNodeClick="handleNodeClick">
|
|
|
- </dept-tree>
|
|
|
- </el-dialog>
|
|
|
+ <span class="sxzd">行政区划</span>
|
|
|
+ <dept-tree :userId="user.userData.dept.parentId" @handleNodeClick="handleNodeClick">
|
|
|
+ </dept-tree>
|
|
|
+ </el-dialog>
|
|
|
|
|
|
<!-- 项目表单配置信息对话框 -->
|
|
|
- <el-dialog
|
|
|
- v-dialog-drag
|
|
|
- :title="viewFormTitle"
|
|
|
- :visible.sync="openViewForm"
|
|
|
- width="800px"
|
|
|
- append-to-body>
|
|
|
+ <el-dialog v-dialog-drag :title="viewFormTitle" :visible.sync="openViewForm" width="800px" append-to-body>
|
|
|
|
|
|
- <xmbdpz :xmlxId="rowId" />
|
|
|
+ <xmbdpz :xmlxId="rowId" />
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="cancelViewForm">确 定</el-button>
|
|
@@ -188,21 +101,12 @@
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 项目附件类型信息对话框 -->
|
|
|
- <el-dialog
|
|
|
- v-dialog-drag
|
|
|
- :title="viewTitle"
|
|
|
- :visible.sync="openView"
|
|
|
- width="800px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
- <el-form :model="viewQueryParams" ref="viewQueryForm" size="small" :inline="true" v-show="viewShowSearch" label-width="68px">
|
|
|
+ <el-dialog v-dialog-drag :title="viewTitle" :visible.sync="openView" width="800px" append-to-body>
|
|
|
+ <el-form :model="viewQueryParams" ref="viewQueryForm" size="small" :inline="true" v-show="viewShowSearch"
|
|
|
+ label-width="68px">
|
|
|
<el-form-item label="类型名称" prop="lxmc">
|
|
|
- <el-input
|
|
|
- v-model="viewQueryParams.lxmc"
|
|
|
- placeholder="请输入类型名称"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleViewQuery"
|
|
|
- />
|
|
|
+ <el-input v-model="viewQueryParams.lxmc" placeholder="请输入类型名称" clearable
|
|
|
+ @keyup.enter.native="handleViewQuery" />
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleViewQuery">搜索</el-button>
|
|
@@ -212,14 +116,8 @@
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleViewAdd"
|
|
|
- v-hasPermi="['business:xmsbFjlx:add']"
|
|
|
- >新增</el-button>
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleViewAdd"
|
|
|
+ v-hasPermi="['business:xmsbFjlx:add']">新增</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar :showSearch.sync="viewShowSearch" @queryTable="getFjList"></right-toolbar>
|
|
|
</el-row>
|
|
@@ -228,49 +126,23 @@
|
|
|
<el-table-column label="类型名称" align="center" prop="lxmc" />
|
|
|
<el-table-column label="数据状态" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-switch
|
|
|
- v-model="scope.row.status"
|
|
|
- active-value="0"
|
|
|
- inactive-value="99"
|
|
|
- @change="handleViewStatusChange(scope.row)"
|
|
|
- ></el-switch>
|
|
|
+ <el-switch v-model="scope.row.status" active-value="0" inactive-value="99"
|
|
|
+ @change="handleViewStatusChange(scope.row)"></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- class-name="small-padding fixed-width"
|
|
|
- fixed="right"
|
|
|
- >
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleViewUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:xmsbFjlx:edit']"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleViewDelete(scope.row, scope.$index)"
|
|
|
- v-hasPermi="['business:xmsbFjlx:remove']"
|
|
|
- >删除</el-button
|
|
|
- >
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleViewUpdate(scope.row)"
|
|
|
+ v-hasPermi="['business:xmsbFjlx:edit']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleViewDelete(scope.row, scope.$index)"
|
|
|
+ v-hasPermi="['business:xmsbFjlx:remove']">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <pagination
|
|
|
- v-show="viewTotal > 0"
|
|
|
- :total="viewTotal"
|
|
|
- :page.sync="viewQueryParams.pageNum"
|
|
|
- :limit.sync="viewQueryParams.pageSize"
|
|
|
- @pagination="getFjList"
|
|
|
- />
|
|
|
+ <pagination v-show="viewTotal > 0" :total="viewTotal" :page.sync="viewQueryParams.pageNum"
|
|
|
+ :limit.sync="viewQueryParams.pageSize" @pagination="getFjList" />
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="cancelView">确 定</el-button>
|
|
@@ -309,10 +181,10 @@ import {
|
|
|
updateXmsbXmlx,
|
|
|
} from "@/api/business/xmsb/xmsbXmlx";
|
|
|
import xmbdpz from "../xmbdpz/index";
|
|
|
-import {addXmsbFjlx, delXmsbFjlx, changeFjStatus, getXmsbFjlx, listXmsbFjlx, updateXmsbFjlx} from "@/api/business/xmsb/xmsbFjlx";
|
|
|
+import { addXmsbFjlx, delXmsbFjlx, changeFjStatus, getXmsbFjlx, listXmsbFjlx, updateXmsbFjlx } from "@/api/business/xmsb/xmsbFjlx";
|
|
|
import { chineseOne, idCard, Regular } from "@/utils/regular";
|
|
|
import { decryptData_ECB, decryptRowData_ECB } from "@/api/tool/sm4";
|
|
|
-import {mapState} from 'vuex'
|
|
|
+import { mapState } from 'vuex'
|
|
|
|
|
|
export default {
|
|
|
name: "XmsbXmlx",
|
|
@@ -385,8 +257,8 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['user'])
|
|
|
- },
|
|
|
+ ...mapState(['user'])
|
|
|
+ },
|
|
|
methods: {
|
|
|
/** 查询项目申报项目类型信息列表 */
|
|
|
getList() {
|
|
@@ -399,7 +271,7 @@ export default {
|
|
|
},
|
|
|
getFjList() {
|
|
|
this.viewLoading = true;
|
|
|
- listXmsbFjlx({...this.viewQueryParams, xmlxId: this.rowId}).then((response) => {
|
|
|
+ listXmsbFjlx({ ...this.viewQueryParams, xmlxId: this.rowId }).then((response) => {
|
|
|
this.fjList = response.rows;
|
|
|
this.viewTotal = response.total;
|
|
|
this.viewLoading = false;
|
|
@@ -407,17 +279,17 @@ export default {
|
|
|
},
|
|
|
handleNodeClick(data) {
|
|
|
console.log(data)
|
|
|
- if (data.code) {
|
|
|
- this.form.zyXzqh = data.code;
|
|
|
- }
|
|
|
- if (data.name) {
|
|
|
- this.form.xzqhName = data.name;
|
|
|
- }
|
|
|
- this.openSelect = false;
|
|
|
- },
|
|
|
- handleds() {
|
|
|
- this.openSelect = true;
|
|
|
- },
|
|
|
+ if (data.code) {
|
|
|
+ this.form.zyXzqh = data.code;
|
|
|
+ }
|
|
|
+ if (data.name) {
|
|
|
+ this.form.xzqhName = data.name;
|
|
|
+ }
|
|
|
+ this.openSelect = false;
|
|
|
+ },
|
|
|
+ handleds() {
|
|
|
+ this.openSelect = true;
|
|
|
+ },
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
@@ -540,17 +412,17 @@ export default {
|
|
|
if (valid) {
|
|
|
this.submitFormLoading = true;
|
|
|
if (this.viewForm.id != null) {
|
|
|
- updateXmsbFjlx(this.viewForm).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.openViewInOrUp = false;
|
|
|
- this.getFjList();
|
|
|
- }).finally(()=>this.submitFormLoading =false);
|
|
|
+ updateXmsbFjlx(this.viewForm).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.openViewInOrUp = false;
|
|
|
+ this.getFjList();
|
|
|
+ }).finally(() => this.submitFormLoading = false);
|
|
|
} else {
|
|
|
addXmsbFjlx(this.viewForm).then(response => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.openViewInOrUp = false;
|
|
|
this.getFjList();
|
|
|
- }).finally(()=>this.submitFormLoading =false);
|
|
|
+ }).finally(() => this.submitFormLoading = false);
|
|
|
}
|
|
|
}
|
|
|
});
|
|
@@ -603,34 +475,34 @@ export default {
|
|
|
},
|
|
|
handleStatusChange(row) {
|
|
|
let text = row.status === "0" ? "启用" : "停用";
|
|
|
- this.$modal.confirm('确认要"' + text + '""' + row.lxmc + '"项目吗?').then(function() {
|
|
|
+ this.$modal.confirm('确认要"' + text + '""' + row.lxmc + '"项目吗?').then(function () {
|
|
|
return changeXmStatus(row.id, row.status);
|
|
|
}).then(() => {
|
|
|
this.$modal.msgSuccess(text + "成功");
|
|
|
- }).catch(function() {
|
|
|
+ }).catch(function () {
|
|
|
row.status = row.status === "0" ? "99" : "0";
|
|
|
});
|
|
|
},
|
|
|
handleViewStatusChange(row) {
|
|
|
let text = row.status === "0" ? "启用" : "停用";
|
|
|
- this.$modal.confirm('确认要"' + text + '""' + row.lxmc + '"附件类型吗?').then(function() {
|
|
|
+ this.$modal.confirm('确认要"' + text + '""' + row.lxmc + '"附件类型吗?').then(function () {
|
|
|
return changeFjStatus(row.id, row.status);
|
|
|
}).then(() => {
|
|
|
this.$modal.msgSuccess(text + "成功");
|
|
|
- }).catch(function() {
|
|
|
+ }).catch(function () {
|
|
|
row.status = row.status === "0" ? "99" : "0";
|
|
|
});
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
- handleViewDelete(row,index) {
|
|
|
+ handleViewDelete(row, index) {
|
|
|
const ids = row.id || this.ids;
|
|
|
- const xh = (this.viewQueryParams.pageNum-1)*this.viewQueryParams.pageSize + index + 1;
|
|
|
- this.$modal.confirm('确认删除' + this.changeDelData(row,'id','ID值',xh) + '的记录?').then(function() {
|
|
|
+ const xh = (this.viewQueryParams.pageNum - 1) * this.viewQueryParams.pageSize + index + 1;
|
|
|
+ this.$modal.confirm('确认删除' + this.changeDelData(row, 'id', 'ID值', xh) + '的记录?').then(function () {
|
|
|
return delXmsbFjlx(ids);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
- }).catch(() => {});
|
|
|
+ }).catch(() => { });
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row, index) {
|
|
@@ -656,7 +528,7 @@ export default {
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
/****** sks 需要改动的地方 end ******/
|
|
|
})
|
|
|
- .catch(() => {});
|
|
|
+ .catch(() => { });
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
@@ -672,11 +544,12 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
- ::v-deep .itemFlex > .el-form-item__content{
|
|
|
- display: flex;
|
|
|
- }
|
|
|
- .sxzd {
|
|
|
- font-weight: 600;
|
|
|
- margin: 10px 15px;
|
|
|
- }
|
|
|
+::v-deep .itemFlex>.el-form-item__content {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.sxzd {
|
|
|
+ font-weight: 600;
|
|
|
+ margin: 10px 15px;
|
|
|
+}
|
|
|
</style>
|