v1.9 优化合同审核人无法选择问题

This commit is contained in:
wuxw 2025-09-10 18:38:33 +08:00
parent 785aba4f60
commit bfafa0a79f
5 changed files with 21 additions and 55 deletions

View File

@ -1,56 +1,22 @@
<template>
<el-dialog
:title="$t('addCommunityWechat.title')"
:visible.sync="visible"
width="50%"
@close="handleClose"
>
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="120px"
label-position="right"
>
<el-form-item
:label="$t('addCommunityWechat.name')"
prop="name"
>
<el-input
v-model="form.name"
:placeholder="$t('addCommunityWechat.placeholder.name')"
/>
<el-dialog :title="$t('addCommunityWechat.title')" :visible.sync="visible" width="50%" @close="handleClose">
<el-form ref="form" :model="form" :rules="rules" label-width="120px" label-position="right">
<el-form-item :label="$t('addCommunityWechat.name')" prop="name">
<el-input v-model="form.name" :placeholder="$t('addCommunityWechat.placeholder.name')" />
</el-form-item>
<el-form-item label="APPID" prop="appId">
<el-input
v-model="form.appId"
:placeholder="$t('addCommunityWechat.placeholder.appId')"
/>
<el-input v-model="form.appId" :placeholder="$t('addCommunityWechat.placeholder.appId')" />
</el-form-item>
<el-form-item
:label="$t('addCommunityWechat.appSecret')"
prop="appSecret"
>
<el-input
v-model="form.appSecret"
type="password"
show-password
:placeholder="$t('addCommunityWechat.placeholder.appSecret')"
/>
<el-form-item :label="$t('addCommunityWechat.appSecret')" prop="appSecret">
<el-input v-model="form.appSecret" type="password" show-password
:placeholder="$t('addCommunityWechat.placeholder.appSecret')" />
</el-form-item>
<el-form-item
:label="$t('addCommunityWechat.description')"
prop="remarks"
>
<el-input
v-model="form.remarks"
type="textarea"
:placeholder="$t('addCommunityWechat.placeholder.remarks')"
:rows="3"
/>
<el-form-item :label="$t('addCommunityWechat.description')" prop="remarks">
<el-input v-model="form.remarks" type="textarea" :placeholder="$t('addCommunityWechat.placeholder.remarks')"
:rows="3" />
</el-form-item>
</el-form>

View File

@ -7,7 +7,7 @@
<el-col :span="20">
<el-card>
<div slot="header" class="clearfix flex justify-between">
<div slot="header" class=" flex justify-between">
<span>{{ $t('communityMini.title') }}</span>
<div class="header-tools">
<el-button v-if="smallWeChats.length === 0 && conditions.communityId" type="primary" size="small"

View File

@ -67,7 +67,7 @@ export const messages = {
editSuccess: '修改成功'
},
addCommunityWechat: {
title: '添加公众号',
title: '添加',
name: '名称',
appId: 'APPID',
appSecret: '应用密钥',

View File

@ -15,7 +15,7 @@
<el-row>
<el-col :span="24">
<el-card>
<div slot="header">
<div slot="header" class="flex justify-between">
<span>{{ $t('transactionOutLog.queryCondition') }}</span>
</div>
<el-row :gutter="20">
@ -40,7 +40,7 @@
<el-row class="mt-20">
<el-col :span="24">
<el-card>
<div slot="header">
<div slot="header" class="flex justify-between">
<span>{{ $t('transactionOutLog.logTitle') }}</span>
</div>
<el-table :data="logs" border style="width: 100%">

View File

@ -35,8 +35,8 @@ export const messages = {
name: '名称',
appSecret: '应用密钥',
remarks: '描述',
addTitle: '添加小程序',
editTitle: '修改小程序',
addTitle: '添加',
editTitle: '修改',
deleteTitle: '请确认您的操作',
deleteConfirm: '确定删除小程序管理吗?',
namePlaceholder: '必填,请填写名称',