Commit 3fd0664b3927dbc3f1e0d0dbc6c5c74dc6c45b7a

Authored by 陈翱
1 parent 2abf5bdf

去除页面上的debugger

dist.zip deleted
No preview for this file type
src/components/dict/JDictSelectUtil.js
... ... @@ -16,7 +16,6 @@ export async function initDictOptions(dictCode) {
16 16 if (!dictCode) {
17 17 return '字典Code不能为空!';
18 18 }
19   - debugger
20 19 //优先从缓存中读取字典配置
21 20 if(getDictItemsFromCache(dictCode)){
22 21 let res = {}
... ... @@ -120,7 +119,6 @@ export function filterDictTextByCache(dictCode, key) {
120 119 };
121 120 if(getDictItemsFromCache(params)){
122 121 let item = getDictItemsFromCache(params).filter(t => t["value"] == key)
123   - debugger
124 122 if(item && item.length>0){
125 123 return item[0]["text"]
126 124 }
... ...
src/views/dashboard/IndexChart.vue
... ... @@ -172,7 +172,6 @@
172 172 "startTime":null,
173 173 "endTime":null
174 174 }
175   - debugger;
176 175 switch (dateType){
177 176 case 1:
178 177 params.startTime = this.timeFormat(new Date());
... ... @@ -194,12 +193,10 @@
194 193 params.endTime = this.getFirstDayOfMonth(new Date());
195 194 break;
196 195 }
197   - debugger
198 196 this.chartDataLoading(params);
199 197 },
200 198 chartDataLoading(params){
201 199 getWorkTime(params).then((res)=>{
202   - debugger;
203 200 if (res){
204 201 if (res.barData.length > 0){
205 202 this.dataConversion(res.barData);
... ...
src/views/material/LockingWorkOrderList.vue
... ... @@ -212,7 +212,6 @@
212 212 ajaxGetDictItems('lockingStatus').then((res)=> {
213 213 if (res.success) {
214 214 this.status = res.result
215   - debugger;
216 215 }
217 216 })
218 217 },
... ...
src/views/material/MaterialCollection.vue
... ... @@ -135,7 +135,6 @@ export default {
135 135 methods: {
136 136 loadFrom() {
137 137 getProject().then((res) => {
138   - debugger;
139 138 if (res.success) {
140 139 this.projectNameList = res.result;
141 140  
... ... @@ -149,7 +148,6 @@ export default {
149 148 },
150 149  
151 150 query() {
152   - debugger;
153 151 let params = {
154 152 "workOrder": this.queryParam.workOrder,
155 153 }
... ...
src/views/material/MissingMaterialsPlease.vue
... ... @@ -141,7 +141,6 @@ export default {
141 141 methods: {
142 142 loadFrom() {
143 143 getProject().then((res) => {
144   - debugger;
145 144 if (res.success) {
146 145 this.projectNameList = res.result;
147 146  
... ... @@ -155,7 +154,6 @@ export default {
155 154 },
156 155  
157 156 query() {
158   - debugger;
159 157 let params = {
160 158 "workOrder": this.queryParam.workOrder,
161 159 }
... ...
src/views/material/modules/OutsourcingInModal.vue
... ... @@ -159,7 +159,6 @@ export default {
159 159 methods: {
160 160 loadBaseData() {
161 161 ajaxGetDictItems('outsourcing_status').then((res)=> {
162   - debugger
163 162 if (res.success) {
164 163 this.statusList = res.result
165 164 }
... ...