Commit bfafa0a79fe05d6c37c404fb94151696943bd085

Authored by wuxw
1 parent 785aba4f

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

src/components/community/addCommunityWechat.vue
1 1 <template>
2   - <el-dialog
3   - :title="$t('addCommunityWechat.title')"
4   - :visible.sync="visible"
5   - width="50%"
6   - @close="handleClose"
7   - >
8   - <el-form
9   - ref="form"
10   - :model="form"
11   - :rules="rules"
12   - label-width="120px"
13   - label-position="right"
14   - >
15   - <el-form-item
16   - :label="$t('addCommunityWechat.name')"
17   - prop="name"
18   - >
19   - <el-input
20   - v-model="form.name"
21   - :placeholder="$t('addCommunityWechat.placeholder.name')"
22   - />
  2 + <el-dialog :title="$t('addCommunityWechat.title')" :visible.sync="visible" width="50%" @close="handleClose">
  3 + <el-form ref="form" :model="form" :rules="rules" label-width="120px" label-position="right">
  4 + <el-form-item :label="$t('addCommunityWechat.name')" prop="name">
  5 + <el-input v-model="form.name" :placeholder="$t('addCommunityWechat.placeholder.name')" />
23 6 </el-form-item>
24   -
  7 +
25 8 <el-form-item label="APPID" prop="appId">
26   - <el-input
27   - v-model="form.appId"
28   - :placeholder="$t('addCommunityWechat.placeholder.appId')"
29   - />
  9 + <el-input v-model="form.appId" :placeholder="$t('addCommunityWechat.placeholder.appId')" />
30 10 </el-form-item>
31   -
32   - <el-form-item
33   - :label="$t('addCommunityWechat.appSecret')"
34   - prop="appSecret"
35   - >
36   - <el-input
37   - v-model="form.appSecret"
38   - type="password"
39   - show-password
40   - :placeholder="$t('addCommunityWechat.placeholder.appSecret')"
41   - />
  11 +
  12 + <el-form-item :label="$t('addCommunityWechat.appSecret')" prop="appSecret">
  13 + <el-input v-model="form.appSecret" type="password" show-password
  14 + :placeholder="$t('addCommunityWechat.placeholder.appSecret')" />
42 15 </el-form-item>
43   -
44   - <el-form-item
45   - :label="$t('addCommunityWechat.description')"
46   - prop="remarks"
47   - >
48   - <el-input
49   - v-model="form.remarks"
50   - type="textarea"
51   - :placeholder="$t('addCommunityWechat.placeholder.remarks')"
52   - :rows="3"
53   - />
  16 +
  17 + <el-form-item :label="$t('addCommunityWechat.description')" prop="remarks">
  18 + <el-input v-model="form.remarks" type="textarea" :placeholder="$t('addCommunityWechat.placeholder.remarks')"
  19 + :rows="3" />
54 20 </el-form-item>
55 21 </el-form>
56   -
  22 +
57 23 <div slot="footer" class="dialog-footer">
58 24 <el-button @click="visible = false">
59 25 {{ $t('communityWechat.cancel') }}
... ...
src/views/community/communityMiniList.vue
... ... @@ -7,7 +7,7 @@
7 7  
8 8 <el-col :span="20">
9 9 <el-card>
10   - <div slot="header" class="clearfix flex justify-between">
  10 + <div slot="header" class=" flex justify-between">
11 11 <span>{{ $t('communityMini.title') }}</span>
12 12 <div class="header-tools">
13 13 <el-button v-if="smallWeChats.length === 0 && conditions.communityId" type="primary" size="small"
... ...
src/views/community/communityWechatLang.js
... ... @@ -67,7 +67,7 @@ export const messages = {
67 67 editSuccess: '修改成功'
68 68 },
69 69 addCommunityWechat: {
70   - title: '添加公众号',
  70 + title: '添加',
71 71 name: '名称',
72 72 appId: 'APPID',
73 73 appSecret: '应用密钥',
... ...
src/views/log/transactionOutLogList.vue
... ... @@ -15,7 +15,7 @@
15 15 <el-row>
16 16 <el-col :span="24">
17 17 <el-card>
18   - <div slot="header">
  18 + <div slot="header" class="flex justify-between">
19 19 <span>{{ $t('transactionOutLog.queryCondition') }}</span>
20 20 </div>
21 21 <el-row :gutter="20">
... ... @@ -40,7 +40,7 @@
40 40 <el-row class="mt-20">
41 41 <el-col :span="24">
42 42 <el-card>
43   - <div slot="header">
  43 + <div slot="header" class="flex justify-between">
44 44 <span>{{ $t('transactionOutLog.logTitle') }}</span>
45 45 </div>
46 46 <el-table :data="logs" border style="width: 100%">
... ...
src/views/system/smallWeChatManageLang.js
... ... @@ -35,8 +35,8 @@ export const messages = {
35 35 name: '名称',
36 36 appSecret: '应用密钥',
37 37 remarks: '描述',
38   - addTitle: '添加小程序',
39   - editTitle: '修改小程序',
  38 + addTitle: '添加',
  39 + editTitle: '修改',
40 40 deleteTitle: '请确认您的操作',
41 41 deleteConfirm: '确定删除小程序管理吗?',
42 42 namePlaceholder: '必填,请填写名称',
... ...