正在显示
2 个修改的文件
包含
13 行增加
和
13 行删除
@@ -349,7 +349,7 @@ let routes = [ | @@ -349,7 +349,7 @@ let routes = [ | ||
349 | children: [ | 349 | children: [ |
350 | { path: '/user', component: User, name: '用户管理' }, | 350 | { path: '/user', component: User, name: '用户管理' }, |
351 | { path: '/role', component: Role, name: '组织机构' }, | 351 | { path: '/role', component: Role, name: '组织机构' }, |
352 | - { path: '/crm', component: CRM, name: '组织机构' }, | 352 | + { path: '/crm', component: CRM, name: '客户资源' }, |
353 | { path: '/perm', component: Perm, name: '权限管理' }, | 353 | { path: '/perm', component: Perm, name: '权限管理' }, |
354 | { path: '/dataperm', component: DataPerm, name: '数据权限' }, | 354 | { path: '/dataperm', component: DataPerm, name: '数据权限' }, |
355 | { path: '/log', component: LOG, name: '系统日志' }, | 355 | { path: '/log', component: LOG, name: '系统日志' }, |
@@ -97,7 +97,7 @@ | @@ -97,7 +97,7 @@ | ||
97 | </el-table-column> | 97 | </el-table-column> |
98 | <el-table-column prop="businessLicense" label="工商代码" min-width="180" > | 98 | <el-table-column prop="businessLicense" label="工商代码" min-width="180" > |
99 | </el-table-column> | 99 | </el-table-column> |
100 | - <el-table-column prop="orgtype" label="业务类型" min-width="150" > | 100 | + <el-table-column prop="orgtype" label="供应类型" min-width="150" > |
101 | <template slot-scope="scope"> | 101 | <template slot-scope="scope"> |
102 | <el-tag type="" v-if="scope.row.orgtype==='M'">{{busnessType[scope.row.orgtype]}}</el-tag> | 102 | <el-tag type="" v-if="scope.row.orgtype==='M'">{{busnessType[scope.row.orgtype]}}</el-tag> |
103 | <el-tag type="success" v-if="scope.row.orgtype==='C'">{{busnessType[scope.row.orgtype]}}</el-tag> | 103 | <el-tag type="success" v-if="scope.row.orgtype==='C'">{{busnessType[scope.row.orgtype]}}</el-tag> |
@@ -146,7 +146,7 @@ | @@ -146,7 +146,7 @@ | ||
146 | </el-option> | 146 | </el-option> |
147 | </el-select> | 147 | </el-select> |
148 | </el-form-item> | 148 | </el-form-item> |
149 | - <el-form-item label=" " prop="addForm.orgtype"> | 149 | + <el-form-item label=" " prop="orgtype"> |
150 | <el-select v-model="addForm.orgtype" placeholder="业务类型"> | 150 | <el-select v-model="addForm.orgtype" placeholder="业务类型"> |
151 | <el-option | 151 | <el-option |
152 | v-for="item in options" | 152 | v-for="item in options" |
@@ -233,7 +233,7 @@ | @@ -233,7 +233,7 @@ | ||
233 | import { getList as permList } from '../../api/perm_api'; | 233 | import { getList as permList } from '../../api/perm_api'; |
234 | import moment from 'moment' | 234 | import moment from 'moment' |
235 | export default { | 235 | export default { |
236 | - name:'Role', | 236 | + name:'Role', |
237 | data() { | 237 | data() { |
238 | return { | 238 | return { |
239 | options: [ | 239 | options: [ |
@@ -304,7 +304,7 @@ | @@ -304,7 +304,7 @@ | ||
304 | PermFormVisible: false, | 304 | PermFormVisible: false, |
305 | addLoading: false, | 305 | addLoading: false, |
306 | addFormRules: { | 306 | addFormRules: { |
307 | - roleName: [ | 307 | + roleName: [ |
308 | { required: true, message: '请输入岗位/角色名称', trigger: 'blur' } | 308 | { required: true, message: '请输入岗位/角色名称', trigger: 'blur' } |
309 | ], | 309 | ], |
310 | type: [ | 310 | type: [ |
@@ -313,19 +313,19 @@ | @@ -313,19 +313,19 @@ | ||
313 | departmentid:[ | 313 | departmentid:[ |
314 | { required: true, message: '请输入承运人代码', trigger: 'blur' } | 314 | { required: true, message: '请输入承运人代码', trigger: 'blur' } |
315 | ], | 315 | ], |
316 | - 'addForm.orgtype': [ | 316 | + 'orgtype': [ |
317 | { required: true, message: '请选择业务类型', trigger: 'blur' } | 317 | { required: true, message: '请选择业务类型', trigger: 'blur' } |
318 | ] | 318 | ] |
319 | }, | 319 | }, |
320 | //新增界面数据 | 320 | //新增界面数据 |
321 | addForm: { | 321 | addForm: { |
322 | - description: '', | ||
323 | - roleName: '', | ||
324 | - roleSign: 1, | ||
325 | - departmentid:'', | ||
326 | - type: '', | ||
327 | - businessLicense: '', | ||
328 | - customsRegCode: '', | 322 | + description: '', |
323 | + roleName: '', | ||
324 | + roleSign: 1, | ||
325 | + departmentid:'', | ||
326 | + type: '', | ||
327 | + businessLicense: '', | ||
328 | + customsRegCode: '', | ||
329 | parentName: '', | 329 | parentName: '', |
330 | mqcode: '', | 330 | mqcode: '', |
331 | orgtype:'' | 331 | orgtype:'' |
-
请 注册 或 登录 后发表评论