123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
-
- <div>
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="openForm(0)">新增</el-button>
- <el-button
- type="primary"
- size="small"
- @click="BatchDelete"
- >医药师登记</el-button>
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTest">短信</el-button> -->
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestOne">创建个人用户实名</el-button>
-
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestFive">创建企业用户并实名</el-button>
-
-
-
-
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestFour">添加企业成员</el-button>
-
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestTwo">创建个人印章</el-button>
-
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestThree">创建合同</el-button> -->
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestSeven">添加合同签署人</el-button> -->
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestTen"
- >
- 短信验证码
- </el-button> -->
-
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestNight">后台签署</el-button>
-
-
- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestElement">创建企业用章</el-button> -->
-
-
- <!-- <el-button
- type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- style="float:left"
- @click="toTestThrityMent">生成PDF</el-button> -->
-
- </div>
-
-
- </div>
- <div class="app-container">
- <el-table
- :row-style="{ color: '#303133' }"
- :header-cell-style="{
- backgroundColor: 'rgb(245, 247, 250)',
- color: '#606266'
- }"
- style="width:100%;"
- ref="table"
- border
- :data="admins"
- v-loading="is_loading_admins"
- @selection-change="handleSelectionChange"
- >
- <el-table-column
- align="center"
- type="selection"
- width="55">
- </el-table-column>
- <el-table-column
- label="用户名"
- prop="user_name"
- min-width="160"
- align="center"
- ></el-table-column>
- <el-table-column label="医保医师编码" prop="doctor_number" min-width="160" align="center">
- <template slot-scope="scope">
- <span v-if="scope.row.doctor_number== 0"></span>
- <span v-if="scope.row.doctor_number!= 0">{{scope.row.doctor_number}}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="最后登录IP"
- prop="ip"
- min-width="150"
- align="center"
- ></el-table-column>
- <el-table-column
- label="最后登录时间"
- prop="last_login_time"
- min-width="170"
- align="center"
- >
- <template slot-scope="scope">
- <span>{{
- scope.row.last_login_time == 0
- ? ""
- : _parseTime(scope.row.last_login_time, "{y}-{m}-{d} {h}:{i}")
- }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="角色"
- prop="role_name"
- min-width="160"
- align="center"
- ></el-table-column>
- <el-table-column label="状态" min-width="100" align="center">
- <template slot-scope="scope">
- <div
- v-if="scope.row.status == 1"
- style="color: #67C23A; font-size:20px;"
- >
- <li class="el-icon-success"></li>
- </div>
- <div v-else style="color: #F56C6C; font-size:20px;">
- <li class="el-icon-error"></li>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="240" align="center">
- <template slot-scope="scope">
- <!-- <router-link :to="{ path:'/role/admin/edit', query:{ id:scope.row.user_id }}"> -->
- <el-tooltip
- class="item"
- effect="dark"
- content="编辑"
- placement="top"
- >
- <el-button
- type="primary"
- icon="el-icon-edit-outline"
- size="small"
- @click="openForm(scope.row.user_id)"
- ></el-button>
- </el-tooltip>
- <!-- </router-link> -->
- <el-tooltip
- class="item"
- effect="dark"
- content="移除"
- placement="top"
- >
- <el-button
- type="danger"
- size="small"
- icon="el-icon-delete"
- v-if="
- scope.row.status == 1 &&
- org.creator != scope.row.user_id &&
- scope.row.user_id != local_user_id
- "
- @click="disableAdminAction(scope.row)"
- ></el-button>
- </el-tooltip>
- <el-tooltip
- class="item"
- effect="dark"
- content="恢复"
- placement="top"
- >
- <el-button
- size="small"
- type="info"
- icon="el-icon-refresh"
- v-if="
- scope.row.status == 0 &&
- org.creator != scope.row.user_id &&
- scope.row.user_id != local_user_id
- "
- @click="recoverAdminAction(scope.row)"
- ></el-button>
- </el-tooltip>
- <span v-if="scope.row.user_type == 2">
- <el-button type="primary" size="small" icon="el-icon-refresh-left" @click="toReturn(scope.row.user_id,scope.row.is_mark)">
- <span v-if="scope.row.is_mark ==0">登记</span>
- <span v-if="scope.row.is_mark ==1">撤销</span>
- </el-button>
- </span>
- </template>
- </el-table-column>
- </el-table>
-
- <el-row style="margin-top: 15px;" v-if="admin_total_count > 10">
- <el-col :span="24">
- <el-pagination
- :total="admin_total_count"
- :current-page.sync="current_page"
- @current-change="pageChange"
- :page-size="10"
- layout="total, prev, pager, next, jumper"
- ></el-pagination>
- </el-col>
- </el-row>
- <admin-info-form ref="admininfoform"></admin-info-form>
- </div>
- </div>
- </template>
-
- <script>
- import { adminMainView, getAdmins, setAdminStatus,toSign,toTestOne,toTestTwo,toTestThree,toTestFour,toTestFive,toTestSeven,toTestEight,toTestNight,toTestTen,toTestElement,toTestThrityMent } from "@/api/role/admin";
- import { getRoles } from "@/api/role/role";
-
- import { parseTime } from "@/utils";
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import AdminInfoForm from "./components/AdminInfoForm";
- import axios from 'axios'
- export default {
- name: "adminManage",
- data() {
- return {
- crumbs: [
- { path: false, name: "管理中心" },
- { path: false, name: "员工管理" }
- ],
- is_loading_admins: true,
- admins: [], // [{user_id, user_name, role_name, title_name, ip, last_login_time, status}]
- admin_total_count: 0,
- current_page: 1,
- roles: [],
- is_exist_role: false,
- org: null,
- isSubSuperAdmin: false,
- local_user_id: 0,
- selectDrug:[]
- };
- },
- components: {
- BreadCrumb,
- AdminInfoForm
- },
- created: function() {
- this.local_user_id = this.$store.getters.xt_user.user.id;
- let page = 1;
- this.getRoles(page);
- adminMainView()
- .then(rs => {
- this.is_loading_admins = false;
- var resp = rs.data;
- if (resp.state === 1) {
- var adminData = resp.data.admins
- console.log("数据",adminData)
- this.admins.push(...adminData);
- this.admin_total_count = resp.data.total_count;
- this.is_exist_role = resp.data.is_exist_role;
- this.current_page = 1;
- this.org = resp.data.org;
- this.isSubSuperAdmin = resp.data.isSubSuperAdmin;
-
- //能进入当前页面的角色只有超级管理员和子管理员,如果当前角色是子管理员,需要把超级管理员和其他子管理员的信息去除,子管理员不能编辑超级管理员和其他子管理员信息,
- if (this.isSubSuperAdmin) {
- //去除管理员信息
- for (let i = 0; i < this.admins.length; i++) {
- if (this.admins[i].user_id == this.org.creator) {
- this.admins.splice(i, 1);
- i--;
- }
- }
-
- //去除其他子管理员信息
- for (let i = 0; i < this.admins.length; i++) {
- if (
- this.admins[i].user_id != this.local_user_id &&
- this.admins[i].is_sub_super_admin
- ) {
- //将自己排除在外
- console.log(this.admins[i]);
-
- this.admins.splice(i, 1);
- i--;
- }
- }
- }
- } else {
- this.$message.error(resp.msg);
- }
- })
- .catch(err => {
- this.is_loading_admins = false;
- this.$message.error(err);
- });
- },
- computed: {
- should_update_admins() {
- return this.$store.getters.xt_role_temps.did_admins_changed;
- }
- },
- methods: {
- getRoles(page) {
- getRoles(page)
- .then(rs => {
- this.loading_roles = false;
- const resp = rs.data;
- if (resp.state === 1) {
- this.roles.push(...resp.data.roles);
- } else {
- this.$message.error(resp.msg);
- }
- })
- .catch(err => {
- this.loading_roles = false;
- this.$message.error(err);
- });
- },
- openForm(adminId) {
- this.$refs["admininfoform"].open(adminId, this.roles);
- },
- _parseTime(time, format) {
- return parseTime(time, format);
- },
- requestAdminsWithPage: function(page) {
- this.admins.splice(0, this.admins.length);
- this.is_loading_admins = true;
- getAdmins(page)
- .then(rs => {
- this.is_loading_admins = false;
- const resp = rs.data;
- console.log(resp);
- if (resp.state === 1) {
- var admindata = resp.data.admins
-
- this.admins.push(...admindata);
- this.admin_total_count = resp.data.total_count;
- } else {
- this.$message.error(resp.msg);
- }
- })
- .catch(err => {
- this.is_loading_admins = false;
- this.$message.error(err);
- });
- },
- addAdminAction: function() {
- this.$router.push({ path: "/role/admin/create" });
- },
- disableAdminAction: function(row) {
- this.$msgbox({
- title: "提示",
- message: "是否确定要移除该用户",
- showCancelButton: true,
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- beforeClose: (action, instance, done) => {
- if (action === "confirm") {
- instance.confirmButtonLoading = true;
- instance.confirmButtonText = "删除中...";
-
- setAdminStatus(row.user_id, false)
- .then(rs => {
- done();
- instance.confirmButtonLoading = false;
-
- const resp = rs.data;
- if (resp.state === 1) {
- row.status = 0;
- } else {
- this.$message.error(resp.msg);
- }
- })
- .catch(err => {
- done();
- instance.confirmButtonLoading = false;
- this.$message.error(err);
- });
- } else {
- done();
- }
- }
- });
- },
- recoverAdminAction: function(row) {
- const loading = this.$loading({
- lock: true,
- text: "正在恢复管理员...",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
-
- setAdminStatus(row.user_id, true)
- .then(rs => {
- loading.close();
-
- const resp = rs.data;
- if (resp.state === 1) {
- row.status = 1;
- } else {
- this.$message.error(resp.msg);
- }
- })
- .catch(err => {
- loading.close();
- this.$message.error(err);
- });
- },
- pageChange: function(nextPage) {
- this.requestAdminsWithPage(nextPage);
- },
- // toLogin(){
- // var that = this
- // axios.get('http://127.0.0.1:9532/sz/api/doctor/get').then(function(response) {
- // if (response.data.state == 0) {
- // that.$message.error(response.data.msg)
- // return false
- // } else {
- // that.$message({ message: '登记成功', type: 'success' })
- // }
- // }).catch(function(error) {
- // })
- // },
-
- BatchDelete() {
- if (this.selectDrug.length == 0) {
- this.$message.error("请选择要登记的信息");
- return false;
- }
- this.$confirm(
- "确认要登记所选记录吗? <br>",
- "备案提示",
- {
- dangerouslyUseHTMLString: true,
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }
- ).then(() => {
- var ids = [];
- var idMap = {};
- console.log("3333333",this.selectDrug)
- for (const index in this.selectDrug) {
- ids.push(this.selectDrug[index].user_id);
- idMap[this.selectDrug[index].user_id] = this.selectDrug[index].user_id;
- }
-
- var idss = ids.join(',')
- let params = {
- ids:idss,
- admin_user_id:this.$store.getters.xt_user.user.id
- }
- console.log("prams222",params)
- var that = this
- axios.get('http://127.0.0.1:9532/sz/api/doctor/get',{ params: params }).then(function(response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.data.msg)
- return false
- } else {
- that.$message.error(response.data.data.msg)
- if(response.data.data.msg == ""){
- that.$message.success("登记成功!")
- that.adminMainView()
- }
- if(response.data.data.msg!=""){
- that.$message.error(response.data.data.msg)
- that.adminMainView()
- }
- }
- }).catch(function(error) {
- })
- });
- },
- toReturn(id,is_mark){
- var that = this
- let params = {
- 'id':id,
- "is_mark":is_mark,
- "admin_user_id":this.$store.getters.xt_user.user.id
- }
-
- axios.get('http://127.0.0.1:9532/sz/api/medical/get',{params:params}).then(function(response) {
- if (response.data.state == 0) {
- that.$message.error(response.data.data.msg)
- return false
- } else {
-
- if(response.data.data.msg == ""){
- that.$message.success("登记成功!")
- that.adminMainView()
- }
- if(response.data.data.msg!=""){
- that.$message.error(response.data.data.msg)
- that.adminMainView()
- }
- }
- }).catch(function(error) {
- })
- },
-
- handleSelectionChange(val) {
- this.selectDrug = val;
- },
- toTest(){
- toSign().then(response=>{
- if(response.data.state ==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestOne(){
- toTestOne().then(response=>{
- if(response.data.state==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestTwo(){
- toTestTwo().then(response=>{
- if(response.data.state ==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestThree(){
- toTestThree().then(response=>{
- if(response.data.state ==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestFour(){
- toTestFour().then(response=>{
- if(response.data.state==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestFive(){
- toTestFive().then(response=>{
- if(response.data.state==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestSeven(){
- toTestSeven().then(response=>{
- if(response.data.state ==1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- }
- })
- },
- toTestEight(){
- toTestEight().then(response=>{
- if(response.data.state== 1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- this.$message.success("保存")
- }
- })
- },
- toTestNight(){
- toTestNight().then(response=>{
- if(response.data.state == 1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- this.$message.success("保存")
- var maprequest = response.data.data.maprequest
- console.log("maprequest",maprequest)
- }
- })
- },
- toTestTen(){
- toTestTen().then(response=>{
- if(response.data.state == 1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- this.$message.success("保存")
- }
- })
- },
- toTestElement(){
- toTestElement().then(response=>{
- if(response.data.state == 1){
- var sign = response.data.data.sign
- console.log("sign",sign)
- this.$message.success("保存")
- }
- })
- },
- toTestThrityMent(){
- toTestThriytyMent().then(response=>{
- var sign = response.data.data.sign
- console.log("sign",sign)
- this.$message.success("保存")
- })
- }
- },
- watch: {
- should_update_admins(should_change) {
- if (should_change) {
- this.requestAdminsWithPage(this.current_page);
- }
- }
- }
- };
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- .el-button + .el-button {
- margin-left: 0 !important;
- }
- </style>
- <style>
- .el-table td,
- .el-table th.is-leaf,
- .el-table--border,
- .el-table--group {
- border-color: #d0d3da;
- }
- .el-table--border::after,
- .el-table--group::after,
- .el-table::before {
- background-color: #d0d3da;
- }
- </style>
|