full.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="客户编码" prop="customerCode">
  5. <el-input
  6. v-model="queryParams.customerCode"
  7. placeholder="请输入客户编码"
  8. clearable
  9. size="small"
  10. @keyup.enter.native="handleQuery"
  11. />
  12. </el-form-item>
  13. <el-form-item label="客户名称" prop="customerName">
  14. <el-input
  15. v-model="queryParams.customerName"
  16. placeholder="请输入客户名称"
  17. clearable
  18. size="small"
  19. @keyup.enter.native="handleQuery"
  20. />
  21. </el-form-item>
  22. <el-form-item label="手机" prop="mobile">
  23. <el-input
  24. v-model="queryParams.mobile"
  25. placeholder="请输入客户手机"
  26. clearable
  27. size="small"
  28. @keyup.enter.native="handleQuery"
  29. />
  30. </el-form-item>
  31. <el-form-item label="所属部门" prop="deptId">
  32. <treeselect style="width:205.4px" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择所属部门" />
  33. </el-form-item>
  34. <el-form-item label="客户状态" prop="status">
  35. <el-select v-model="queryParams.status" placeholder="请选择客户状态" clearable size="small">
  36. <el-option
  37. v-for="item in statusOptions"
  38. :key="item.dictValue"
  39. :label="item.dictLabel"
  40. :value="item.dictValue"
  41. />
  42. </el-select>
  43. </el-form-item>
  44. <el-form-item label="跟进阶段" prop="visitStatus">
  45. <el-select multiple filterable v-model="visitStatusArr" placeholder="请选择跟进阶段" clearable size="small">
  46. <el-option
  47. v-for="item in visitStatusOptions"
  48. :key="item.dictValue"
  49. :label="item.dictLabel"
  50. :value="item.dictValue"
  51. />
  52. </el-select>
  53. </el-form-item>
  54. <el-form-item label="客户类型" prop="customerType">
  55. <el-select multiple filterable v-model="ctsTypeArr" placeholder="请选择客户类型" clearable size="small">
  56. <el-option
  57. v-for="item in typeOptions"
  58. :key="item.dictValue"
  59. :label="item.dictLabel"
  60. :value="item.dictValue"
  61. />
  62. </el-select>
  63. </el-form-item>
  64. <el-form-item label="客户标签" prop="tags">
  65. <el-select multiple filterable v-model="tagIds" placeholder="请选择客户标签" clearable size="small">
  66. <el-option
  67. v-for="item in tagsOptions"
  68. :key="item.dictLabel"
  69. :label="item.dictLabel"
  70. :value="item.dictLabel"
  71. />
  72. </el-select>
  73. </el-form-item>
  74. <!-- <el-form-item label="是否认领" prop="isReceive">
  75. <el-select v-model="queryParams.isReceive" placeholder="请选择是否认领" clearable size="small">
  76. <el-option
  77. v-for="item in receiveOptions"
  78. :key="item.dictValue"
  79. :label="item.dictLabel"
  80. :value="item.dictValue"
  81. />
  82. </el-select>
  83. </el-form-item> -->
  84. <el-form-item label="创建时间" prop="createTime">
  85. <el-date-picker
  86. style="width:205.4px"
  87. clearable size="small"
  88. v-model="dateRange"
  89. type="daterange"
  90. value-format="yyyy-MM-dd"
  91. start-placeholder="开始日期"
  92. end-placeholder="结束日期">
  93. </el-date-picker>
  94. </el-form-item>
  95. <el-form-item label="客户来源" prop="source">
  96. <el-select multiple filterable v-model="sourceArr" placeholder="请选择客户来源" clearable size="small">
  97. <el-option
  98. v-for="item in sourceOptions"
  99. :key="item.dictValue"
  100. :label="item.dictLabel"
  101. :value="item.dictValue"
  102. />
  103. </el-select>
  104. </el-form-item>
  105. <el-form-item>
  106. <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  107. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  108. </el-form-item>
  109. </el-form>
  110. <el-row :gutter="10" class="mb8">
  111. <el-col :span="1.5">
  112. <el-button
  113. type="success"
  114. icon="el-icon-edit"
  115. size="mini"
  116. :disabled="multiple"
  117. @click="handleAssign"
  118. v-hasPermi="['crm:customer:assignToUser']"
  119. >客户分配</el-button>
  120. </el-col>
  121. <el-col :span="1.5">
  122. <el-button
  123. type="success"
  124. size="mini"
  125. @click="handleAssignList"
  126. v-hasPermi="['crm:customerAssign:list']"
  127. >分配历史记录</el-button>
  128. </el-col>
  129. <el-col :span="1.5">
  130. <el-button
  131. type="warning"
  132. icon="el-icon-download"
  133. size="mini"
  134. @click="handleExport"
  135. v-hasPermi="['crm:customer:export']"
  136. >导出</el-button>
  137. </el-col>
  138. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  139. </el-row>
  140. <el-tabs type="card" v-model="queryParams.isReceive" @tab-click="handleClick">
  141. <el-tab-pane label="未领取" name="0"></el-tab-pane>
  142. <el-tab-pane label="已领取" name="1"></el-tab-pane>
  143. </el-tabs>
  144. <el-table height="500" border v-loading="loading" :data="customerList" @selection-change="handleSelectionChange">
  145. <el-table-column type="selection" width="55" align="center" />
  146. <el-table-column label="客户编码" align="center" prop="customerCode" />
  147. <el-table-column label="客户名称" align="center" prop="customerName" :show-overflow-tooltip="true">
  148. <template slot-scope="scope">
  149. <el-link @click="handleShow(scope.row)" :underline="false" type="primary" >{{scope.row.customerName}}</el-link>
  150. </template>
  151. </el-table-column>
  152. <el-table-column label="手机" width="120px" align="center" prop="mobile" >
  153. <template slot-scope="scope">
  154. {{scope.row.mobile}}
  155. </template>
  156. </el-table-column>
  157. <el-table-column label="客户来源" align="center" prop="source">
  158. <template slot-scope="scope">
  159. <el-tag prop="status" v-for="(item, index) in sourceOptions" v-if="scope.row.source==item.dictValue">{{item.dictLabel}}</el-tag>
  160. </template>
  161. </el-table-column>
  162. <el-table-column label="跟进阶段" align="center" prop="visitStatus">
  163. <template slot-scope="scope">
  164. <el-tag prop="visitStatus" v-for="(item, index) in visitStatusOptions" v-if="scope.row.visitStatus==item.dictValue">{{item.dictLabel}}</el-tag>
  165. </template>
  166. </el-table-column>
  167. <el-table-column label="客户类型" align="center" prop="customerType">
  168. <template slot-scope="scope">
  169. <el-tag prop="status" v-for="(item, index) in typeOptions" v-if="scope.row.customerType==item.dictValue">{{item.dictLabel}}</el-tag>
  170. </template>
  171. </el-table-column>
  172. <el-table-column label="标签" align="center" prop="tags" />
  173. <el-table-column label="备注" align="center" prop="remark" width="200px" />
  174. <el-table-column label="进线客户详情" align="center" :show-overflow-tooltip="true" prop="registerDesc" />
  175. <el-table-column label="领取时间" align="center" prop="startTime" />
  176. <el-table-column label="进线客户提交日期" align="center" prop="registerSubmitTime" />
  177. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  178. </el-table-column>
  179. <el-table-column label="认领人" align="center" prop="companyUserNickName" :show-overflow-tooltip="true">
  180. </el-table-column>
  181. <el-table-column label="最后一次跟进时间" align="center" prop="receiveTime" width="120">
  182. </el-table-column>
  183. <el-table-column label="入公海时间" align="center" prop="poolTime" width="120">
  184. </el-table-column>
  185. <el-table-column label="操作" align="center" fixed="right" width="120px" class-name="small-padding fixed-width">
  186. <template slot-scope="scope">
  187. <!-- <el-button
  188. size="mini"
  189. type="text"
  190. icon="el-icon-edit"
  191. @click="handleUpdate(scope.row)"
  192. v-hasPermi="['crm:customer:edit']"
  193. >修改</el-button> -->
  194. <el-button
  195. size="mini"
  196. type="text"
  197. @click="handleShow(scope.row)"
  198. v-hasPermi="['crm:customer:query']"
  199. >查看</el-button>
  200. <el-button
  201. v-if="scope.row.isReceive==0"
  202. size="mini"
  203. type="text"
  204. @click="handleReceive(scope.row)"
  205. v-hasPermi="['crm:customer:receive']"
  206. >认领</el-button>
  207. </template>
  208. </el-table-column>
  209. </el-table>
  210. <pagination
  211. v-show="total>0"
  212. :total="total"
  213. :page.sync="queryParams.pageNum"
  214. :limit.sync="queryParams.pageSize"
  215. @pagination="getList"
  216. />
  217. <el-drawer
  218. size="75%"
  219. :title="show.title" :visible.sync="show.open"
  220. >
  221. <customer-details ref="customerDetails" />
  222. </el-drawer>
  223. <el-dialog :title="assignList.title" :visible.sync="assignList.open" width="1000px" append-to-body>
  224. <customer-assign-list ref="assignList" @close="closeAssignList"></customer-assign-list>
  225. </el-dialog>
  226. <el-dialog :title="assign.title" :visible.sync="assign.open" width="800px" append-to-body>
  227. <assign-user ref="assignUser" @close="closeAssign" />
  228. </el-dialog>
  229. </div>
  230. </template>
  231. <script>
  232. import { assignToUser,receive,getFullCustomerList,addCustomer,updateCustomer,getCustomerDetails,exportCustomer } from "@/api/crm/customer";
  233. import customerDetails from '../components/customerDetails.vue';
  234. import {getCitys} from "@/api/store/city";
  235. import { treeselect } from "@/api/company/companyDept";
  236. import Treeselect from "@riophae/vue-treeselect";
  237. import "@riophae/vue-treeselect/dist/vue-treeselect.css";
  238. import customerAssignList from '../components/customerAssignList.vue';
  239. import assignUser from '../components/assignUser.vue';
  240. export default {
  241. name: "Customer",
  242. components: {customerAssignList, customerDetails,Treeselect,assignUser },
  243. data() {
  244. return {
  245. visitStatusOptions:[],
  246. tagIds:[],
  247. tagsOptions:[],
  248. visitStatusArr:[],
  249. ctsTypeArr:[],
  250. sourceArr:[],
  251. userSelect:{
  252. title:"选择员工",
  253. open:false,
  254. },
  255. assign:{
  256. title:"分配客户",
  257. open:false,
  258. },
  259. // 表单校验
  260. assignRules: {
  261. // companyUserId: [
  262. // { required: true, message: "员工不能为空", trigger: "blur" }
  263. // ],
  264. },
  265. users:[],
  266. assignList:{
  267. title:"分配历史记录",
  268. open:false,
  269. },
  270. dateRange:[],
  271. defaultProps: {
  272. children: "children",
  273. label: "label",
  274. },
  275. // 部门树选项
  276. deptOptions: undefined,
  277. // 部门名称
  278. deptName: undefined,
  279. cityIds:[],
  280. citys:[],
  281. tags:[],
  282. inputVisible: false,
  283. inputValue: '',
  284. receiveOptions:[],
  285. statusOptions:[],
  286. typeOptions:[],
  287. sourceOptions:[],
  288. sexOptions:[],
  289. show:{
  290. title:"客户详情",
  291. open:false,
  292. },
  293. // 遮罩层
  294. loading: true,
  295. // 选中数组
  296. ids: [],
  297. // 非单个禁用
  298. single: true,
  299. // 非多个禁用
  300. multiple: true,
  301. // 显示搜索条件
  302. showSearch: true,
  303. // 总条数
  304. total: 0,
  305. // 客户表格数据
  306. customerList: [],
  307. // 弹出层标题
  308. title: "",
  309. // 是否显示弹出层
  310. open: false,
  311. // 查询参数
  312. queryParams: {
  313. pageNum: 1,
  314. pageSize: 10,
  315. customerCode: null,
  316. customerName: null,
  317. mobile: null,
  318. sex: null,
  319. weixin: null,
  320. userId: null,
  321. createUserId: null,
  322. receiveUserId: null,
  323. customerUserId: null,
  324. address: null,
  325. location: null,
  326. detailAddress: null,
  327. lng: null,
  328. lat: null,
  329. status: null,
  330. isReceive: null,
  331. deptId: null,
  332. isDel: null,
  333. customerType: null,
  334. receiveTime: null,
  335. poolTime: null,
  336. companyId: null,
  337. isLine: null,
  338. source: null,
  339. tags: null
  340. },
  341. // 表单参数
  342. form: {
  343. province:null,
  344. city:null,
  345. district:null,
  346. },
  347. // 表单校验
  348. rules: {
  349. customerName: [
  350. { required: true, message: "客户名称不能为空", trigger: "blur" }
  351. ],
  352. mobile: [
  353. { required: true, message: "手机号不能为空", trigger: "blur" }
  354. ],
  355. sex: [
  356. { required: true, message: "性别不能为空", trigger: "blur" }
  357. ],
  358. source: [
  359. { required: true, message: "客户来源不能为空", trigger: "blur" }
  360. ],
  361. }
  362. };
  363. },
  364. watch: {
  365. // 根据名称筛选部门树
  366. deptName(val) {
  367. this.$refs.tree.filter(val);
  368. },
  369. },
  370. created() {
  371. this.getDicts("crm_customer_user_status").then((response) => {
  372. this.visitStatusOptions = response.data;
  373. });
  374. this.getDicts("crm_customer_source").then((response) => {
  375. this.sourceOptions = response.data;
  376. });
  377. this.getDicts("sys_sex").then((response) => {
  378. this.sexOptions = response.data;
  379. });
  380. this.getDicts("crm_customer_source").then((response) => {
  381. this.sourceOptions = response.data;
  382. });
  383. this.getDicts("sys_sex").then((response) => {
  384. this.sexOptions = response.data;
  385. });
  386. this.getDicts("crm_customer_status").then((response) => {
  387. this.statusOptions = response.data;
  388. });
  389. this.getDicts("crm_customer_type").then((response) => {
  390. this.typeOptions = response.data;
  391. });
  392. this.getDicts("crm_customer_is_receive").then((response) => {
  393. this.receiveOptions = response.data;
  394. });
  395. this.getDicts("crm_customer_tag").then((response) => {
  396. this.tagsOptions = response.data;
  397. });
  398. this.getTreeselect();
  399. this.getCitys();
  400. this.getList();
  401. },
  402. methods: {
  403. handleShow(row){
  404. this.show.open=true;
  405. var that=this;
  406. setTimeout(() => {
  407. that.$refs.customerDetails.getDetails(row.customerId);
  408. }, 200);
  409. },
  410. handleAssign(){
  411. var that=this;
  412. var ids=this.ids;
  413. that.assign.open=true;
  414. setTimeout(() => {
  415. if(that.queryParams.isReceive=="0"){
  416. that.$refs.assignUser.init(ids,2);
  417. }
  418. else if(that.queryParams.isReceive=="1"){
  419. that.$refs.assignUser.init(ids,3);
  420. }
  421. }, 200);
  422. },
  423. closeAssign(){
  424. this.assign.open=false;
  425. this.getList();
  426. },
  427. handleAssignList(){
  428. this.assignList.open=true;
  429. var that=this;
  430. setTimeout(() => {
  431. that.$refs.assignList.getData();
  432. }, 200);
  433. },
  434. closeAssignList(){
  435. this.assignList.open=false;
  436. this.getList();
  437. },
  438. handleClick(tab, event) {
  439. this.queryParams.isReceive=tab.name;
  440. this.getList();
  441. },
  442. handleReceive(row) {
  443. this.$confirm('是否确认认领客户"' + row.customerName + '"?', "警告", {
  444. confirmButtonText: "确定",
  445. cancelButtonText: "取消",
  446. type: "warning"
  447. }).then(function() {
  448. var data={customerId:row.customerId}
  449. return receive(data);
  450. }).then(() => {
  451. this.getList();
  452. this.msgSuccess("操作成功");
  453. }).catch(function() {});
  454. },
  455. getTreeselect() {
  456. treeselect().then((response) => {
  457. this.deptOptions = response.data;
  458. });
  459. },
  460. handleCityChange(value) {
  461. console.log(value);
  462. var nodes=this.$refs.citySelect.getCheckedNodes();
  463. this.form.address=nodes[0].pathLabels[0]+"-"+nodes[0].pathLabels[1]+"-"+nodes[0].pathLabels[2];
  464. this.form.cityIds=value.toString();
  465. console.log(this.form.address);
  466. },
  467. getCitys(){
  468. getCitys().then(res => {
  469. this.loading = false;
  470. this.citys=res.data;
  471. })
  472. },
  473. handleShow(row){
  474. var that=this;
  475. that.show.open=true;
  476. setTimeout(() => {
  477. that.$refs.customerDetails.getDetails(row.customerId);
  478. }, 200);
  479. },
  480. /** 查询客户列表 */
  481. getList() {
  482. this.loading = true;
  483. if(this.visitStatusArr.length>0){
  484. this.queryParams.visitStatus=this.visitStatusArr.toString();
  485. }
  486. else{
  487. this.queryParams.visitStatus=null
  488. }
  489. if(this.ctsTypeArr.length>0){
  490. this.queryParams.customerType=this.ctsTypeArr.toString();
  491. }
  492. else{
  493. this.queryParams.customerType=null
  494. }
  495. if(this.sourceArr.length>0){
  496. this.queryParams.source=this.sourceArr.toString();
  497. }
  498. else{
  499. this.queryParams.source=null
  500. }
  501. if(this.tagIds.length>0){
  502. this.queryParams.tags=this.tagIds.toString();
  503. }
  504. else{
  505. this.queryParams.tags=null
  506. }
  507. getFullCustomerList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
  508. this.customerList = response.rows;
  509. this.total = response.total;
  510. this.loading = false;
  511. });
  512. },
  513. // 取消按钮
  514. cancel() {
  515. this.open = false;
  516. this.reset();
  517. },
  518. // 表单重置
  519. reset() {
  520. this.form = {
  521. customerId: null,
  522. customerCode: null,
  523. customerName: null,
  524. mobile: null,
  525. sex: null,
  526. weixin: null,
  527. remark: null,
  528. userId: null,
  529. createUserId: null,
  530. receiveUserId: null,
  531. customerUserId: null,
  532. address: null,
  533. location: null,
  534. detailAddress: null,
  535. lng: null,
  536. lat: null,
  537. createTime: null,
  538. updateTime: null,
  539. status: 0,
  540. isReceive: null,
  541. deptId: null,
  542. isDel: null,
  543. customerType: null,
  544. receiveTime: null,
  545. poolTime: null,
  546. companyId: null,
  547. isLine: null,
  548. source: null,
  549. tags: null
  550. };
  551. this.tags=[];
  552. this.cityIds=[];
  553. this.resetForm("form");
  554. },
  555. /** 搜索按钮操作 */
  556. handleQuery() {
  557. this.queryParams.pageNum = 1;
  558. this.getList();
  559. },
  560. /** 重置按钮操作 */
  561. resetQuery() {
  562. this.resetForm("queryForm");
  563. this.visitStatusArr = [];
  564. this.tagIds = [];
  565. this.dateRange = [];
  566. this.sourceArr = [];
  567. this.ctsTypeArr = [];
  568. this.handleQuery();
  569. },
  570. // 多选框选中数据
  571. handleSelectionChange(selection) {
  572. this.ids = selection.map(item => item.customerId)
  573. this.single = selection.length!==1
  574. this.multiple = !selection.length
  575. },
  576. /** 新增按钮操作 */
  577. handleAdd() {
  578. this.reset();
  579. this.open = true;
  580. this.title = "添加客户";
  581. },
  582. /** 修改按钮操作 */
  583. handleUpdate(row) {
  584. var that=this;
  585. this.reset();
  586. const customerId = row.customerId || this.ids.toString()
  587. var data={customerId:customerId}
  588. getCustomerDetails(data).then(response => {
  589. this.form = response.data;
  590. if(this.form.status!=null){
  591. this.form.status = this.form.status.toString();
  592. }
  593. if(this.form.customerType!=null){
  594. this.form.customerType = this.form.customerType.toString();
  595. }
  596. if(this.form.sex!=null){
  597. this.form.sex = this.form.sex.toString();
  598. }
  599. if(this.form.source!=null){
  600. this.form.source = this.form.source.toString();
  601. }
  602. if(this.form.tags!=null){
  603. this.tags = this.form.tags.split(",")
  604. }
  605. console.log(this.form.cityIds)
  606. if(this.form.cityIds!=null){
  607. var ids=this.form.cityIds.split(",");
  608. this.cityIds=[];
  609. ids.forEach(element => {
  610. var id=parseInt(element);
  611. that.cityIds.push(id)
  612. });
  613. }
  614. this.open = true;
  615. this.title = "修改客户";
  616. });
  617. },
  618. /** 提交按钮 */
  619. submitForm() {
  620. this.$refs["form"].validate(valid => {
  621. if (valid) {
  622. if (this.form.customerId != null) {
  623. updateCustomer(this.form).then(response => {
  624. if (response.code === 200) {
  625. this.msgSuccess("修改成功");
  626. this.open = false;
  627. this.getList();
  628. }
  629. });
  630. } else {
  631. addCustomer(this.form).then(response => {
  632. if (response.code === 200) {
  633. this.msgSuccess("新增成功");
  634. this.open = false;
  635. this.getList();
  636. }
  637. });
  638. }
  639. }
  640. });
  641. },
  642. /** 删除按钮操作 */
  643. handleDelete(row) {
  644. const customerIds = row.customerId || this.ids;
  645. this.$confirm('是否确认删除客户编号为"' + customerIds + '"的数据项?', "警告", {
  646. confirmButtonText: "确定",
  647. cancelButtonText: "取消",
  648. type: "warning"
  649. }).then(function() {
  650. return delLineCustomer(customerIds);
  651. }).then(() => {
  652. this.getList();
  653. this.msgSuccess("删除成功");
  654. }).catch(function() {});
  655. },
  656. /** 导出按钮操作 */
  657. handleExport() {
  658. const queryParams = this.queryParams;
  659. this.$confirm('是否确认导出所有客户数据项?', "警告", {
  660. confirmButtonText: "确定",
  661. cancelButtonText: "取消",
  662. type: "warning"
  663. }).then(function() {
  664. return exportCustomer(queryParams);
  665. }).then(response => {
  666. this.download(response.msg);
  667. }).catch(function() {});
  668. },
  669. }
  670. };
  671. </script>
  672. <style>
  673. .el-tag + .el-tag {
  674. margin-left: 10px;
  675. }
  676. .button-new-tag {
  677. margin-left: 10px;
  678. height: 32px;
  679. line-height: 30px;
  680. padding-top: 0;
  681. padding-bottom: 0;
  682. }
  683. .input-new-tag {
  684. width: 90px;
  685. margin-left: 10px;
  686. vertical-align: bottom;
  687. }
  688. .el-dialog__wrapper{
  689. z-index: 100000;
  690. }
  691. </style>