Skip to content

Commit 024dfc5

Browse files
YunaiVgitee-org
authored andcommitted
!292 refactor: Date ==> LocalDateTime && fix vue2 bugs
Merge pull request !292 from xingyu/dev
2 parents e4fc1c5 + db931b6 commit 024dfc5

File tree

4 files changed

+1585
-1622
lines changed

4 files changed

+1585
-1622
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"url": "https://github.com/YunaiV/ruoyi-vue-pro"
4141
},
4242
"dependencies": {
43-
"@babel/parser": "7.7.4",
43+
"@babel/parser": "7.18.4",
4444
"@riophae/vue-treeselect": "0.4.0",
4545
"axios": "0.27.2",
4646
"bpmn-js-token-simulation": "0.10.0",
@@ -87,18 +87,18 @@
8787
"eslint-plugin-prettier": "^3.1.0",
8888
"eslint-plugin-vue": "9.0.0",
8989
"fs-extra": "^8.1.0",
90-
"lint-staged": "10.5.3",
90+
"lint-staged": "12.5.0",
9191
"runjs": "4.4.2",
92-
"sass": "1.56.0",
93-
"sass-loader": "13.1.0",
92+
"sass": "1.3.0",
93+
"sass-loader": "10.2.0",
9494
"script-ext-html-webpack-plugin": "2.1.5",
9595
"svg-sprite-loader": "5.1.1",
9696
"terser-webpack-plugin": "^4.2.3",
9797
"webpack-bundle-analyzer": "^3.9.0"
9898
},
9999
"engines": {
100-
"node": ">=8.9",
101-
"npm": ">= 3.0.0"
100+
"node": ">= 10.13.0",
101+
"npm": ">= 5.0.0"
102102
},
103103
"browserslist": [
104104
"> 1%",

src/components/Verifition/Verify/VerifySlide.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export default {
276276
const _this = this
277277
// 判断是否重合
278278
if (this.status && this.isEnd === false) {
279-
const moveLeftDistance = parseInt((this.moveBlockLeft || '').replace('px', ''))
279+
let moveLeftDistance = parseInt((this.moveBlockLeft || '').replace('px', ''))
280280
moveLeftDistance = moveLeftDistance * 310 / parseInt(this.setSize.imgWidth)
281281
const data = {
282282
captchaType: this.captchaType,

src/views/pay/refund/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
</template>
112112
</el-table-column>
113113
<el-table-column label="退款金额(元)" align="center" prop="refundAmount" width="100">
114-
<template scope="scope">
114+
<template v-slot="scope">
115115
¥{{ parseFloat(scope.row.refundAmount / 100).toFixed(2) }}
116116
</template>
117117
</el-table-column>

0 commit comments

Comments
 (0)