index.vue 10.6 KB
Newer Older
qzhxx's avatar
qzhxx committed
1 2 3
<template>
  <div class="listPage H100">
    <div class="search-container">
xulili's avatar
xulili committed
4 5
      <el-form :inline="true" :model="form" ref="form" onsubmit="return false;">
        <el-form-item>
qzhxx's avatar
qzhxx committed
6
          <el-input
qzhxx's avatar
qzhxx committed
7
            placeholder="请输入学习项目名称"
qzhxx's avatar
qzhxx committed
8 9 10 11 12
            v-model="form.name"
            @keyup.enter.native="Search"
            clearable
          ></el-input>
        </el-form-item>
xulili's avatar
xulili committed
13
        <el-form-item>
qzhxx's avatar
qzhxx committed
14
          <el-date-picker
xulili's avatar
xulili committed
15
            value-format="yyyy-MM-dd"
qzhxx's avatar
qzhxx committed
16 17 18 19 20 21 22 23 24
            v-model="value1"
            type="daterange"
            range-separator="至"
            start-placeholder="开始日期"
            end-placeholder="结束日期"
          ></el-date-picker>
        </el-form-item>
        <el-form-item>
          <div class="btn-group">
xulili's avatar
xulili committed
25 26 27 28
            <el-button type="primary" class="btn_form_search" @click="Search"
              >查询</el-button
            >
            <el-button class="btn_form_search" @click="Reset">重置</el-button>
qzhxx's avatar
qzhxx committed
29 30 31 32 33
          </div>
        </el-form-item>
      </el-form>
      <div class="page-tip">
        <span class="page-tip-title">页面说明:</span>
xulili's avatar
xulili committed
34 35 36
        <span class="page-tips"
          >展示系统所有的学习项目,可按照时间及相关名称进行快速信息搜索。</span
        >
qzhxx's avatar
qzhxx committed
37 38 39 40
      </div>
    </div>
    <div class="table-content">
      <div class="btn-group">
41
        <el-button type="primary" @click="addPermis()">新建学习项目</el-button>
qzhxx's avatar
qzhxx committed
42 43 44 45
      </div>
      <div class="party-table">
        <el-table
          border
xulili's avatar
xulili committed
46 47
          style="width: 100%; height: 100%"
          height="100%"
qzhxx's avatar
qzhxx committed
48 49 50
          ref="multipleTable"
          :data="tableData"
        >
xulili's avatar
xulili committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
          <el-table-column
            type="index"
            width="120"
            label="序号"
          ></el-table-column>
          <el-table-column label="学习项目名称" prop="name"></el-table-column>
          <el-table-column label="创建时间" prop="createTime"></el-table-column>
          <el-table-column
            label="相关学习内容"
            prop="learningContentNames"
          ></el-table-column>
          <el-table-column label="备注" prop="remarks"></el-table-column>
          <el-table-column label="操作" header-align="center" align="center">
            <template slot-scope="scope" width="220">
              <div class="table-btn-group">
qzhxx's avatar
qzhxx committed
66 67 68 69 70 71 72 73 74 75 76
                <el-tooltip content="修改" placement="top">
                  <el-button circle @click="openEdit(scope.row)">
                    <i class="icon-table icon-edit"></i>
                  </el-button>
                </el-tooltip>
                <el-tooltip content="删除" placement="top">
                  <el-button circle @click="handleDelete(scope.row)">
                    <i class="icon-table icon-del"></i>
                  </el-button>
                </el-tooltip>
              </div>
xulili's avatar
xulili committed
77 78
            </template>
          </el-table-column>
qzhxx's avatar
qzhxx committed
79 80
        </el-table>
      </div>
xulili's avatar
xulili committed
81
      <div class="partyt-pagination">
qzhxx's avatar
qzhxx committed
82 83 84 85 86 87 88 89
        <el-pagination
          background
          @current-change="handleCurrentChange"
          :current-page="page.currentPage"
          :page-size="page.pageSize"
          layout="prev, pager, next, jumper"
          :total="page.total"
        ></el-pagination>
xulili's avatar
xulili committed
90
      </div>
qzhxx's avatar
qzhxx committed
91
    </div>
xulili's avatar
xulili committed
92 93 94 95 96 97 98 99 100
    <!--新增弹框-->
    <el-dialog
      title="新建"
      custom-class="party-dialog"
      width="468px"
      :visible.sync="FormVisible1"
      :before-close="close"
    >
      <div class="dialog-content">
qzhxx's avatar
qzhxx committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
        <el-form
          :model="classForm"
          ref="classForm"
          label-width="80px"
          label-position="top"
          :rules="rules"
          id="ruleo"
          class="party-form"
        >
          <el-form-item label="视频分类名称" prop="name">
            <el-input v-model="classForm.name"></el-input>
          </el-form-item>
          <el-form-item label="备注">
            <el-input type="textarea" v-model="classForm.remarks"></el-input>
          </el-form-item>
        </el-form>
      </div>
      <div slot="footer" class="dialog-footer btn-group">
xulili's avatar
xulili committed
119 120 121 122 123 124 125
        <el-button size="mini" v-show="type" type="primary" @click="handleSubmit('save')"
          >确定</el-button
        >
        <el-button size="mini" v-show="!type" type="primary" @click="handleSubmit('edit')"
          >确定</el-button
        >
        <el-button size="mini" @click="close">取 消</el-button>
qzhxx's avatar
qzhxx committed
126
      </div>
xulili's avatar
xulili committed
127
    </el-dialog>
qzhxx's avatar
qzhxx committed
128 129 130 131 132 133
  </div>
</template>
<script>
export default {
  data() {
    return {
xulili's avatar
xulili committed
134
      type: true,
qzhxx's avatar
qzhxx committed
135 136 137 138 139 140 141
      value1: "",
      page: { currentPage: 1, pageSize: 10, total: 0 },
      tableData: [],
      FormVisible: false,
      FormVisible1: false,
      formLabelWidth: "100px",
      form: {
xulili's avatar
xulili committed
142
        name: "",
qzhxx's avatar
qzhxx committed
143 144 145 146 147 148
      },
      editform: {
        menuName: "",
        menuUrl: "",
        parentId: "",
        sort: "",
xulili's avatar
xulili committed
149
        id: "",
qzhxx's avatar
qzhxx committed
150 151
      },
      classForm: {
xulili's avatar
xulili committed
152 153 154
        id: "",
        name: "",
        remarks: "",
qzhxx's avatar
qzhxx committed
155 156 157
      },
      typeList: [],
      rules: {
xulili's avatar
xulili committed
158 159
        name: [
          { required: true, message: "请输入学习项目名称", trigger: "blur" },
qzhxx's avatar
qzhxx committed
160 161 162
        ],
      },
      value: "",
xulili's avatar
xulili committed
163
      name: "",
qzhxx's avatar
qzhxx committed
164 165 166 167 168 169 170 171 172 173 174 175 176
    };
  },
  computed: {},
  mounted() {
    this.onSearch();
  },
  components: {},
  methods: {
    // 获得数据接口
    getTableData(param) {
      let vm = this;
      vm.$https(
        {
177
          url: "learningProject/getPageList",
qzhxx's avatar
qzhxx committed
178
          method: "post",
xulili's avatar
xulili committed
179
          authType: this.backToken,
qzhxx's avatar
qzhxx committed
180 181 182 183
        },
        vm.$qs.stringify(param)
        // param
      )
xulili's avatar
xulili committed
184
        .then((res) => {
qzhxx's avatar
qzhxx committed
185 186 187 188 189
          let data = res.data.data;
          vm.page.pageSize = data.size;
          vm.page.total = data.total;
          vm.tableData = data.records;
        })
xulili's avatar
xulili committed
190
        .catch(function (err) {
qzhxx's avatar
qzhxx committed
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
          console.log(err);
        });
    },
    // 分页
    handleCurrentChange(val) {
      let _this = this;
      _this.page.currentPage = val;
      _this.onSearch();
    },
    onSearch() {
      let _this = this;
      let param = _this.getSearchQuery();
      _this.getTableData(param);
    },
    Search() {
      let _this = this;
      _this.page.currentPage = 1;
      let searchObj = {
        _index: 1,
        _size: _this.page.pageSize,
qzhxx's avatar
qzhxx committed
211
        name: _this.form.name,
xulili's avatar
xulili committed
212 213
        startDate: this.value1 ? this.value1[0] : "",
        endDate: this.value1 ? this.value1[1] : "",
qzhxx's avatar
qzhxx committed
214 215 216 217
      };
      this.getTableData(searchObj);
    },
    // 重置
xulili's avatar
xulili committed
218 219 220
    Reset() {
      this.form = {};
      this.Search();
qzhxx's avatar
qzhxx committed
221 222 223 224 225 226
    },
    // // 获取当前查询参数
    getSearchQuery() {
      let _this = this;
      let searchObj = {
        _index: _this.page.currentPage,
xulili's avatar
xulili committed
227
        _size: _this.page.pageSize,
qzhxx's avatar
qzhxx committed
228 229 230 231 232 233 234 235 236 237 238
      };
      for (let key in _this.form) {
        if (_this.form[key]) {
          searchObj[key] = _this.form[key];
        }
      }
      return searchObj;
    },
    // 添加
    addPermis() {
      // this.$router.push({ path: "videoContentAdd", query: { type: "add" } });
xulili's avatar
xulili committed
239
      $(".el-dialog__title").html("新建");
qzhxx's avatar
qzhxx committed
240
      this.FormVisible1 = true;
xulili's avatar
xulili committed
241
      this.type = true;
qzhxx's avatar
qzhxx committed
242
    },
xulili's avatar
xulili committed
243 244 245 246 247 248 249 250 251 252 253 254
    handleSubmit(type) {
      let httpUrl, httpMethod,requestParams;
      if (type === "save") {
        httpUrl = "learningProject/save";
        httpMethod = "post";
      }
      if (type === "edit") {
        httpUrl = "learningProject/update";
        httpMethod = "put";
      }
      requestParams = {...this.classForm}
      this.handleSave(httpUrl,httpMethod,requestParams)
qzhxx's avatar
qzhxx committed
255
    },
xulili's avatar
xulili committed
256
    handleSave(url,method,requestParams){
qzhxx's avatar
qzhxx committed
257
      let _this = this;
xulili's avatar
xulili committed
258
       _this.$refs.classForm.validate((valid) => {
qzhxx's avatar
qzhxx committed
259
        if (valid) {
xulili's avatar
xulili committed
260 261 262 263 264 265 266
          _this.$https(
              {
                url: url,
                method: method,
                authType: this.backToken,
              },
              _this.$qs.stringify(requestParams)
qzhxx's avatar
qzhxx committed
267 268
            )
            .then(
xulili's avatar
xulili committed
269
              (res) => {
270
                if (res.data.resultCode == 200 || res.data.resultCode == 201) {
qzhxx's avatar
qzhxx committed
271 272
                  _this.$message({
                    type: "success",
xulili's avatar
xulili committed
273
                    message: res.data.message,
qzhxx's avatar
qzhxx committed
274 275 276 277 278 279 280 281 282 283 284
                  });
                  //跳回用户列表
                  _this.onSearch();
                  _this.FormVisible1 = false;
                  for (let key in _this.classForm) {
                    _this.classForm[key] = null;
                  }
                  _this.$refs["classForm"].resetFields();
                } else {
                  _this.$message({
                    type: "error",
xulili's avatar
xulili committed
285
                    message: res.data.msg,
qzhxx's avatar
qzhxx committed
286 287 288
                  });
                }
              },
xulili's avatar
xulili committed
289
              (error) => {
qzhxx's avatar
qzhxx committed
290 291
                _this.$message({
                  type: "error",
xulili's avatar
xulili committed
292
                  message: error,
qzhxx's avatar
qzhxx committed
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
                });
              }
            );
        }
      });
    },
    // 编辑关闭
    close() {
      this.FormVisible1 = false;
      for (let key in this.classForm) {
        this.classForm[key] = null;
      }
      this.$refs["classForm"].resetFields();
    },
    // 编辑弹框
    openEdit(row) {
xulili's avatar
xulili committed
309 310 311
      this.type = false;
      $(".el-dialog__title").html("编辑");
      let _this = this;
qzhxx's avatar
qzhxx committed
312
      _this.FormVisible1 = true;
xulili's avatar
xulili committed
313
      this.getAssetTypeInfo(row.id);
qzhxx's avatar
qzhxx committed
314 315
    },
    // 获取视频分类详情
xulili's avatar
xulili committed
316
    getAssetTypeInfo(id) {
qzhxx's avatar
qzhxx committed
317 318 319
      let vm = this;
      vm.$https(
        {
320
          url: "learningProject/get/" + id,
qzhxx's avatar
qzhxx committed
321
          method: "get",
xulili's avatar
xulili committed
322 323
          authType: this.backToken,
        }
qzhxx's avatar
qzhxx committed
324 325
        // param
      )
xulili's avatar
xulili committed
326
        .then((res) => {
qzhxx's avatar
qzhxx committed
327
          let data = res.data.data;
xulili's avatar
xulili committed
328 329 330
          this.classForm.id = data.id;
          this.classForm.name = data.name;
          this.classForm.remarks = data.remarks;
qzhxx's avatar
qzhxx committed
331
        })
xulili's avatar
xulili committed
332
        .catch(function (err) {
qzhxx's avatar
qzhxx committed
333 334 335 336 337 338 339 340 341 342 343 344 345
          console.log(err);
        });
    },
    openDetails() {
      let _this = this;
      _this.FormVisible = true;
    },
    // 删除
    handleDelete(row) {
      let _this = this;
      this.$confirm("此操作将永久删除, 是否继续?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
xulili's avatar
xulili committed
346
        type: "warning",
qzhxx's avatar
qzhxx committed
347 348 349 350
      })
        .then(() => {
          _this
            .$https({
xulili's avatar
xulili committed
351 352 353
              method: "delete",
              url: "learningProject/delete/" + row.id,
              authType: this.backToken,
qzhxx's avatar
qzhxx committed
354 355
            })
            .then(
xulili's avatar
xulili committed
356 357 358
              (res) => {
                this.$message({ type: "success", message: "删除成功!" });
                _this.Search();
qzhxx's avatar
qzhxx committed
359
              },
xulili's avatar
xulili committed
360 361 362 363 364 365
              (error) => {
                this.$message({
                  type: "fail",
                  message: "删除失败!" + error.response.data,
                });
              }
qzhxx's avatar
qzhxx committed
366
            );
xulili's avatar
xulili committed
367 368
        })
        .catch(() => {});
qzhxx's avatar
qzhxx committed
369 370 371 372 373 374 375
    }
  }
};
</script>

<style lang="less">
@import "../../../../style/dialog.less";
xulili's avatar
xulili committed
376 377
@import "../../../../style/table.less";
@import "../../../../style/pagination.less";
qzhxx's avatar
qzhxx committed
378
</style>