修改样式
This commit is contained in:
parent
bfe42f2244
commit
8ee6208b03
|
|
@ -248,3 +248,9 @@ position: relative;
|
|||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
.ant-picker .ant-picker-suffix{
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -146,27 +146,6 @@ const wrapperCol = reactive({
|
|||
sm: 19,
|
||||
});
|
||||
|
||||
// 高级查询配置
|
||||
const superQueryConfig = reactive(superQuerySchema);
|
||||
|
||||
/**
|
||||
* 高级查询事件
|
||||
*/
|
||||
function handleSuperQuery(params) {
|
||||
Object.keys(params).map((k) => {
|
||||
queryParam[k] = params[k];
|
||||
});
|
||||
searchQuery();
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增事件
|
||||
*/
|
||||
function handleAdd() {
|
||||
registerModal.value.disableSubmit = false;
|
||||
registerModal.value.add();
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑事件
|
||||
*/
|
||||
|
|
@ -194,19 +173,6 @@ function handleDetail(record: Recordable) {
|
|||
registerModal.value.edit(record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除事件
|
||||
*/
|
||||
async function handleDelete(record) {
|
||||
await deleteOne({ id: record.id }, handleSuccess);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除事件
|
||||
*/
|
||||
async function batchHandleDelete() {
|
||||
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
||||
}
|
||||
|
||||
/**
|
||||
* 成功回调
|
||||
|
|
@ -215,55 +181,13 @@ function handleSuccess() {
|
|||
(selectedRowKeys.value = []) && reload();
|
||||
}
|
||||
|
||||
/**
|
||||
* 上传合同
|
||||
*/
|
||||
function handleUpContract(record) {
|
||||
registerModal.value.editContract(record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 通知运维平台搭建业务平台
|
||||
*/
|
||||
function handleBuildPlat(record) {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 账户初始化
|
||||
* @param record
|
||||
*/
|
||||
function handleInitAccount(record) {
|
||||
|
||||
var userInfo = { userName: record.tel, realname: record.name, orgCode: record.id, orgId: record.pkId }
|
||||
console.log("🚀 ~ handleInitAccount ~ userInfo:", userInfo)
|
||||
defHttp.post({ url: '/sys/user/initialization', params: userInfo }).then(res => {
|
||||
console.log("🚀 ~ handleInitAccount ~ res:", res)
|
||||
zhcshVisible.value = true;
|
||||
zhcshMessage.value = res.message;
|
||||
handleSuccess();
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
function handleCshCancel() {
|
||||
zhcshVisible.value = false;
|
||||
zhcshMessage.value = '';
|
||||
}
|
||||
|
||||
/**
|
||||
* 信息推送
|
||||
* @param record
|
||||
*/
|
||||
function handlePushInfo(record) {
|
||||
console.log("🚀 ~ handlePushInfo ~ record:", record)
|
||||
var params = { openId: record.openId, id: record.id }
|
||||
console.log("🚀 ~ handlePushInfo ~ params:", params)
|
||||
defHttp.get({ url: '/weixinMini/sendOrgAuthInfo', params }).then(res => {
|
||||
handleSuccess();
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 审核历史
|
||||
*/
|
||||
|
|
@ -290,32 +214,6 @@ function getTableAction(record) {
|
|||
onClick: handleUpAudit.bind(null, record),
|
||||
ifShow: record.status == '1' && record.optType == 'bg'
|
||||
},
|
||||
// {
|
||||
// label: '上传合同',
|
||||
// onClick: handleUpContract.bind(null, record),
|
||||
// auth: 'orgapplyinfo:nu_org_apply_info:edit',
|
||||
// ifShow: record.orgStatus == '3'
|
||||
// },
|
||||
// {
|
||||
// label: '运维平台进行搭建',
|
||||
// onClick: handleBuildPlat.bind(null, record),
|
||||
// auth: 'orgapplyinfo:nu_org_apply_info:edit',
|
||||
// ifShow: () => {
|
||||
// return record.orgStatus == '3' && !!record.contract
|
||||
// }
|
||||
// },
|
||||
// {
|
||||
// label: '账户初始化',
|
||||
// onClick: handleInitAccount.bind(null, record),
|
||||
// auth: 'orgapplyinfo:nu_org_apply_info:edit',
|
||||
// ifShow: record.workOrderStatus == '2' && record.orgStatus == '4'
|
||||
// },
|
||||
// {
|
||||
// label: '信息推送',
|
||||
// onClick: handlePushInfo.bind(null, record),
|
||||
// auth: 'orgapplyinfo:nu_org_apply_info:edit',
|
||||
// ifShow: record.orgStatus == '5'n
|
||||
// },
|
||||
{
|
||||
label: '审核历史',
|
||||
onClick: handleAuditHisDetail.bind(null, record),
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<a-row :gutter="24">
|
||||
<a-col :lg="7">
|
||||
<a-form-item name="title">
|
||||
<template #label><span title="机构名称">机构名称</span></template>
|
||||
<template #label><span title="机构信息">机构信息</span></template>
|
||||
<JInput v-model:value="queryParam.title" placeholder="请输入机构名称/负责人/联系电话" :type="'default'" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
Loading…
Reference in New Issue