|
@@ -0,0 +1,422 @@
|
|
|
+<template>
|
|
|
+ <template-page
|
|
|
+ ref="pageRef"
|
|
|
+ :getList="getList"
|
|
|
+ :exportList="exportList"
|
|
|
+ :columnParsing="columnParsing"
|
|
|
+ :optionsEvensGroup="optionsEvensGroup"
|
|
|
+ :tableAttributes="tableAttributes"
|
|
|
+ :tableEvents="tableEvents"
|
|
|
+ :operation="operation()"
|
|
|
+ >
|
|
|
+ <div class="cartographer_big">
|
|
|
+ <el-dialog title="配置" width="100%" :modal="false" :visible.sync="formBool" :before-close="handleClose">
|
|
|
+ <zj-page-container v-if="formBool">
|
|
|
+ <zj-page-fill class="neibuview">
|
|
|
+ <zj-form-container
|
|
|
+ ref="formRef"
|
|
|
+ :form-data="formData"
|
|
|
+ :form-rules="formRules"
|
|
|
+ :form-attributes="{ size: 'mini' }"
|
|
|
+ >
|
|
|
+ <zj-form-module title="基础信息" :form-data="formData" :form-items="items" />
|
|
|
+ <zj-form-module title="网点信息" :form-data="formData" :form-items="items2" />
|
|
|
+ </zj-form-container>
|
|
|
+ </zj-page-fill>
|
|
|
+ <!-- 操作按钮 -->
|
|
|
+ <div style="box-sizing: border-box; padding: 10px; text-align: right">
|
|
|
+ <el-button size="mini" @click="handleClose">取 消</el-button>
|
|
|
+ <el-button v-if="~[0, 1].indexOf(formType)" size="mini" @click="formConfirm" type="primary"
|
|
|
+ >发 送</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </zj-page-container>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+ </template-page>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
+import import_mixin from '@/components/template/import_mixin.js'
|
|
|
+import pagingTransfer from '@/components/paging-transfer.vue'
|
|
|
+import {
|
|
|
+ noticeWebsitList,
|
|
|
+ noticeWebsitListExport,
|
|
|
+ noticeWebsitAdd,
|
|
|
+ noticeWebsitUpdate,
|
|
|
+ noticeWebsitDetail,
|
|
|
+ noticeWebsitOfOrSend
|
|
|
+} from '@/api/networkNotification'
|
|
|
+import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
+import { required } from '@/components/template/rules_verify.js'
|
|
|
+import { getWebsit } from '@/api/customerManagement.js'
|
|
|
+import { EventBus } from '@/utils/eventBus'
|
|
|
+import ImageUpload from '@/components/file-upload'
|
|
|
+export default {
|
|
|
+ components: { TemplatePage, ImageUpload },
|
|
|
+ mixins: [import_mixin, operation_mixin],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 表格属性
|
|
|
+ tableAttributes: {
|
|
|
+ selectColumn: false
|
|
|
+ },
|
|
|
+ // 表格事件
|
|
|
+ tableEvents: {
|
|
|
+ 'selection-change': this.selectionChange
|
|
|
+ },
|
|
|
+ recordSelected: [],
|
|
|
+ formBool: false,
|
|
|
+ formType: 0,
|
|
|
+ formData: {
|
|
|
+ adminCompanyId: '',
|
|
|
+ adminCompanyName: '',
|
|
|
+ code: '',
|
|
|
+ content: '',
|
|
|
+ deptName: '',
|
|
|
+ issueNickName: '',
|
|
|
+ issueTime: '',
|
|
|
+ issueUserId: '',
|
|
|
+ noticeWebsitId: '',
|
|
|
+ num: '',
|
|
|
+ status: 'SEND',
|
|
|
+ title: '',
|
|
|
+ type: '',
|
|
|
+ websitIds: [],
|
|
|
+ websits: [],
|
|
|
+ file: []
|
|
|
+ },
|
|
|
+ formRules: {},
|
|
|
+ formInline: {
|
|
|
+ websitId: '',
|
|
|
+ websitName: ''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ optionsEvensGroup() {
|
|
|
+ return [
|
|
|
+ [
|
|
|
+ [
|
|
|
+ this.optionsEvensAuth('add', {
|
|
|
+ click: () => {
|
|
|
+ this.openWindow(() => {
|
|
|
+ this.formType = 0
|
|
|
+ this.formBool = true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
+ items() {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ name: 'el-select',
|
|
|
+ md: 12,
|
|
|
+ name: 'el-radio',
|
|
|
+ options: [
|
|
|
+ { label: '管理', value: 'GL' },
|
|
|
+ { label: '技术', value: 'JS' },
|
|
|
+ { label: '其他', value: 'QT' },
|
|
|
+ { label: '政策', value: 'ZC' },
|
|
|
+ { label: '资讯', value: 'ZX' }
|
|
|
+ ],
|
|
|
+ attributes: {
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '通知类型',
|
|
|
+ prop: 'type',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 12,
|
|
|
+ attributes: {
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '来源部门',
|
|
|
+ prop: 'deptName',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 12,
|
|
|
+ attributes: {
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '文件编号',
|
|
|
+ prop: 'code',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 12,
|
|
|
+ attributes: {
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '文件标题',
|
|
|
+ prop: 'title',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'slot-component',
|
|
|
+ md: 24,
|
|
|
+ attributes: { disabled: this.disabled },
|
|
|
+ formItemAttributes: { label: '通知内容', prop: 'content', rules: [...required] },
|
|
|
+ render: (h, { props }) => {
|
|
|
+ var { formData } = props
|
|
|
+ return (
|
|
|
+ <v-quill-editor
|
|
|
+ value={formData.content}
|
|
|
+ onInput={val => {
|
|
|
+ formData.content = val
|
|
|
+ }}
|
|
|
+ ></v-quill-editor>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ md: 24,
|
|
|
+ isShow: true,
|
|
|
+ name: 'slot-component',
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '附件',
|
|
|
+ prop: 'file',
|
|
|
+ rules: []
|
|
|
+ },
|
|
|
+ render: (h, { props, onInput }) => {
|
|
|
+ var { value } = props
|
|
|
+ return <ImageUpload fileList={this.formData.file} uid="idcardUpUrl_drawg_FUJIAN" limit={100} />
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ items2() {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ name: 'slot-component',
|
|
|
+ md: 24,
|
|
|
+ attributes: {},
|
|
|
+ formItemAttributes: { label: '', 'label-width': '0px', prop: 'websits', rules: [...required] },
|
|
|
+ render: (h, { props, onInput }) => {
|
|
|
+ var { formData } = props
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ <div>
|
|
|
+ <el-form
|
|
|
+ size="mini"
|
|
|
+ inline={true}
|
|
|
+ value={this.formInline}
|
|
|
+ onInput={v => {
|
|
|
+ this.formInline = v
|
|
|
+ }}
|
|
|
+ label-width="0px"
|
|
|
+ >
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-input
|
|
|
+ value={this.formInline.websitId}
|
|
|
+ onInput={v => {
|
|
|
+ this.formInline.websitId = v
|
|
|
+ }}
|
|
|
+ placeholder="网点编号"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-input
|
|
|
+ value={this.formInline.websitName}
|
|
|
+ onInput={v => {
|
|
|
+ this.formInline.websitName = v
|
|
|
+ }}
|
|
|
+ placeholder="网点名称"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ onClick={() => {
|
|
|
+ EventBus.$emit('handlePaginationCallBack22')
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 查询
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ onClick={() => {
|
|
|
+ this.formInline.websitId = ''
|
|
|
+ this.formInline.websitName = ''
|
|
|
+ this.$nextTick(() => {
|
|
|
+ EventBus.$emit('handlePaginationCallBack22')
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <pagingTransfer
|
|
|
+ handlePaginationCallBackKey="handlePaginationCallBack22"
|
|
|
+ value={this.formData.websits}
|
|
|
+ onInput={v => {
|
|
|
+ this.formData.websits = v
|
|
|
+ }}
|
|
|
+ left-columns={[
|
|
|
+ { id: 'belongCompanyCode', label: '所属公司编号', width: '160' },
|
|
|
+ { id: 'websitId', label: '网点编号', width: '120' },
|
|
|
+ { id: 'websitName', label: '网点名称', width: '' }
|
|
|
+ ]}
|
|
|
+ right-columns={[
|
|
|
+ { id: 'belongCompanyCode', label: '所属公司编号', width: '160' },
|
|
|
+ { id: 'websitId', label: '网点编号', width: '120' },
|
|
|
+ { id: 'websitName', label: '网点名称', width: '' }
|
|
|
+ ]}
|
|
|
+ show-pagination={false}
|
|
|
+ pagination-call-back={this.paginationCallback}
|
|
|
+ title-texts={['待选项', '已选项']}
|
|
|
+ min-height="300px"
|
|
|
+ table-row-key={row => row.websitId}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 列表请求函数
|
|
|
+ getList: noticeWebsitList,
|
|
|
+ // 导出
|
|
|
+ exportList: noticeWebsitListExport,
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
+ return defaultData
|
|
|
+ },
|
|
|
+ // 获取勾选框数据
|
|
|
+ selectionChange(data) {
|
|
|
+ this.recordSelected = data
|
|
|
+ },
|
|
|
+ handleClose() {
|
|
|
+ this.$refs?.pageRef?.refreshList()
|
|
|
+ this.$data.formData = this.$options.data().formData
|
|
|
+ this.formType = 0
|
|
|
+ this.formBool = false
|
|
|
+ },
|
|
|
+ formConfirm() {
|
|
|
+ this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
|
|
|
+ if (valid) {
|
|
|
+ ;(this.formType ? noticeWebsitUpdate : noticeWebsitAdd)({
|
|
|
+ ...this.formData,
|
|
|
+ websitIds: this.formData.websits.map(item => item.websitId),
|
|
|
+ file: this.formData.file.map(item => item.url).join(',')
|
|
|
+ }).then(res => {
|
|
|
+ this.$message({ type: 'success', message: '成功!' })
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.handleClose()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ operation() {
|
|
|
+ return this.operationBtn({
|
|
|
+ details: {
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.openWindow(() => {
|
|
|
+ noticeWebsitDetail({
|
|
|
+ id: row.id
|
|
|
+ }).then(res => {
|
|
|
+ this.formData = { ...res.data }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ publish: {
|
|
|
+ prompt: '确定发布吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.status !== 'SEND'
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ noticeWebsitOfOrSend({
|
|
|
+ id: row.id,
|
|
|
+ status: 'SEND'
|
|
|
+ }).then(res => {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '操作成功!'
|
|
|
+ })
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ close: {
|
|
|
+ prompt: '确定关闭吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.status !== 'OFF'
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ noticeWebsitOfOrSend({
|
|
|
+ id: row.id,
|
|
|
+ status: 'OFF'
|
|
|
+ }).then(res => {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '操作成功!'
|
|
|
+ })
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ openWindow(cb) {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ cb?.()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ paginationCallback({ pageIndex, pageSize }) {
|
|
|
+ return new Promise(resolve => {
|
|
|
+ getWebsit({ ...this.formInline }).then(res => {
|
|
|
+ resolve({
|
|
|
+ total: res.data.filter(item => item.type == 'C').length,
|
|
|
+ data: res.data
|
|
|
+ .filter(item => item.type == 'C')
|
|
|
+ .map(item => {
|
|
|
+ return {
|
|
|
+ ...item,
|
|
|
+ websitName: item.name
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.neibuview {
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-left: 16px;
|
|
|
+
|
|
|
+ ::v-deep & > .zj-page-fill-scroll {
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-right: 16px;
|
|
|
+
|
|
|
+ & > div:nth-child(1) {
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|