Commit 4e9617e4 by Jings

fix: bug修复

parent 3ca7479e
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
<div class="line"></div> <div class="line"></div>
<div class="put" @click="addLinkDialogShow">插入#公众号</div> <div class="put" @click="addLinkDialogShow">插入#公众号</div>
</div> </div>
<el-popover placement="top" width="388" trigger="click"> <el-popover placement="top" width="388" trigger="click" @show="showPopover('inputContent')">
<ul class="flex flex-wrap" @show="showPopover('inputContent')"> <ul class="flex flex-wrap">
<li v-for="(item, index) in emojiList" :key="index + 'emoji'"> <li v-for="(item, index) in emojiList" :key="index + 'emoji'">
<img :src="item.gifUrl" alt="" @click.stop="selectEmoji(item)" /> <img :src="item.gifUrl" alt="" @click.stop="selectEmoji(item)" />
</li> </li>
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<li v-for="(item, index) in uploadList" :key="index" :class="['uploadListBox', form.welcomeMediaList.length >= 9 || (index == 5 && publicAccountDisabled) ? 'disabled' : '']" :style="index == 5 ? 'width: 118px;' : ''" @click="handleUploadList(item, index)"> <li v-for="(item, index) in uploadList" :key="index" :class="['uploadListBox', form.welcomeMediaList.length >= 9 || (index == 5 && publicAccountDisabled) ? 'disabled' : '']" :style="index == 5 ? 'width: 118px;' : ''" @click="handleUploadList(item, index)">
<i :class="['iconfont-hb3', item.icon]" style="font-size: 20px"></i> <i :class="['iconfont-hb3', item.icon]" style="font-size: 20px"></i>
<p>{{ item.title }}</p> <p>{{ item.title }}</p>
<input type="file" :accept="item.fileType" @change="e => handkeFileChange(e, item)" class="upload-input" /> <input type="file" :accept="item.fileType" @change="(e) => handkeFileChange(e, item)" class="upload-input" />
</li> </li>
</ul> </ul>
<div slot="reference" style="cursor: pointer; display: inline-block"> <div slot="reference" style="cursor: pointer; display: inline-block">
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
<el-dialog title="请选择使用范围" width="886px" class="replay-link-dialog" :visible.sync="scopeVisible"> <el-dialog title="请选择使用范围" width="886px" class="replay-link-dialog" :visible.sync="scopeVisible">
<div class="scopeBox"> <div class="scopeBox">
<div class="left"> <div class="left">
<el-input placeholder="请输入部门名称" maxlength="50" v-model="filterText" style="width: 398px" clearable @clear="handlefilterTextClear" @keyup.native="value => toInput(value, searchInput)"> <i slot="prefix" class="el-input__icon el-icon-search"></i> </el-input> <el-input placeholder="请输入部门名称" maxlength="50" v-model="filterText" style="width: 398px" clearable @clear="handlefilterTextClear" @keyup.native="(value) => toInput(value, searchInput)"> <i slot="prefix" class="el-input__icon el-icon-search"></i> </el-input>
<el-tree :key="showTree" v-loading="loading" ref="tree" :data="treeData" :check-on-click-node="true" show-checkbox node-key="departmentId" :props="defaultProps" :expand-on-click-node="false" class="tree" :render-after-expand="true" @check-change="handleCheckChange" @check="handleCheck"> <el-tree :key="showTree" v-loading="loading" ref="tree" :data="treeData" :check-on-click-node="true" show-checkbox node-key="departmentId" :props="defaultProps" :expand-on-click-node="false" class="tree" :render-after-expand="true" @check-change="handleCheckChange" @check="handleCheck">
<span class="custom-tree-node" slot-scope="{ node }"> <span class="custom-tree-node" slot-scope="{ node }">
<span class="font-14 color-2f54eb opacity80 iconfont-hb3 iconqiye-tianchong"></span> <span class="font-14 color-2f54eb opacity80 iconfont-hb3 iconqiye-tianchong"></span>
......
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