| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <Tinymce class="setTinymce" :height="200" v-model="value"></Tinymce> |
| | | <!-- 新增弹出框 --> |
| | | <tanchukuang :dialogFormVisible.sync=dialogFormVisible></tanchukuang> |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px"> |
| | | <tanchukuang :dialogFormVisible.sync="dialogFormVisible"></tanchukuang> |
| | | <el-form |
| | | :model="queryParams" |
| | | ref="queryForm" |
| | | size="small" |
| | | :inline="true" |
| | | v-show="showSearch" |
| | | label-width="100px" |
| | | > |
| | | <el-form-item label="搜索" prop="zjhm"> |
| | | <el-input v-model="queryParams.zjhm" placeholder="请输入搜索内容" clearable @keyup.enter.native="handleQuery"/> |
| | | <el-input |
| | | v-model="queryParams.zjhm" |
| | | 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 type="primary" icon="el-icon-search" size="mini" @click="addPlan">添加</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 |
| | | type="primary" |
| | | icon="el-icon-search" |
| | | size="mini" |
| | | @click="addPlan" |
| | | >添加</el-button |
| | | > |
| | | <el-button icon="el-icon-refresh" size="mini" @click="resetQuery" |
| | | >重置</el-button |
| | | > |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-table v-loading="loading" :data="senHistoryList" border> |
| | | <el-table-column label="备注" align="center" prop="jdsj" :show-overflow-tooltip="true"/> |
| | | <el-table-column label="反馈渠道" align="center" prop="jdsj" :show-overflow-tooltip="true"/> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="80"> |
| | | <el-table-column |
| | | label="备注" |
| | | align="center" |
| | | prop="jdsj" |
| | | :show-overflow-tooltip="true" |
| | | /> |
| | | <el-table-column |
| | | label="反馈渠道" |
| | | align="center" |
| | | prop="jdsj" |
| | | :show-overflow-tooltip="true" |
| | | /> |
| | | <el-table-column |
| | | label="操作" |
| | | align="center" |
| | | class-name="small-padding fixed-width" |
| | | width="80" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | | size="mini" |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import Tinymce from "@/components/Tinymce.vue"; |
| | | import tanchukuang from './components/tanchukuang.vue'; |
| | | import Tinymce from "@/components/Tinymce.vue"; |
| | | import tanchukuang from "./components/tanchukuang.vue"; |
| | | export default { |
| | | name: "Tags", |
| | | components: { |
| | | tanchukuang, |
| | | Tinymce |
| | | Tinymce, |
| | | }, |
| | | data() { |
| | | return { |
| | | value: '', |
| | | value: "", |
| | | dialogFormVisible: false, |
| | | senHistoryList: [], |
| | | // 遮罩层 |
| | |
| | | }, |
| | | methods: { |
| | | addPlan() { |
| | | this.dialogFormVisible = true |
| | | this.dialogFormVisible = true; |
| | | }, |
| | | /** 查询宣教对应标签列表 */ |
| | | getList() { |