申请更新

duizhaopin_ui
cxw 2 years ago
parent f426ef8a07
commit 06ef362cfc

@ -2,5 +2,5 @@
ENV = 'development' ENV = 'development'
# base api # base api
VUE_APP_BASE_API = 'http://127.0.0.1:9001' VUE_APP_BASE_API = 'http://192.168.1.114:9001'
VUE_APP_FACE_API = 'http://127.0.0.1:5000' VUE_APP_FACE_API = 'http://192.168.1.114:5000'

@ -2,6 +2,6 @@
ENV = 'production' ENV = 'production'
# base api # base api
VUE_APP_BASE_API = 'http://127.0.0.1:9001' VUE_APP_BASE_API = 'http://192.168.1.114:9001'
VUE_APP_FACE_API ='http://127.0.0.1:5000' VUE_APP_FACE_API ='http://192.168.1.114:5000'

@ -4,6 +4,6 @@ NODE_ENV = production
ENV = 'staging' ENV = 'staging'
# base api # base api
VUE_APP_BASE_API = 'http://127.0.0.1:9001' VUE_APP_BASE_API = 'http://192.168.1.114:9001'
VUE_APP_FACE_API='http://127.0.0.1:5000' VUE_APP_FACE_API='http://192.168.1.114:5000'

@ -231,20 +231,20 @@ const reagentRouter = [
} }
] ]
}, },
// { {
// path: '/reagent/client', path: '/reagent/client',
// component: Layout, component: Layout,
// redirect: '/reagent/client/index', redirect: '/reagent/client/index',
// meta: { classification: 'reagent', module_code: 'CabinetIndex' }, meta: { classification: 'reagent', module_code: 'CabinetIndex' },
// children: [ children: [
// { {
// path: 'index', path: 'index',
// name: 'Client', name: 'Client',
// component: () => import('@/views/reagent/client/index'), component: () => import('@/views/reagent/client/index'),
// meta: { title: '柜体管理', icon: '柜体管理', classification: 'reagent' } meta: { title: '柜体管理', icon: '柜体管理', classification: 'reagent' }
// } }
// ] ]
// }, },
{ {
path: '/reagent/envrecord', path: '/reagent/envrecord',
component: Layout, component: Layout,

@ -40,6 +40,7 @@
<el-table-column prop="solve_user_name" show-overflow-tooltip label="审批人1" align="center" /> <el-table-column prop="solve_user_name" show-overflow-tooltip label="审批人1" align="center" />
<el-table-column prop="solve_user_pt_name" show-overflow-tooltip label="审批人2" align="center" /> <el-table-column prop="solve_user_pt_name" show-overflow-tooltip label="审批人2" align="center" />
<el-table-column prop="solve_date" show-overflow-tooltip label="审批时间" align="center" /> <el-table-column prop="solve_date" show-overflow-tooltip label="审批时间" align="center" />
<el-table-column prop="information" show-overflow-tooltip label="备注" align="center" />
<el-table-column <el-table-column
fixed="right" fixed="right"
label="操作" label="操作"
@ -69,7 +70,7 @@
title="选择审批生效时间" title="选择审批生效时间"
> >
<div class="box"> <div class="box">
<el-form ref="form" :model="form" label-width="80px"> <el-form ref="form" label-width="80px">
<el-form-item label="生效时间"> <el-form-item label="生效时间">
<el-radio-group v-model="radio1"> <el-radio-group v-model="radio1">
<el-radio label="2" border>2小时</el-radio> <el-radio label="2" border>2小时</el-radio>
@ -158,8 +159,8 @@ export default {
history_page: 1, history_page: 1,
history_page_size: 15, history_page_size: 15,
history_total: 100, history_total: 100,
statusColorMap: ['warning','success'], statusColorMap: ['warning','success','danger'],
statusMap: ['未处理', '已处理'], statusMap: ['未处理', '已处理','已驳回'],
row:'' row:''
} }
}, },

@ -108,10 +108,15 @@
<el-table-column prop="user_name_pt" show-overflow-tooltip label="陪同用户名称" align="center" /> <el-table-column prop="user_name_pt" show-overflow-tooltip label="陪同用户名称" align="center" />
<el-table-column prop="use_content" show-overflow-tooltip label="试剂详情" align="center" /> <el-table-column prop="use_content" show-overflow-tooltip label="试剂详情" align="center" />
<el-table-column prop="create_date" show-overflow-tooltip label="申请时间" align="center" /> <el-table-column prop="create_date" show-overflow-tooltip label="申请时间" align="center" />
<el-table-column prop="is_solve" show-overflow-tooltip label="状态" align="center">
<template slot-scope="scope">
<el-tag :type="statusColorMap[scope.row.is_solve]">{{ statusMap[scope.row.is_solve] }}</el-tag>
</template>
</el-table-column>
<el-table-column prop="solve_user_name" show-overflow-tooltip label="审批人1" align="center" /> <el-table-column prop="solve_user_name" show-overflow-tooltip label="审批人1" align="center" />
<el-table-column prop="solve_user_pt_name" show-overflow-tooltip label="审批人2" align="center" /> <el-table-column prop="solve_user_pt_name" show-overflow-tooltip label="审批人2" align="center" />
<el-table-column prop="solve_date" show-overflow-tooltip label="审批时间" align="center" /> <el-table-column prop="solve_date" show-overflow-tooltip label="审批时间" align="center" />
<el-table-column prop="information" show-overflow-tooltip label="备注" align="center" />
</el-table> </el-table>
<div class="my-pagination" style="text-align: center"> <div class="my-pagination" style="text-align: center">
<el-pagination <el-pagination
@ -168,6 +173,8 @@ export default {
pt_form:{ pt_form:{
user_id_pt: '', user_id_pt: '',
}, },
statusColorMap: ['warning','success','danger'],
statusMap: ['未处理', '已处理','已驳回'],
rules: { rules: {
user_id_pt: [ user_id_pt: [
{ required: true, message: '请选择陪同人', trigger: 'change' } { required: true, message: '请选择陪同人', trigger: 'change' }

Loading…
Cancel
Save