@@ -228,7 +232,7 @@
});
const defaultSearchInfo = {
menuId: route.meta.modelId as string,
- moduleId:'807147983731689285',
+ moduleId:'817082533433836293',
superQueryJson: '',
dataType:0,
};
@@ -266,6 +270,8 @@
const getHasBatchBtn = computed(() => {
let btnsList =[]
+ btnsList.push('download')
+ btnsList=btnsList.filter(o => hasBtnP('btn_' + o))
return !!btnsList.length
});
@@ -508,6 +514,7 @@
{
label: t('common.editText','编辑') ,
onClick: updateHandle.bind(null, record),
+ auth: 'btn_edit', //有按钮权限
},
{
label: t('common.delText','删除') ,
@@ -515,10 +522,12 @@
modelConfirm: {
onOk: handleDelete.bind(null, record.id),
},
+ auth: 'btn_remove', //有按钮权限
},
{
label: t('common.detailText','详情') ,
onClick: goDetail.bind(null, record),
+ auth: 'btn_detail', //有按钮权限
},
];
}
@@ -559,6 +568,20 @@
};
formRef.value?.init(data);
}
+ // 导出
+ function handleDownload(data) {
+ let query = { ...getFetchParams(), ...data };
+ exportData(query)
+ .then((res) => {
+ setExportModalProps({ confirmLoading: false });
+ if (!res.data.url) return;
+ downloadByUrl({ url: res.data.url });
+ closeExportModal();
+ })
+ .catch(() => {
+ setExportModalProps({ confirmLoading: false });
+ });
+ }
// 高级查询
function handleSuperQuery(superQueryJson) {
searchInfo.superQueryJson = superQueryJson;
diff --git a/src/views/pcm/pcm_contract/Detail.vue b/src/views/pcm/pcm_contract/Detail.vue
deleted file mode 100644
index 93db247..0000000
--- a/src/views/pcm/pcm_contract/Detail.vue
+++ /dev/null
@@ -1,622 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- 合同名称
-
-
-
-
-
-
- 合同编号
-
-
-
-
-
-
- 归属项目 {{ dataForm.project_id }}
-
-
-
-
- 合同类型 {{ state.dataForm.htlxxx?.contract_type_name || '-' }}
-
-
-
-
- 签约日期 {{ dataForm.contract_date }}
-
-
-
-
- 合同有效期 {{ dataForm.valid_to }}
-
-
-
-
- 对方单位
- {{
- dataForm.second_party + '(' + dataForm.second_party_type + ')'
- }}
-
-
-
-
-
-
- 我方单位
- {{
- dataForm.first_party + '(' + dataForm.first_party_type + ')'
- }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 对方单位
- {{
- dataForm.second_party + '(' + dataForm.second_party_type + ')'
- }}
-
-
-
-
-
-
- 我方单位
- {{
- dataForm.first_party + '(' + dataForm.first_party_type + ')'
- }}
-
-
-
-
-
-
- 通讯地址
-
-
-
-
-
-
- 通讯地址
-
-
-
-
-
-
- 负责人
-
-
-
-
-
-
- 负责人
-
-
-
-
-
-
- 联系方式
-
-
-
-
-
-
- 联系方式
-
-
-
-
-
-
- 合同条款 {{ dataForm.contract_terms }}
-
-
-
-
- 说明 {{ dataForm.remark }}
-
-
-
-
- 经办人 {{ dataForm.operator_id }}
-
-
-
-
- 经办日期 {{ dataForm.operator_date }}
-
-
-
-
- 附件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/pcm/pcm_contract/Form.vue b/src/views/pcm/pcm_contract/Form.vue
deleted file mode 100644
index b3f30ad..0000000
--- a/src/views/pcm/pcm_contract/Form.vue
+++ /dev/null
@@ -1,3583 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 合同名称
-
-
-
-
-
-
- 合同编号
-
-
-
-
-
-
- 归属项目
-
-
-
-
-
-
- 合同类型
-
-
-
-
-
-
-
- 签约日期
-
-
-
-
-
-
-
- 合同有效期
-
-
-
-
-
-
- 对方单位
-
-
-
-
-
-
-
-
-
-
-
-
- 我方单位
-
-
-
-
-
-
-
-
-
-
-
-
- 通讯地址
-
-
-
-
-
-
- 通讯地址
-
-
-
-
-
-
- 负责人
-
-
-
-
-
-
- 负责人
-
-
-
-
-
-
- 联系方式
-
-
-
-
-
-
- 联系方式
-
-
-
-
-
-
- 合同条款
-
-
-
-
-
-
- 说明
-
-
-
-
-
-
- 经办人
-
-
-
-
-
-
-
- 经办日期
-
-
-
-
-
-
- 附件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.copyText', '复制') }}
-
-
- {{ t('common.delText', '删除') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.copyText', '复制') }}
-
-
- {{ t('common.delText', '删除') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.copyText', '复制') }}
-
-
- {{ t('common.delText', '删除') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.copyText', '复制') }}
-
-
- {{ t('common.delText', '删除') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.copyText', '复制') }}
-
-
- {{ t('common.delText', '删除') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ dataForm.contract_name || '合同名称' }}
- 【{{ dataForm.contract_code || '' }}】
-
-
-
- 归属项目
-
-
-
-
-
- 合同类型
-
-
-
-
- 签约日期
-
-
-
-
-
- 合同有效期
-
-
-
-
-
- 对方单位
-
-
-
-
- 我方单位
-
-
-
-
-
-
- 通讯地址(对方)
-
-
-
-
- 通讯地址(我方)
-
-
-
-
-
- 负责人(对方)
-
-
-
-
-
- 负责人(我方)
-
-
-
-
- 联系方式(对方)
-
-
-
-
-
- 联系方式(我方)
-
-
-
-
-
- 合同条款
-
-
-
-
-
- 说明
-
-
-
-
-
- 经办人
-
-
-
-
- 经办日期
-
-
-
-
-
-
-
-
- *
- {{ column.title }}
-
-
-
- {{ index + 1 }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/pcm/pcm_contract/helper/api.ts b/src/views/pcm/pcm_contract/helper/api.ts
deleted file mode 100644
index 24c7e0c..0000000
--- a/src/views/pcm/pcm_contract/helper/api.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-import { defHttp } from '@/utils/http/axios';
-
-// 获取列表
-export function getList(data) {
- return defHttp.post({ url: '/api/bcm/PcmContract/getList', data });
-}
-// 新建
-export function create(data) {
- return defHttp.post({ url:'/api/bcm/PcmContract', data });
-}
-// 修改
-export function update(data) {
- return defHttp.put({ url: '/api/bcm/PcmContract/'+ data.id, data });
-}
-// 详情(无转换数据)
-export function getInfo(id) {
- return defHttp.get({ url: '/api/bcm/PcmContract/' + id });
-}
-// 获取(转换数据)
-export function getDetailInfo(id) {
- return defHttp.get({ url: '/api/bcm/PcmContract/detail/' + id });
-}
-// 删除
-export function del(id) {
- return defHttp.delete({ url: '/api/bcm/PcmContract/' + id });
-}
-// 批量删除数据
-export function batchDelete(data) {
- return defHttp.delete({ url: '/api/bcm/PcmContract/batchRemove', data });
-}
-// 导出
-export function exportData(data) {
- return defHttp.post({ url: '/api/bcm/PcmContract/Actions/Export', data });
-}
-// 获取列表
-export function getBcmprojecttypeList(data) {
- return defHttp.post({ url: '/api/bcm/BcmProjectType/getBcmprojecttypeList', data });
-}
\ No newline at end of file
diff --git a/src/views/pcm/pcm_contract/helper/columnList.ts b/src/views/pcm/pcm_contract/helper/columnList.ts
deleted file mode 100644
index 9323d9b..0000000
--- a/src/views/pcm/pcm_contract/helper/columnList.ts
+++ /dev/null
@@ -1,586 +0,0 @@
-const columnList = [
- {
- "yunzhupaasKey":"input",
- "useScan":false,
- "suffixIcon":"",
- "fullNameI18nCode":[
- ""
- ],
- "align":"left",
- "showCount":false,
- "__config__":{
- "formId":"formItem80771b",
- "yunzhupaasKey":"input",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"合同名称",
- "trigger":"blur",
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774858890992,
- "layout":"colFormItem",
- "tagIcon":"icon-ym icon-ym-generator-input",
- "unique":true,
- "tag":"YunzhupaasInput",
- "regList":[],
- "tableAlign":"left",
- "span":16
- },
- "readonly":false,
- "prop":"contract_name",
- "__vModel__":"contract_name",
- "disabled":false,
- "id":"contract_name",
- "placeholder":"请输入合同名称",
- "addonBefore":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- },
- "clearable":true,
- "resizable":true,
- "maxlength":30,
- "fullName":"合同名称",
- "label":"合同名称",
- "sortable":false,
- "addonAfter":"",
- "maskConfig":{
- "prefixType":1,
- "useUnrealMask":false,
- "maskType":1,
- "unrealMaskLength":1,
- "prefixLimit":0,
- "suffixLimit":0,
- "filler":"*",
- "prefixSpecifyChar":"",
- "suffixType":1,
- "ignoreChar":"",
- "suffixSpecifyChar":""
- },
- "width":null,
- "useMask":false,
- "showPassword":false,
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "prefixIcon":"",
- "labelI18nCode":""
- },
- {
- "yunzhupaasKey":"select",
- "filterable":false,
- "clearable":true,
- "resizable":true,
- "multiple":false,
- "fullName":"归属项目",
- "fullNameI18nCode":[
- ""
- ],
- "label":"归属项目",
- "sortable":false,
- "align":"left",
- "props":{
- "label":"project_name",
- "value":"project_id"
- },
- "__config__":{
- "yunzhupaasKey":"select",
- "defaultValue":"",
- "dragDisabled":false,
- "className":[],
- "propsUrl":"797177453981204485",
- "templateJson":[],
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774862672330,
- "tagIcon":"icon-ym icon-ym-generator-select",
- "tag":"YunzhupaasSelect",
- "formId":"formItemf49ec8",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "dataType":"dynamic",
- "dictionaryType":"",
- "tipLabel":"",
- "tableFixed":"none",
- "label":"归属项目",
- "trigger":"change",
- "layout":"colFormItem",
- "useCache":true,
- "propsName":"项目结构树",
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"project_id",
- "width":null,
- "options":[],
- "__vModel__":"project_id",
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "disabled":false,
- "id":"project_id",
- "placeholder":"请选择归属项目",
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- },
- {
- "yunzhupaasKey":"select",
- "filterable":false,
- "clearable":true,
- "resizable":true,
- "multiple":false,
- "fullName":"合同类型",
- "fullNameI18nCode":[
- ""
- ],
- "label":"合同类型",
- "sortable":false,
- "align":"left",
- "props":{
- "label":"contract_type_name",
- "value":"contract_type_code"
- },
- "__config__":{
- "yunzhupaasKey":"select",
- "defaultValue":"测试数据",
- "dragDisabled":false,
- "className":[],
- "propsUrl":"808356583347064133",
- "templateJson":[
- {
- "fieldName":"",
- "field":"projectType",
- "sourceType":2,
- "defaultValue":"SOFT",
- "dataType":"varchar",
- "id":"87bd31",
- "required":1,
- "relationField":"SOFT"
- }
- ],
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774862835058,
- "tagIcon":"icon-ym icon-ym-generator-select",
- "tag":"YunzhupaasSelect",
- "formId":"formItem41e426",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "dataType":"dynamic",
- "dictionaryType":"",
- "tipLabel":"",
- "tableFixed":"none",
- "label":"合同类型",
- "trigger":"change",
- "layout":"colFormItem",
- "useCache":true,
- "propsName":"销售合同类型",
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"contract_type_code",
- "width":null,
- "options":[],
- "__vModel__":"contract_type_code",
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "disabled":false,
- "id":"contract_type_code",
- "placeholder":"请选择合同类型",
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- },
- {
- "popupType":"dialog",
- "yunzhupaasKey":"relationForm",
- "hasPage":false,
- "modelId":"806858527036409349",
- "pageSize":20,
- "columnOptions":[
- {
- "label":"企业编码",
- "value":"company_code"
- },
- {
- "label":"企业名称",
- "value":"company_name"
- },
- {
- "label":"简称/昵称",
- "value":"short_name"
- },
- {
- "label":"类型",
- "value":"entity_type"
- }
- ],
- "fullNameI18nCode":[
- ""
- ],
- "align":"left",
- "__config__":{
- "formId":"formItemdd50ee",
- "yunzhupaasKey":"relationForm",
- "visibility":[
- "pc",
- "app"
- ],
- "defaultValue":"",
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"对方单位",
- "trigger":"change",
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774864329913,
- "layout":"colFormItem",
- "transferList":[],
- "tagIcon":"icon-ym icon-ym-generator-menu",
- "tag":"YunzhupaasRelationFormByUrl",
- "regList":[],
- "tableAlign":"left",
- "span":8
- },
- "prop":"second_party",
- "__vModel__":"second_party",
- "disabled":false,
- "id":"second_party",
- "placeholder":"请选择对方单位",
- "popupWidth":"1000px",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- },
- "filterable":false,
- "clearable":true,
- "resizable":true,
- "fullName":"对方单位",
- "label":"对方单位",
- "sortable":false,
- "relationField":"company_name",
- "queryType":0,
- "extraOptions":[
- {
- "label":"企业名称",
- "value":"company_name"
- }
- ],
- "popupTitle":"选择对方单位",
- "width":null,
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "labelI18nCode":"",
- "propsValue":"company_id"
- },
- {
- "popupType":"drawer",
- "yunzhupaasKey":"relationForm",
- "hasPage":false,
- "modelId":"806858527036409349q",
- "pageSize":20,
- "columnOptions":[
- {
- "label":"企业编码",
- "value":"company_code"
- },
- {
- "label":"企业名称",
- "value":"company_name"
- },
- {
- "label":"简称/昵称",
- "value":"short_name"
- },
- {
- "label":"类型",
- "value":"entity_type"
- }
- ],
- "fullNameI18nCode":[
- ""
- ],
- "align":"left",
- "__config__":{
- "formId":"formItem79de4c",
- "yunzhupaasKey":"relationForm",
- "visibility":[
- "pc",
- "app"
- ],
- "defaultValue":"",
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"我方单位",
- "trigger":"change",
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774864691317,
- "layout":"colFormItem",
- "transferList":[],
- "tagIcon":"icon-ym icon-ym-generator-menu",
- "tag":"YunzhupaasRelationFormByUrl",
- "regList":[],
- "tableAlign":"left",
- "span":8
- },
- "prop":"first_party",
- "__vModel__":"first_party",
- "disabled":false,
- "id":"first_party",
- "placeholder":"请选择我方单位",
- "popupWidth":"1000px",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- },
- "filterable":false,
- "clearable":true,
- "resizable":true,
- "fullName":"我方单位",
- "label":"我方单位",
- "sortable":false,
- "relationField":"company_name",
- "queryType":0,
- "extraOptions":[
- {
- "label":"企业名称",
- "value":"company_name"
- }
- ],
- "popupTitle":"选择对方单位",
- "width":null,
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "labelI18nCode":"",
- "propsValue":"company_id"
- },
- {
- "yunzhupaasKey":"datePicker",
- "clearable":true,
- "resizable":true,
- "format":"yyyy-MM-dd",
- "fullName":"签约日期",
- "fullNameI18nCode":[
- ""
- ],
- "label":"签约日期",
- "sortable":false,
- "align":"left",
- "__config__":{
- "yunzhupaasKey":"datePicker",
- "endRelationField":"",
- "defaultValue":null,
- "dragDisabled":false,
- "className":[],
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774864123292,
- "tagIcon":"icon-ym icon-ym-generator-date",
- "startRelationField":"",
- "defaultCurrent":true,
- "tag":"YunzhupaasDatePicker",
- "formId":"formItem0a3ac8",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "endTimeTarget":1,
- "tipLabel":"",
- "tableFixed":"none",
- "startTimeType":1,
- "endTimeRule":false,
- "label":"签约日期",
- "trigger":"change",
- "startTimeRule":false,
- "startTimeValue":null,
- "endTimeValue":null,
- "endTimeType":1,
- "layout":"colFormItem",
- "startTimeTarget":1,
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"contract_date",
- "width":null,
- "__vModel__":"contract_date",
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "startTime":null,
- "disabled":false,
- "id":"contract_date",
- "placeholder":"请选择签约日期",
- "endTime":null,
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- },
- {
- "ableRelationIds":[],
- "yunzhupaasKey":"userSelect",
- "clearable":true,
- "resizable":true,
- "ableIds":[],
- "multiple":false,
- "fullName":"经办人",
- "fullNameI18nCode":[
- ""
- ],
- "label":"经办人",
- "sortable":false,
- "align":"left",
- "relationField":"",
- "__config__":{
- "formId":"formItema98546",
- "yunzhupaasKey":"userSelect",
- "visibility":[
- "pc",
- "app"
- ],
- "defaultValue":"",
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"经办人",
- "trigger":"change",
- "showLabel":true,
- "required":false,
- "tableName":"pcm_contract",
- "renderKey":1774919327581,
- "layout":"colFormItem",
- "tagIcon":"icon-ym icon-ym-generator-user",
- "defaultCurrent":true,
- "tag":"YunzhupaasUserSelect",
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"operator_id",
- "width":null,
- "__vModel__":"operator_id",
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "selectType":"all",
- "disabled":false,
- "id":"operator_id",
- "placeholder":"请选择经办人",
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- },
- {
- "yunzhupaasKey":"datePicker",
- "clearable":true,
- "resizable":true,
- "format":"yyyy-MM-dd",
- "fullName":"经办日期",
- "fullNameI18nCode":[
- ""
- ],
- "label":"经办日期",
- "sortable":false,
- "align":"left",
- "__config__":{
- "yunzhupaasKey":"datePicker",
- "endRelationField":"",
- "defaultValue":null,
- "dragDisabled":false,
- "className":[],
- "showLabel":true,
- "required":false,
- "tableName":"pcm_contract",
- "renderKey":1774919345223,
- "tagIcon":"icon-ym icon-ym-generator-date",
- "startRelationField":"",
- "defaultCurrent":true,
- "tag":"YunzhupaasDatePicker",
- "formId":"formItem08ab93",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "endTimeTarget":1,
- "tipLabel":"",
- "tableFixed":"none",
- "startTimeType":1,
- "endTimeRule":false,
- "label":"经办日期",
- "trigger":"change",
- "startTimeRule":false,
- "startTimeValue":null,
- "endTimeValue":null,
- "endTimeType":1,
- "layout":"colFormItem",
- "startTimeTarget":1,
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"operator_date",
- "width":null,
- "__vModel__":"operator_date",
- "fixed":"none",
- "style":{
- "width":"100%"
- },
- "startTime":null,
- "disabled":false,
- "id":"operator_date",
- "placeholder":"请选择合同有效期",
- "endTime":null,
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- }
-]
-export default columnList
\ No newline at end of file
diff --git a/src/views/pcm/pcm_contract/helper/searchList.ts b/src/views/pcm/pcm_contract/helper/searchList.ts
deleted file mode 100644
index 4cfee94..0000000
--- a/src/views/pcm/pcm_contract/helper/searchList.ts
+++ /dev/null
@@ -1,217 +0,0 @@
-const searchList = [
- {
- "yunzhupaasKey":"input",
- "useScan":false,
- "suffixIcon":"",
- "fullNameI18nCode":[
- ""
- ],
- "showCount":false,
- "__config__":{
- "formId":"formItem80771b",
- "yunzhupaasKey":"input",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"合同名称",
- "trigger":"blur",
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774858890992,
- "layout":"colFormItem",
- "tagIcon":"icon-ym icon-ym-generator-input",
- "unique":true,
- "tag":"YunzhupaasInput",
- "regList":[],
- "tableAlign":"left",
- "span":16
- },
- "readonly":false,
- "prop":"contract_name",
- "__vModel__":"contract_name",
- "searchMultiple":false,
- "disabled":false,
- "id":"contract_name",
- "placeholder":"请输入合同名称",
- "addonBefore":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- },
- "clearable":true,
- "searchType":2,
- "maxlength":30,
- "fullName":"合同名称",
- "label":"合同名称",
- "addonAfter":"",
- "maskConfig":{
- "prefixType":1,
- "useUnrealMask":false,
- "maskType":1,
- "unrealMaskLength":1,
- "prefixLimit":0,
- "suffixLimit":0,
- "filler":"*",
- "prefixSpecifyChar":"",
- "suffixType":1,
- "ignoreChar":"",
- "suffixSpecifyChar":""
- },
- "isKeyword":false,
- "useMask":false,
- "showPassword":false,
- "style":{
- "width":"100%"
- },
- "prefixIcon":"",
- "labelI18nCode":""
- },
- {
- "yunzhupaasKey":"input",
- "useScan":false,
- "suffixIcon":"",
- "fullNameI18nCode":[
- ""
- ],
- "showCount":false,
- "__config__":{
- "formId":"formItem25b3f5",
- "yunzhupaasKey":"input",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "tipLabel":"",
- "tableFixed":"none",
- "dragDisabled":false,
- "className":[],
- "label":"合同编号",
- "trigger":"blur",
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774858900215,
- "layout":"colFormItem",
- "tagIcon":"icon-ym icon-ym-generator-input",
- "unique":true,
- "tag":"YunzhupaasInput",
- "regList":[],
- "tableAlign":"left",
- "span":8
- },
- "readonly":false,
- "prop":"contract_code",
- "__vModel__":"contract_code",
- "searchMultiple":false,
- "disabled":true,
- "id":"contract_code",
- "placeholder":"请输入合同编号",
- "addonBefore":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- },
- "clearable":true,
- "searchType":2,
- "maxlength":null,
- "fullName":"合同编号",
- "label":"合同编号",
- "addonAfter":"",
- "maskConfig":{
- "prefixType":1,
- "useUnrealMask":false,
- "maskType":1,
- "unrealMaskLength":1,
- "prefixLimit":0,
- "suffixLimit":0,
- "filler":"*",
- "prefixSpecifyChar":"",
- "suffixType":1,
- "ignoreChar":"",
- "suffixSpecifyChar":""
- },
- "isKeyword":false,
- "useMask":false,
- "showPassword":false,
- "style":{
- "width":"100%"
- },
- "prefixIcon":"",
- "labelI18nCode":""
- },
- {
- "yunzhupaasKey":"datePicker",
- "clearable":true,
- "searchType":3,
- "format":"yyyy-MM-dd",
- "fullName":"签约日期",
- "fullNameI18nCode":[
- ""
- ],
- "label":"签约日期",
- "__config__":{
- "yunzhupaasKey":"datePicker",
- "endRelationField":"",
- "defaultValue":null,
- "dragDisabled":false,
- "className":[],
- "showLabel":true,
- "required":true,
- "tableName":"pcm_contract",
- "renderKey":1774864123292,
- "tagIcon":"icon-ym icon-ym-generator-date",
- "startRelationField":"",
- "defaultCurrent":true,
- "tag":"YunzhupaasDatePicker",
- "formId":"formItem0a3ac8",
- "visibility":[
- "pc",
- "app"
- ],
- "noShow":false,
- "endTimeTarget":1,
- "tipLabel":"",
- "tableFixed":"none",
- "startTimeType":1,
- "endTimeRule":false,
- "label":"签约日期",
- "trigger":"change",
- "startTimeRule":false,
- "startTimeValue":null,
- "endTimeValue":null,
- "endTimeType":1,
- "layout":"colFormItem",
- "startTimeTarget":1,
- "regList":[],
- "tableAlign":"left",
- "span":12
- },
- "prop":"contract_date",
- "__vModel__":"contract_date",
- "searchMultiple":false,
- "isKeyword":false,
- "style":{
- "width":"100%"
- },
- "startTime":null,
- "disabled":false,
- "id":"contract_date",
- "placeholder":"请选择签约日期",
- "endTime":null,
- "value":[],
- "labelI18nCode":"",
- "on":{
- "change":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}",
- "blur":"({ data, rowIndex, formData, setFormData, setShowOrHide, setRequired, setDisabled, onlineUtils }) => {\n // 在此编写代码\n \n}"
- }
- }
-]
-export default searchList
\ No newline at end of file
diff --git a/src/views/pcm/pcm_contract/index.vue b/src/views/pcm/pcm_contract/index.vue
deleted file mode 100644
index 60388e9..0000000
--- a/src/views/pcm/pcm_contract/index.vue
+++ /dev/null
@@ -1,683 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('common.add2Text2', '合同登记') }}
-
-
-
-
- {{ t('common.superQuery') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ record[column.dataIndex] }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/systemData/interfaceOauth/components/Info.vue b/src/views/systemData/interfaceOauth/components/Info.vue
index 2cc1e5c..ae9bee8 100644
--- a/src/views/systemData/interfaceOauth/components/Info.vue
+++ b/src/views/systemData/interfaceOauth/components/Info.vue
@@ -70,7 +70,7 @@
GET
/api/system/DataInterface/{id}/Actions/Response?tenantId=xxxxx&name=abc
- Host : localhost:30000
+ Host : localhost:40000
YmDate : 1656404771000
UserKey : xxxxxxx
@@ -85,10 +85,10 @@
| URL Path | /api/system/DataInterface/{id}/Actions/Response |
| YmDate | 1656404771000 |
| UserKey | xxxxxxx |
- | Host | localhost:30000 |
+ | Host | localhost:40000 |
| 最终待签名字符串 |
- 以下 \n 表明换行 GET\n /api/system/DataInterface/{id}/Actions/Response\n 1656404771000\n localhost:30000\n |
+ 以下 \n 表明换行 GET\n /api/system/DataInterface/{id}/Actions/Response\n 1656404771000\n localhost:40000\n |
| 最终计算的 Authorization header |
@@ -100,7 +100,7 @@
POST /api/system/DataInterface/{id}/Actions/Response
- Host : localhost:30000
+ Host : localhost:40000
YmDate : 1656404771000
UserKey : xxxxxxx
body参数json格式如:{"tenantId":"123","name":"abc"}
@@ -117,10 +117,10 @@
| URL Path | /api/system/DataInterface/{id}/Actions/Response |
| YmDate | 1656404771000 |
| UserKey | xxxxxxx |
- | Host | localhost:30000 |
+ | Host | localhost:40000 |
| 最终待签名字符串 |
- 以下 \n 表明换行 POST\n /hmac/testPost\n 1656404771000\n localhost:30000\n
|
+ 以下 \n 表明换行 POST\n /hmac/testPost\n 1656404771000\n localhost:40000\n
|
| 最终计算的 Authorization header |
@@ -144,7 +144,7 @@
String method = "POST";
String urlPath = "/api/system/DataInterface/{id}/Actions/Response";
String YmDate = "1656404771000";
- String host = "localhost:30000";
+ String host = "localhost:40000";
String source = new StringBuilder()
.append(method).append('\n')
.append(url).append('\n')
@@ -172,7 +172,7 @@
String method = "POST";
String urlPath = "/api/system/DataInterface/{id}/Actions/Response";
String YmDate = "1656404771000";
- String host = "localhost:30000";
+ String host = "localhost:40000";
String source = new StringBuilder()
.Append(method).Append('\n')
.Append(url).Append('\n')