服务标签
This commit is contained in:
parent
5ec93fec29
commit
c6ac62cb78
|
@ -1,8 +1,4 @@
|
||||||
import {BasicColumn} from '/@/components/Table';
|
import {BasicColumn} from '/@/components/Table';
|
||||||
import {FormSchema} from '/@/components/Table';
|
|
||||||
import { rules} from '/@/utils/helper/validator';
|
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
||||||
//列表数据
|
//列表数据
|
||||||
export const columns: BasicColumn[] = [
|
export const columns: BasicColumn[] = [
|
||||||
{
|
{
|
||||||
|
@ -21,7 +17,7 @@ export const columns: BasicColumn[] = [
|
||||||
dataIndex: 'sort'
|
dataIndex: 'sort'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '是否启用 0启用 1未启用',
|
title: '是否启用',
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'izEnabled_dictText'
|
dataIndex: 'izEnabled_dictText'
|
||||||
},
|
},
|
||||||
|
@ -32,5 +28,5 @@ export const superQuerySchema = {
|
||||||
packageName: {title: '服务指令包名称',order: 0,view: 'text', type: 'string',},
|
packageName: {title: '服务指令包名称',order: 0,view: 'text', type: 'string',},
|
||||||
description: {title: '备注',order: 1,view: 'textarea', type: 'string',},
|
description: {title: '备注',order: 1,view: 'textarea', type: 'string',},
|
||||||
sort: {title: '排序',order: 2,view: 'number', type: 'number',},
|
sort: {title: '排序',order: 2,view: 'number', type: 'number',},
|
||||||
izEnabled: {title: '是否启用 0启用 1未启用',order: 3,view: 'radio', type: 'string',dictCode: 'iz_enabled',},
|
izEnabled: {title: '是否启用',order: 3,view: 'radio', type: 'string',dictCode: 'iz_enabled',},
|
||||||
};
|
};
|
|
@ -0,0 +1,79 @@
|
||||||
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
|
import { useMessage } from "/@/hooks/web/useMessage";
|
||||||
|
|
||||||
|
const { createConfirm } = useMessage();
|
||||||
|
|
||||||
|
enum Api {
|
||||||
|
list = '/serviceTag/serviceTag/list',
|
||||||
|
queryById = '/serviceTag/serviceTag/queryById',
|
||||||
|
save='/serviceTag/serviceTag/add',
|
||||||
|
edit='/serviceTag/serviceTag/edit',
|
||||||
|
deleteOne = '/serviceTag/serviceTag/delete',
|
||||||
|
deleteBatch = '/serviceTag/serviceTag/deleteBatch',
|
||||||
|
importExcel = '/serviceTag/serviceTag/importExcel',
|
||||||
|
exportXls = '/serviceTag/serviceTag/exportXls',
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出api
|
||||||
|
* @param params
|
||||||
|
*/
|
||||||
|
export const getExportUrl = Api.exportXls;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入api
|
||||||
|
*/
|
||||||
|
export const getImportUrl = Api.importExcel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 列表接口
|
||||||
|
* @param params
|
||||||
|
*/
|
||||||
|
export const list = (params) => defHttp.get({ url: Api.list, params });
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 详情接口
|
||||||
|
* @param params
|
||||||
|
*/
|
||||||
|
export const queryById = (params) => defHttp.get({ url: Api.queryById, params });
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除单个
|
||||||
|
* @param params
|
||||||
|
* @param handleSuccess
|
||||||
|
*/
|
||||||
|
export const deleteOne = (params,handleSuccess) => {
|
||||||
|
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
||||||
|
handleSuccess();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除
|
||||||
|
* @param params
|
||||||
|
* @param handleSuccess
|
||||||
|
*/
|
||||||
|
export const batchDelete = (params, handleSuccess) => {
|
||||||
|
createConfirm({
|
||||||
|
iconType: 'warning',
|
||||||
|
title: '确认删除',
|
||||||
|
content: '是否删除选中数据',
|
||||||
|
okText: '确认',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
|
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
||||||
|
handleSuccess();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存或者更新
|
||||||
|
* @param params
|
||||||
|
* @param isUpdate
|
||||||
|
*/
|
||||||
|
export const saveOrUpdate = (params, isUpdate) => {
|
||||||
|
let url = isUpdate ? Api.edit : Api.save;
|
||||||
|
return defHttp.post({ url: url, params }, { isTransformResponse: false });
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
import {BasicColumn} from '/@/components/Table';
|
||||||
|
|
||||||
|
//列表数据
|
||||||
|
export const columns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '服务标签名称',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'tagName'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '备注',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'description'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '排序',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'sort'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '是否启用',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'izEnabled_dictText'
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// 高级查询数据
|
||||||
|
export const superQuerySchema = {
|
||||||
|
tagName: {title: '服务标签名称',order: 0,view: 'text', type: 'string',},
|
||||||
|
description: {title: '备注',order: 1,view: 'textarea', type: 'string',},
|
||||||
|
sort: {title: '排序',order: 2,view: 'number', type: 'number',},
|
||||||
|
izEnabled: {title: '是否启用',order: 3,view: 'radio', type: 'string',dictCode: 'iz_enabled',},
|
||||||
|
};
|
|
@ -0,0 +1,157 @@
|
||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<!--查询区域-->
|
||||||
|
<div class="jeecg-basic-table-form-container">
|
||||||
|
<a-form ref="formRef" :model="searchForm" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="tagName">
|
||||||
|
<template #label><span title="服务标签名称">服务标签</span></template>
|
||||||
|
<a-input v-model:value="searchForm.tagName" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||||
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
||||||
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset"
|
||||||
|
style="margin-left: 8px">重置</a-button>
|
||||||
|
<a-button type="primary" preIcon="ant-design:plus-outlined" @click="handleAdd"
|
||||||
|
style="margin-left: 8px">新增</a-button>
|
||||||
|
</a-col>
|
||||||
|
</span>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
<div style="background-color: #000;padding: 20px;">
|
||||||
|
<a-card :title="directive.tagName" :key="directive.id" :bordered="false" style="width: 300px;margin: 10px;"
|
||||||
|
v-for="directive of tableData.records">
|
||||||
|
<div>{{ directive.description }}</div>
|
||||||
|
<div>{{ directive.createTime }} - {{ directive.createBy }}</div>
|
||||||
|
<div>
|
||||||
|
<a type="primary" @click="serviceTagEdit(directive)" style="margin-right: 8px">编辑</a>
|
||||||
|
<a-popconfirm title="是否确认删除?" ok-text="确认" cancel-text="取消" @confirm="remove(directive)">
|
||||||
|
<a href="#">删除</a>
|
||||||
|
</a-popconfirm>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 表单区域 -->
|
||||||
|
<ServiceTagModal ref="registerModal" @success="handleSuccess"></ServiceTagModal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" name="serviceTag-serviceTag" setup>
|
||||||
|
import { ref, reactive, onMounted } from 'vue';
|
||||||
|
import ServiceTagModal from './components/ServiceTagModal.vue'
|
||||||
|
import { list, queryById, deleteOne } from './ServiceTag.api'
|
||||||
|
|
||||||
|
const registerModal = ref();
|
||||||
|
const searchForm = ref({})
|
||||||
|
const tableData = ref({})
|
||||||
|
const labelCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 4,
|
||||||
|
xl: 6,
|
||||||
|
xxl: 6
|
||||||
|
});
|
||||||
|
const wrapperCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 20,
|
||||||
|
xl: 14,
|
||||||
|
xxl: 14
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 搜索
|
||||||
|
*/
|
||||||
|
function searchQuery() {
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置
|
||||||
|
*/
|
||||||
|
function searchReset() {
|
||||||
|
searchForm.value = {}
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function handleAdd() {
|
||||||
|
registerModal.value.disableSubmit = false;
|
||||||
|
registerModal.value.add();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 成功回调
|
||||||
|
*/
|
||||||
|
function handleSuccess() {
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据查询
|
||||||
|
*/
|
||||||
|
function queryList(params) {
|
||||||
|
list({ pageNo: 1, pageSize: 10, tagName: searchForm.value.tagName }).then(res => {
|
||||||
|
tableData.value = res
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
function serviceTagEdit(data) {
|
||||||
|
queryById({ id: data.id }).then(item => {
|
||||||
|
registerModal.value.edit(item);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
function remove(data) {
|
||||||
|
deleteOne({ id: data.id }, handleSuccess())
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
queryList({ pageNo: 1, pageSize: 10 })
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.jeecg-basic-table-form-container {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.table-page-search-submitButtons {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-cust {
|
||||||
|
min-width: 100px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-split-cust {
|
||||||
|
width: 30px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-form-item:not(.ant-form-item-with-help) {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-picker),
|
||||||
|
:deep(.ant-input-number) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,72 @@
|
||||||
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
|
import { useMessage } from "/@/hooks/web/useMessage";
|
||||||
|
|
||||||
|
const { createConfirm } = useMessage();
|
||||||
|
|
||||||
|
enum Api {
|
||||||
|
list = '/serviceDirective/configServiceDirective/list',
|
||||||
|
save='/serviceDirective/configServiceDirective/add',
|
||||||
|
edit='/serviceDirective/configServiceDirective/edit',
|
||||||
|
deleteOne = '/serviceDirective/configServiceDirective/delete',
|
||||||
|
deleteBatch = '/serviceDirective/configServiceDirective/deleteBatch',
|
||||||
|
importExcel = '/serviceDirective/configServiceDirective/importExcel',
|
||||||
|
exportXls = '/serviceDirective/configServiceDirective/exportXls',
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出api
|
||||||
|
* @param params
|
||||||
|
*/
|
||||||
|
export const getExportUrl = Api.exportXls;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入api
|
||||||
|
*/
|
||||||
|
export const getImportUrl = Api.importExcel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 列表接口
|
||||||
|
* @param params
|
||||||
|
*/
|
||||||
|
export const list = (params) => defHttp.get({ url: Api.list, params });
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除单个
|
||||||
|
* @param params
|
||||||
|
* @param handleSuccess
|
||||||
|
*/
|
||||||
|
export const deleteOne = (params,handleSuccess) => {
|
||||||
|
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
||||||
|
handleSuccess();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除
|
||||||
|
* @param params
|
||||||
|
* @param handleSuccess
|
||||||
|
*/
|
||||||
|
export const batchDelete = (params, handleSuccess) => {
|
||||||
|
createConfirm({
|
||||||
|
iconType: 'warning',
|
||||||
|
title: '确认删除',
|
||||||
|
content: '是否删除选中数据',
|
||||||
|
okText: '确认',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
|
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
|
||||||
|
handleSuccess();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存或者更新
|
||||||
|
* @param params
|
||||||
|
* @param isUpdate
|
||||||
|
*/
|
||||||
|
export const saveOrUpdate = (params, isUpdate) => {
|
||||||
|
let url = isUpdate ? Api.edit : Api.save;
|
||||||
|
return defHttp.post({ url: url, params }, { isTransformResponse: false });
|
||||||
|
}
|
|
@ -0,0 +1,91 @@
|
||||||
|
import { BasicColumn } from '/@/components/Table';
|
||||||
|
//列表数据
|
||||||
|
export const columns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '分类标签',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'instructionTagId_dictText',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务类别',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'categoryId_dictText',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务类型',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'typeId_dictText',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务指令名称',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'directiveName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '指令标签',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'tagList',
|
||||||
|
ellipsis: false,
|
||||||
|
format(text, record, index) {
|
||||||
|
if (!!text) {
|
||||||
|
return text.map((item) => item.tagName).join('、');
|
||||||
|
} else {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '周期类型',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'cycleType_dictText',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const selectedColumns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '分类标签',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'instructionTagId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务类别',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'categoryName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务类型',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'typeName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务指令名称',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'directiveName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '指令标签',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'tagList',
|
||||||
|
ellipsis: false,
|
||||||
|
format(text, record, index) {
|
||||||
|
if (!!text) {
|
||||||
|
return text.map((item) => item.tagName).join('、');
|
||||||
|
} else {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '周期类型',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'cycleType',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '操作',
|
||||||
|
key: 'action',
|
||||||
|
slots: { customRender: 'action' },
|
||||||
|
fixed: 'right', // 如果需要固定在右侧
|
||||||
|
align:'center',
|
||||||
|
width:100
|
||||||
|
},
|
||||||
|
];
|
|
@ -0,0 +1,354 @@
|
||||||
|
<template>
|
||||||
|
<a-spin :spinning="confirmLoading">
|
||||||
|
<JFormContainer :disabled="disabled">
|
||||||
|
<template #detail>
|
||||||
|
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
|
||||||
|
name="ConfigServiceDirectiveForm">
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="服务类别" v-bind="validateInfos.categoryId" id="ConfigServiceDirectiveForm-categoryId"
|
||||||
|
name="categoryId">
|
||||||
|
<j-dict-select-tag type="list" v-model:value="formData.categoryId"
|
||||||
|
:dictCode="`nu_config_service_category,category_name,id,del_flag = 0 order by sort asc`"
|
||||||
|
placeholder="请选择服务类别" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="服务类型" v-bind="validateInfos.typeId" id="ConfigServiceDirectiveForm-typeId"
|
||||||
|
name="typeId">
|
||||||
|
<j-dict-select-tag type="list" v-model:value="formData.typeId" :dictCode="typeDictCode"
|
||||||
|
placeholder="请选择服务类型" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="分类标签" v-bind="validateInfos.instructionTagId"
|
||||||
|
id="ConfigServiceDirectiveForm-instructionTagId" name="instructionTagId">
|
||||||
|
<j-dict-select-tag v-model:value="formData.instructionTagId" dictCode="instruction_tag"
|
||||||
|
placeholder="请选择分类标签" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="服务指令名称" v-bind="validateInfos.directiveName"
|
||||||
|
id="ConfigServiceDirectiveForm-directiveName" name="directiveName">
|
||||||
|
<a-input v-model:value="formData.directiveName" placeholder="请输入服务指令名称" allow-clear></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="收费价格(元)" v-bind="validateInfos.tollPrice" id="ConfigServiceDirectiveForm-tollPrice"
|
||||||
|
name="tollPrice">
|
||||||
|
<a-input-number v-model:value="formData.tollPrice" placeholder="请输入收费价格" style="width: 100%"
|
||||||
|
precision="4" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="提成价格(元)" v-bind="validateInfos.comPrice" id="ConfigServiceDirectiveForm-comPrice"
|
||||||
|
name="comPrice">
|
||||||
|
<a-input-number v-model:value="formData.comPrice" placeholder="请输入提成价格" style="width: 100%"
|
||||||
|
precision="4" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="医保报销" v-bind="validateInfos.izReimbursement"
|
||||||
|
id="ConfigServiceDirectiveForm-izReimbursement" name="izReimbursement">
|
||||||
|
<j-dict-select-tag type='radio' v-model:value="formData.izReimbursement" dictCode="med_ins_reimb"
|
||||||
|
allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="机构优惠" v-bind="validateInfos.izPreferential"
|
||||||
|
id="ConfigServiceDirectiveForm-izPreferential" name="izPreferential">
|
||||||
|
<j-dict-select-tag type='radio' v-model:value="formData.izPreferential"
|
||||||
|
dictCode="institutional_discount" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="收费频次" v-bind="validateInfos.chargingFrequency"
|
||||||
|
id="ConfigServiceDirectiveForm-chargingFrequency" name="chargingFrequency">
|
||||||
|
<j-dict-select-tag type="list" v-model:value="formData.chargingFrequency" dictCode="billing_frequency"
|
||||||
|
placeholder="请选择收费频次" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="周期类型" v-bind="validateInfos.cycleType" id="ConfigServiceDirectiveForm-cycleType"
|
||||||
|
name="cycleType">
|
||||||
|
<j-dict-select-tag type="list" v-model:value="formData.cycleType" dictCode="period_type"
|
||||||
|
placeholder="请选择周期类型" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="服务时长(分钟)" v-bind="validateInfos.serviceDuration"
|
||||||
|
id="ConfigServiceDirectiveForm-serviceDuration" name="serviceDuration">
|
||||||
|
<a-input-number v-model:value="formData.serviceDuration" :min="5" :max="55" :step="5"
|
||||||
|
placeholder="请输入服务时长(分钟)" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="服务说明" v-bind="validateInfos.serviceContent"
|
||||||
|
id="ConfigServiceDirectiveForm-serviceContent" name="serviceContent">
|
||||||
|
<a-textarea v-model:value="formData.serviceContent" :rows="2" placeholder="请输入服务说明" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="指令标签" id="ConfigServiceDirectiveForm-typeId" :labelCol="labelCol2"
|
||||||
|
:wrapperCol="wrapperCol2" name="typeId">
|
||||||
|
<JCheckbox v-model:value="formData.tags"
|
||||||
|
:dictCode="`nu_config_directive_tag,tag_name,id,del_flag = 0 order by sort asc`" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="是否启用" v-bind="validateInfos.izEnabled" id="ConfigServiceDirectiveForm-izEnabled"
|
||||||
|
name="izEnabled">
|
||||||
|
<j-dict-select-tag type='radio' v-model:value="formData.izEnabled" dictCode="iz_enabled"
|
||||||
|
placeholder="请选择是否启用" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="语音文件" v-bind="validateInfos.mp3File" id="ConfigServiceDirectiveForm-mp3File"
|
||||||
|
name="mp3File">
|
||||||
|
<j-upload v-model:value="formData.mp3File" accept=".mp3" :maxCount="1"></j-upload>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12">
|
||||||
|
<a-form-item label="视频文件" v-bind="validateInfos.mp4File" id="ConfigServiceDirectiveForm-mp4File"
|
||||||
|
name="mp4File">
|
||||||
|
<j-upload v-model:value="formData.mp4File" accept=".mp4" :maxCount="1"></j-upload>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</template>
|
||||||
|
</JFormContainer>
|
||||||
|
<JFormContainer>
|
||||||
|
<template #detail>
|
||||||
|
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
|
||||||
|
name="ConfigServiceDirectiveForm">
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="12" v-if="!!formData.mp3File">
|
||||||
|
<a-form-item label="语音预览" id="ConfigServiceDirectiveForm-mp3File" name="mp3File">
|
||||||
|
<audio controls disabled="false">
|
||||||
|
<source :src="getFileAccessHttpUrl(formData.mp3File)">
|
||||||
|
</audio>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="12" v-if="!!formData.mp4File" :push="!!formData.mp3File ? 0 : 12">
|
||||||
|
<a-form-item label="视频预览" id="ConfigServiceDirectiveForm-mp4File" name="mp4File">
|
||||||
|
<video controls>
|
||||||
|
<source :src="getFileAccessHttpUrl(formData.mp4File)">
|
||||||
|
</video>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</template>
|
||||||
|
</JFormContainer>
|
||||||
|
</a-spin>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted, watch } from 'vue';
|
||||||
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
import { JCheckbox } from '/@/components/Form';
|
||||||
|
import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue';
|
||||||
|
import { getValueType } from '/@/utils';
|
||||||
|
import { saveOrUpdate } from './ConfigServiceDirective.api';
|
||||||
|
import { Form } from 'ant-design-vue';
|
||||||
|
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||||||
|
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
||||||
|
const props = defineProps({
|
||||||
|
formDisabled: { type: Boolean, default: false },
|
||||||
|
formData: { type: Object, default: () => ({}) },
|
||||||
|
formBpm: { type: Boolean, default: true }
|
||||||
|
});
|
||||||
|
const formRef = ref();
|
||||||
|
const useForm = Form.useForm;
|
||||||
|
const emit = defineEmits(['register', 'ok']);
|
||||||
|
const formData = reactive<Record<string, any>>({
|
||||||
|
id: '',
|
||||||
|
categoryId: '',
|
||||||
|
typeId: '',
|
||||||
|
instructionTagId: '',
|
||||||
|
directiveName: '',
|
||||||
|
tollPrice: 0,
|
||||||
|
comPrice: 0,
|
||||||
|
izReimbursement: '0',
|
||||||
|
izPreferential: '0',
|
||||||
|
chargingFrequency: '',
|
||||||
|
cycleType: '',
|
||||||
|
sort: 99,
|
||||||
|
serviceContent: '',
|
||||||
|
serviceDuration: '5',
|
||||||
|
izEnabled: '0',
|
||||||
|
createBy: '',
|
||||||
|
createTime: '',
|
||||||
|
updateBy: '',
|
||||||
|
updateTime: '',
|
||||||
|
mp3File: '',
|
||||||
|
mp4File: '',
|
||||||
|
});
|
||||||
|
const { createMessage } = useMessage();
|
||||||
|
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 6 } });
|
||||||
|
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
||||||
|
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 3 } });
|
||||||
|
const wrapperCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 20 } });
|
||||||
|
const confirmLoading = ref<boolean>(false);
|
||||||
|
//表单验证
|
||||||
|
const validatorRules = reactive({
|
||||||
|
categoryId: [{ required: true, message: '请选择服务类别!' },],
|
||||||
|
typeId: [{ required: true, message: '请选择服务类型!' },],
|
||||||
|
instructionTagId: [{ required: true, message: '请选择分类标签!' },],
|
||||||
|
directiveName: [{ required: true, message: '请输入服务指令名称!' },],
|
||||||
|
tollPrice: [{ required: true, message: '请输入收费价格!' }, { pattern: /^(([0-9]*)|([0]\.\d{0,4}|[1-9][0-9]*\.\d{0,4}))$/, message: '请输入正确的金额!' },],
|
||||||
|
comPrice: [{ required: false }, { pattern: /^(([0-9]*)|([0]\.\d{0,4}|[1-9][0-9]*\.\d{0,4}))$/, message: '请输入正确的金额!' },],
|
||||||
|
izReimbursement: [{ required: true, message: '请选择是否参与医保报销!' },],
|
||||||
|
izPreferential: [{ required: true, message: '请选择是否参与机构优惠!' },],
|
||||||
|
// chargingFrequency: [{ required: true, message: '请选择收费频次!' },],
|
||||||
|
cycleType: [{ required: true, message: '请选择周期类型!' },],
|
||||||
|
// sort: [{ required: true, message: '请输入排序!' }, { pattern: /^\d+$/, message: '请输入正整数!' },],
|
||||||
|
serviceDuration: [
|
||||||
|
{ required: true, message: '请输入服务时长(分钟)!' },
|
||||||
|
{ pattern: /^\d+$/, message: '请输入正整数!' },
|
||||||
|
{
|
||||||
|
validator: (_, value) => {
|
||||||
|
if (value % 5 !== 0) {
|
||||||
|
return Promise.reject('请输入5的倍数!');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
validator: (_, value) => {
|
||||||
|
if (value < 5 || value > 55) {
|
||||||
|
return Promise.reject('请输入5到55之间的值!');
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
izEnabled: [{ required: true, message: '请选择是否启用!' },],
|
||||||
|
});
|
||||||
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
||||||
|
// 表单禁用
|
||||||
|
const disabled = computed(() => {
|
||||||
|
if (props.formBpm === true) {
|
||||||
|
if (props.formData.disabled === false) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return props.formDisabled;
|
||||||
|
});
|
||||||
|
const typeDictCode = ref('')
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => formData.categoryId,
|
||||||
|
(newCategoryId) => {
|
||||||
|
if (!newCategoryId) {
|
||||||
|
formData.typeId = '';
|
||||||
|
typeDictCode.value = 'nu_config_service_type,type_name,id,del_flag = 99 order by sort asc';
|
||||||
|
} else {
|
||||||
|
typeDictCode.value = `nu_config_service_type,type_name,id,del_flag = 0 and category_id = '${newCategoryId}' order by sort asc`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function add() {
|
||||||
|
edit({});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
*/
|
||||||
|
function edit(record) {
|
||||||
|
formData.tags = ''
|
||||||
|
nextTick(() => {
|
||||||
|
resetFields();
|
||||||
|
const tmpData = {};
|
||||||
|
Object.keys(formData).forEach((key) => {
|
||||||
|
if (record.hasOwnProperty(key)) {
|
||||||
|
tmpData[key] = record[key]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
//赋值
|
||||||
|
Object.assign(formData, tmpData);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 提交数据
|
||||||
|
*/
|
||||||
|
async function submitForm() {
|
||||||
|
try {
|
||||||
|
// 触发表单验证
|
||||||
|
await validate();
|
||||||
|
} catch ({ errorFields }) {
|
||||||
|
if (errorFields) {
|
||||||
|
const firstField = errorFields[0];
|
||||||
|
if (firstField) {
|
||||||
|
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Promise.reject(errorFields);
|
||||||
|
}
|
||||||
|
confirmLoading.value = true;
|
||||||
|
const isUpdate = ref<boolean>(false);
|
||||||
|
//时间格式化
|
||||||
|
let model = formData;
|
||||||
|
if (model.id) {
|
||||||
|
isUpdate.value = true;
|
||||||
|
}
|
||||||
|
//循环数据
|
||||||
|
for (let data in model) {
|
||||||
|
//如果该数据是数组并且是字符串类型
|
||||||
|
if (model[data] instanceof Array) {
|
||||||
|
let valueType = getValueType(formRef.value.getProps, data);
|
||||||
|
//如果是字符串类型的需要变成以逗号分割的字符串
|
||||||
|
if (valueType === 'string') {
|
||||||
|
model[data] = model[data].join(',');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//提成价格不能高于收费价格
|
||||||
|
if (model.tollPrice <= model.comPrice) {
|
||||||
|
createMessage.warning('提成价格不能高于收费价格!');
|
||||||
|
confirmLoading.value = false;
|
||||||
|
retrun;
|
||||||
|
}
|
||||||
|
|
||||||
|
await saveOrUpdate(model, isUpdate.value)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
createMessage.success(res.message);
|
||||||
|
emit('ok');
|
||||||
|
} else {
|
||||||
|
createMessage.warning(res.message);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
confirmLoading.value = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
add,
|
||||||
|
edit,
|
||||||
|
submitForm,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.antd-modal-form {
|
||||||
|
padding: 14px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,291 @@
|
||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<!--查询区域-->
|
||||||
|
<div class="jeecg-basic-table-form-container">
|
||||||
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
||||||
|
:wrapper-col="wrapperCol">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="categoryId">
|
||||||
|
<template #label><span title="服务类别">服务类别</span></template>
|
||||||
|
<j-dict-select-tag type="list" v-model:value="queryParam.categoryId"
|
||||||
|
:dictCode="`nu_config_service_category,category_name,id,del_flag = 0 order by sort asc`"
|
||||||
|
:ignoreDisabled="true" placeholder="请选择服务类别" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="typeId">
|
||||||
|
<template #label><span title="服务类型">服务类型</span></template>
|
||||||
|
<j-dict-select-tag type="list" v-model:value="queryParam.typeId"
|
||||||
|
:dictCode="`nu_config_service_type,type_name,id,del_flag = 0 order by sort asc`" placeholder="请选择服务类型"
|
||||||
|
:ignoreDisabled="true" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="directiveName">
|
||||||
|
<template #label><span title="服务指令">服务指令</span></template>
|
||||||
|
<JInput v-model:value="queryParam.directiveName" placeholder="请输入服务指令名称" allowClear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||||
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||||
|
<a-col :lg="6">
|
||||||
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
||||||
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset"
|
||||||
|
style="margin-left: 8px">重置</a-button>
|
||||||
|
</a-col>
|
||||||
|
</span>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
<!--引用表格-->
|
||||||
|
<BasicTable @register="registerTable" :scroll="{ x: '100%', y: '32vh' }">
|
||||||
|
<!--插槽:table标题-->
|
||||||
|
<template #tableTitle>
|
||||||
|
</template>
|
||||||
|
<!--操作栏-->
|
||||||
|
<template #action="{ record }">
|
||||||
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
|
||||||
|
</template>
|
||||||
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
||||||
|
</template>
|
||||||
|
</BasicTable>
|
||||||
|
|
||||||
|
<a-table :columns="selectedColumns" :data-source="directiveList" :scroll="{ x: '100%', y: '32vh' }"
|
||||||
|
:pagination="false" size="small">
|
||||||
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
||||||
|
<span v-if="column.dataIndex === 'instructionTagId'">
|
||||||
|
{{ filterDictTextByCache('instruction_tag', text) }}
|
||||||
|
</span>
|
||||||
|
<span v-if="column.dataIndex === 'categoryName'">
|
||||||
|
{{ text || record.categoryId_dictText }}
|
||||||
|
</span>
|
||||||
|
<span v-if="column.dataIndex === 'typeName'">
|
||||||
|
{{ text || record.typeId_dictText }}
|
||||||
|
</span>
|
||||||
|
<span v-if="column.dataIndex === 'tagList'">
|
||||||
|
{{ handleTags('', text, '') }}
|
||||||
|
</span>
|
||||||
|
<span v-if="column.dataIndex === 'cycleType'">
|
||||||
|
{{ filterDictTextByCache('period_type', text) }}
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #action="{ record }">
|
||||||
|
<a @click="removeDirective(record.id)">移除</a>
|
||||||
|
</template>
|
||||||
|
</a-table>
|
||||||
|
|
||||||
|
<!-- 表单区域 -->
|
||||||
|
<ConfigServiceDirectiveModal ref="registerModal" @success="handleSuccess"></ConfigServiceDirectiveModal>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" name="serviceDirective-configServiceDirective" setup>
|
||||||
|
import { ref, reactive, computed, defineExpose } from 'vue';
|
||||||
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
||||||
|
import { useListPage } from '/@/hooks/system/useListPage';
|
||||||
|
import { columns, selectedColumns } from './ConfigServiceDirective.data';
|
||||||
|
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './ConfigServiceDirective.api';
|
||||||
|
import JInput from "/@/components/Form/src/jeecg/components/JInput.vue";
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
import { cloneDeep } from "lodash-es";
|
||||||
|
import ConfigServiceDirectiveModal from './ConfigServiceDirectiveModal.vue'
|
||||||
|
import { filterDictTextByCache } from '/@/utils/dict/JDictSelectUtil';
|
||||||
|
|
||||||
|
const emit = defineEmits(['deleteDirective', 'addDirective']);
|
||||||
|
const formRef = ref();
|
||||||
|
const queryParam = reactive<any>({});
|
||||||
|
const registerModal = ref();
|
||||||
|
//注册table数据
|
||||||
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||||||
|
tableProps: {
|
||||||
|
title: '服务指令',
|
||||||
|
api: list,
|
||||||
|
columns,
|
||||||
|
size: 'small',
|
||||||
|
canResize: false,
|
||||||
|
useSearchForm: false,
|
||||||
|
showIndexColumn: true,
|
||||||
|
showTableSetting: false,
|
||||||
|
actionColumn: {
|
||||||
|
width: 90,
|
||||||
|
fixed: 'center',
|
||||||
|
},
|
||||||
|
beforeFetch: async (params) => {
|
||||||
|
params.column = 'createTime'
|
||||||
|
params.order = 'desc'
|
||||||
|
let rangerQuery = await setRangeQuery();
|
||||||
|
return Object.assign(params, rangerQuery);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
exportConfig: {
|
||||||
|
name: "服务指令",
|
||||||
|
url: getExportUrl,
|
||||||
|
params: queryParam,
|
||||||
|
},
|
||||||
|
importConfig: {
|
||||||
|
url: getImportUrl,
|
||||||
|
success: handleSuccess
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
||||||
|
const props = defineProps({
|
||||||
|
directiveList: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
const labelCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 4,
|
||||||
|
xl: 8,
|
||||||
|
xxl: 6
|
||||||
|
});
|
||||||
|
const wrapperCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 20,
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 成功回调
|
||||||
|
*/
|
||||||
|
function handleSuccess() {
|
||||||
|
(selectedRowKeys.value = []) && reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 选择
|
||||||
|
* @param directive_
|
||||||
|
*/
|
||||||
|
function handleSelect(directive_) {
|
||||||
|
emit('addDirective', directive_)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 操作栏
|
||||||
|
*/
|
||||||
|
function getTableAction(record) {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
label: '选择',
|
||||||
|
onClick: handleSelect.bind(null, record),
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下拉操作栏
|
||||||
|
*/
|
||||||
|
function getDropDownAction(record) {
|
||||||
|
return [
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询
|
||||||
|
*/
|
||||||
|
function searchQuery() {
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置
|
||||||
|
*/
|
||||||
|
function searchReset() {
|
||||||
|
formRef.value.resetFields();
|
||||||
|
selectedRowKeys.value = [];
|
||||||
|
//刷新数据
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
let rangeField = 'tollPrice,comPrice,'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置范围查询条件
|
||||||
|
*/
|
||||||
|
async function setRangeQuery() {
|
||||||
|
let queryParamClone = cloneDeep(queryParam);
|
||||||
|
if (rangeField) {
|
||||||
|
let fieldsValue = rangeField.split(',');
|
||||||
|
fieldsValue.forEach(item => {
|
||||||
|
if (queryParamClone[item]) {
|
||||||
|
let range = queryParamClone[item];
|
||||||
|
queryParamClone[item + '_begin'] = range[0];
|
||||||
|
queryParamClone[item + '_end'] = range[1];
|
||||||
|
delete queryParamClone[item];
|
||||||
|
} else {
|
||||||
|
queryParamClone[item + '_begin'] = '';
|
||||||
|
queryParamClone[item + '_end'] = '';
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return queryParamClone;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除
|
||||||
|
* @param directiveId
|
||||||
|
*/
|
||||||
|
function removeDirective(directiveId) {
|
||||||
|
emit('deleteDirective', directiveId)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理服务指令标签翻译
|
||||||
|
*/
|
||||||
|
function handleTags(prefix, tagList, suffix) {
|
||||||
|
if (!!tagList && tagList.length > 0) {
|
||||||
|
let str = tagList.map(item => item.tagName).join('、 ');
|
||||||
|
return prefix + str + suffix
|
||||||
|
} else {
|
||||||
|
return ' - '
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.jeecg-basic-table-form-container {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.table-page-search-submitButtons {
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-cust {
|
||||||
|
min-width: 100px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-split-cust {
|
||||||
|
width: 30px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-form-item:not(.ant-form-item-with-help) {
|
||||||
|
height: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-picker),
|
||||||
|
:deep(.ant-input-number) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
audio::-webkit-media-controls-timeline {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
audio::-webkit-media-controls-current-time-display,
|
||||||
|
audio::-webkit-media-controls-time-remaining-display {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-table-title) {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,81 @@
|
||||||
|
<template>
|
||||||
|
<j-modal :title="title" width="70vw" :visible="visible" @ok="handleOk"
|
||||||
|
:okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭"
|
||||||
|
:maskClosable="false">
|
||||||
|
<ServiceTagForm ref="registerForm" v-if="visible" @ok="submitCallback" :formDisabled="disableSubmit"
|
||||||
|
:formBpm="false"></ServiceTagForm>
|
||||||
|
</j-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, nextTick, defineExpose } from 'vue';
|
||||||
|
import ServiceTagForm from './ServiceTagForm.vue'
|
||||||
|
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
||||||
|
import { array } from 'vue-types';
|
||||||
|
|
||||||
|
const title = ref<string>('');
|
||||||
|
const visible = ref<boolean>(false);
|
||||||
|
const disableSubmit = ref<boolean>(false);
|
||||||
|
const registerForm = ref();
|
||||||
|
const emit = defineEmits(['register', 'success']);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function add() {
|
||||||
|
title.value = '新增';
|
||||||
|
visible.value = true;
|
||||||
|
nextTick(() => {
|
||||||
|
registerForm.value.add();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
* @param record
|
||||||
|
*/
|
||||||
|
function edit(record) {
|
||||||
|
title.value = disableSubmit.value ? '详情' : '编辑';
|
||||||
|
visible.value = true;
|
||||||
|
nextTick(() => {
|
||||||
|
registerForm.value.edit(record);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确定按钮点击事件
|
||||||
|
*/
|
||||||
|
function handleOk() {
|
||||||
|
registerForm.value.submitForm();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* form保存回调事件
|
||||||
|
*/
|
||||||
|
function submitCallback() {
|
||||||
|
handleCancel();
|
||||||
|
emit('success');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取消按钮回调事件
|
||||||
|
*/
|
||||||
|
function handleCancel() {
|
||||||
|
visible.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
add,
|
||||||
|
edit,
|
||||||
|
disableSubmit,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
/**隐藏样式-modal确定按钮 */
|
||||||
|
.jee-hidden {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style lang="less" scoped></style>
|
|
@ -0,0 +1,184 @@
|
||||||
|
<template>
|
||||||
|
<a-spin :spinning="confirmLoading">
|
||||||
|
<JFormContainer :disabled="disabled">
|
||||||
|
<template #detail>
|
||||||
|
<a-form ref="formRef" class="antd-modal-form" layout="vertical" :labelCol="labelCol" :wrapperCol="wrapperCol"
|
||||||
|
name="ServiceTagForm">
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="服务标签名称" v-bind="validateInfos.tagName" id="ServiceTagForm-tagName"
|
||||||
|
name="tagName">
|
||||||
|
<a-input v-model:value="formData.tagName" placeholder="请输入服务标签名称" allow-clear></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="备注" v-bind="validateInfos.description" id="ServiceTagForm-description"
|
||||||
|
name="description">
|
||||||
|
<a-textarea v-model:value="formData.description" :rows="4" placeholder="请输入备注" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<!-- <a-col :span="24">
|
||||||
|
<a-form-item label="排序" v-bind="validateInfos.sort" id="ServiceTagForm-sort" name="sort">
|
||||||
|
<a-input-number v-model:value="formData.sort" placeholder="请输入排序" style="width: 100%" />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col> -->
|
||||||
|
<a-col :span="24">
|
||||||
|
<a-form-item label="是否启用" v-bind="validateInfos.izEnabled" id="ServiceTagForm-izEnabled"
|
||||||
|
name="izEnabled">
|
||||||
|
<j-dict-select-tag type='radio' v-model:value="formData.izEnabled" dictCode="iz_enabled"
|
||||||
|
placeholder="是否启用" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</template>
|
||||||
|
</JFormContainer>
|
||||||
|
</a-spin>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
|
||||||
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
import { getValueType } from '/@/utils';
|
||||||
|
import { saveOrUpdate } from '../ServiceTag.api';
|
||||||
|
import { Form } from 'ant-design-vue';
|
||||||
|
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||||||
|
const props = defineProps({
|
||||||
|
formDisabled: { type: Boolean, default: false },
|
||||||
|
formData: { type: Object, default: () => ({}) },
|
||||||
|
formBpm: { type: Boolean, default: true }
|
||||||
|
});
|
||||||
|
const formRef = ref();
|
||||||
|
const useForm = Form.useForm;
|
||||||
|
const emit = defineEmits(['register', 'ok']);
|
||||||
|
const formData = reactive<Record<string, any>>({
|
||||||
|
id: '',
|
||||||
|
tagName: '',
|
||||||
|
description: '',
|
||||||
|
sort: 99,
|
||||||
|
izEnabled: '0',
|
||||||
|
});
|
||||||
|
const { createMessage } = useMessage();
|
||||||
|
const labelCol = ref<any>({
|
||||||
|
xs: { span: 24 },
|
||||||
|
sm: { span: 5 },
|
||||||
|
xl: 16,
|
||||||
|
xxl: 16
|
||||||
|
});
|
||||||
|
const wrapperCol = ref<any>({
|
||||||
|
xs: { span: 24 },
|
||||||
|
sm: { span: 16 },
|
||||||
|
xl: 24,
|
||||||
|
xxl: 24
|
||||||
|
});
|
||||||
|
const confirmLoading = ref<boolean>(false);
|
||||||
|
//表单验证
|
||||||
|
const validatorRules = reactive({
|
||||||
|
tagName: [{ required: true, message: '请输入服务标签名称!' },],
|
||||||
|
sort: [{ required: true, message: '请输入排序!' }, { pattern: /^\d+$/, message: '请输入整数!' },],
|
||||||
|
});
|
||||||
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
||||||
|
|
||||||
|
// 表单禁用
|
||||||
|
const disabled = computed(() => {
|
||||||
|
if (props.formBpm === true) {
|
||||||
|
if (props.formData.disabled === false) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return props.formDisabled;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function add() {
|
||||||
|
edit({});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
*/
|
||||||
|
function edit(record) {
|
||||||
|
nextTick(() => {
|
||||||
|
resetFields();
|
||||||
|
const tmpData = {};
|
||||||
|
Object.keys(formData).forEach((key) => {
|
||||||
|
if (record.hasOwnProperty(key)) {
|
||||||
|
tmpData[key] = record[key]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
//赋值
|
||||||
|
Object.assign(formData, tmpData);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 提交数据
|
||||||
|
*/
|
||||||
|
async function submitForm(directives) {
|
||||||
|
try {
|
||||||
|
// 触发表单验证
|
||||||
|
await validate();
|
||||||
|
} catch ({ errorFields }) {
|
||||||
|
if (errorFields) {
|
||||||
|
const firstField = errorFields[0];
|
||||||
|
if (firstField) {
|
||||||
|
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Promise.reject(errorFields);
|
||||||
|
}
|
||||||
|
confirmLoading.value = true;
|
||||||
|
const isUpdate = ref<boolean>(false);
|
||||||
|
//时间格式化
|
||||||
|
let model = formData;
|
||||||
|
if (model.id) {
|
||||||
|
isUpdate.value = true;
|
||||||
|
}
|
||||||
|
//循环数据
|
||||||
|
for (let data in model) {
|
||||||
|
//如果该数据是数组并且是字符串类型
|
||||||
|
if (model[data] instanceof Array) {
|
||||||
|
let valueType = getValueType(formRef.value.getProps, data);
|
||||||
|
//如果是字符串类型的需要变成以逗号分割的字符串
|
||||||
|
if (valueType === 'string') {
|
||||||
|
model[data] = model[data].join(',');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (directives.length > 0) {
|
||||||
|
model.directives = directives
|
||||||
|
}
|
||||||
|
await saveOrUpdate(model, isUpdate.value)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
createMessage.success(res.message);
|
||||||
|
emit('ok');
|
||||||
|
} else {
|
||||||
|
createMessage.warning(res.message);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
confirmLoading.value = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
add,
|
||||||
|
edit,
|
||||||
|
submitForm,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.antd-modal-form {
|
||||||
|
padding: 14px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,270 @@
|
||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="10">
|
||||||
|
<!--查询区域-->
|
||||||
|
<div class="jeecg-basic-table-form-container">
|
||||||
|
<a-form ref="formRef" :model="searchForm" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :lg="10">
|
||||||
|
<a-form-item name="tagName">
|
||||||
|
<template #label><span title="服务标签名称">服务标签</span></template>
|
||||||
|
<a-input v-model:value="searchForm.tagName" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<a-col :xl="5" :lg="6" :md="9" :sm="24">
|
||||||
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||||
|
<a-col :lg="9">
|
||||||
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
||||||
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset"
|
||||||
|
style="margin-left: 8px">重置</a-button>
|
||||||
|
</a-col>
|
||||||
|
</span>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
<div style="background-color: #000;padding: 20px;">
|
||||||
|
<a-card :title="directive.tagName" :key="directive.id" :bordered="false"
|
||||||
|
style="width: 300px;margin: 10px;" v-for="directive of tableData.records"
|
||||||
|
:class="{ 'selected': selectedDirective.id === directive.id }" @click="handleServiceTagClick(directive)">
|
||||||
|
<div>{{ directive.description }}</div>
|
||||||
|
<div>{{ directive.createTime }} - {{ directive.createBy }}</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
|
<div>
|
||||||
|
<a-card title="服务指令" style="width: 100%">
|
||||||
|
<div v-for="derectiveInfo of selectedDirective.directives" :key="derectiveInfo.id"
|
||||||
|
class="derectiveInfoClass" @click="directiveInfo(derectiveInfo)"
|
||||||
|
:class="{ 'selected': directiveId === derectiveInfo.id }">
|
||||||
|
<div class="">分类标签:{{ derectiveInfo.instructionTagId_dictText }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类别:{{ derectiveInfo.categoryName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类型:{{ derectiveInfo.typeName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务指令名称:{{ derectiveInfo.directiveName }}</div>
|
||||||
|
<div class="directiveInfoClass">周期类型:{{ filterDictTextByCache('period_type', derectiveInfo.cycleType) }}
|
||||||
|
</div>
|
||||||
|
<div class="directiveInfoClass">服务时长(分钟):{{ derectiveInfo.serviceDuration }}</div>
|
||||||
|
<div class="directiveInfoClass">服务说明:{{ derectiveInfo.serviceContent }}</div>
|
||||||
|
<div class="directiveInfoClass">指令标签:{{ handleTags('', derectiveInfo, '') }}</div>
|
||||||
|
<div class="directiveInfoClass">语音文件:
|
||||||
|
<span v-if="!derectiveInfo.mp3File">暂无文件</span>
|
||||||
|
<audio controls disabled="false" v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp3File)">
|
||||||
|
</audio>
|
||||||
|
</div>
|
||||||
|
<div class="directiveInfoClass">视频文件:
|
||||||
|
<span v-if="!derectiveInfo.mp4File">暂无文件</span>
|
||||||
|
<video controls v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp4File)">
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="6">
|
||||||
|
<div>
|
||||||
|
<a-card title="服务指令详情" style="width: 100%">
|
||||||
|
<div class="">分类标签:{{ filterDictTextByCache('instruction_tag', derectiveInfo.instructionTagId) }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类别:{{ derectiveInfo.categoryName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类型:{{ derectiveInfo.typeName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务指令名称:{{ derectiveInfo.directiveName }}</div>
|
||||||
|
<div class="directiveInfoClass">周期类型:{{ filterDictTextByCache('period_type', derectiveInfo.cycleType) }}
|
||||||
|
</div>
|
||||||
|
<div class="directiveInfoClass">服务时长(分钟):{{ derectiveInfo.serviceDuration }}</div>
|
||||||
|
<div class="directiveInfoClass">服务说明:{{ derectiveInfo.serviceContent }}</div>
|
||||||
|
<div class="directiveInfoClass">指令标签:{{ handleTags('', derectiveInfo, '') }}</div>
|
||||||
|
<div class="directiveInfoClass">语音文件:
|
||||||
|
<span v-if="!derectiveInfo.mp3File">暂无文件</span>
|
||||||
|
<audio controls disabled="false" v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp3File)">
|
||||||
|
</audio>
|
||||||
|
</div>
|
||||||
|
<div class="directiveInfoClass">视频文件:
|
||||||
|
<span v-if="!derectiveInfo.mp4File">暂无文件</span>
|
||||||
|
<video controls v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp4File)">
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, reactive, onMounted, defineExpose } from 'vue';
|
||||||
|
import { list, queryById, deleteOne } from '../ServiceTag.api'
|
||||||
|
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
||||||
|
import { filterDictTextByCache } from '/@/utils/dict/JDictSelectUtil';
|
||||||
|
|
||||||
|
const selectedDirective = ref({ id: '' })
|
||||||
|
const registerModal = ref();
|
||||||
|
const searchForm = ref({})
|
||||||
|
const tableData = ref({})
|
||||||
|
const derectiveInfo = ref({})
|
||||||
|
const labelCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 4,
|
||||||
|
xl: 16,
|
||||||
|
xxl: 16
|
||||||
|
});
|
||||||
|
const wrapperCol = reactive({
|
||||||
|
xs: 24,
|
||||||
|
sm: 20,
|
||||||
|
xl: 18,
|
||||||
|
xxl: 18
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 搜索
|
||||||
|
*/
|
||||||
|
function searchQuery() {
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置
|
||||||
|
*/
|
||||||
|
function searchReset() {
|
||||||
|
searchForm.value = {}
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function handleAdd() {
|
||||||
|
registerModal.value.disableSubmit = false;
|
||||||
|
registerModal.value.add();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 成功回调
|
||||||
|
*/
|
||||||
|
function handleSuccess() {
|
||||||
|
queryList({})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据查询
|
||||||
|
*/
|
||||||
|
function queryList(params) {
|
||||||
|
resetSeletedDirectiveInfo()
|
||||||
|
list({ pageNo: 1, pageSize: 10, tagName: searchForm.value.tagName }).then(res => {
|
||||||
|
tableData.value = res
|
||||||
|
selectedDirective.value = { id: '' }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
function serviceTagEdit(data) {
|
||||||
|
queryById({ id: data.id }).then(item => {
|
||||||
|
registerModal.value.edit(item);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
function remove(data) {
|
||||||
|
deleteOne({ id: data.id }, handleSuccess())
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理服务指令标签翻译
|
||||||
|
* @param directive_
|
||||||
|
*/
|
||||||
|
function handleTags(prefix, directive_, suffix) {
|
||||||
|
if (!!directive_.tagList && directive_.tagList.length > 0) {
|
||||||
|
let str = directive_.tagList.map(item => item.tagName).join('、 ');
|
||||||
|
return prefix + str + suffix
|
||||||
|
} else {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const directiveId = ref('')
|
||||||
|
/**
|
||||||
|
* 点击服务指令卡片时触发:右侧展示指令详细信息
|
||||||
|
* @param directive
|
||||||
|
*/
|
||||||
|
function directiveInfo(directive_) {
|
||||||
|
derectiveInfo.value = directive_
|
||||||
|
directiveId.value = directive_.id
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 指令包点击事件
|
||||||
|
* @param directive_
|
||||||
|
*/
|
||||||
|
function handleServiceTagClick(directive_) {
|
||||||
|
resetSeletedDirectiveInfo()
|
||||||
|
//重新赋值当前选择的包信息
|
||||||
|
selectedDirective.value = directive_
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置已选择服务指令及服务指令详情
|
||||||
|
*/
|
||||||
|
function resetSeletedDirectiveInfo() {
|
||||||
|
//重置已选择服务指令及服务指令详情
|
||||||
|
derectiveInfo.value = {}
|
||||||
|
directiveId.value = ''
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
queryList({ pageNo: 1, pageSize: 10 })
|
||||||
|
})
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
selectedDirective
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.jeecg-basic-table-form-container {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.table-page-search-submitButtons {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-cust {
|
||||||
|
min-width: 100px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-group-split-cust {
|
||||||
|
width: 30px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-form-item:not(.ant-form-item-with-help) {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.ant-picker),
|
||||||
|
:deep(.ant-input-number) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.selected {
|
||||||
|
background-color: lightgreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
.derectiveInfoClass {
|
||||||
|
border: 1px solid grey;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,273 @@
|
||||||
|
<template>
|
||||||
|
<!-- <j-modal :title="title" :width="width" :maskClosable="false" :fullscreen="true" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
|
||||||
|
<ServiceTagForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></ServiceTagForm>
|
||||||
|
</j-modal> -->
|
||||||
|
<a-drawer v-model:open="visible" v-if="visible" :title="title" width="90vw" :closable="false"
|
||||||
|
:footer-style="{ textAlign: 'right' }" @close="handleCancel">
|
||||||
|
<div style="display:flex;justify-content:space-between">
|
||||||
|
<div>
|
||||||
|
<a-card title="服务标签详情" style="width: 27vw">
|
||||||
|
<ServiceTagForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false">
|
||||||
|
</ServiceTagForm>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a-card title="服务指令" style="width: 27vw">
|
||||||
|
<template #extra>
|
||||||
|
<a href="#" @click="handleQuoteDirectives">引用 </a>
|
||||||
|
<a href="#" @click="handleAddDirectives">新增</a>
|
||||||
|
</template>
|
||||||
|
<div style="padding:10px;margin-top:10px;border:1px solid red;" v-for="directive of seletedRecord.directives"
|
||||||
|
:class="{ 'selected': selectedDirective === directive.id }" @click="directiveInfo(directive)">
|
||||||
|
{{ directive.directiveName + handleTags('(', directive, ')') }}
|
||||||
|
<div style="float:right;">
|
||||||
|
<a href="#" @click="deleteDirective(directive.id)">移除</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a-card title="服务指令详情" style="width: 27vw">
|
||||||
|
<div class="">分类标签:{{ filterDictTextByCache('instruction_tag', derectiveInfo.instructionTagId) }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类别:{{ derectiveInfo.categoryName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务类型:{{ derectiveInfo.typeName }}</div>
|
||||||
|
<div class="directiveInfoClass">服务指令名称:{{ derectiveInfo.directiveName }}</div>
|
||||||
|
<div class="directiveInfoClass">周期类型:{{ filterDictTextByCache('period_type', derectiveInfo.cycleType) }}</div>
|
||||||
|
<div class="directiveInfoClass">服务时长(分钟):{{ derectiveInfo.serviceDuration }}</div>
|
||||||
|
<div class="directiveInfoClass">服务说明:{{ derectiveInfo.serviceContent }}</div>
|
||||||
|
<div class="directiveInfoClass">指令标签:{{ handleTags('', derectiveInfo, '') }}</div>
|
||||||
|
<div class="directiveInfoClass">语音文件:
|
||||||
|
<span v-if="!derectiveInfo.mp3File">暂无文件</span>
|
||||||
|
<audio controls disabled="false" v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp3File)">
|
||||||
|
</audio>
|
||||||
|
</div>
|
||||||
|
<div class="directiveInfoClass">视频文件:
|
||||||
|
<span v-if="!derectiveInfo.mp4File">暂无文件</span>
|
||||||
|
<video controls v-else>
|
||||||
|
<source :src="getFileAccessHttpUrl(derectiveInfo.mp4File)">
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 服务指令列表编辑页 -->
|
||||||
|
<a-drawer v-model:open="directiveEditDrawer" title="选择服务指令" width="70vw" :closable="false"
|
||||||
|
:footer-style="{ textAlign: 'right' }" :body-style="{ padding: 0 }">
|
||||||
|
<ConfigServiceDirectiveList ref="configServiceDirectiveListRef" :directiveList="seletedRecord.directives"
|
||||||
|
@deleteDirective="deleteDirective" @addDirective="addDirective">
|
||||||
|
</ConfigServiceDirectiveList>
|
||||||
|
<template #footer>
|
||||||
|
<a-button style="margin-right: 8px" @click="handleDirectiveCancel">关闭</a-button>
|
||||||
|
<a-button type="primary" @click="handleDirectiveOk">确定</a-button>
|
||||||
|
</template>
|
||||||
|
</a-drawer>
|
||||||
|
|
||||||
|
<!-- 引用 -->
|
||||||
|
<a-drawer v-model:open="directiveQuoteDrawer" title="引用服务标签" width="80vw" :closable="false"
|
||||||
|
:footer-style="{ textAlign: 'right' }">
|
||||||
|
<ServiceTagList ref="directiveServiceTagListRef"></ServiceTagList>
|
||||||
|
<template #footer>
|
||||||
|
<a-button style="margin-right: 8px" @click="handleQuoteDrawCancel">关闭</a-button>
|
||||||
|
<a-button type="primary" @click="handleQuoteDrawOk">确定</a-button>
|
||||||
|
</template>
|
||||||
|
</a-drawer>
|
||||||
|
|
||||||
|
<template #footer>
|
||||||
|
<a-button style="margin-right: 8px" @click="handleCancel">关闭</a-button>
|
||||||
|
<a-button type="primary" @click="handleOk">确定</a-button>
|
||||||
|
</template>
|
||||||
|
</a-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, nextTick, defineExpose, computed } from 'vue';
|
||||||
|
import ServiceTagForm from './ServiceTagForm.vue'
|
||||||
|
import ConfigServiceDirectiveList from './ConfigServiceDirectiveList.vue'
|
||||||
|
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
||||||
|
import ServiceTagList from './ServiceTagList.vue'
|
||||||
|
import { filterDictTextByCache } from '/@/utils/dict/JDictSelectUtil';
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||||||
|
|
||||||
|
const title = ref<string>('');
|
||||||
|
const visible = ref<boolean>(false);
|
||||||
|
const disableSubmit = ref<boolean>(false);
|
||||||
|
const registerForm = ref();
|
||||||
|
const emit = defineEmits(['directiveOk', 'register', 'success']);
|
||||||
|
const directiveEditDrawer = ref<boolean>(false);
|
||||||
|
const configServiceDirectiveListRef = ref()
|
||||||
|
const derectiveInfo = ref({})
|
||||||
|
const selectedDirective = ref()
|
||||||
|
const directiveQuoteDrawer = ref(false)
|
||||||
|
const directiveServiceTagListRef = ref()
|
||||||
|
const seletedRecord = ref({ directives: [] })//里面记录了已选择的服务指令,其他页面都需要操作这个对象
|
||||||
|
const { createMessage } = useMessage();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理服务指令标签翻译
|
||||||
|
* @param directive_
|
||||||
|
*/
|
||||||
|
function handleTags(prefix, directive_, suffix) {
|
||||||
|
if (!!directive_.tagList && directive_.tagList.length > 0) {
|
||||||
|
let str = directive_.tagList.map(item => item.tagName).join('、 ');
|
||||||
|
return prefix + str + suffix
|
||||||
|
} else {
|
||||||
|
return ' - '
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增
|
||||||
|
*/
|
||||||
|
function add() {
|
||||||
|
title.value = '新增服务标签';
|
||||||
|
visible.value = true;
|
||||||
|
seletedRecord.value = { directives: [] }
|
||||||
|
nextTick(() => {
|
||||||
|
registerForm.value.add();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
* @param record
|
||||||
|
*/
|
||||||
|
function edit(record) {
|
||||||
|
seletedRecord.value = record
|
||||||
|
title.value = disableSubmit.value ? '详情' : '编辑';
|
||||||
|
visible.value = true;
|
||||||
|
nextTick(() => {
|
||||||
|
registerForm.value.edit(record);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确定按钮点击事件
|
||||||
|
*/
|
||||||
|
function handleOk() {
|
||||||
|
registerForm.value.submitForm(seletedRecord.value.directives);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* form保存回调事件
|
||||||
|
*/
|
||||||
|
function submitCallback() {
|
||||||
|
handleCancel();
|
||||||
|
emit('success');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取消按钮回调事件
|
||||||
|
*/
|
||||||
|
function handleCancel() {
|
||||||
|
visible.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增/编辑服务指令
|
||||||
|
*/
|
||||||
|
const handleAddDirectives = () => {
|
||||||
|
directiveEditDrawer.value = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 管理服务指令编辑页
|
||||||
|
*/
|
||||||
|
function handleDirectiveCancel() {
|
||||||
|
directiveEditDrawer.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存服务指令编辑结果
|
||||||
|
*/
|
||||||
|
function handleDirectiveOk() {
|
||||||
|
directiveEditDrawer.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击服务指令卡片时触发:右侧展示指令详细信息
|
||||||
|
* @param directive
|
||||||
|
*/
|
||||||
|
function directiveInfo(directive) {
|
||||||
|
selectedDirective.value = directive.id
|
||||||
|
derectiveInfo.value = directive
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除单个服务指令
|
||||||
|
* @param directiveId
|
||||||
|
*/
|
||||||
|
function deleteDirective(directiveId) {
|
||||||
|
setTimeout(() => {
|
||||||
|
derectiveInfo.value = {}
|
||||||
|
}, 200)
|
||||||
|
seletedRecord.value.directives = seletedRecord.value.directives.filter(item => item.id !== directiveId)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增单个服务指令
|
||||||
|
* @param directive_
|
||||||
|
*/
|
||||||
|
function addDirective(directive_) {
|
||||||
|
let res_ = seletedRecord.value.directives.filter(item => item.id == directive_.id)
|
||||||
|
if (res_.length > 0) {
|
||||||
|
createMessage.warning('服务指令已选择');
|
||||||
|
} else {
|
||||||
|
seletedRecord.value.directives.push(directive_)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 引用
|
||||||
|
*/
|
||||||
|
function handleQuoteDirectives() {
|
||||||
|
directiveQuoteDrawer.value = true
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理引用确认操作
|
||||||
|
*/
|
||||||
|
function handleQuoteDrawOk() {
|
||||||
|
directiveQuoteDrawer.value = false
|
||||||
|
//将数据合并(有去重操作)
|
||||||
|
seletedRecord.value.directives = [
|
||||||
|
...seletedRecord.value.directives,
|
||||||
|
...directiveServiceTagListRef.value.selectedDirective.directives.reduce((acc, current) => {
|
||||||
|
if (!seletedRecord.value.directives.some((item) => item.id === current.id)) {
|
||||||
|
acc.push(current);
|
||||||
|
}
|
||||||
|
return acc;
|
||||||
|
}, []),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理引用取消操作
|
||||||
|
*/
|
||||||
|
function handleQuoteDrawCancel() {
|
||||||
|
directiveQuoteDrawer.value = false
|
||||||
|
}
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
add,
|
||||||
|
edit,
|
||||||
|
disableSubmit,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
/**隐藏样式-modal确定按钮 */
|
||||||
|
.jee-hidden {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.selected {
|
||||||
|
background-color: lightgreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directiveInfoClass {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue