123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="标题" prop="title">
- <el-input
- v-model="queryParams.title"
- placeholder="请输入标题"
- clearable
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
-
- <!-- <el-form-item label="来源" prop="datasourceName">
- <el-select v-model="queryParams.datasourceName" placeholder="来源" clearable>
- <el-option
- v-for="dict in dict.type.sys_yes_no"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item> -->
- <!-- <el-form-item label="时间" prop="docSrcTime">
-
- <el-date-picker
- v-model="dateRange"
- style="width: 340px"
- value-format="yyyy-MM-dd"
- type="datetimerange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
-
- </el-form-item> -->
-
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- <el-button type="primary" icon="el-icon-s-claim" size="mini" @click="handleGetApplyTpl">获取申请模板</el-button>
- <el-button type="primary" icon="el-icon-s-claim" size="mini" @click="handleSubmitApply">提交申请</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['system:config:add']"
- >新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['system:config:edit']"
- >修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['system:config:remove']"
- >删除</el-button>
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['system:config:export']"
- >导出</el-button>
- </el-col> -->
-
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="configList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="姓名" align="center" prop="title" >
- <template slot-scope="scope">
- <!-- <i class="el-icon el-icon-sort-up" v-if="scope.row.isTop==1"></i> -->
- {{scope.row.title}}
- </template>
- </el-table-column>
- <el-table-column label="申请时间" align="center" prop="docSrcTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.docSrcTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="手机号码" align="center" prop="datasourceName" :show-overflow-tooltip="true" ></el-table-column>
- <el-table-column label="单位名称" align="center" prop="content" :show-overflow-tooltip="true" />
-
- <el-table-column label="简述" align="center" prop="url" :show-overflow-tooltip="true" />
-
- <el-table-column label="申请时间" align="center" prop="docSrcTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.docSrcTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="审核状态" align="center" prop="pageViewNum" :show-overflow-tooltip="true" />
- <el-table-column label="处理时间" align="center" prop="pageViewNum" :show-overflow-tooltip="true" />
- <el-table-column label="审核备注" align="center" prop="pageViewNum" :show-overflow-tooltip="true" />
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleLook(scope.row)"
- v-hasPermi="['system:config:edit']"
- >查看</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['system:config:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['system:config:remove']"
- >删除</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdateViewNum(scope.row)"
- v-hasPermi="['system:config:edit']"
- >编辑浏览量</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNo"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改参数配置对话框 -->
- <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body :fullscreen="true">
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-form-item label="是否住院" prop="status">
- <el-select v-model="form.status" placeholder="是否住院" clearable @change="changeShifouInhospital">
- <el-option
- v-for="dict in dict.type.sys_yes_no"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="标题" prop="title" v-if="form.status=='Y'">
- <el-input v-model="form.title" placeholder="请输入标题" />
- </el-form-item>
- <!-- <el-form-item label="来源" prop="datasourceName">
-
- <el-input v-model="form.datasourceName" placeholder="请输入来源" />
- </el-form-item> -->
- <el-form-item label="文章时间" prop="docSrcTime" v-if="form.status=='Y'">
- <el-date-picker
- type="datetime"
- v-model="form.docSrcTime"
- style="width: 240px"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="请选择发布时间"
- ></el-date-picker>
-
- </el-form-item>
- <el-form-item label="地址" prop="url" v-if="form.status=='Y'">
- <el-input v-model="form.url" placeholder="请输入地址" />
- </el-form-item>
-
-
- <el-form-item label="内容" prop="content" v-if="form.status=='Y'">
-
- <editor v-model="form.content" :min-height="292"/>
- </el-form-item>
- <el-form-item label="排序" v-if="form.status=='Y'">
-
- <el-input-number v-model="form.orderNum" controls-position="right" :min="1" :max="10000"></el-input-number>
- </el-form-item>
-
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog title="获取申请模板" :visible.sync="openApplyTpl" width="800px" append-to-body >
- <el-form ref="formViewNum" :model="formApplyTpl" :rules="rules" label-width="120px">
- <el-form-item label="所患疾病" prop="status">
- <el-select v-model="formApplyTpl.status" placeholder="所患疾病" clearable>
- <el-option
- v-for="dict in dict.type.sys_normal_disable"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="个人外网邮箱" prop="title">
- <el-input v-model="formApplyTpl.pageViewNum" placeholder="请输入个人外网邮箱" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFormViewNum">确 定</el-button>
- <el-button @click="cancelApplyTpl">取 消</el-button>
- </div>
- </el-dialog>
- <el-drawer
- title="查看"
- :visible.sync="drawer"
- direction="rtl" size='50%'>
- <div style="margin:20px;">
- <div><h2>{{form.title}}</h2></div>
- <div style="color:#666;margin-top: 20px;font-size:12px;">来源地址:{{form.url}}</div>
- <div style="margin-top: 20px;" v-html="form.content"></div>
- </div>
- </el-drawer>
- </div>
- </template>
- <script>
- import { list, getConfig, del, add, update, refreshCache, updateViewNum, addViewNum } from "@/api/business/inhospital";
- export default {
- name: "Config",
- dicts: ['sys_yes_no','sys_normal_disable'],
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 参数表格数据
- configList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- openApplyTpl:false,
- drawer: false,
- // 日期范围
- dateRange: [],
- // 查询参数
- queryParams: {
- pageIndex: 1,
- pageSize: 10,
- title: undefined,
- datasourceName: undefined
- },
- // 表单参数
- form: {
- // isTop: '0',
- // orderNum: '0',
- docId: null,
- url: '',
- content: ''
- },
- // 表单校验
- rules: {
- title: [
- { required: true, message: "标题不能为空", trigger: "blur" }
- ],
- // url: [
- // { required: true, message: "来源地址不能为空", trigger: "blur" }
- // ],
- docSrcTime: [
- { required: true, message: "时间不能为空", trigger: "blur" }
- ]
- ,
- content: [
- { required: true, message: "内容不能为空", trigger: "blur" }
- ]
- },
- formApplyTpl:{
- pageViewNum: null,
- docId: null
- }
- };
- },
- created() {
- this.getList();
- // this.form = {
- // title: '测试',
- // url: 'www.baidu.com',
- // content: '<p><b>aaaaa</b></p>'
- // }
- },
- methods: {
- changeShifouInhospital(val){
- if(val == 'Y'){
- }else{
- this.$alert('对符合慰问条件,患本办法规定范围内的38种指定重大疾病且每年首次住院的工会会员,给予一次性2000元慰问金,对每年首次因其他疾病住院的工会会员给予500元慰问金。', '说明', {
- confirmButtonText: '确定',
- callback: action => {
-
- }
- });
- }
- },
- handleSubmitApply(){
- this.open = true;
- },
- /** 查询参数列表 */
- getList() {
- this.loading = true;
- list(this.queryParams).then(response => {
- this.configList = response.rows;
- this.total = response.count;
- this.loading = false;
- }
- );
-
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- docId: undefined,
- title: undefined,
-
- url: undefined,
- content: undefined,
- // isTop: '0',
- // orderNum: '0'
- };
- this.resetForm("form");
- },
- handleGetApplyTpl(){
- this.openApplyTpl = true;
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNo = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.resetForm("queryForm");
- this.handleQuery();
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加文章";
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.configId)
- this.single = selection.length!=1
- this.multiple = !selection.length
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const configId = row.docId
- // getDetail(configId).then(response => {
- // this.form = response.data;
- this.form = row;
- this.open = true;
- this.title = "修改文章";
- // });
- },
-
- handleLook(row){
- this.drawer = true;
- this.form =row;
- addViewNum({
- docId: row.docId
- }).then(res=>{
- console.log('增加文章阅读量:', res)
- })
- },
- submitFormViewNum(){
- this.$refs["formViewNum"].validate(valid => {
- if (valid) {
- if (this.form.docId != undefined) {
- updateViewNum(this.formViewNum).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.openViewNum = false;
- this.getList();
- });
-
-
- }
- }
- });
- },
- cancelApplyTpl(){
- this.openApplyTpl = false;
- this.formApplyTpl.docId = null;
- this.formApplyTpl.pageViewNum = null;
- },
- /** 提交按钮 */
- submitForm: function() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.docId != undefined) {
- update(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- add(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- // const configIds = row.id || this.ids;
- this.$modal.confirm('是否确认删除该条记录?').then(function() {
- return del({
- docId: row.docId
- });
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('system/config/export', {
- ...this.queryParams
- }, `config_${new Date().getTime()}.xlsx`)
- },
- /** 刷新缓存按钮操作 */
- handleRefreshCache() {
- refreshCache().then(() => {
- this.$modal.msgSuccess("刷新成功");
- });
- }
- }
- };
- </script>
|