fanfan 8 months ago
commit dca695872e
  1. 9
      src/global.less
  2. 1
      src/views/manage/user/modules/EditForm.vue
  3. 26
      src/views/shop/Index.vue

@ -366,4 +366,11 @@ iframe {
span.ant-radio+* { span.ant-radio+* {
color: rgba(0, 0, 0, .5) color: rgba(0, 0, 0, .5)
} }
.edui-editor {
width: 800px!important;
.edui-editor-iframeholder {
width: 100%!important;
}
}

@ -17,6 +17,7 @@
</a-form-item> </a-form-item>
<a-form-item label="用户名" :labelCol="labelCol" :wrapperCol="wrapperCol" extra="后台登录用户名"> <a-form-item label="用户名" :labelCol="labelCol" :wrapperCol="wrapperCol" extra="后台登录用户名">
<a-input <a-input
disabled
v-decorator="['user_name', { rules: [{ required: true, min: 4, message: '请输入至少4个字符' }] }]" v-decorator="['user_name', { rules: [{ required: true, min: 4, message: '请输入至少4个字符' }] }]"
/> />
</a-form-item> </a-form-item>

@ -46,15 +46,9 @@
<span slot="shop_label" slot-scope="text, item" style="white-space: pre-line;"> <span slot="shop_label" slot-scope="text, item" style="white-space: pre-line;">
{{ item.shop_label }} {{ item.shop_label }}
</span> </span>
<span slot="company_name" slot-scope="text, item" style="white-space: pre-line;">
{{ item.company_name }}
</span>
<span slot="is_select_mechant" slot-scope="text, item"> <span slot="is_select_mechant" slot-scope="text, item">
{{ item.is_select_mechant ? '是' : '否' }} {{ item.is_select_mechant ? '是' : '否' }}
</span> </span>
<span slot="is_show_license" slot-scope="text, item">
{{ item.is_show_license ? '是' : '否' }}
</span>
<span slot="action" slot-scope="text, item"> <span slot="action" slot-scope="text, item">
<template> <template>
<a v-action:edit style="margin-right: 8px" @click="handleEdit(item)">编辑</a> <a v-action:edit style="margin-right: 8px" @click="handleEdit(item)">编辑</a>
@ -123,26 +117,6 @@ export default {
title: '评分', title: '评分',
dataIndex: 'score' dataIndex: 'score'
}, },
{
title: '公司名称',
width: '150px',
dataIndex: 'company_name',
scopedSlots: { customRender: 'company_name' }
},
{
title: '法人名字',
dataIndex: 'legal_person'
},
{
title: '手机号',
dataIndex: 'phone',
width: '120px'
},
{
title: '是否展示营业执照',
dataIndex: 'is_show_license',
scopedSlots: { customRender: 'is_show_license' }
},
{ {
title: '累计金额', title: '累计金额',
dataIndex: 'total_amount' dataIndex: 'total_amount'

Loading…
Cancel
Save