From 32e809101d57c15154023684972d54af0c1290f4 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Wed, 13 Nov 2024 21:10:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/system/checkReport/add.html | 112 ++++--- .../templates/system/checkReport/detail.html | 175 ++++++++--- .../templates/system/checkReport/edit.html | 127 +++++--- .../system/checkReport/selfcheck.html | 280 ------------------ .../system/elExam/userExam/view.html | 100 ++++++- 5 files changed, 387 insertions(+), 407 deletions(-) delete mode 100644 ruoyi-admin/src/main/resources/templates/system/checkReport/selfcheck.html diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html index b2e2436..8b63246 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html @@ -269,9 +269,10 @@ }, computed: { pickerOptionsEnd() { + var _this = this return { - disabledDate: (time) => { - return time.getTime() < new Date(this.postForm.checkStartTime).getTime(); + disabledDate: function(time) { + return time.getTime() < new Date(_this.postForm.checkStartTime).getTime(); } }; } @@ -293,11 +294,11 @@ // } }, handleUploadSuccess(row) { - return (response, file,fileList) => { + return function(response, file, fileList) { if (response.code == web_status.SUCCESS) { row.fileName = response.originalFilename; row.fileUrl = response.url; - row.fileList = fileList + row.fileList = fileList; $.modal.msgSuccess("文件上传成功"); } }; @@ -308,11 +309,15 @@ handleExceed(){ $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); }, - handleChange(row, expandedRows){ + handleChange(row, expandedRows) { this.loading = true; + if (expandedRows.length > 0) { // 检查缓存中是否已经存在对应的数据 - const cachedRow = this.cachedData.find((item) => item.checkType === row.checkType); + var cachedRow = this.cachedData.find(function (item) { + return item.checkType === row.checkType; + }); + if (cachedRow) { row.children = cachedRow.children; this.loading = false; @@ -320,17 +325,23 @@ $.ajax({ url: '/system/checkReport/checkView/' + row.checkType + '/' + row.typeName, type: 'GET', - success: ((res) => { + success: (function (res) { if (res.code === web_status.SUCCESS) { - res.data.forEach((item) => { + res.data.forEach(function (item) { Object.assign(item, { ifstarts: true }); }); + // 将请求到的数据缓存起来 - this.updateCachedData(this.cachedData, {...row, children: res.data }); + this.updateCachedData(this.cachedData, { + // 使用ES5的方式扩展对象 + children: res.data, + checkType: row.checkType, + typeName: row.typeName + }); row.children = res.data; this.loading = false; } - }), + }).bind(this) }); } } @@ -359,14 +370,14 @@ }, calculateTotalScore(value) { - if (value == 'totalScore'){ - this.postForm.totalScore = this.startsArry.reduce((sum, row) => { - return sum + parseFloat(row.score) + if (value === 'totalScore') { + this.postForm.totalScore = this.startsArry.reduce(function (sum, row) { + return sum + parseFloat(row.score); }, 0); } - if (value == 'realScore'){ - this.postForm.realScore = this.startsArry.reduce((sum, row) => { - return sum + parseFloat(row.realScore) + if (value === 'realScore') { + this.postForm.realScore = this.startsArry.reduce(function (sum, row) { + return sum + parseFloat(row.realScore); }, 0); } }, @@ -402,12 +413,13 @@ $.ajax({ url: '/system/checkReport/checkViewParent/sys_check_type_report', type: 'GET', - success: ((res) => { - res.data.forEach(item => { - Object.assign(item, { children: [] }); + success: function (res) { + res.data.forEach(function (item) { + // 在ES5中使用Object.assign的替代方式来添加属性 + item.children = []; }); this.postForm.checkTypeDTOS = res.data; - }) + }.bind(this) }); }, formatDateToCustomString(date) { @@ -420,62 +432,70 @@ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, - getCityList(){ + getCityList() { $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params , - success:((res)=>{ - this.CityList = res.data.filter(obj => obj.id === '36625'); - }) , + data: this.params, + success: function (res) { + this.CityList = res.data.filter(function (obj) { + return obj.id === '36625'; + }); + }.bind(this) }); }, - getAreaList(){ - this.params.parentId = this.postForm.framework + getAreaList() { + this.params.parentId = this.postForm.framework; $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params, - success:((res)=>{ - this.AreaList = res.data - this.postForm.area = '' - }) , + data: this.params, + success: function (res) { + this.AreaList = res.data; + this.postForm.area = ''; + }.bind(this) }); }, submitForm() { - this.$refs.postForm.validate((valid) => { - const hasEmptyRealScore = this.cachedData.some(item => { - return item.children.some(child => { - return child.starts && !child.realScore; + this.$refs.postForm.validate(function (valid) { + var hasEmptyRealScore = this.cachedData.some(function (item) { + return item.children.some(function (child) { + return child.starts &&!child.realScore; }); }); - if (hasEmptyRealScore){ + + if (hasEmptyRealScore) { $.modal.alertWarning("所选自查项内有未评分项,请检查"); - return false + return false; } + // console.log(hasEmptyRealScore); // console.log(this.cachedData) + if (!valid) { - return + return; } + // this.postForm.checkTypeDTOS = [] - this.postForm.checkTypeDTOS = this.cachedData.reduce((acc, item) => { + this.postForm.checkTypeDTOS = this.cachedData.reduce(function (acc, item) { return acc.concat(item.children); }, []); - this.postForm.checkStartTime = this.formatDateToCustomString(new Date(this.postForm.checkStartTime)) - this.postForm.checkEndTime = this.formatDateToCustomString(new Date(this.postForm.checkEndTime)) + + this.postForm.checkStartTime = this.formatDateToCustomString(new Date(this.postForm.checkStartTime)); + this.postForm.checkEndTime = this.formatDateToCustomString(new Date(this.postForm.checkEndTime)); + axios.post(prefix + '/add', this.postForm) .then(function (response) { if (response.data.code === 0) { - $.operate.successTabCallback(response.data); - }else{ - $.modal.alertError(response.data.msg) + $.operate.successTabCallback(response.data); + } else { + $.modal.alertError(response.data.msg); } }) .catch(function (error) { console.log(error); }); - }) + }.bind(this)); }, closeItem(){ $.modal.closeTab() diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html index 98953d7..beb557f 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/detail.html @@ -326,7 +326,7 @@ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, handleUploadSuccess(row) { - return (response, file) => { + return function (response, file) { if (response.code == web_status.SUCCESS) { row.fileName = response.originalFilename; row.fileUrl = response.url; @@ -335,7 +335,7 @@ }; }, handleRemove(row){ - return () => { + return function () { row.fileName = ''; row.fileUrl = ''; $.modal.msgSuccess("删除成功"); @@ -348,7 +348,34 @@ $.modal.msgWarning('超出个数限制,最多只能上传一个文件!'); }, handlePreview(file){ - window.location.href = ctx + "common/download/resource?resource=" + encodeURI(file.url) ; + $.ajax({ + url: '/common/download/resource?resource=' + file.url, + type: 'GET', + xhrFields: { + responseType: 'blob' + }, + success: function (data, status, xhr) { + let contentType = xhr.getResponseHeader('Content-Type'); + let filename = file.name; + if (navigator.msSaveBlob) { + // 兼容 IE + navigator.msSaveBlob(data, filename); + } else { + let blob = new Blob([data], { type: contentType }); + let url = URL.createObjectURL(blob); + let a = document.createElement('a'); + a.href = url; + a.download = filename; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + URL.revokeObjectURL(url); + } + }, + error: function (xhr, status, error) { + console.error('下载文件失败:', error); + } + }); }, validateEndTime(rule, value, callback) { // if (value && this.postForm.checkStartTime && new Date(value).getTime() < new Date(this.postForm.checkStartTime).getTime()) { @@ -359,12 +386,20 @@ }, handleChange(row, expandedRows){ this.loading = true; + var _this = this; if (expandedRows.length > 0) { // 检查缓存中是否已经存在对应的数据 - const cachedRow = this.cachedData.find((item) => item.checkType === row.checkType); + var cachedRow; + for (var i = 0; i < _this.cachedData.length; i++) { + var item = _this.cachedData[i]; + if (item.checkType === row.checkType) { + cachedRow = item; + break; + } + } if (cachedRow) { row.children = cachedRow.children; - this.loading = false; + _this.loading = false; } else { // $.ajax({ // url: '/system/checkReport/checkView/' + row.checkType + '/' + row.typeName, @@ -382,12 +417,22 @@ // }), // }); row.children = [] - this.editcheckTypeDTOS.forEach(item => { + _this.editcheckTypeDTOS.forEach(function (item) { if (item.checkType === row.checkType) { row.children.push(item); } + + // 在ES5中没有Object.assign方法,这里通过遍历属性来模拟其功能 + for (var key in { ifstarts: true }) { + item[key] = { ifstarts: true }[key]; + } + }); + + _this.updateCachedData(_this.cachedData, { + // 在ES5中没有扩展运算符,这里手动合并对象属性 + row: row, + children: row.children }); - this.updateCachedData(this.cachedData, {...row, children: row.children }); this.loading = false } } @@ -395,7 +440,14 @@ handleCheckChange(row, expandedRows){ // console.log(this.editcheckTypeDTOS) // console.log(row) - let existingData = this.editcheckTypeDTOS.find(item => row.itemsType === item.itemsType); + var existingData; + for (var i = 0; i < this.editcheckTypeDTOS.length; i++) { + var item = this.editcheckTypeDTOS[i]; + if (row.itemsType === item.itemsType) { + existingData = item; + break; + } + } if (!this.startsArry){ this.startsArry = [] } @@ -414,7 +466,7 @@ let score = parseFloat(row.score) let realScore = parseFloat(this.postForm.realScore) this.postForm.totalScore = totalScore - score - this.postForm.realScore = realScore - parseFloat(row.realScore) + this.postForm.realScore = realScore - parseFloat(row.realScore == null ? 0 : row.realScore) // let index = this.startsArry.indexOf(row); // if (index > -1) { // this.startsArry.splice(index, 1); @@ -435,7 +487,7 @@ } let realScore = parseFloat(this.postForm.realScore) this.postForm.realScore = realScore + parseFloat(row.realScore) - this.postForm.percentageScore = this.postForm.realScore / this.postForm.totalScore * 100; + this.postForm.percentageScore = (this.postForm.realScore / this.postForm.totalScore * 100).toFixed(2); }, handleInput(row, props) { row.realScore = row.realScore.replace(/[^0-9.]/g, ''); @@ -451,48 +503,75 @@ }, //获取外层数据 getCheckView() { + var _this = this; $.ajax({ url: '/system/checkReport/checkViewParent/sys_check_type_report', type: 'GET', - success: ((res) => { - res.data.forEach(item => { - Object.assign(item, { children: [] }); + success: function(res) { + res.data.forEach(function(item) { + // 在ES5中没有Object.assign方法,通过遍历属性来模拟其功能 + var assignObj = { children: [] }; + for (var key in assignObj) { + item[key] = assignObj[key]; + } }); - this.postForm.checkTypeDTOS = res.data; - }) + _this.postForm.checkTypeDTOS = res.data; + } }); }, getCityList(){ + var _this = this; $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params , - success:((res)=>{ - this.CityList = res.data - }) , + data: this.params, + success: function(res) { + _this.CityList = res.data.filter(function(obj) { + return obj.id === '36625'; + }); + } }); }, - getAreaList(){ - this.params.parentId = this.postForm.framework - // this.postForm.area = '' - $.ajax({ - url: ctx + "system/area/getSysAreaList", - type: 'GET', - data:this.params, - success:((res)=>{ - this.AreaList = res.data - }) , - }); + getAreaList(type){ + if (type === 'mounted'){ + this.params.parentId = this.postForm.framework + // this.postForm.area = '' + var _this = this; + $.ajax({ + url: ctx + "system/area/getSysAreaList", + type: 'GET', + data: this.params, + success: function(res) { + _this.AreaList = res.data; + } + }); + }else{ + this.params.parentId = this.postForm.framework + this.postForm.area = '' + $.ajax({ + url: ctx + "system/area/getSysAreaList", + type: 'GET', + data: this.params, + success: function(res) { + _this.AreaList = res.data; + } + }); + } + }, submitForm() { this.$refs.postForm.validate((valid) => { - const hasEmptyRealScore = this.cachedData.some(item => { - return item.children.some(child => { - return child.starts && !child.realScore; + var hasEmptyRealScore; + var _this = this; + + hasEmptyRealScore = _this.cachedData.some(function (item) { + return item.children.some(function (child) { + return child.starts &&!child.realScore; }); }); if (hasEmptyRealScore){ $.modal.alertWarning("所选自查项内有未评分项,请检查"); + return false } // console.log(hasEmptyRealScore); // console.log(this.cachedData) @@ -502,13 +581,31 @@ // this.postForm.checkTypeDTOS = this.cachedData.reduce((acc, item) => { // return acc.concat(item.children); // }, []); - this.postForm.checkTypeDTOS = this.editcheckTypeDTOS.map(editItem => { - let cachedItem = this.cachedData.find(cachedItem => cachedItem.itemsType === editItem.itemsType); + _this.postForm.checkTypeDTOS = _this.editcheckTypeDTOS.map(function (editItem) { + var cachedItem; + for (var i = 0; i < _this.cachedData.length; i++) { + cachedItem = _this.cachedData[i]; + if (cachedItem.itemsType === editItem.itemsType) { + break; + } else { + cachedItem = null; + } + } + if (cachedItem) { - return {...editItem, ...cachedItem}; + // 在ES5中没有扩展运算符,这里手动合并对象属性 + var mergedItem = {}; + for (var key in editItem) { + mergedItem[key] = editItem[key]; + } + for (var key in cachedItem) { + mergedItem[key] = cachedItem[key]; + } + return mergedItem; } + return editItem; - }) + }); this.postForm.checkStartTime = this.formatISO8601ToDateTime(this.postForm.checkStartTime) this.postForm.checkEndTime = this.formatISO8601ToDateTime(this.postForm.checkEndTime) this.postForm.createTime = this.formatISO8601ToDateTime(this.postForm.createTime) @@ -516,8 +613,8 @@ .then(function (response) { if (response.data.code === 0) { $.operate.successTabCallback(response.data); - }else{ - $.modal.alertError(response.data.msg) + } else { + $.modal.alertError(response.data.msg); } }) .catch(function (error) { diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html index 3848f55..3ba2626 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html @@ -285,9 +285,10 @@ }, computed: { pickerOptionsEnd() { + var _this = this return { - disabledDate: (time) => { - return time.getTime() < new Date(this.postForm.checkStartTime).getTime(); + disabledDate: function(time) { + return time.getTime() < new Date(_this.postForm.checkStartTime).getTime(); } }; } @@ -337,7 +338,7 @@ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, handleUploadSuccess(row) { - return (response, file) => { + return function (response, file) { if (response.code == web_status.SUCCESS) { row.fileName = response.originalFilename; row.fileUrl = response.url; @@ -346,7 +347,7 @@ }; }, handleRemove(row){ - return () => { + return function () { row.fileName = ''; row.fileUrl = ''; $.modal.msgSuccess("删除成功"); @@ -397,12 +398,20 @@ }, handleChange(row, expandedRows){ this.loading = true; + var _this = this; if (expandedRows.length > 0) { // 检查缓存中是否已经存在对应的数据 - const cachedRow = this.cachedData.find((item) => item.checkType === row.checkType); + var cachedRow; + for (var i = 0; i < _this.cachedData.length; i++) { + var item = _this.cachedData[i]; + if (item.checkType === row.checkType) { + cachedRow = item; + break; + } + } if (cachedRow) { row.children = cachedRow.children; - this.loading = false; + _this.loading = false; } else { // $.ajax({ // url: '/system/checkReport/checkView/' + row.checkType + '/' + row.typeName, @@ -420,13 +429,22 @@ // }), // }); row.children = [] - this.editcheckTypeDTOS.forEach(item => { + _this.editcheckTypeDTOS.forEach(function (item) { if (item.checkType === row.checkType) { row.children.push(item); } - Object.assign(item, { ifstarts: true }); + + // 在ES5中没有Object.assign方法,这里通过遍历属性来模拟其功能 + for (var key in { ifstarts: true }) { + item[key] = { ifstarts: true }[key]; + } + }); + + _this.updateCachedData(_this.cachedData, { + // 在ES5中没有扩展运算符,这里手动合并对象属性 + row: row, + children: row.children }); - this.updateCachedData(this.cachedData, {...row, children: row.children }); this.loading = false } } @@ -434,7 +452,14 @@ handleCheckChange(row, expandedRows){ // console.log(this.editcheckTypeDTOS) // console.log(row) - let existingData = this.editcheckTypeDTOS.find(item => row.itemsType === item.itemsType); + var existingData; + for (var i = 0; i < this.editcheckTypeDTOS.length; i++) { + var item = this.editcheckTypeDTOS[i]; + if (row.itemsType === item.itemsType) { + existingData = item; + break; + } + } if (!this.startsArry){ this.startsArry = [] } @@ -490,38 +515,47 @@ }, //获取外层数据 getCheckView() { + var _this = this; $.ajax({ url: '/system/checkReport/checkViewParent/sys_check_type_report', type: 'GET', - success: ((res) => { - res.data.forEach(item => { - Object.assign(item, { children: [] }); + success: function(res) { + res.data.forEach(function(item) { + // 在ES5中没有Object.assign方法,通过遍历属性来模拟其功能 + var assignObj = { children: [] }; + for (var key in assignObj) { + item[key] = assignObj[key]; + } }); - this.postForm.checkTypeDTOS = res.data; - }) + _this.postForm.checkTypeDTOS = res.data; + } }); }, getCityList(){ + var _this = this; $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params , - success:((res)=>{ - this.CityList = res.data.filter(obj => obj.id === '36625'); - }) , + data: this.params, + success: function(res) { + _this.CityList = res.data.filter(function(obj) { + return obj.id === '36625'; + }); + } }); }, getAreaList(type){ if (type === 'mounted'){ this.params.parentId = this.postForm.framework // this.postForm.area = '' + var _this = this; $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params, - success:((res)=>{ - this.AreaList = res.data - }) , + data: this.params, + success: function(res) { + _this.AreaList = res.data; + } }); }else{ this.params.parentId = this.postForm.framework @@ -529,19 +563,22 @@ $.ajax({ url: ctx + "system/area/getSysAreaList", type: 'GET', - data:this.params, - success:((res)=>{ - this.AreaList = res.data - }) , + data: this.params, + success: function(res) { + _this.AreaList = res.data; + } }); } }, submitForm() { this.$refs.postForm.validate((valid) => { - const hasEmptyRealScore = this.cachedData.some(item => { - return item.children.some(child => { - return child.starts && !child.realScore; + var hasEmptyRealScore; + var _this = this; + + hasEmptyRealScore = _this.cachedData.some(function (item) { + return item.children.some(function (child) { + return child.starts &&!child.realScore; }); }); if (hasEmptyRealScore){ @@ -556,13 +593,31 @@ // this.postForm.checkTypeDTOS = this.cachedData.reduce((acc, item) => { // return acc.concat(item.children); // }, []); - this.postForm.checkTypeDTOS = this.editcheckTypeDTOS.map(editItem => { - let cachedItem = this.cachedData.find(cachedItem => cachedItem.itemsType === editItem.itemsType); + _this.postForm.checkTypeDTOS = _this.editcheckTypeDTOS.map(function (editItem) { + var cachedItem; + for (var i = 0; i < _this.cachedData.length; i++) { + cachedItem = _this.cachedData[i]; + if (cachedItem.itemsType === editItem.itemsType) { + break; + } else { + cachedItem = null; + } + } + if (cachedItem) { - return {...editItem, ...cachedItem}; + // 在ES5中没有扩展运算符,这里手动合并对象属性 + var mergedItem = {}; + for (var key in editItem) { + mergedItem[key] = editItem[key]; + } + for (var key in cachedItem) { + mergedItem[key] = cachedItem[key]; + } + return mergedItem; } + return editItem; - }) + }); this.postForm.checkStartTime = this.formatISO8601ToDateTime(this.postForm.checkStartTime) this.postForm.checkEndTime = this.formatISO8601ToDateTime(this.postForm.checkEndTime) this.postForm.createTime = this.formatISO8601ToDateTime(this.postForm.createTime) @@ -570,8 +625,8 @@ .then(function (response) { if (response.data.code === 0) { $.operate.successTabCallback(response.data); - }else{ - $.modal.alertError(response.data.msg) + } else { + $.modal.alertError(response.data.msg); } }) .catch(function (error) { diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/selfcheck.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/selfcheck.html deleted file mode 100644 index aa92e7b..0000000 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/selfcheck.html +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
-
- 保存 - 返回 -
-
-
-
- - - - - - - diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html index 48d19c3..8437603 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html @@ -6,7 +6,38 @@
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -27,7 +58,7 @@ - 考试状态:{{ item.stateName}} + 考试状态:{{ item.userTime}} @@ -43,17 +74,26 @@ el: '#app', data: { paperList: [[${list}]], - examStateList:examStateDatas + examStateList:examStateDatas, + CityList: [], }, mounted(){ this.paperList = this.updatedPaperList + this.getCityList() }, computed: { updatedPaperList() { return this.paperList.map(paper => { - const match = this.examStateList.find(item => item.dictValue == paper.state); + const match = this.examStateList.find(function (item){ + item.dictValue == paper.state + }); if (match) { - return { ...paper, stateName: match.dictLabel }; + var newPaper = {}; + for (var key in paper) { + newPaper[key] = paper[key]; + } + newPaper.stateName = match.dictLabel; + return newPaper; } else { return paper; } @@ -70,9 +110,57 @@ const minutes = ('0' + date.getMinutes()).slice(-2); const seconds = ('0' + date.getSeconds()).slice(-2); return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; - } + }, + getCityList(){ + $.ajax({ + url: ctx + "system/area/getSysAreaList", + type: 'GET', + data:this.params , + success:((res)=>{ + this.CityList = res.data.filter(obj => obj.id === '36625'); + }) , + }); + }, } }) + // var app = new Vue({ + // el: '#app', + // data: { + // CityList: [], + // AreaList:[], + // params:{ + // parentId:'000', + // }, + // }, + // mounted(){ + // // 初始化地市列表 + // this.getCityList(); + // }, + // methods:{ + // getCityList(){ + // $.ajax({ + // url: ctx + "system/area/getSysAreaList", + // type: 'GET', + // data:this.params , + // success:((res)=>{ + // this.CityList = res.data.filter(obj => obj.id === '36625'); + // }) , + // }); + // }, + // getAreaList(){ + // debugger + // this.params.parentId = this.City + // $.ajax({ + // url: ctx + "system/area/getSysAreaList", + // type: 'GET', + // data:this.params, + // success:((res)=>{ + // this.AreaList = res.data + // }) , + // }); + // } + // } + // })