lkk
2024-11-13 e758b0a9e0d8024dd83756945530d3efff77e17e
src/views/pages/workManage/myPlan.vue
@@ -1,22 +1,62 @@
<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"
@@ -53,17 +93,17 @@
</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: [],
      // 遮罩层
@@ -100,7 +140,7 @@
  },
  methods: {
    addPlan() {
      this.dialogFormVisible = true
      this.dialogFormVisible = true;
    },
    /** 查询宣教对应标签列表 */
    getList() {