Commit 994613f3 by 李姝悦

Merge branch 'dev_zwpt' of http://39.99.224.27:9022/changchao/founder_vue into dev

parents 5182bf27 7838e3d8
/*
* @Author: your name
* @Date: 2022-01-04 15:53:50
* @LastEditTime: 2022-01-05 16:44:59
* @LastEditTime: 2022-01-10 09:24:52
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \vueli\jsdoc-vue.js
......@@ -14,8 +14,10 @@ exports.handlers = {
beforeParse: function (e) {
if (/\.(vue)$/.test(e.filename)) {
var output = compiler.parseComponent(e.source);
e.source = output.script ? output.script.content : '';
let index = e.source.indexOf('<script>');
var template = e.source.substring(0, index);
let str = `/**${template}*/`
e.source = output.script ? str + output.script.content : '';
}
}
};
\ No newline at end of file
src/assets/img/rgrd/fangdajing.png

277 Bytes | W: | H:

src/assets/img/rgrd/fangdajing.png

640 Bytes | W: | H:

src/assets/img/rgrd/fangdajing.png
src/assets/img/rgrd/fangdajing.png
src/assets/img/rgrd/fangdajing.png
src/assets/img/rgrd/fangdajing.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -11,7 +11,7 @@ import './utils/CrashHandle'
import './plugins/axios'
import fHttp from './request/http.js'
import NetUtil from './netmgr/NetUtil'
import VerifyDataType from './utils/verify-data/VerifyDataType.js'
import RegExpUtil from './utils/verify-data/RegExpUtil.js'
import App from './App.vue'
import router from './router'
import store from './store'
......@@ -73,7 +73,7 @@ window.util = Util
window.logger = LoggerUtil
window.user = UserUtil
window.fHttp = fHttp
window.verifyData = VerifyDataType
window.fRegExp = RegExpUtil
window.NetUtil = NetUtil
Vue.use(VueWechatTitle)
Vue.use(VueClipboard)
......
/**
* Description: 校验字符的正则表达式
* @author: li_hongchao
* @date: 2022/1/10 14:27
*/
const CharRegExp = {
/* 0 汉字 */ _N_0 : /^[\u4e00-\u9fa5]{0,}$/,
/* 1 英文和数字 */ _N_1 : /^[A-Za-z0-9]+$/, // ^[A-Za-z0-9]{4,40}$
/* 2 长度为3-20的所有字符 */ _N_2 : /^.{3,20}$/,
/* 3 由26个英文字母组成的字符串 */ _N_3 : /^[A-Za-z]+$/,
/* 4 由26个大写英文字母组成的字符串 */ _N_4 : /^[A-Z]+$/,
/* 5 由26个小写英文字母组成的字符串 */ _N_5 : /^[a-z]+$/,
/* 6 由数字和26个英文字母组成的字符串 */ _N_6 : /^[A-Za-z0-9]+$/,
/* 7 由数字、26个英文字母或者下划线组成的字符串*/ _N_7 : /^\w+$/, // ^\w{3,20}$
/* 8 中文、英文、数字包括下划线 */ _N_8 : /^[\u4E00-\u9FA5A-Za-z0-9_]+$/,
/* 9 中文、英文、数字但不包括下划线等符号 */ _N_9 : /^[\u4E00-\u9FA5A-Za-z0-9]+$/, // ^[\u4E00-\u9FA5A-Za-z0-9]{2,20}$
/* 10 可以输入含有^%&',;=?$\"等字符 */ _N_10 : /[^%&',;=?$\x22]+/,
/* 11 禁止输入含有~的字符 */ _N_11 : /[^~\x22]+/,
}
export default CharRegExp
/**
* Description: 常见数据格式正则
* @author: li_hongchao
* @date: 2022/1/10 15:35
*/
export default {
/**
* Description: 逻辑分库名称正则
* @author: li_hongchao
* @date: 2022/1/9 19:47
*/
_LJFKM: /(([\u4E00-\u9FA5·]{2,})|([a-zA-Z]{4,}))/,
_NUMBER: /^(0|([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*))$/,
/**
......@@ -28,6 +25,13 @@ export default {
/**
* Description: 身份证号(15位、18位数字),最后一位是校验位,可能为数字或字符X
* @author: li_hongchao
* @date: 2022/1/10 15:06
*/
_IDCard: /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/,
/**
* Description: 18位身份证号
* @author: li_hongchao
* @date: 2022/1/9 19:41
......@@ -49,18 +53,18 @@ export default {
_URL: /(http|https):\/\/([\w.]+\/?)\S*/,
/**
* Description: QQ号
* Description: 腾讯QQ号(腾讯QQ号从10000开始)
* @author: li_hongchao
* @date: 2022/1/9 19:42
*/
_QQ: /^[1-9]\\d{4,10}$/,
_QQ: /[1-9][0-9]{4,}/,
/**
* Description: 一个或多个汉字
* @author: li_hongchao
* @date: 2022/1/9 19:42
*/
_CHINESE: /^[\\u0391-\\uFFE5]+$/,
_CHINESE: /^[\u4E00-\u9FA5]+$/,
/**
* Description: 手机号码
......@@ -91,6 +95,145 @@ export default {
*/
_POST_CODE: /^[1-9]\\d{5}$/,
/**
* Description: 域名
* @author: li_hongchao
* @date: 2022/1/10 15:00
*/
_DOMAIN: /[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\.?/,
/**
* Description: InternetURL
* @author: li_hongchao
* @date: 2022/1/10 15:00
*/
_NET_URL_1: /[a-zA-z]+:\/\/[^\s]*/,
_NET_URL_2: /^http:\/\/([\w-]+\.)+[\w-]+(\/[\w-./?%&=]*)?$/,
/**
* Description: 手机号码
* @author: li_hongchao
* @date: 2022/1/10 15:01
*/
_MOBILE_PHONE_1: /^(13[0-9]|14[5|7]|15[0|1|2|3|4|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$/,
/**
* Description: 电话号码正则表达式(支持手机号码,3-4位区号,7-8位直播号码,1-4位分机号)
* @author: li_hongchao
* @date: 2022/1/10 15:05
*/
_MOBILE_PHONE_2: /((\d{11})|^((\d{7,8})|(\d{4}|\d{3})-(\d{7,8})|(\d{4}|\d{3})-(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1})|(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1}))$)/,
/**
* Description: 电话号码 ("XXX-XXXXXXX"、"XXXX-XXXXXXXX"、"XXX-XXXXXXX"、"XXX-XXXXXXXX"、"XXXXXXX"和"XXXXXXXX)
* @author: li_hongchao
* @date: 2022/1/10 15:02
*/
_TELEPHONE: /^((\d{3,4}-)|\d{3.4}-)?\d{7,8}$/,
/**
* Description: 国内电话号码(0511-4405222、021-87888822)
* @author: li_hongchao
* @date: 2022/1/10 15:04
*/
_CHINA_PHONE: /\d{3}-\d{8}|\d{4}-\d{7}/,
/**
* Description: 帐号是否合法(字母开头,允许5-16字节,允许字母数字下划线)
* @author: li_hongchao
* @date: 2022/1/10 15:07
*/
_ACCOUNT: /^[a-zA-Z][a-zA-Z0-9_]{4,15}$/,
/**
* Description: 密码(以字母开头,长度在6~18之间,只能包含字母、数字和下划线)
* @author: li_hongchao
* @date: 2022/1/10 15:08
*/
_PASSWORD: /^[a-zA-Z]\w{5,17}$/,
/**
* Description: 强密码(必须包含大小写字母和数字的组合,不能使用特殊字符,长度在 8-10 之间)
* @author: li_hongchao
* @date: 2022/1/10 15:09
*/
_S_PASSWORD_1: /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])[a-zA-Z0-9]{8,10}$/,
/**
* Description: 强密码(必须包含大小写字母和数字的组合,可以使用特殊字符,长度在8-10之间)
* @author: li_hongchao
* @date: 2022/1/10 15:09
*/
_S_PASSWORD_2: /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$/,
/**
* Description: 日期格式 0000-00-00
* @author: li_hongchao
* @date: 2022/1/10 15:11
*/
_DATE_YYYY_MM_DD: /^\d{4}-\d{1,2}-\d{1,2}/,
/**
* Description: 一年的12个月(01~09和1~12)
* @author: li_hongchao
* @date: 2022/1/10 15:11
*/
_DATE_MONTH: /^(0?[1-9]|1[0-2])$/,
/**
* Description: 一个月的31天(01~09和1~31)
* @author: li_hongchao
* @date: 2022/1/10 15:12
*/
_DATE_DAY: /^((0?[1-9])|((1|2)[0-9])|30|31)$/,
/**
* Description: 钱的四种的表示形式:"10000.00"、"10,000.00"、没有 "分"的"10000"、"10,000"
* @author: li_hongchao
* @date: 2022/1/10 15:13
*/
_MONEY: /^[1-9][0-9]*$/,
/**
* Description: xml文件
* @author: li_hongchao
* @date: 2022/1/10 15:14
*/
_XML: /^([a-zA-Z]+-?)+[a-zA-Z0-9]+\\.[x|X][m|M][l|L]$/,
/**
* Description: 中文字符的正则表达式
* @author: li_hongchao
* @date: 2022/1/10 15:14
*/
_CHINESE_CHAR: /[\u4e00-\u9fa5]/,
/**
* Description:空白行的正则表达式
* @author: li_hongchao
* @date: 2022/1/10 15:15
*/
_BLANK_LINE: /\n\s*\r/,
/**
* Description: HTML标记的正则表达式
* @author: li_hongchao
* @date: 2022/1/10 15:15
*/
_HTML: /<(\S*?)[^>]*>.*?|<.*? \/>/,
/**
* Description: IPv4地址
* @author: li_hongchao
* @date: 2022/1/10 15:18
*/
_IPv4: /((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}/,
}
/**
* Description: 校验数字的正则表达式
* @author: li_hongchao
* @date: 2022/1/10 14:27
*/
const NumRegExp = {
/* 0 数字 */ _N_0 : /^[0-9]*$/,
/* 1 n位的数字 */ _N_1 : /^\d{n}$/,
/* 2 至少n位的数字 */ _N_2 : /^\d{n,}$/,
/* 3 m-n位的数字 */ _N_3 : /^\d{m,n}$/,
/* 4 零和非零开头的数字 */ _N_4 : /^(0|[1-9][0-9]*)$/,
/* 5 非零开头的最多带两位小数的数字*/ _N_5 : /^([1-9][0-9]*)+(\.[0-9]{1,2})?$/,
/* 6 带1-2位小数的正数或负数 */ _N_6 : /^(\-)?\d+(\.\d{1,2})$/,
/* 7 正数、负数、和小数 */ _N_7 : /^(\-|\+)?\d+(\.\d+)?$/,
/* 8 有两位小数的正实数 */ _N_8 : /^[0-9]+(\.[0-9]{2})?$/,
/* 9 有1~3位小数的正实数 */ _N_9 : /^[0-9]+(\.[0-9]{1,3})?$/,
/* 10 非零的正整数 */ _N_10 : /^[1-9]\d*$/, // ^([1-9][0-9]*){1,3}$/ 或 ^\+?[1-9][0-9]*$/
/* 11 非零的负整数 */ _N_11 : /^-[1-9]\d*$/,
/* 12 非负整数 */ _N_12 : /^\d+$/, // ^[1-9]\d*|0$/
/* 13 非正整数 */ _N_13 : /^-[1-9]\d*|0$/, // ^((-\d+)|(0+))$/
/* 14 非负浮点数 */ _N_14 : /^\d+(\.\d+)?$/, // ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/
/* 15 非正浮点数 */ _N_15 : /^((-\d+(\.\d+)?)|(0+(\.0+)?))$/, // ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$/
/* 16 正浮点数 */ _N_16 : /^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$/, //^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$/
/* 17 负浮点数 */ _N_17 : /^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$/, // ^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$/
/* 18 浮点数 */ _N_18 : /^(-?\d+)(\.\d+)?$/, // ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$/
}
export default NumRegExp
import NUM from './NumRegExp'
import CHAR from './CharRegExp'
import SYS from './SysRegExp'
import COMM from './CommonRegExp'
export default {
NUM, CHAR, COMM, SYS
}
/**
* Description: 应用于本系统正则
* @author: li_hongchao
* @date: 2022/1/10 15:35
*/
const SysRegExp = {
/**
* Description: 逻辑分库名称正则
* @author: li_hongchao
* @date: 2022/1/9 19:47
*/
_LJFKM: /^[\u4e00-\u9fa5]{2,}$/,
}
export default SysRegExp
......@@ -324,6 +324,7 @@ export default {
}
},
mounted () {
console.log(this.routes);
console.log(this.loading_sd)
this.$store.commit('loading/setLoadingSd', false)
let self = this
......
......@@ -717,7 +717,7 @@
/**
* 用户组管理
* @module GroupManage
* @see 720
*
*/
import "@/icons/ic_add.svg";
import "@/icons/group-item.svg";
......@@ -924,7 +924,6 @@ export default {
/**
* @function dropdownSave
* @example 用户设置添加组成员操作
* @see 929
*/
dropdownSave() {
this.$axios({
......@@ -951,7 +950,6 @@ export default {
* @function visibleChange
* @param {Boolean} val 下拉框出现/隐藏判断标识(出现则为 true,隐藏则为 false)
* @example 当用户设置组成员弹框消失后清空选中的用户
* @see 956
*/
visibleChange(val) {
if (!val) {
......@@ -961,7 +959,6 @@ export default {
/**
* @function offMultiple
* @example 不在批量状态时清空之前选中的数据
* @see 966
*/
offMultiple() {
this.selectBoo = false;
......@@ -970,7 +967,6 @@ export default {
/**
* @function clear
* @example 筛选条件中点击清空后清空筛选条件并更新表格数据
* @see 975
*/
clear() {
for (let key in this.searchParams) {
......@@ -989,7 +985,6 @@ export default {
* @param {String} minus 需要删减对象的字段名
* @param {String} add 需要添加对象的字段名
* @example 角色设置,前端交互动画方法
* @see 994
*/
settingPerson(item, minus, add) {
console.log(minus, add);
......@@ -1002,7 +997,6 @@ export default {
/**
* @function savePerson
* @example 保存角色设置
* @see 1007
*/
savePerson() {
let arr = [...this.xtCheckPersonArr, ...this.zdyCheckPersonArr];
......@@ -1030,7 +1024,6 @@ export default {
* @param {String} str 用户组角色字符串(逗号分隔)
* @example 当用户组角色大于三个则裁剪否则不操作
* @returns {Object} (arr: 裁剪前的对象个数 , length: 裁剪后的对象集合)
* @see 1038
*/
strArr(str) {
let arr = str.split(",");
......@@ -1050,7 +1043,6 @@ export default {
* @function toggleSelection
* @param {Object} rows 表格行数据
* @example 如果有数据则表格勾选相应数据,如果没有则清空相应数据
* @see 1058
*/
toggleSelection(rows) {
if (rows) {
......@@ -1066,7 +1058,6 @@ export default {
* @function handleSelectionChange
* @param {Object} val 勾选的用户对象
* @example 将勾选后的用户对象存到multipleSelection变量中
* @see 1074
*/
handleSelectionChange(val) {
this.multipleSelection = val;
......@@ -1076,7 +1067,6 @@ export default {
* @function toggleUserSelection
* @param {Object} rows 用户对象
* @example 用户设置的清除所有选项
* @see 1084
*/
toggleUserSelection(rows) {
if (rows) {
......@@ -1092,7 +1082,6 @@ export default {
* @function userHandleSelectionChange
* @param {Object} val 用户对象
* @example 用户设置的选择用户数据
* @see 1100
*/
userHandleSelectionChange(val) {
this.userMultipleSelection = val;
......@@ -1110,7 +1099,6 @@ export default {
* @property {object} response - 获取到的数据.
* @property {number} response.code - 状态码(200为成功).
* @property {String} response.info - success为成功.
* @see 1118
*/
userDel(id) {
let userId = id;
......@@ -1139,7 +1127,6 @@ export default {
/**
* @function userBatch
* @example 用户设置弹窗批量操作
* @see 1147
*/
userBatch() {
this.userSelectBoo = !this.userSelectBoo;
......@@ -1148,7 +1135,6 @@ export default {
/**
* @function delUserDatas
* @example 用户设置弹窗批量删除用户
* @see 1154
*/
delUserDatas() {
if (!this.userSelectBoo) {
......@@ -1200,7 +1186,6 @@ export default {
/**
* @function batch
* @example 用户组批量操作
* @see 1206
*/
batch() {
this.selectBoo = !this.selectBoo;
......@@ -1210,7 +1195,6 @@ export default {
* @function handleCurrPageChange
* @param {Number} val 目标页数
* @example 用户组切换页数
* @see 1216
*/
handleCurrPageChange: function (val) {
this.searchParams.page = val;
......@@ -1220,7 +1204,6 @@ export default {
* @function handleSizeChange
* @param {Number} val 目标数量
* @example 用户组每页展示数量发生变化
* @see 1226
*/
handleSizeChange: function (val) {
this.searchParams.size = val;
......@@ -1229,7 +1212,6 @@ export default {
/**
* @function open
* @example 打开新增弹窗
* @see 1235
*/
open() {
this.isShowAddUserDialog = true;
......@@ -1243,7 +1225,6 @@ export default {
/**
* @function canceladd
* @example 关闭新增弹窗
* @see 1249
*/
canceladd() {
this.isShowAddUserDialog = false;
......@@ -1253,7 +1234,6 @@ export default {
* @function openedit
* @param {Object} row 编辑的用户组对象
* @example 打开编辑弹窗
* @see 1259
*/
openedit(row) {
this.checkItem = row;
......@@ -1269,7 +1249,6 @@ export default {
/**
* @function canceledit
* @example 关闭编辑弹窗
* @see 1275
*/
canceledit() {
this.isShowEditGroupDialog = false;
......@@ -1278,7 +1257,6 @@ export default {
/**
* @function cancelrole
* @example 关闭角色设置弹窗
* @see 1284
*/
cancelrole() {
this.isShowRoleDialog = false;
......@@ -1287,7 +1265,6 @@ export default {
/**
* @function canceluser
* @example 关闭用户设置弹窗
* @see 1293
*/
canceluser() {
this.isShowUserDialog = false;
......@@ -1297,7 +1274,6 @@ export default {
* @function setUser
* @param {Object} row 当前用户信息对象
* @example 点击用户设置后保存当前的用户信息
* @see 1303
*/
setUser(row) {
this.checkItem = row;
......@@ -1313,7 +1289,6 @@ export default {
/**
* @function getUserList
* @example 点击用户设置后获取当前用户组所有的用户列表
* @see 1319
*/
getUserList() {
this.$axios
......@@ -1328,7 +1303,6 @@ export default {
/**
* @function getAddUserList
* @example 点击用户设置后获取当前用户组可以添加的用户列表
* @see 1334
*/
getAddUserList() {
this.$axios
......@@ -1344,7 +1318,6 @@ export default {
* @function setRole
* @param {Object} row 当前用户组的对象信息
* @example 打开角色弹窗前保存用户组信息
* @see 1350
*/
setRole(row) {
this.checkItem = row;
......@@ -1361,7 +1334,6 @@ export default {
* @function getPersonData
* @param {String} id 当前用户组id
* @example 获取当前用户组的所有角色
* @see 1367
*/
getPersonData(id) {
this.personId = id;
......@@ -1388,7 +1360,6 @@ export default {
/**
* @function submitForm
* @example 新增用户组
* @see 1394
*/
submitForm(formName) {
this.$refs.addFormParams.validate((valid) => {
......@@ -1431,7 +1402,6 @@ export default {
/**
* @function submitEditForm
* @example 修改用户组
* @see 1437
*/
submitEditForm(formName) {
this.$refs.editFormParams.validate((valid) => {
......@@ -1472,7 +1442,6 @@ export default {
/**
* @function delMore
* @example 用户组批量删除
* @see 1478
*/
delMore() {
let self = this;
......@@ -1505,7 +1474,6 @@ export default {
* @function del
* @param {String} id 用户组id
* @example 用户组单删除
* @see 1511
*/
del(id) {
this.$axios({
......@@ -1531,7 +1499,6 @@ export default {
* @function search
* @param {Boolean|String} boo 如果存在则初始化页数
* @example 查询用户组列表
* @see 1537
*/
search(boo) {
let params = {};
......
......@@ -500,7 +500,6 @@
<script>
/**
* 用户管理
* @see 503
* @module UserManage
*/
import "@/icons/ic_add.svg";
......@@ -831,7 +830,6 @@ export default {
/**
* @function submitForm
* @example 新增用户
* @see 833
*/
submitForm(formName) {
//console.log(this.addFormParams, 22222222222);
......@@ -881,7 +879,6 @@ export default {
* @param {String} str 用户角色字符串(逗号分隔)
* @example 当用户角色大于三个则裁剪否则不操作
* @returns {Object} 返回了一个对象,里面包含arr(裁剪后的角色数组),length(裁剪之前的角色个数)
* @see 884
*/
strArr(str) {
let arr = str.split(",");
......@@ -900,7 +897,6 @@ export default {
/**
* @function submitEditForm
* @example 编辑用户
* @see 903
*/
submitEditForm(formName) {
this.$refs.editFormParams.validate((valid) => {
......@@ -943,7 +939,6 @@ export default {
* @function resetForm
* @param {String} formName 对应form的ref值
* @example 重置对应的form表单
* @see 946
*/
resetForm(formName) {
this.$refs[formName].resetFields();
......@@ -951,7 +946,6 @@ export default {
/**
* @function clear
* @example 清空所有筛选条件并更新用户表格数据
* @see 954
*/
clear() {
for (let key in this.searchParams) {
......@@ -974,7 +968,6 @@ export default {
* @function search
* @param {Boolean|String} boo 如果存在则初始化页数
* @example 筛选用户表格数据
* @see 977
*/
search(boo) {
let params = {};
......@@ -1009,7 +1002,6 @@ export default {
/**
* @function offMultiple
* @example 取消批量操作状态,删除所有选中的用户
* @see 1012
*/
offMultiple() {
this.selectBoo = false;
......@@ -1019,7 +1011,6 @@ export default {
* @function toggleSelection
* @param {Object} rows 用户对象
* @example 如果用户对象存在则选中否则清空
* @see 1022
*/
toggleSelection(rows) {
if (rows) {
......@@ -1035,7 +1026,6 @@ export default {
* @function handleSelectionChange
* @param {Object} val 用户对象
* @example 将勾选的用户对象保存起来
* @see 1037
*/
handleSelectionChange(val) {
this.multipleSelection = val;
......@@ -1044,7 +1034,6 @@ export default {
/**
* @function batch
* @example 点击批量操作后的方法
* @see 1047
*/
batch() {
this.selectBoo = !this.selectBoo;
......@@ -1054,7 +1043,6 @@ export default {
* @function handleCurrPageChange
* @param {Number} val 目标页
* @example 当期页发生变化
* @see 1057
*/
handleCurrPageChange: function (val) {
this.searchParams.page = val;
......@@ -1064,7 +1052,6 @@ export default {
* @function handleSizeChange
* @param {Number} val 目标页数量
* @example 每页展示数量发生变化
* @see 1067
*/
handleSizeChange: function (val) {
this.searchParams.size = val;
......@@ -1073,7 +1060,6 @@ export default {
/**
* @function open
* @example 打开新增弹窗
* @see 1076
*/
open() {
for (let key in this.addFormParams) {
......@@ -1090,7 +1076,6 @@ export default {
* @function openedit
* @param {Object} row 需要编辑的用户对象
* @example 打开编辑弹窗
* @see 1093
*/
openedit(row) {
for (let key in this.editFormParams) {
......@@ -1109,7 +1094,6 @@ export default {
* @function getPersonInfor
* @param {String} id 需要编辑的用户id
* @example 回显要编辑的人员信息
* @see 1112
*/
getPersonInfor(id) {
this.$axios
......@@ -1138,7 +1122,6 @@ export default {
/**
* @function canceladd
* @example 关闭新增弹窗
* @see 1141
*/
canceladd() {
this.isShowAddUserDialog = false;
......@@ -1147,7 +1130,6 @@ export default {
/**
* @function canceledit
* @example 关闭修改弹窗
* @see 1150
*/
canceledit() {
this.isShowEditUserDialog = false;
......@@ -1156,7 +1138,6 @@ export default {
/**
* @function delMore
* @example 批量删除用户
* @see 1159
*/
delMore() {
let self = this;
......@@ -1190,7 +1171,6 @@ export default {
* @function del
* @param {String} id 要删除用户的id
* @example 单个删除用户
* @see 1193
*/
del(id) {
this.$axios({
......
......@@ -336,3 +336,17 @@ $phone: var(--phone, #606266); //#ff4242;
background-color: #055fe7 !important;
}
}
.top-head {
position: fixed;
top: 0;
left: 0;
width: 1920px;
height: 123px;
.gongjvlan {
width: 100%;
height: 123px;
}
}
.header {
z-index: 99;
}
<template>
<div class="ltDiv">
<div class="lt" :class="{ bzActive: isShowbzDialogBg || loading_sd }">
<div class="top-head">
<img src="@/assets/img/rgrd/gongjvlan.png" alt="">
</div>
<div class="header">
<div class="label">串查</div>
<div class="label">
<img src="@/assets/img/rgrd/chuancha.png" alt="">
<span>串查</span>
</div>
<div class="btns">
<div class="bz-btn" @click="Bz">比中</div>
<div class="rd-btn" @click="Rdwc">认定完成</div>
</div>
</div>
<div class="header_line"></div>
<!-- <div class="header_line"></div> -->
<div class="lt_main">
<div class="lt_main_left">
<LLSrc
......@@ -630,9 +636,9 @@ export default {
}
.ltDiv {
width: 100%;
height: 100%;
height: 100vh;
overflow: hidden;
font-family: HarmonyOS_Sans_SC;
}
div {
margin: 0;
......@@ -642,10 +648,10 @@ div {
}
.lt {
width: 100%;
background-color: #ffffff;
background-color: #F6F8FA;
// background-color: #fff;
/*padding: 24px;*/
margin: 0;
padding: 0 24px 24px 24px;
display: flex;
flex-direction: column;
/deep/.el-table__body-wrapper.is-scrolling-none {
......@@ -660,14 +666,21 @@ div {
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 0 25px;
.label {
align-self: flex-start;
height: 22px;
font-size: 16px;
font-weight: bold;
color: #055fe7;
line-height: 22px;
font-size: 20px;
font-family: HarmonyOS_Sans_SC-Bold;
color: #FFFFFF;
margin-top: 14px;
img {
width: 120px;
}
span {
position: absolute;
left: 52px;
line-height: 35px;
}
}
}
......@@ -723,21 +736,27 @@ div {
}
.lt_main {
width: 100%;
// width: 1124px;
display: flex;
flex-direction: row;
background: #fff;
// flex-direction: row;
// justify-content: space-between;
}
.lt_main_left {
width: 352px;
width: 376px;
border: none;
/* margin-right: 16px; */
margin-top: 18px;
box-shadow: 0px 4px 10px 0px rgba(5, 95, 231, 0.3);
border-radius: 0px 20px 0px 0px;
overflow: hidden;
}
.lt_main_middle {
width: 1120px;
width: 1135px;
display: flex;
flex-direction: column;
margin-top: -65px;
// margin-top: -65px;
// margin-left: -16px;
margin: -65px 20px 24px 20px;
}
.lt_main_middle .lt_main_header {
height: 70px;
......@@ -752,10 +771,12 @@ div {
border: 1px #8b4513 solid;
}
.lt_main_right {
margin-top: 50px;
margin-left: 16px;
width: 380px;
margin-top: 20px;
width: 376px;
border: none;
border-radius: 20px 0px 0px 0px;
overflow: hidden;
box-shadow: 0px 4px 10px 0px rgba(5, 95, 231, 0.3);
}
.lt_main_footer {
......
......@@ -655,6 +655,7 @@ div {
.main-left {
width: 376px;
border: none;
height: 100%;
/* margin-right: 16px; */
margin-top: 18px;
box-shadow: 0px 4px 10px 0px rgba(5, 95, 231, 0.3);
......
......@@ -20,7 +20,9 @@
</div>
</div>
<el-input class="input" v-model="input3" placeholder="请输入条码号/指位" @keydown.enter="search"></el-input>
<div class="btn" @click="search">筛选</div>
<div class="btn" @click="search">
<img src="@/assets/img/rgrd/fangdajing.png" alt="">
</div>
<div class="checked">
<el-checkbox v-model="checked">显示已比中候选</el-checkbox>
</div>
......@@ -1274,18 +1276,19 @@ const candidates = [
position: relative;
box-sizing: border-box;
width: 100%;
height: calc(100% - 40px);
background: #f6f8fa;
height: calc(100% - 25px);
border-radius: 8px;
div {
display: inline-block;
}
.lt_cnadidate_search {
// width: 352px;
width: 100%;
// height: 60px;
background: #ffffff;
padding: 20px 20px 15px 20px;
.label {
width: 32px;
height: 24px;
......@@ -1310,19 +1313,27 @@ const candidates = [
.btn {
cursor: pointer;
width: 44px;
width: 32px;
height: 34px;
background: #006aff;
background: #006AFF;
border-radius: 0px 4px 4px 0px;
line-height: 34px;
line-height: 32px;
color: #ffffff;
text-align: center;
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #ffffff;
img {
width: 14px;
height: 14px;
cursor: pointer;
}
}
.checked {
display: flex;
justify-content: flex-end;
margin-top: 4px;
margin-top: 9px;
}
.finger-dropdown {
......@@ -1395,14 +1406,17 @@ const candidates = [
.lt_candidate_number {
width: 100%;
height: 883px;
background: #ffffff;
position: relative;
}
.lt_candidate_bottom {
position: absolute;
bottom: 12px;
left: 20px;
text-align: center;
width: 352px;
width: 376px;
height: 58px;
line-height: 58px;
background: #FFFFFF;
font-size: 12px;
font-family: HarmonyOS_Sans_SC;
color: #999999;
......@@ -1429,7 +1443,7 @@ const candidates = [
.selectFinger {
z-index: 10;
position: absolute;
top: 110px;
top: 145px;
right: 60px;
width: 236px;
height: 194px;
......@@ -1483,6 +1497,7 @@ const candidates = [
font-family: HarmonyOS_Sans_SC;
color: #999999;
margin-right: 16px;
cursor: pointer;
&.active {
color: #006aff;
......@@ -1522,6 +1537,11 @@ const candidates = [
/deep/ .el-table__body {
width: 100% !important;
}
/deep/ .el-table {
&::before {
display: none;
}
}
/deep/ .el-input__inner {
border: none;
......@@ -1531,7 +1551,7 @@ const candidates = [
.lt_candidate .lt_cnadidate_search .input {
box-sizing: border-box;
width: 286px;
width: 246px;
}
/deep/ .el-input {
......@@ -1585,6 +1605,10 @@ const candidates = [
color: #282f3c;
font-weight: normal;
}
.cell {
font-family: HarmonyOS_Sans_SC_Medium;
color: #282f3c;
}
}
// 在表格显示暂无数据时,去掉白色背景
......@@ -1598,4 +1622,4 @@ del {
text-decoration: underline wavy red; /*红色波浪形下划线*/
text-decoration: line-through red; /*红色删除线*/
}
</style>
</style>
\ No newline at end of file
......@@ -70,11 +70,15 @@
</div>
<div
class="btn"
v-show="plamList.length != 0"
@click="switchZhangWen"
:class="{ active: fingerShowType == '掌纹', hui: sourceDel }"
>
掌纹
</div>
<div class="btn isDelete" v-show="plamList.length == 0">
掌纹
</div>
</div>
<!--指纹图-->
<div class="lt_middle_finger_prints">
......@@ -553,8 +557,8 @@ export default {
if (!this.isShowPrint) {
document
.getElementsByTagName("body")[0]
.style.setProperty("--tableHeight", "48.75rem");
this.tableHeight = "48.75rem"
.style.setProperty("--tableHeight", "47.5rem");
this.tableHeight = "47.5rem"
this.options = "折叠";
$(".ico").css("transform", "rotate(180deg)");
} else {
......@@ -651,13 +655,14 @@ const datas = [
.lt_src {
width: 100%;
height: 100%;
background: #ffffff;
div {
display: inline-block;
}
label {
margin-right: 67px;
// margin-right: 67px;
}
.el-button {
......@@ -673,14 +678,29 @@ const datas = [
}
.lt_top {
font-family: HarmonyOS_Sans_SC-Bold;
width: 100%;
margin: 0 0 10px 0;
border-radius: 0px 20px 0px 0px;
background: linear-gradient(270deg, #3eb2ff 0%, #055fe7 100%);
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 20px;
height: 50px;
justify-content: space-between;
.rwh {
font-size: 14px;
font-family: HarmonyOS_Sans_SC-Bold, HarmonyOS_Sans_SC;
font-weight: bold;
color: #282f3c;
font-size: 16px;
font-family: HarmonyOS_Sans_SC-Bold;
color: #ffffff;
}
.el-checkbox {
.el-checkbox__inner.is-checked {
background: #fff !important;
}
.el-checkbox__label {
font-family: HarmonyOS_Sans_SC;
color: #ffffff !important;
}
}
}
......@@ -694,7 +714,7 @@ const datas = [
.lt_middle_src_data {
border-radius: 8px;
width: 100%;
height: 320px;
height: 360px;
.Bizhong {
.cell {
......@@ -721,15 +741,17 @@ const datas = [
}
.lt_middle_finger_print {
background-color: #f6f8fa;
background-color: #ffffff;
width: 100%;
.btns-switch {
display: flex;
align-items: center;
margin-top: 13px;
margin-left: 47px;
width: 100%;
display: flex;
justify-content: center;
background-color: #fff;
.btn {
cursor: pointer;
width: 129px;
......@@ -740,8 +762,10 @@ const datas = [
align-items: center;
justify-content: center;
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #282f3c;
color: #055fe7;
font-family: HarmonyOS_Sans_SC_Medium;
border: 1px solid #055fe7;
margin: 0 10px;
}
.active {
......@@ -756,24 +780,29 @@ const datas = [
}
.lt_middle_finger_prints {
background: #f6f8fa;
background: #F6F8FA;
margin-top: 12px;
overflow-y: auto;
width: 100%;
height: 360px;
width: 354px;
height: 340px;
margin-left: 10px;
.finger_print_number_active {
background: #055fe7;
}
}
}
/*底部的统计数据*/
.lt_middle_bottom {
text-align: center;
background: #f6f8fa;
height: 40px !important;
background: #fff;
height: 40px;
line-height: 40px;
width: 100%;
font-size: 12px;
font-family: HarmonyOS_Sans_SC;
color: #999;
span {
span {
......@@ -784,9 +813,10 @@ const datas = [
.lt_middle_src_data {
.lt_middle_bottom {
margin-top: -10px;
margin-top: -4px;
display: flex;
justify-content: center;
border-top: 1px solid #cccccc;
.btn {
margin-left: 32px;
......@@ -796,8 +826,12 @@ const datas = [
font-size: 12px;
font-family: HarmonyOS_Sans_SC;
color: #055fe7;
span {
cursor: pointer;
}
.ico {
cursor: pointer;
transform: rotate(0deg);
margin-left: 5px;
width: 10px;
......@@ -805,6 +839,7 @@ const datas = [
display: flex;
img {
cursor: pointer;
object-fit: cover;
width: 100%;
height: 100%;
......@@ -1283,8 +1318,11 @@ $tableHeight: var(--tableHeight, 320px);
.el-checkbox__input.is-checked {
.el-checkbox__inner {
background: #055fe7;
border-color: #055fe7;
border-color: none;
background-color: #fff;
&::after {
border-color: #055fe7;
}
}
}
}
......@@ -1318,4 +1356,11 @@ del {
color: #c2c4c7 !important;
background-color: #ecedf1 !important;
}
.isDelete {
background: #ecedf1 !important;
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #aeafb4 !important;
border: none !important;
}
</style>
......@@ -1551,8 +1551,8 @@ const candidates = [
.btn {
cursor: pointer;
width: 32px;
height: 32px;
background: #006AFF;
height: 34px;
background: #055FE7;
border-radius: 0px 4px 4px 0px;
line-height: 32px;
color: #ffffff;
......@@ -1560,6 +1560,15 @@ const candidates = [
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #ffffff;
// display: flex;
// justify-content: center;
// align-items: center;
&:hover {
background: #377FEC;
}
&:active {
background: #044CB9;
}
img {
width: 14px;
height: 14px;
......
......@@ -419,7 +419,7 @@ export default {
.btn {
cursor: pointer;
width: 32px;
height: 32px;
height: 34px;
background: #006AFF;
border-radius: 0px 4px 4px 0px;
line-height: 32px;
......
......@@ -1264,8 +1264,8 @@ export default {
changeTableHeight () {
this.isShowPrint = !this.isShowPrint;
if (!this.isShowPrint) {
document.getElementsByTagName("body")[0].style.setProperty("--tableHeight", "48.75rem");
this.tableHeight = "48.75rem"
document.getElementsByTagName("body")[0].style.setProperty("--tableHeight", "49.75rem");
this.tableHeight = "49.75rem"
this.options = "折叠";
$(".ico").css("transform", "rotate(180deg)");
} else {
......@@ -1686,8 +1686,8 @@ label {
.lt_middle_bottom {
text-align: center;
background: #fff;
height: 40px !important;
line-height: 40px;
height: 60px !important;
line-height: 60px;
width: 100%;
font-size: 12px;
font-family: HarmonyOS_Sans_SC;
......@@ -1702,6 +1702,7 @@ label {
.lt_middle_src_data {
background: #fff;
// height: 100%;
.lt_middle_bottom {
margin-top: -10px;
display: flex;
......
......@@ -112,10 +112,11 @@
<el-row style="margin-bottom: 20px;">
<el-col :span="24">
<el-form-item label="队列名称:" prop="pattern">
<div style="margin-left: 40px;">
<div>
<div v-for="(item,gindex) in getDlmcArr()"
:class="{'dui-lie-ming-cheng':true,'dui-lie-ming-cheng-bx':isBxCxdl(item.type)}"
v-show="getDlmcArr() && getDlmcArr().length > 0">
v-show="getDlmcArr() && getDlmcArr().length > 0"
:style="{marginLeft: gindex===0?'0px':'20px'}">
<i v-if="!isBxCxdl(item.type)"
class="el-icon-circle-plus icon" style="color: #055fe7"
@click="updateGzdl(item,gindex,true)" />
......@@ -134,7 +135,8 @@
</div>
</div>
<div v-show="!getDlmcArr() || getDlmcArr().length <= 0"
v-for="item in getDlCount()" class="kong" />
v-for="(item,index) in getDlCount()" class="kong"
:style="{marginLeft: index===0?'0px':'20px'}" />
</div>
</el-form-item>
</el-col>
......@@ -154,7 +156,7 @@
<div :key="item.type"
class="itemBox"
:style="{marginLeft: gindex===0?'40px':'0px'}">
:style="{marginLeft: gindex===0?'16px':'0px'}">
<div>
<img class="dlIndexBg"
......@@ -196,8 +198,8 @@
<!-- 并行模式;-->
<div v-if="gzlRuleForm.pattern === 1"
v-for="(item,gindex) in getGzdlArr()"
:class="{'gong-zuo-dui-lie-bingxing-item':true, kk:gindex !== 0}">
<div class="gong-zuo-dui-lie-bingxing-item-left">
:class="{'gong-zuo-dui-lie-bingxing-item':true}">
<div class="gong-zuo-dui-lie-bingxing-item-left" style="margin-left: -30px;">
<div :class="{verLine:true,verLineTrans: gindex === 0}" />
<div :class="{verLine:true,verLineTrans: gindex === getGzdlArr().length -1}" />
</div>
......@@ -324,7 +326,7 @@ export default {
{required: true, message: '请输入逻辑库名称', trigger: 'change'},
{
pattern: verifyData._LJFKM,
message: '名称必须至少两个汉字或四个字母!',
message: '名称必须至少两个汉字!',
trigger: 'change'
}
]
......
......@@ -130,9 +130,8 @@
flex-direction: row;
.input-info-sm {
width: 670px;
width: 600px;
height: 76px;
margin-left: 20px;
background: #F6F8FA;
box-shadow: 0px 1px 2px 0px rgba(5, 95, 231, 0.18);
border-radius: 4px;
......@@ -316,10 +315,6 @@
}
.kk {
margin-left: 73px;
}
.gong-zuo-dui-lie-bingxing-item {
height: 52px;
display: flex;
......@@ -411,6 +406,9 @@
}
}
.kk {
margin-left: 60px;
}
.gzdl-line {
margin-right: 12px;
......
......@@ -761,7 +761,7 @@
/**
* 用户组管理
* @module GroupManage
* @see 720
*
*/
import "@/icons/ic_add.svg";
import "@/icons/group-item.svg";
......@@ -968,7 +968,6 @@ export default {
/**
* @function dropdownSave
* @example 用户设置添加组成员操作
* @see 929
*/
dropdownSave() {
this.$axios({
......@@ -995,7 +994,6 @@ export default {
* @function visibleChange
* @param {Boolean} val 下拉框出现/隐藏判断标识(出现则为 true,隐藏则为 false)
* @example 当用户设置组成员弹框消失后清空选中的用户
* @see 956
*/
visibleChange(val) {
if (!val) {
......@@ -1005,7 +1003,6 @@ export default {
/**
* @function offMultiple
* @example 不在批量状态时清空之前选中的数据
* @see 966
*/
offMultiple() {
this.selectBoo = false;
......@@ -1014,7 +1011,6 @@ export default {
/**
* @function clear
* @example 筛选条件中点击清空后清空筛选条件并更新表格数据
* @see 975
*/
clear() {
for (let key in this.searchParams) {
......@@ -1033,7 +1029,6 @@ export default {
* @param {String} minus 需要删减对象的字段名
* @param {String} add 需要添加对象的字段名
* @example 角色设置,前端交互动画方法
* @see 994
*/
settingPerson(item, minus, add) {
console.log(minus, add);
......@@ -1046,7 +1041,6 @@ export default {
/**
* @function savePerson
* @example 保存角色设置
* @see 1007
*/
savePerson() {
let arr = [...this.xtCheckPersonArr, ...this.zdyCheckPersonArr];
......@@ -1074,7 +1068,6 @@ export default {
* @param {String} str 用户组角色字符串(逗号分隔)
* @example 当用户组角色大于三个则裁剪否则不操作
* @returns {Object} (arr: 裁剪前的对象个数 , length: 裁剪后的对象集合)
* @see 1038
*/
strArr(str) {
let arr = str.split(",");
......@@ -1094,7 +1087,6 @@ export default {
* @function toggleSelection
* @param {Object} rows 表格行数据
* @example 如果有数据则表格勾选相应数据,如果没有则清空相应数据
* @see 1058
*/
toggleSelection(rows) {
if (rows) {
......@@ -1110,7 +1102,6 @@ export default {
* @function handleSelectionChange
* @param {Object} val 勾选的用户对象
* @example 将勾选后的用户对象存到multipleSelection变量中
* @see 1074
*/
handleSelectionChange(val) {
this.multipleSelection = val;
......@@ -1120,7 +1111,6 @@ export default {
* @function toggleUserSelection
* @param {Object} rows 用户对象
* @example 用户设置的清除所有选项
* @see 1084
*/
toggleUserSelection(rows) {
if (rows) {
......@@ -1136,7 +1126,6 @@ export default {
* @function userHandleSelectionChange
* @param {Object} val 用户对象
* @example 用户设置的选择用户数据
* @see 1100
*/
userHandleSelectionChange(val) {
this.userMultipleSelection = val;
......@@ -1154,7 +1143,6 @@ export default {
* @property {object} response - 获取到的数据.
* @property {number} response.code - 状态码(200为成功).
* @property {String} response.info - success为成功.
* @see 1118
*/
userDel(id) {
let userId = id;
......@@ -1183,7 +1171,6 @@ export default {
/**
* @function userBatch
* @example 用户设置弹窗批量操作
* @see 1147
*/
userBatch() {
this.userSelectBoo = !this.userSelectBoo;
......@@ -1192,7 +1179,6 @@ export default {
/**
* @function delUserDatas
* @example 用户设置弹窗批量删除用户
* @see 1154
*/
delUserDatas() {
if (!this.userSelectBoo) {
......@@ -1244,7 +1230,6 @@ export default {
/**
* @function batch
* @example 用户组批量操作
* @see 1206
*/
batch() {
this.selectBoo = !this.selectBoo;
......@@ -1254,7 +1239,6 @@ export default {
* @function handleCurrPageChange
* @param {Number} val 目标页数
* @example 用户组切换页数
* @see 1216
*/
handleCurrPageChange: function (val) {
this.searchParams.page = val;
......@@ -1264,7 +1248,6 @@ export default {
* @function handleSizeChange
* @param {Number} val 目标数量
* @example 用户组每页展示数量发生变化
* @see 1226
*/
handleSizeChange: function (val) {
this.searchParams.size = val;
......@@ -1273,7 +1256,6 @@ export default {
/**
* @function open
* @example 打开新增弹窗
* @see 1235
*/
open() {
this.isShowAddUserDialog = true;
......@@ -1287,7 +1269,6 @@ export default {
/**
* @function canceladd
* @example 关闭新增弹窗
* @see 1249
*/
canceladd() {
this.isShowAddUserDialog = false;
......@@ -1297,7 +1278,6 @@ export default {
* @function openedit
* @param {Object} row 编辑的用户组对象
* @example 打开编辑弹窗
* @see 1259
*/
openedit(row) {
this.checkItem = row;
......@@ -1313,7 +1293,6 @@ export default {
/**
* @function canceledit
* @example 关闭编辑弹窗
* @see 1275
*/
canceledit() {
this.isShowEditGroupDialog = false;
......@@ -1322,7 +1301,6 @@ export default {
/**
* @function cancelrole
* @example 关闭角色设置弹窗
* @see 1284
*/
cancelrole() {
this.isShowRoleDialog = false;
......@@ -1331,7 +1309,6 @@ export default {
/**
* @function canceluser
* @example 关闭用户设置弹窗
* @see 1293
*/
canceluser() {
this.isShowUserDialog = false;
......@@ -1341,7 +1318,6 @@ export default {
* @function setUser
* @param {Object} row 当前用户信息对象
* @example 点击用户设置后保存当前的用户信息
* @see 1303
*/
setUser(row) {
this.checkItem = row;
......@@ -1357,7 +1333,6 @@ export default {
/**
* @function getUserList
* @example 点击用户设置后获取当前用户组所有的用户列表
* @see 1319
*/
getUserList() {
this.$axios
......@@ -1372,7 +1347,6 @@ export default {
/**
* @function getAddUserList
* @example 点击用户设置后获取当前用户组可以添加的用户列表
* @see 1334
*/
getAddUserList() {
this.$axios
......@@ -1388,7 +1362,6 @@ export default {
* @function setRole
* @param {Object} row 当前用户组的对象信息
* @example 打开角色弹窗前保存用户组信息
* @see 1350
*/
setRole(row) {
this.checkItem = row;
......@@ -1405,7 +1378,6 @@ export default {
* @function getPersonData
* @param {String} id 当前用户组id
* @example 获取当前用户组的所有角色
* @see 1367
*/
getPersonData(id) {
this.personId = id;
......@@ -1432,7 +1404,6 @@ export default {
/**
* @function submitForm
* @example 新增用户组
* @see 1394
*/
submitForm(formName) {
this.$refs.addFormParams.validate((valid) => {
......@@ -1475,7 +1446,6 @@ export default {
/**
* @function submitEditForm
* @example 修改用户组
* @see 1437
*/
submitEditForm(formName) {
this.$refs.editFormParams.validate((valid) => {
......@@ -1516,7 +1486,6 @@ export default {
/**
* @function delMore
* @example 用户组批量删除
* @see 1478
*/
delMore() {
let self = this;
......@@ -1549,7 +1518,6 @@ export default {
* @function del
* @param {String} id 用户组id
* @example 用户组单删除
* @see 1511
*/
del(id) {
this.$axios({
......@@ -1575,7 +1543,6 @@ export default {
* @function search
* @param {Boolean|String} boo 如果存在则初始化页数
* @example 查询用户组列表
* @see 1537
*/
search(boo) {
let params = {};
......@@ -1762,7 +1729,7 @@ export default {
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 07 2022 16:54:27 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Index.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">Index.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-11-02 15:41:31
* @LastEditTime: 2021-11-11 16:36:26
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\Index.vue
-->
&lt;template>
&lt;div>
&lt;/div>
&lt;/template>
&lt;script>
export default {
name: 'SystemManage'
};
&lt;/script>
&lt;style scoped>&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SystemManage/Index.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Classes</h3><ul><li><a href="Gzlzz.html">Gzlzz</a><ul class='methods'><li data-type='method'><a href="Gzlzz.html#clear">clear</a></li><li data-type='method'><a href="Gzlzz.html#clearDeleteDlCxdl">clearDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#concatAddDlCxdl">concatAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDl">getAddDl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDlCxdl">getAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDl">getDeleteDl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDlCxdl">getDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDl">getDl</a></li><li data-type='method'><a href="Gzlzz.html#init">init</a></li><li data-type='method'><a href="Gzlzz.html#initByVal">initByVal</a></li><li data-type='method'><a href="Gzlzz.html#result">result</a></li><li data-type='method'><a href="Gzlzz.html#updateCxdl">updateCxdl</a></li><li data-type='method'><a href="Gzlzz.html#updateGzdl">updateGzdl</a></li></ul></li></ul><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul><h3>Global</h3><ul><li><a href="global.html#_DL_TYPES">_DL_TYPES</a></li><li><a href="global.html#_DLMC">_DLMC</a></li><li><a href="global.html#isDlcxItem">isDlcxItem</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">SystemManage/Index.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-11-02 15:41:31
* @LastEditTime: 2021-11-11 16:36:26
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\Index.vue
-->
&lt;template>
&lt;div>
&lt;/div>
&lt;/template>
&lt;script>
export default {
name: 'SystemManage'
};
&lt;/script>
&lt;style scoped>&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 11:53:58 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SystemManage/aaa.js - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Classes</h3><ul><li><a href="Gzlzz.html">Gzlzz</a><ul class='methods'><li data-type='method'><a href="Gzlzz.html#clear">clear</a></li><li data-type='method'><a href="Gzlzz.html#clearDeleteDlCxdl">clearDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#concatAddDlCxdl">concatAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDl">getAddDl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDlCxdl">getAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDl">getDeleteDl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDlCxdl">getDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDl">getDl</a></li><li data-type='method'><a href="Gzlzz.html#init">init</a></li><li data-type='method'><a href="Gzlzz.html#initByVal">initByVal</a></li><li data-type='method'><a href="Gzlzz.html#result">result</a></li><li data-type='method'><a href="Gzlzz.html#updateCxdl">updateCxdl</a></li><li data-type='method'><a href="Gzlzz.html#updateGzdl">updateGzdl</a></li></ul></li></ul><h3>Modules</h3><ul><li><a href="module-api_system.html">api/system</a><ul class='methods'><li data-type='method'><a href="module-api_system.html#~loginByZjhm">loginByZjhm</a></li></ul></li><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul><h3>Global</h3><ul><li><a href="global.html#_DL_TYPES">_DL_TYPES</a></li><li><a href="global.html#_DLMC">_DLMC</a></li><li><a href="global.html#isDlcxItem">isDlcxItem</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">SystemManage/aaa.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/*
* @Author: your name
* @Date: 2022-01-10 11:41:23
* @LastEditTime: 2022-01-10 11:48:27
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\aaa.js
*/
var postform = () => { }
/**
*
* 用户组api的js文件
* @module api/system
* @example 登录
* @property {object} request - 使用到接口的信息.
* @property {String} [request.url=http://zwpt.xzclub.top:9333/loginByZjhm] 请求地址
* @property {String} [request.method=post] 请求方式
* @property {object} request.data 请求参数
* @property {String} request.data.username 用户名
* @property {String} request.data.password 密码
* @property {object} response - 获取到的数据.
* @property {number} response.code - 状态码(200为成功).
* @property {String} response.info - success为成功.
* @returns {Promise} 接口返回的信息
*/
/**
*
* @function loginByZjhm
*/
export const loginByZjhm = (params) =>
postform(setting.BaseURL + '/loginByZjhm', params)</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 11:50:58 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SystemManage/editableLable.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Classes</h3><ul><li><a href="Gzlzz.html">Gzlzz</a><ul class='methods'><li data-type='method'><a href="Gzlzz.html#clear">clear</a></li><li data-type='method'><a href="Gzlzz.html#clearDeleteDlCxdl">clearDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#concatAddDlCxdl">concatAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDl">getAddDl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDlCxdl">getAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDl">getDeleteDl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDlCxdl">getDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDl">getDl</a></li><li data-type='method'><a href="Gzlzz.html#init">init</a></li><li data-type='method'><a href="Gzlzz.html#initByVal">initByVal</a></li><li data-type='method'><a href="Gzlzz.html#result">result</a></li><li data-type='method'><a href="Gzlzz.html#updateCxdl">updateCxdl</a></li><li data-type='method'><a href="Gzlzz.html#updateGzdl">updateGzdl</a></li></ul></li></ul><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul><h3>Global</h3><ul><li><a href="global.html#_DL_TYPES">_DL_TYPES</a></li><li><a href="global.html#_DLMC">_DLMC</a></li><li><a href="global.html#isDlcxItem">isDlcxItem</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">SystemManage/editableLable.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-12-27 11:19:03
* @LastEditTime: 2021-12-28 14:40:58
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\editableLable.vue
-->
&lt;template>
&lt;div class="editableLable">
&lt;label v-if="!canEdit" @click="enableEdit">{{
preText.toString() + curTxt.toString()
}}&lt;/label>
&lt;div v-else>
&lt;span class="preText">{{ preText }}&lt;/span>
&lt;el-input
v-model="curTxt"
@change="textChange"
@blur="canEdit = false"
>&lt;/el-input>
&lt;/div>
&lt;/div>
&lt;/template>
&lt;script>
export default {
props: {
isSt: { type: Boolean, require: true },
id: {
type: String,
require: false,
default: "",
},
type: {
type: Number,
require: false,
default: 0,
},
// 当前文本
text: {
type: String,
require: false,
default: "",
},
// 固定前缀
preText: {
type: String,
require: false,
default: "",
},
},
data() {
return {
canEdit: false,
curTxt: "",
oldText: "",
};
},
watch: {
text: function(text) {
this.curTxt = text;
this.oldText = this.curTxt;
},
},
methods: {
textChange(txt) {
this.canEdit = false;
const self = this;
this.$emit("change", this.id, this.type, txt, this.isSt, function(res) {
if (!res) {
self.curTxt = self.oldText;
}
self.oldText = self.curTxt;
});
},
enableEdit() {
this.canEdit = true;
},
},
mounted() {
this.curTxt = this.text;
this.oldText = this.curTxt;
},
};
&lt;/script>
&lt;style lang="scss" scoped>
.editableLable {
width: 100%;
height: 100%;
&amp; > label {
display: block;
}
}
.preText {
display: inline-block;
left: 1rem;
position: absolute;
z-index: 1;
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #333333;
line-height: 24px;
}
/deep/ .el-input__inner {
padding-left: 1.5rem;
width: 72px;
height: 24px;
}
&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 11:53:58 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SystemManage/numberInput.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Classes</h3><ul><li><a href="Gzlzz.html">Gzlzz</a><ul class='methods'><li data-type='method'><a href="Gzlzz.html#clear">clear</a></li><li data-type='method'><a href="Gzlzz.html#clearDeleteDlCxdl">clearDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#concatAddDlCxdl">concatAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDl">getAddDl</a></li><li data-type='method'><a href="Gzlzz.html#getAddDlCxdl">getAddDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDl">getDeleteDl</a></li><li data-type='method'><a href="Gzlzz.html#getDeleteDlCxdl">getDeleteDlCxdl</a></li><li data-type='method'><a href="Gzlzz.html#getDl">getDl</a></li><li data-type='method'><a href="Gzlzz.html#init">init</a></li><li data-type='method'><a href="Gzlzz.html#initByVal">initByVal</a></li><li data-type='method'><a href="Gzlzz.html#result">result</a></li><li data-type='method'><a href="Gzlzz.html#updateCxdl">updateCxdl</a></li><li data-type='method'><a href="Gzlzz.html#updateGzdl">updateGzdl</a></li></ul></li></ul><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul><h3>Global</h3><ul><li><a href="global.html#_DL_TYPES">_DL_TYPES</a></li><li><a href="global.html#_DLMC">_DLMC</a></li><li><a href="global.html#isDlcxItem">isDlcxItem</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">SystemManage/numberInput.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-12-27 15:29:03
* @LastEditTime: 2021-12-28 15:11:24
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\numberInput.vue
-->
&lt;template>
&lt;div class="numberinput">
&lt;span class="preText">{{ preText }}&lt;/span>
&lt;el-input-number
v-model="curTxt"
@change="textChange"
size="mini"
:min="0"
controls-position="right"
>&lt;/el-input-number>
&lt;/div>
&lt;/template>
&lt;script>
export default {
props: {
// 当前文本
text: {
type: Number,
require: false,
default: 0,
},
// 固定前缀
preText: {
type: String,
require: false,
default: "",
},
},
watch: {
text: function(text) {
this.curTxt = text;
},
},
data() {
return {
curTxt: "",
};
},
methods: {
textChange(val) {
this.curTxt = val;
if (val &amp;&amp; !Number(val)) {
this.curTxt = val.replace(/[^0-9]/gi, "");
}
this.$emit("change", this.curTxt);
},
},
mounted() {
this.curTxt = this.text;
},
};
&lt;/script>
&lt;style lang="scss" scoped>
.numberinput {
display: inline-block;
}
.preText {
display: inline-block;
// left: 1rem;
margin-left: 10px;
position: absolute;
z-index: 1;
font-size: 18px;
font-family: HarmonyOS_Sans_SC;
color: #333333;
line-height: 24px;
}
/deep/ .el-input__inner {
padding-left: 1.5rem;
}
/deep/.el-input-number__increase,
/deep/.el-input-number__decrease {
width: 1rem;
}
&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 11:53:58 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
......@@ -544,7 +544,6 @@
&lt;script>
/**
* 用户管理
* @see 503
* @module UserManage
*/
import "@/icons/ic_add.svg";
......@@ -875,7 +874,6 @@ export default {
/**
* @function submitForm
* @example 新增用户
* @see 833
*/
submitForm(formName) {
//console.log(this.addFormParams, 22222222222);
......@@ -925,7 +923,6 @@ export default {
* @param {String} str 用户角色字符串(逗号分隔)
* @example 当用户角色大于三个则裁剪否则不操作
* @returns {Object} 返回了一个对象,里面包含arr(裁剪后的角色数组),length(裁剪之前的角色个数)
* @see 884
*/
strArr(str) {
let arr = str.split(",");
......@@ -944,7 +941,6 @@ export default {
/**
* @function submitEditForm
* @example 编辑用户
* @see 903
*/
submitEditForm(formName) {
this.$refs.editFormParams.validate((valid) => {
......@@ -987,7 +983,6 @@ export default {
* @function resetForm
* @param {String} formName 对应form的ref值
* @example 重置对应的form表单
* @see 946
*/
resetForm(formName) {
this.$refs[formName].resetFields();
......@@ -995,7 +990,6 @@ export default {
/**
* @function clear
* @example 清空所有筛选条件并更新用户表格数据
* @see 954
*/
clear() {
for (let key in this.searchParams) {
......@@ -1018,7 +1012,6 @@ export default {
* @function search
* @param {Boolean|String} boo 如果存在则初始化页数
* @example 筛选用户表格数据
* @see 977
*/
search(boo) {
let params = {};
......@@ -1053,7 +1046,6 @@ export default {
/**
* @function offMultiple
* @example 取消批量操作状态,删除所有选中的用户
* @see 1012
*/
offMultiple() {
this.selectBoo = false;
......@@ -1063,7 +1055,6 @@ export default {
* @function toggleSelection
* @param {Object} rows 用户对象
* @example 如果用户对象存在则选中否则清空
* @see 1022
*/
toggleSelection(rows) {
if (rows) {
......@@ -1079,7 +1070,6 @@ export default {
* @function handleSelectionChange
* @param {Object} val 用户对象
* @example 将勾选的用户对象保存起来
* @see 1037
*/
handleSelectionChange(val) {
this.multipleSelection = val;
......@@ -1088,7 +1078,6 @@ export default {
/**
* @function batch
* @example 点击批量操作后的方法
* @see 1047
*/
batch() {
this.selectBoo = !this.selectBoo;
......@@ -1098,7 +1087,6 @@ export default {
* @function handleCurrPageChange
* @param {Number} val 目标页
* @example 当期页发生变化
* @see 1057
*/
handleCurrPageChange: function (val) {
this.searchParams.page = val;
......@@ -1108,7 +1096,6 @@ export default {
* @function handleSizeChange
* @param {Number} val 目标页数量
* @example 每页展示数量发生变化
* @see 1067
*/
handleSizeChange: function (val) {
this.searchParams.size = val;
......@@ -1117,7 +1104,6 @@ export default {
/**
* @function open
* @example 打开新增弹窗
* @see 1076
*/
open() {
for (let key in this.addFormParams) {
......@@ -1134,7 +1120,6 @@ export default {
* @function openedit
* @param {Object} row 需要编辑的用户对象
* @example 打开编辑弹窗
* @see 1093
*/
openedit(row) {
for (let key in this.editFormParams) {
......@@ -1153,7 +1138,6 @@ export default {
* @function getPersonInfor
* @param {String} id 需要编辑的用户id
* @example 回显要编辑的人员信息
* @see 1112
*/
getPersonInfor(id) {
this.$axios
......@@ -1182,7 +1166,6 @@ export default {
/**
* @function canceladd
* @example 关闭新增弹窗
* @see 1141
*/
canceladd() {
this.isShowAddUserDialog = false;
......@@ -1191,7 +1174,6 @@ export default {
/**
* @function canceledit
* @example 关闭修改弹窗
* @see 1150
*/
canceledit() {
this.isShowEditUserDialog = false;
......@@ -1200,7 +1182,6 @@ export default {
/**
* @function delMore
* @example 批量删除用户
* @see 1159
*/
delMore() {
let self = this;
......@@ -1234,7 +1215,6 @@ export default {
* @function del
* @param {String} id 要删除用户的id
* @example 单个删除用户
* @see 1193
*/
del(id) {
this.$axios({
......@@ -1357,7 +1337,7 @@ export default {
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 07 2022 16:54:27 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ceshi 用户管理api - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="ceshi%250D%25E7%2594%25A8%25E6%2588%25B7%25E7%25AE%25A1%25E7%2590%2586apimodule_.html">ceshi 用户管理api</a></li><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">ceshi 用户管理api</h1>
<section>
<header>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">源头文件:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html">ceshi.js</a>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html#line9">line 9</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Members</h3>
<div class="boxItem">
<h4 class="name" id="~obj"><span class="type-signature">(inner) </span>obj<span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">源头文件:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html">ceshi.js</a>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html#line17">line 17</a>
</li></ul></dd>
</dl>
<h5 class="subsection-title">接口对象:</h5>
<table class="props">
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th class="last">含义</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>obj</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last">一个对象</td>
</tr>
</tbody>
</table>
</div>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 09:37:30 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ceshi.js - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="module-ceshi.html">ceshi</a></li><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">ceshi.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/*
* @Author: your name
* @Date: 2022-01-10 09:35:09
* @LastEditTime: 2022-01-10 09:46:40
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\ceshi.js
*/
/**
* 用户管理api
* @module ceshi
* @see GroupManage.vue
*/
/**
* @property {object} obj 一个对象
*/
var obj = {
a: 111,
b: 222
}</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 09:47:17 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>js - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="ceshi.module_js.html">js</a></li><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">js</h1>
<section>
<header>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">源头文件:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html">ceshi.js</a>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html#line9">line 9</a>
</li></ul></dd>
</dl>
<h5 class="subsection-title">接口对象:</h5>
<table class="props">
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th class="last">含义</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>obj</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last">一个对象</td>
</tr>
</tbody>
</table>
</div>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 09:36:15 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>editableLable.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">editableLable.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-12-27 11:19:03
* @LastEditTime: 2021-12-28 14:40:58
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\editableLable.vue
-->
&lt;template>
&lt;div class="editableLable">
&lt;label v-if="!canEdit" @click="enableEdit">{{
preText.toString() + curTxt.toString()
}}&lt;/label>
&lt;div v-else>
&lt;span class="preText">{{ preText }}&lt;/span>
&lt;el-input
v-model="curTxt"
@change="textChange"
@blur="canEdit = false"
>&lt;/el-input>
&lt;/div>
&lt;/div>
&lt;/template>
&lt;script>
export default {
props: {
isSt: { type: Boolean, require: true },
id: {
type: String,
require: false,
default: "",
},
type: {
type: Number,
require: false,
default: 0,
},
// 当前文本
text: {
type: String,
require: false,
default: "",
},
// 固定前缀
preText: {
type: String,
require: false,
default: "",
},
},
data() {
return {
canEdit: false,
curTxt: "",
oldText: "",
};
},
watch: {
text: function(text) {
this.curTxt = text;
this.oldText = this.curTxt;
},
},
methods: {
textChange(txt) {
this.canEdit = false;
const self = this;
this.$emit("change", this.id, this.type, txt, this.isSt, function(res) {
if (!res) {
self.curTxt = self.oldText;
}
self.oldText = self.curTxt;
});
},
enableEdit() {
this.canEdit = true;
},
},
mounted() {
this.curTxt = this.text;
this.oldText = this.curTxt;
},
};
&lt;/script>
&lt;style lang="scss" scoped>
.editableLable {
width: 100%;
height: 100%;
&amp; > label {
display: block;
}
}
.preText {
display: inline-block;
left: 1rem;
position: absolute;
z-index: 1;
font-size: 14px;
font-family: HarmonyOS_Sans_SC;
color: #333333;
line-height: 24px;
}
/deep/ .el-input__inner {
padding-left: 1.5rem;
width: 72px;
height: 24px;
}
&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
......@@ -68,7 +68,7 @@
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 07 2022 16:54:27 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ceshi - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="module-ceshi.html">ceshi</a></li><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">ceshi</h1>
<section>
<header>
</header>
<article>
<div class="container-overview">
<div class="description usertext">用户管理api</div>
<div class="boxItem">
<dl class="details">
<dt class="tag-source">源头文件:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html">ceshi.js</a>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html#line9">line 9</a>
</li></ul></dd>
<dt class="tag-see">接口所在文件:</dt>
<dd class="tag-see">
<ul>
<li><a href=GroupManage.vue.html>GroupManage.vue</a></li>
</ul>
</dd>
</dl>
</div>
</div>
<h3 class="subsection-title">Members</h3>
<div class="boxItem">
<h4 class="name" id="~obj"><span class="type-signature">(inner) </span>obj<span class="type-signature"></span></h4>
<dl class="details">
<dt class="tag-source">源头文件:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html">ceshi.js</a>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ceshi.js.html#line18">line 18</a>
</li></ul></dd>
</dl>
<h5 class="subsection-title">接口对象:</h5>
<table class="props">
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th class="last">含义</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>obj</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last">一个对象</td>
</tr>
</tbody>
</table>
</div>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 09:47:17 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>numberInput.vue - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
<script src="scripts/nav.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav >
<div class='imgBox'></div><h3>Modules</h3><ul><li><a href="module-GroupManage.html">GroupManage</a><ul class='methods'><li data-type='method'><a href="module-GroupManage.html#~batch">batch</a></li><li data-type='method'><a href="module-GroupManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-GroupManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-GroupManage.html#~cancelrole">cancelrole</a></li><li data-type='method'><a href="module-GroupManage.html#~canceluser">canceluser</a></li><li data-type='method'><a href="module-GroupManage.html#~clear">clear</a></li><li data-type='method'><a href="module-GroupManage.html#~del">del</a></li><li data-type='method'><a href="module-GroupManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-GroupManage.html#~delUserDatas">delUserDatas</a></li><li data-type='method'><a href="module-GroupManage.html#~dropdownSave">dropdownSave</a></li><li data-type='method'><a href="module-GroupManage.html#~getAddUserList">getAddUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~getPersonData">getPersonData</a></li><li data-type='method'><a href="module-GroupManage.html#~getUserList">getUserList</a></li><li data-type='method'><a href="module-GroupManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-GroupManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-GroupManage.html#~open">open</a></li><li data-type='method'><a href="module-GroupManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-GroupManage.html#~savePerson">savePerson</a></li><li data-type='method'><a href="module-GroupManage.html#~search">search</a></li><li data-type='method'><a href="module-GroupManage.html#~setRole">setRole</a></li><li data-type='method'><a href="module-GroupManage.html#~settingPerson">settingPerson</a></li><li data-type='method'><a href="module-GroupManage.html#~setUser">setUser</a></li><li data-type='method'><a href="module-GroupManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-GroupManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-GroupManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleSelection">toggleSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~toggleUserSelection">toggleUserSelection</a></li><li data-type='method'><a href="module-GroupManage.html#~userBatch">userBatch</a></li><li data-type='method'><a href="module-GroupManage.html#~userDel">userDel</a></li><li data-type='method'><a href="module-GroupManage.html#~userHandleSelectionChange">userHandleSelectionChange</a></li><li data-type='method'><a href="module-GroupManage.html#~visibleChange">visibleChange</a></li></ul></li><li><a href="module-UserManage.html">UserManage</a><ul class='methods'><li data-type='method'><a href="module-UserManage.html#~batch">batch</a></li><li data-type='method'><a href="module-UserManage.html#~canceladd">canceladd</a></li><li data-type='method'><a href="module-UserManage.html#~canceledit">canceledit</a></li><li data-type='method'><a href="module-UserManage.html#~clear">clear</a></li><li data-type='method'><a href="module-UserManage.html#~del">del</a></li><li data-type='method'><a href="module-UserManage.html#~delMore">delMore</a></li><li data-type='method'><a href="module-UserManage.html#~getPersonInfor">getPersonInfor</a></li><li data-type='method'><a href="module-UserManage.html#~handleCurrPageChange">handleCurrPageChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSelectionChange">handleSelectionChange</a></li><li data-type='method'><a href="module-UserManage.html#~handleSizeChange">handleSizeChange</a></li><li data-type='method'><a href="module-UserManage.html#~offMultiple">offMultiple</a></li><li data-type='method'><a href="module-UserManage.html#~open">open</a></li><li data-type='method'><a href="module-UserManage.html#~openedit">openedit</a></li><li data-type='method'><a href="module-UserManage.html#~resetForm">resetForm</a></li><li data-type='method'><a href="module-UserManage.html#~search">search</a></li><li data-type='method'><a href="module-UserManage.html#~strArr">strArr</a></li><li data-type='method'><a href="module-UserManage.html#~submitEditForm">submitEditForm</a></li><li data-type='method'><a href="module-UserManage.html#~submitForm">submitForm</a></li><li data-type='method'><a href="module-UserManage.html#~toggleSelection">toggleSelection</a></li></ul></li></ul>
</nav>
<div id="main">
<h1 class="page-title">numberInput.vue</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>&lt;!--
* @Author: your name
* @Date: 2021-12-27 15:29:03
* @LastEditTime: 2021-12-28 15:11:24
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\views\SystemManage\numberInput.vue
-->
&lt;template>
&lt;div class="numberinput">
&lt;span class="preText">{{ preText }}&lt;/span>
&lt;el-input-number
v-model="curTxt"
@change="textChange"
size="mini"
:min="0"
controls-position="right"
>&lt;/el-input-number>
&lt;/div>
&lt;/template>
&lt;script>
export default {
props: {
// 当前文本
text: {
type: Number,
require: false,
default: 0,
},
// 固定前缀
preText: {
type: String,
require: false,
default: "",
},
},
watch: {
text: function(text) {
this.curTxt = text;
},
},
data() {
return {
curTxt: "",
};
},
methods: {
textChange(val) {
this.curTxt = val;
if (val &amp;&amp; !Number(val)) {
this.curTxt = val.replace(/[^0-9]/gi, "");
}
this.$emit("change", this.curTxt);
},
},
mounted() {
this.curTxt = this.text;
},
};
&lt;/script>
&lt;style lang="scss" scoped>
.numberinput {
display: inline-block;
}
.preText {
display: inline-block;
// left: 1rem;
margin-left: 10px;
position: absolute;
z-index: 1;
font-size: 18px;
font-family: HarmonyOS_Sans_SC;
color: #333333;
line-height: 24px;
}
/deep/ .el-input__inner {
padding-left: 1.5rem;
}
/deep/.el-input-number__increase,
/deep/.el-input-number__decrease {
width: 1rem;
}
&lt;/style>
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Mon Jan 10 2022 12:00:06 GMT+0800 (中国标准时间) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/polyfill.js"></script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
......@@ -58,7 +58,7 @@ function getAncestorLinks(doclet) {
}
function hashToLink(doclet, hash) {
return '<a href="' + `${doclet.meta.filename}.html#line${hash}` + '">' + `line${hash}` + '</a>';
return `<a href=${hash}.html>${hash}</a>`;
}
function needsSignature(doclet) {
......
......@@ -20,6 +20,10 @@ if (data.defaultvalue && (data.defaultvaluetype === 'object' || data.defaultvalu
<dd class="tag-source"><ul class="dummy"><li>
<?js= self.linkto(meta.shortpath) ?>
</li></ul></dd>
<dt class="tag-source">代码对应位置:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<?js= self.linkto(meta.shortpath, 'line ' + meta.lineno, null, 'line' + meta.lineno) ?>
</li></ul></dd>
<?js } ?>
<?js if (data.version) {?>
......@@ -117,7 +121,7 @@ if (data.defaultvalue && (data.defaultvaluetype === 'object' || data.defaultvalu
<?js } ?>
<?js if (data.see && see.length) {?>
<dt class="tag-see">代码对应位置:</dt>
<dt class="tag-see">接口所在文件:</dt>
<dd class="tag-see">
<ul><?js see.forEach(function(s) { ?>
<li><?js= self.linkto(s) ?></li>
......
......@@ -10,7 +10,7 @@
"include": [
"./src/views/SystemManage"
],
"includePattern": ".+\\.(vue)$",
"includePattern": ".+\\.(js||vue)$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment