123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- import {defineComponent, onMounted, reactive, ref} from 'vue'
- import SaveForm from '@components/save-form'
- import {DataTableRowKey, NButton, NDataTable, NDatePicker, NDescriptions, NDescriptionsItem, NFormItem, NInput, NSelect, NSpace, NTag, useDialog, useMessage} from 'naive-ui'
- import Pagination from '@components/pagination'
- import {getMapValueByKey, getSelectDataFromObj} from '@/utils/objectUtil'
- import {appKey, clientType, messageSenderFunctionModule, messageSenderMode, musicSheetSourceType, musicSheetType} from '@/utils/constant'
- import {musicSheetApplicationExtendCategoryList, musicSheetApplicationExtendStatus, sysMessageConfigPage} from '@views/music-library/api'
- import {subjectPage, sysApplicationPage} from '@views/system-manage/api'
- import {filterTimes, getTimes} from "@/utils/dateUtil";
- import TheTooltip from "@components/TheTooltip";
- import {getOwnerName} from "@views/music-library/musicUtil";
- export default defineComponent({
- name: 'wechat-record',
- props: {
- appKey: {
- type: String,
- required: true
- }
- },
- setup(props) {
- const dialog = useDialog()
- const message = useMessage()
- const state = reactive({
- loading: false,
- appId: null as any,
- pagination: {
- page: 1,
- rows: 10,
- pageTotal: 0
- },
- searchForm: {
- description: null, //消息名称
- clientId: null, //客户端
- model: null, // 功能模块
- status: null // 状态
- },
- dataList: []
- })
- onMounted(async () => {
- getList()
- })
- const saveForm = ref()
- const onSearch = () => {
- saveForm.value?.submit()
- }
- const onBtnReset = () => {
- saveForm.value?.reset()
- }
- const onSubmit = () => {
- state.pagination.page = 1
- getList()
- }
- const checkedRowKeysRef = ref<DataTableRowKey[]>([])
- const handleCheck = (rowKeys: DataTableRowKey[]) => {
- checkedRowKeysRef.value = rowKeys
- }
- const getList = async () => {
- try {
- state.loading = true
- const {data} = await sysMessageConfigPage({
- ...state.pagination,
- ...state.searchForm,
- appKey: props.appKey,
- sendMode:'WECHAT',
- })
- state.pagination.pageTotal = Number(data.total)
- state.dataList = data.rows || []
- } catch {
- }
- state.loading = false
- }
- const columns = (): any => {
- return [
- {
- title: '消息名称',
- key: 'description'
- },
- {
- title: '发送时间',
- key: 'sendTime'
- },
- {
- title: '姓名',
- key: 'username'
- },
- {
- title: 'openID',
- key: 'openId'
- },
- {
- title: '消息名称',
- key: 'title'
- },
- {
- title: '消息内容',
- key: 'content',
- render: (row: any) => (
- <>
- <NDescriptions labelPlacement="left" column={1}>
- <NDescriptionsItem label="流程名称">
- {getMapValueByKey(row.sourceType, new Map(Object.entries(musicSheetSourceType)))}
- </NDescriptionsItem>
- <NDescriptionsItem label="流程编号">
- {row.wxTemplateId}
- </NDescriptionsItem>
- <NDescriptionsItem label="申请人">
- <TheTooltip content={getOwnerName(row.musicSheetExtend, row.sourceType)} />
- </NDescriptionsItem>
- <NDescriptionsItem label="申请时间">
- <TheTooltip content={row.createTime} />
- </NDescriptionsItem>
- </NDescriptions>
- </>
- )
- },
- {
- title: '发送对象',
- key: 'clientId',
- render: (row: any) => {
- return (
- <div>
- {getMapValueByKey(row.clientId, new Map(Object.entries(clientType)))}
- </div>
- )
- }
- },
- {
- title: '功能模块',
- key: 'messageType'
- },
- {
- title: '触发条件',
- key: 'triggerCondition'
- },
- ]
- }
- return () => {
- return (
- <div class="system-menu-container">
- <SaveForm
- ref={saveForm}
- model={state.searchForm}
- onSubmit={onSubmit}
- saveKey="wechat-record"
- onSetModel={(val: any) => (state.searchForm = val)}
- >
- <NFormItem label="消息名称" path="description">
- <NInput
- placeholder="请输入消息名称"
- v-model:value={state.searchForm.description}
- clearable
- />
- </NFormItem>
- <NFormItem label="发送对象" path="clientId">
- <NSelect
- placeholder="全部发送对象"
- v-model:value={state.searchForm.clientId}
- options={getSelectDataFromObj(clientType)}
- clearable
- />
- </NFormItem>
- <NFormItem label="功能模块" path="model">
- <NSelect
- filterable
- placeholder="全部功能模块"
- v-model:value={state.searchForm.model}
- options={getSelectDataFromObj(messageSenderFunctionModule)}
- clearable
- ></NSelect>
- </NFormItem>
- <NFormItem label="状态" path="status">
- <NSelect
- v-model:value={state.searchForm.status}
- placeholder="请选择状态"
- options={
- [
- {
- label: '启用',
- value: true
- },
- {
- label: '停用',
- value: false
- }
- ] as any
- }
- clearable
- />
- </NFormItem>
- <NFormItem>
- <NSpace>
- <NButton type="primary" onClick={onSearch}>
- 搜索
- </NButton>
- <NButton type="default" onClick={onBtnReset}>
- 重置
- </NButton>
- </NSpace>
- </NFormItem>
- </SaveForm>
- <div class={['section-container']}>
- <NDataTable
- loading={state.loading}
- columns={columns()}
- data={state.dataList}
- rowKey={(row: any) => row.id}
- scrollX={'1400'}
- ></NDataTable>
- <Pagination
- v-model:page={state.pagination.page}
- v-model:pageSize={state.pagination.rows}
- v-model:pageTotal={state.pagination.pageTotal}
- onList={getList}
- sync
- saveKey="wechat-record"
- ></Pagination>
- </div>
- </div>
- )
- }
- }
- })
|