From a5bfb77e2a6d0571097fd29790d8e0d00c0e75dd Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Wed, 15 Jun 2022 16:18:57 +0800 Subject: [PATCH 01/68] =?UTF-8?q?=E7=BE=A4=E5=8F=91=E9=80=9A=E7=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wxwork}/AppMassNotification/AppMassNotification.vue | 0 .../wxwork}/AppMassNotification/components/Add.vue | 0 .../wxwork}/AppMassNotification/components/List.vue | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename {core/apps => packages/wxwork}/AppMassNotification/AppMassNotification.vue (100%) rename {core/apps => packages/wxwork}/AppMassNotification/components/Add.vue (100%) rename {core/apps => packages/wxwork}/AppMassNotification/components/List.vue (100%) diff --git a/core/apps/AppMassNotification/AppMassNotification.vue b/packages/wxwork/AppMassNotification/AppMassNotification.vue similarity index 100% rename from core/apps/AppMassNotification/AppMassNotification.vue rename to packages/wxwork/AppMassNotification/AppMassNotification.vue diff --git a/core/apps/AppMassNotification/components/Add.vue b/packages/wxwork/AppMassNotification/components/Add.vue similarity index 100% rename from core/apps/AppMassNotification/components/Add.vue rename to packages/wxwork/AppMassNotification/components/Add.vue diff --git a/core/apps/AppMassNotification/components/List.vue b/packages/wxwork/AppMassNotification/components/List.vue similarity index 100% rename from core/apps/AppMassNotification/components/List.vue rename to packages/wxwork/AppMassNotification/components/List.vue From 307f835cec73f9b8540b243bdf5930971f82aba4 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 16 Jun 2022 10:57:34 +0800 Subject: [PATCH 02/68] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E4=B9=9D=E5=88=86?= =?UTF-8?q?=E5=B1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../device/IntelligentSecurity/AppISManage/AppISManage.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/device/IntelligentSecurity/AppISManage/AppISManage.vue b/packages/device/IntelligentSecurity/AppISManage/AppISManage.vue index 36fff7a7..ede77678 100644 --- a/packages/device/IntelligentSecurity/AppISManage/AppISManage.vue +++ b/packages/device/IntelligentSecurity/AppISManage/AppISManage.vue @@ -54,8 +54,7 @@ splitOps() { return [ { label: '单分屏', value: 1, per: '100%' }, - { label: '四分屏', value: 4, per: '49.2%' }, - { label: '九分屏', value: 9, per: '32%' }, + { label: '四分屏', value: 4, per: '49.2%' } ] }, currentSplitStyle() { From 5bc5bf0672a3e1ad1b2b0da06866293270892345 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 16 Jun 2022 11:21:26 +0800 Subject: [PATCH 03/68] =?UTF-8?q?=E5=A4=A7=E5=B1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/dv/apps/AppGridDV.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/project/dv/apps/AppGridDV.vue b/project/dv/apps/AppGridDV.vue index c7922dfb..7012e858 100644 --- a/project/dv/apps/AppGridDV.vue +++ b/project/dv/apps/AppGridDV.vue @@ -344,9 +344,9 @@ getGirdInfo (id, level) { this.instance.post(`/app/appgirdinfo/listAllGirdAndMemberByTop?id=${id || ''}`).then((res) => { if (res.code == 0) { - const chartData = this.formatList(res.data) - if (res.data && res.data[0] && res.data[0].parentGirdInfo) { - const parentGirdInfo = res.data[0].parentGirdInfo + const chartData = this.formatList([res.data]) + if (res.data && res.data.parentGirdInfo) { + const parentGirdInfo = res.data.parentGirdInfo const girdMemberList = parentGirdInfo.girdMemberManageList ? parentGirdInfo.girdMemberManageList.map(v => { return { ...v, @@ -402,7 +402,7 @@ label: v.name } }) - + this.isLoading = false if (!userList.length) { @@ -424,6 +424,7 @@ }, formatList (list) { + console.log(list) return list.map(item => { let userList = [] const girdMemberManageList = item.girdMemberManageList ? item.girdMemberManageList.map(v => { @@ -546,7 +547,7 @@ .el-table { background-color: transparent; } - + .el-table__body tr td:first-child .cell, .ai-table .el-table__header tr th:first-child .cell { padding-left: 0!important; } @@ -690,7 +691,7 @@ text-overflow:ellipsis; white-space: nowrap; margin-bottom: 10px; - + &:nth-of-type(2n) { margin-right: 0; } @@ -875,4 +876,4 @@ } } } - \ No newline at end of file + From 942078e3fdd4b07285834f113f2149e3f61c4744 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 16 Jun 2022 11:29:14 +0800 Subject: [PATCH 04/68] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=BA=90=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/bigscreen/designer/components/SourceData.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/bigscreen/designer/components/SourceData.vue b/packages/bigscreen/designer/components/SourceData.vue index d2280f0d..b116f15d 100644 --- a/packages/bigscreen/designer/components/SourceData.vue +++ b/packages/bigscreen/designer/components/SourceData.vue @@ -66,6 +66,7 @@ Date: Thu, 16 Jun 2022 11:47:00 +0800 Subject: [PATCH 05/68] =?UTF-8?q?=E7=BD=91=E6=A0=BC=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E9=9C=80=E6=B1=82=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/dv/apps/AppGridDV.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/dv/apps/AppGridDV.vue b/project/dv/apps/AppGridDV.vue index 7012e858..b38f4999 100644 --- a/project/dv/apps/AppGridDV.vue +++ b/project/dv/apps/AppGridDV.vue @@ -376,7 +376,7 @@ } this.$nextTick(() => { - if (level === '2') { + if (id) { this.getUserList(id) } else { this.isLoading = false @@ -395,6 +395,7 @@ } }).then(res => { if (res.code == 0) { + console.log(res.data) const userList = res.data.records.map(v => { return { ...v, @@ -424,7 +425,6 @@ }, formatList (list) { - console.log(list) return list.map(item => { let userList = [] const girdMemberManageList = item.girdMemberManageList ? item.girdMemberManageList.map(v => { From ca38041eecfbeecd1750175e81ed2fd50cac03d1 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 16 Jun 2022 13:48:07 +0800 Subject: [PATCH 06/68] BUG 30204 --- packages/publicity/AppJob/components/JobList.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/publicity/AppJob/components/JobList.vue b/packages/publicity/AppJob/components/JobList.vue index 139fb7ee..625fb133 100644 --- a/packages/publicity/AppJob/components/JobList.vue +++ b/packages/publicity/AppJob/components/JobList.vue @@ -95,9 +95,11 @@ }) }, - remove(id) { + remove(ids) { this.$confirm('确定删除该数据?').then(() => { - this.instance.post(`/app/appjob/delete?id=${id}`).then(res => { + this.instance.post(`/app/appjob/delete`,null,{ + params:{ids} + }).then(res => { if (res.code == 0) { this.$message.success('删除成功!') this.getList() From 3dce3cd49774e30b24fdb90cc8d4e9e2e1a40e0e Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 16 Jun 2022 14:01:10 +0800 Subject: [PATCH 07/68] =?UTF-8?q?=E7=BD=91=E6=A0=BC=E5=A4=A7=E5=B1=8Fbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/dv/apps/AppGridDV.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/project/dv/apps/AppGridDV.vue b/project/dv/apps/AppGridDV.vue index b38f4999..cb3708e9 100644 --- a/project/dv/apps/AppGridDV.vue +++ b/project/dv/apps/AppGridDV.vue @@ -345,8 +345,8 @@ this.instance.post(`/app/appgirdinfo/listAllGirdAndMemberByTop?id=${id || ''}`).then((res) => { if (res.code == 0) { const chartData = this.formatList([res.data]) - if (res.data && res.data.parentGirdInfo) { - const parentGirdInfo = res.data.parentGirdInfo + if (res.data) { + const parentGirdInfo = res.data const girdMemberList = parentGirdInfo.girdMemberManageList ? parentGirdInfo.girdMemberManageList.map(v => { return { ...v, @@ -395,7 +395,6 @@ } }).then(res => { if (res.code == 0) { - console.log(res.data) const userList = res.data.records.map(v => { return { ...v, From 345f1c10b0fcd606dcf8564c63ed32e87e38ba96 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 16 Jun 2022 15:31:40 +0800 Subject: [PATCH 08/68] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/oms/apps/AppDeploy/AppDeploy.vue | 26 +++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/project/oms/apps/AppDeploy/AppDeploy.vue b/project/oms/apps/AppDeploy/AppDeploy.vue index 2cfcee35..5beb1843 100644 --- a/project/oms/apps/AppDeploy/AppDeploy.vue +++ b/project/oms/apps/AppDeploy/AppDeploy.vue @@ -14,6 +14,14 @@ + + + Date: Mon, 20 Jun 2022 14:25:33 +0800 Subject: [PATCH 22/68] =?UTF-8?q?=E7=A7=AF=E5=88=86=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/AppIntegralAudit/components/Detail.vue | 12 +++++++++--- project/sanjianxi/apps/AppPartyScore/psDetail.vue | 12 ++++++++++-- project/sanjianxi/apps/AppPartyScoreFlow/psfList.vue | 3 +++ 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/project/sanjianxi/apps/AppIntegralAudit/components/Detail.vue b/project/sanjianxi/apps/AppIntegralAudit/components/Detail.vue index b3e465c2..ba3e6bd7 100644 --- a/project/sanjianxi/apps/AppIntegralAudit/components/Detail.vue +++ b/project/sanjianxi/apps/AppIntegralAudit/components/Detail.vue @@ -81,9 +81,9 @@ - @@ -121,7 +121,7 @@ export default { opinion: '', pass: '' }, - ruleList: [] + ruleList: [], } }, @@ -138,10 +138,16 @@ export default { }, created() { + let loading = this.$loading({ + text: 'Loading', + }); if (this.params && this.params.id) { this.id = this.params.id this.dict.load(['atWillReportType', 'auditStatus']).then(() => { this.getInfo(this.params.id) + this.$nextTick(() => { + loading.close() + }) }) } }, diff --git a/project/sanjianxi/apps/AppPartyScore/psDetail.vue b/project/sanjianxi/apps/AppPartyScore/psDetail.vue index 4c662b8e..cd8663cb 100644 --- a/project/sanjianxi/apps/AppPartyScore/psDetail.vue +++ b/project/sanjianxi/apps/AppPartyScore/psDetail.vue @@ -11,6 +11,12 @@ + + + - +
- - - - + + + +
@@ -42,49 +43,71 @@ title="事件审核" @onConfirm="onConfirm"> + - - + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + @@ -114,7 +137,7 @@ export default { auditStatus: '0' }, id: '', - isShow: false, + isShow: true, form: { auditIntegralType: '', auditRuleId: '', diff --git a/project/sanjianxi/apps/AppIntegralAudit/components/List.vue b/project/sanjianxi/apps/AppIntegralAudit/components/List.vue index c20e9e4e..6cfb0703 100644 --- a/project/sanjianxi/apps/AppIntegralAudit/components/List.vue +++ b/project/sanjianxi/apps/AppIntegralAudit/components/List.vue @@ -15,13 +15,13 @@
+ 暂无应用权限 - + +
- + + + - - -
- 添加 - - - - - - - - - - - - - + + + + + + + 常规 + 区间 + 阶梯 + - + + + + + + + + + + +
+
+ +
+
+ +
+
+ +
+
+
+ + + 添加 + + + + + 删除 + + + + + + + + + + + + + + + + + +
+ + + @@ -152,6 +207,11 @@ export default { {prop: "status", label: "状态", align: "center", width: 96, dict: "integralRuleStatus"}, {slot: "options", label: "操作", align: "center"}, ], + integralConfigs: [ + {prop: "event", label: "加分项", dict: "integralRuleEvent"}, + {prop: "event", label: "获得积分", dict: "integralRuleEvent"}, + {slot: "options", label: "操作", align: "center"}, + ], tableData: [], dialog: false, form: {ladderRule: []}, @@ -161,7 +221,12 @@ export default { integral: [{required: true, pattern: /^\d*[.\d]\d?$/, message: "请输入积分分值,最多保留一位小数"}], numberLimit: [{pattern: /^\d*$/, message: "请输入正整数"}] }, - cacheOps: [] + cacheOps: [], + integralFrom: '', + integralTo: '', + integralData: [], + innerVisible: false, + forms: {}, }; }, created() { @@ -198,6 +263,19 @@ export default { }) }) }, + + typeChange() { + this.form.integral = '' + }, + + handleInputFrom(event) { + this.$emit('focusfrom', event) + }, + + handleInputTo(event) { + this.$emit('blurto', event) + }, + remove(id) { this.$confirm("删除后不可恢复,是否要删除该事项?", { type: 'error' @@ -299,5 +377,38 @@ export default { } } } + + + ::v-deep .el-input--mini .el-input__inner { + border: 0px; + margin: 0; + padding: 0 15px; + background-color: transparent; + } + .input-number-range { + background-color: #fff; + border: 1px solid #dcdfe6; + border-radius: 4px; + } + + .flex { + display: flex; + flex-direction: row; + width: 100%; + // justify-content: space-between; + align-items: center; + + .center { + margin: 0 20px; + margin-top: 1px; + } + } + .is-disabled { + background-color: #eef0f6; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; + } + } From 7db8828e0b272679fc326e6526c82ce359fdad41 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Mon, 20 Jun 2022 17:44:13 +0800 Subject: [PATCH 25/68] =?UTF-8?q?=E7=A7=AF=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/sanjianxi/apps/AppPartyScoreFlow/AppPartyScoreFlow.vue | 2 +- project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/project/sanjianxi/apps/AppPartyScoreFlow/AppPartyScoreFlow.vue b/project/sanjianxi/apps/AppPartyScoreFlow/AppPartyScoreFlow.vue index 8c2a5991..59e99e85 100644 --- a/project/sanjianxi/apps/AppPartyScoreFlow/AppPartyScoreFlow.vue +++ b/project/sanjianxi/apps/AppPartyScoreFlow/AppPartyScoreFlow.vue @@ -10,7 +10,7 @@ import PsfList from "./psfList"; export default { name: "AppPartyScoreFlow", components: {PsfList}, - label: "党员积分明细(三涧溪)", + label: "积分明细(三涧溪)", props: { instance: Function, dict: Object, diff --git a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue index aab80f9a..84ce589a 100644 --- a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue +++ b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue @@ -126,7 +126,6 @@ 添加 - Date: Mon, 20 Jun 2022 18:31:30 +0800 Subject: [PATCH 26/68] =?UTF-8?q?=E4=BD=8E=E4=BB=A3=E7=A0=81=E5=B9=B3?= =?UTF-8?q?=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../oms/apps/develop/AppAiCode/AppAiCode.vue | 36 + project/oms/apps/develop/AppAiCode/acAdd.vue | 149 +++ project/oms/apps/develop/AppAiCode/acList.vue | 87 ++ .../oms/apps/develop/AppAiCode/config.json | 274 +++++ .../apps/develop/AppAiCode/detailLayout.vue | 1074 +++++++++++++++++ 5 files changed, 1620 insertions(+) create mode 100644 project/oms/apps/develop/AppAiCode/AppAiCode.vue create mode 100644 project/oms/apps/develop/AppAiCode/acAdd.vue create mode 100644 project/oms/apps/develop/AppAiCode/acList.vue create mode 100644 project/oms/apps/develop/AppAiCode/config.json create mode 100644 project/oms/apps/develop/AppAiCode/detailLayout.vue diff --git a/project/oms/apps/develop/AppAiCode/AppAiCode.vue b/project/oms/apps/develop/AppAiCode/AppAiCode.vue new file mode 100644 index 00000000..5669c647 --- /dev/null +++ b/project/oms/apps/develop/AppAiCode/AppAiCode.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/project/oms/apps/develop/AppAiCode/acAdd.vue b/project/oms/apps/develop/AppAiCode/acAdd.vue new file mode 100644 index 00000000..fd04cac0 --- /dev/null +++ b/project/oms/apps/develop/AppAiCode/acAdd.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/project/oms/apps/develop/AppAiCode/acList.vue b/project/oms/apps/develop/AppAiCode/acList.vue new file mode 100644 index 00000000..892bf7e3 --- /dev/null +++ b/project/oms/apps/develop/AppAiCode/acList.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/project/oms/apps/develop/AppAiCode/config.json b/project/oms/apps/develop/AppAiCode/config.json new file mode 100644 index 00000000..5fa7995a --- /dev/null +++ b/project/oms/apps/develop/AppAiCode/config.json @@ -0,0 +1,274 @@ +{ + "config": [ + { + "type": "info", + "tips": "(不能重复添加同一元素)", + "label": "信息", + "children": [ + { + "type": "name", + "fieldName": "姓名", + "fieldTips": "请输入姓名", + "fixedLabel": "姓名", + "disable": "0", + "grid": 0.5, + "defaultValue": "", + "icon": "icontext_box", + "mustFill": "1", + "maxLength": 20 + }, + { + "type": "idNumber", + "fieldName": "身份证号", + "fixedLabel": "身份证号", + "fieldTips": "请输入身份证号", + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "maxLength": 20, + "disable": "0", + "grid": 0.5 + }, + { + "type": "phone", + "fieldName": "联系方式", + "fixedLabel": "联系方式", + "fieldTips": "请输入联系方式", + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "maxLength": 20, + "disable": "0", + "grid": 0.5 + }, + { + "type": "area", + "fieldName": "地区", + "fixedLabel": "地区", + "fieldTips": "请选择地区", + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "areaPattern": "", + "disable": "0", + "grid": 0.5 + } + ] + }, + { + "type": "options", + "tips": "(可重复添加)", + "label": "选项", + "children": [ + { + "type": "radio", + "fieldName": "单选", + "fixedLabel": "单选", + "fieldTips": "请选择", + "grid": 0.5, + "icon": "iconradio", + "mustFill": "1", + "disable": "0", + "defaultValue": "", + "options": [ + { + "label": "选项1", + "value": "" + }, + { + "label": "选项2", + "value": "" + } + ], + "title": "" + }, + { + "type": "checkbox", + "fieldName": "多选", + "fixedLabel": "多选", + "fieldTips": "请选择", + "icon": "iconcheck_box", + "mustFill": "1", + "grid": 0.5, + "disable": "0", + "defaultValue": [], + "options": [ + { + "label": "选项1", + "value": "" + }, + { + "label": "选项2", + "value": "" + } + ], + "title": "" + }, + { + "type": "select", + "fieldName": "单下拉框", + "fixedLabel": "单下拉框", + "grid": 0.5, + "fieldTips": "请选择", + "icon": "iconSelect", + "mustFill": "1", + "defaultValue": "", + "disable": "0", + "options": [ + { + "label": "选项1", + "value": "" + }, + { + "label": "选项2", + "value": "" + } + ], + "title": "" + }, + { + "type": "onOff", + "fieldName": "开关", + "fixedLabel": "开关", + "grid": 0.5, + "fieldTips": "请选择开关", + "icon": "iconSelect", + "mustFill": "1", + "defaultValue": "0", + "disable": "0", + "title": "" + }, + { + "type": "date", + "fieldName": "日期", + "fixedLabel": "日期", + "grid": 0.5, + "datetimePattern": "yyyy-MM-dd", + "fieldTips": "请选择日期", + "icon": "iconSelect", + "mustFill": "1", + "disable": "0", + "title": "" + }, + { + "type": "time", + "fieldName": "时间", + "fixedLabel": "时间", + "grid": 0.5, + "datetimePattern": "HH:mm:ss", + "fieldTips": "请选择时间", + "icon": "iconSelect", + "mustFill": "1", + "disable": "0", + "title": "" + }, + { + "type": "datetime", + "fieldName": "日期时间", + "fixedLabel": "日期时间", + "grid": 0.5, + "datetimePattern": "yyyy-MM-dd HH:mm:ss", + "fieldTips": "请选择日期时间", + "icon": "iconSelect", + "mustFill": "1", + "disable": "0", + "title": "" + } + ] + }, + { + "type": "input", + "tips": "(可重复添加)", + "label": "填空", + "children": [ + { + "type": "input", + "fieldName": "单行填空", + "fieldTips": "请输入", + "fixedLabel": "单行填空", + "disable": "0", + "grid": 0.5, + "defaultValue": "", + "icon": "icontext_box", + "mustFill": "1", + "maxLength": 50 + }, + { + "type": "textarea", + "fieldName": "多行填空", + "fixedLabel": "多行填空", + "fieldTips": "请输入", + "lineNumber": 4, + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "maxLength": 500, + "disable": "0", + "grid": 1 + }, + { + "type": "number", + "fieldName": "数字输入", + "fixedLabel": "数字输入", + "fieldTips": "请输入数字", + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "maxValue": 10000, + "decimalPlaces": 0, + "minValue": 0, + "maxLength": 500, + "disable": "0", + "grid": 0.5 + }, + { + "type": "rtf", + "fieldName": "富文本", + "fixedLabel": "富文本", + "fieldTips": "请输入", + "defaultValue": "", + "icon": "icontext_area", + "mustFill": "1", + "maxLength": 5000, + "disable": "0", + "grid": 1 + } + ] + }, + { + "type": "annex", + "tips": "(可重复添加)", + "label": "附件", + "children": [ + { + "type": "upload", + "fieldTips": "请上传", + "fieldName": "上传附件", + "fixedLabel": "上传附件", + "disable": "0", + "fileChoseSize": 10, + "fileMaxCount": 9, + "defaultValue": "", + "icon": "iconpic", + "mustFill": "1", + "grid": 1 + } + ] + }, + { + "type": "layout", + "tips": "(可重复添加)", + "label": "分组", + "children": [ + { + "type": "group", + "fieldName": "卡片", + "fixedLabel": "卡片", + "icon": "iconpic", + "groupName": "分组标题", + "column": [] + } + ] + } + ] +} diff --git a/project/oms/apps/develop/AppAiCode/detailLayout.vue b/project/oms/apps/develop/AppAiCode/detailLayout.vue new file mode 100644 index 00000000..82be0e9d --- /dev/null +++ b/project/oms/apps/develop/AppAiCode/detailLayout.vue @@ -0,0 +1,1074 @@ + + + + + From 340e40b6d188423886dbff8f2493a32dca1b190c Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Tue, 21 Jun 2022 10:58:33 +0800 Subject: [PATCH 27/68] =?UTF-8?q?=E5=85=9A=E5=91=98=E7=A7=AF=E5=88=86?= =?UTF-8?q?=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sanjianxi/apps/AppPartyScore/psList.vue | 238 ++---------------- .../apps/AppScoreRules/AppScoreRules.vue | 89 ++----- 2 files changed, 31 insertions(+), 296 deletions(-) diff --git a/project/sanjianxi/apps/AppPartyScore/psList.vue b/project/sanjianxi/apps/AppPartyScore/psList.vue index b8e4eac6..903f0503 100644 --- a/project/sanjianxi/apps/AppPartyScore/psList.vue +++ b/project/sanjianxi/apps/AppPartyScore/psList.vue @@ -3,35 +3,16 @@ @@ -221,165 +172,6 @@ export default { .psList { height: 100%; - .organization-left__list { - height: calc(100% - 40px); - padding: 8px 8px; - overflow: auto; - - .organization-left__tags--item { - display: flex; - align-items: center; - justify-content: space-between; - height: 40px; - padding: 0 8px 0 16px; - color: #222222; - - &.organization-left__tags--item-active, &:hover { - background: #E8EFFF; - color: #2266FF; - - i, span { - color: #2266FF; - } - } - - span { - font-size: 14px; - } - - i { - cursor: pointer; - color: #8e9ebf; - font-size: 16px; - } - } - - .organization-left__list--title { - display: flex; - align-items: center; - margin-bottom: 8px; - - .organization-left__list--search { - flex: 1; - - ::v-deep input { - width: 100%; - } - } - - .el-button { - width: 84px; - flex-shrink: 1; - margin-right: 8px; - } - } - - span { - color: #222222; - font-size: 14px; - } - - ::v-deep .el-tree { - background: transparent; - - .el-tree-node__expand-icon.is-leaf { - color: transparent !important; - } - - .el-tree-node__content > .el-tree-node__expand-icon { - padding: 4px; - } - - .el-tree-node__content { - height: 32px; - } - - .el-tree__empty-text { - color: #222; - font-size: 14px; - } - - .el-tree-node__children .el-tree-node__content { - height: 32px; - } - - .el-tree-node__content:hover { - background: #E8EFFF; - color: #222222; - border-radius: 2px; - } - - .is-current > .el-tree-node__content { - &:hover { - background: #2266FF; - color: #fff; - } - - background: #2266FF; - - span { - color: #fff; - } - } - } - } - - ::v-deep .ai-list__content--left { - margin-right: 2px; - } - - .patyCode-left { - width: 100%; - height: auto; - background: #FAFAFB; - - .patyCode-left__title { - display: flex; - align-items: center; - height: 40px; - padding: 0 16px; - background: #fff; - - h2 { - color: #222; - font-size: 14px; - } - } - - .patyCode-left__list { - height: calc(100% - 40px); - padding: 8px 0; - overflow: auto; - - span { - display: block; - height: 40px; - line-height: 40px; - padding: 0 24px; - color: #222222; - font-size: 14px; - cursor: pointer; - border-right: 2px solid transparent; - background: transparent; - - &:hover { - color: #2266FF; - background: #E8EFFF; - } - - &.left-active { - color: #2266FF; - border-color: #2266FF; - background: #E8EFFF; - } - } - } - } - - ::v-deep .ai-list__content--right { - .ai-list__content--right-wrapper { - min-height: 100%; - } - } + } diff --git a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue index 84ce589a..2be2a9af 100644 --- a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue +++ b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue @@ -100,27 +100,9 @@ -
-
- -
-
- -
-
- -
-
+ +
@@ -137,7 +119,7 @@ - + @@ -148,7 +130,7 @@
@@ -225,7 +207,7 @@ export default { integralTo: '', integralData: [], innerVisible: false, - forms: {}, + table: {}, }; }, created() { @@ -262,6 +244,15 @@ export default { }) }) }, + // 保存 + save() { + this.$refs.innerForm.validate((valid)=>{ + if (valid) { + this.innerData.push(this.table) + } + this.innerVisible = false + }) + }, typeChange() { this.form.integral = '' @@ -359,55 +350,7 @@ export default { height: 100%; background: #f3f6f9; - ::v-deep .ai-list__content--right { - width: 100%; - } - - ::v-deep .ai-dialog { - .el-cascader { - width: 100%; - } - - .tableInput { - & > input { - text-align: center; - border: none; - background: transparent; - } - } - } - - - ::v-deep .el-input--mini .el-input__inner { - border: 0px; - margin: 0; - padding: 0 15px; - background-color: transparent; - } - .input-number-range { - background-color: #fff; - border: 1px solid #dcdfe6; - border-radius: 4px; - } - - .flex { - display: flex; - flex-direction: row; - width: 100%; - // justify-content: space-between; - align-items: center; - - .center { - margin: 0 20px; - margin-top: 1px; - } - } - .is-disabled { - background-color: #eef0f6; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; - } + } From 3ac9250f386e1279e9ad10f4e6e8683b0428081c Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Tue, 21 Jun 2022 14:22:45 +0800 Subject: [PATCH 28/68] =?UTF-8?q?=E5=B1=8F=E8=94=BD=E5=B1=85=E6=B0=91?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/sanjianxi/apps/AppPartyScore/psList.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/project/sanjianxi/apps/AppPartyScore/psList.vue b/project/sanjianxi/apps/AppPartyScore/psList.vue index 903f0503..e04518c7 100644 --- a/project/sanjianxi/apps/AppPartyScore/psList.vue +++ b/project/sanjianxi/apps/AppPartyScore/psList.vue @@ -171,7 +171,5 @@ export default { From 0ac92994bcc110966b35e7180286056db5e64a8e Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Tue, 21 Jun 2022 18:52:25 +0800 Subject: [PATCH 29/68] =?UTF-8?q?=E8=A7=86=E9=A2=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppEquipmentManage/components/List.vue | 26 +++++++--- .../components/deviceSlider.vue | 51 ++++++++++++++++--- 2 files changed, 63 insertions(+), 14 deletions(-) diff --git a/packages/device/AppEquipmentManage/components/List.vue b/packages/device/AppEquipmentManage/components/List.vue index 095fd5e2..790beaf5 100644 --- a/packages/device/AppEquipmentManage/components/List.vue +++ b/packages/device/AppEquipmentManage/components/List.vue @@ -4,18 +4,15 @@ - + - - - 不限 - - - - - 村社区 - - - - - 镇街 - - - - - - + -
- 取消 - 确认 - -
-
+
From 16128af70f3a68d76a8481dd1d41feb872c16150 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 23 Jun 2022 14:59:54 +0800 Subject: [PATCH 42/68] =?UTF-8?q?=E7=A7=80=E5=B1=B1=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/processApproval.vue | 102 ++++++------------ 1 file changed, 31 insertions(+), 71 deletions(-) diff --git a/project/xiushan/apps/processManagement/mattersConfig/components/processApproval.vue b/project/xiushan/apps/processManagement/mattersConfig/components/processApproval.vue index 72729ffd..e9b26eed 100644 --- a/project/xiushan/apps/processManagement/mattersConfig/components/processApproval.vue +++ b/project/xiushan/apps/processManagement/mattersConfig/components/processApproval.vue @@ -44,25 +44,8 @@
- - - - - - + - + @@ -35,7 +35,6 @@ export default { return { currIndex: "0", row: {}, - currentComp: "", } }, computed: { @@ -49,22 +48,18 @@ export default { return this.tabs?.[this.currIndex] || {} }, showDetail() { - return !!this.$route.query?.id || !!this.$route.query?.processType + return this.$route.hash == "#add" || !!this.$route.query?.processType } }, methods: { goPage(params) { - this.row = params.row - this.currentComp = params.comp - this.$router.push({query: {processType: this.currentTab.value}}) + this.$router.push({query: {id: params.row.id}, hash: "#add"}) }, - back() { this.$router.push({query: {}}) } }, created() { - this.$router.push({query: {}}); this.$dict.load("hbDepartment", 'sex', 'nation', 'marital', 'native_place', 'education', 'candidateApproverType', 'scopeCandidates', 'nodeType') } } diff --git a/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue b/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue index 2e73bd7a..aace9a65 100644 --- a/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue +++ b/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue @@ -9,12 +9,12 @@ - diff --git a/packages/bigscreen/designer/components/Add.vue b/packages/bigscreen/designer/components/Add.vue index ec66be32..249d05dc 100644 --- a/packages/bigscreen/designer/components/Add.vue +++ b/packages/bigscreen/designer/components/Add.vue @@ -33,14 +33,14 @@