|
@@ -152,7 +152,7 @@ export default {
|
|
|
},
|
|
|
// 获取云机列表
|
|
|
getTransferPhoneList() {
|
|
|
- this.$axios.$get('resources/v5/time/transfer/getTransferPhoneList', { header: { token: this.token, versionName: '5.7.4' } }).then(res => {
|
|
|
+ this.$axios.$get('resources/v5/time/transfer/getTransferPhoneList', { header: { token: this.token, versionName: '5.9.0' } }).then(res => {
|
|
|
if (res.success) {
|
|
|
this.transferPhoneList = res.data
|
|
|
}
|
|
@@ -168,7 +168,7 @@ export default {
|
|
|
|
|
|
// 获取手续费比例
|
|
|
getFeeRatio() {
|
|
|
- this.$axios.$get('resources/v5/time/transfer/getFeeRatio', { headers: { Authorization: this.token, versionName: '5.7.4' } }).then(res => {
|
|
|
+ this.$axios.$get('resources/v5/time/transfer/getFeeRatio', { headers: { Authorization: this.token, versionName: '5.9.0' } }).then(res => {
|
|
|
if (res.success) {
|
|
|
res.data.transferMinDay = res.data.transferMinDay * 24 * 60
|
|
|
this.countObj = res.data
|
|
@@ -181,14 +181,14 @@ export default {
|
|
|
// 确定提交
|
|
|
async confirm() {
|
|
|
// 获取服务器时间
|
|
|
- let requestTime = await this.$axios.$get('pay/v1/order/getSystemTime', { headers: { Authorization: this.token, versionName: '5.7.4' } })
|
|
|
+ let requestTime = await this.$axios.$get('pay/v1/order/getSystemTime', { headers: { Authorization: this.token, versionName: '5.9.0' } })
|
|
|
|
|
|
requestTime = new Date(requestTime.data * 1000).$formatTime()
|
|
|
const requestTimeSign = sha256("Register_SZX_2023:" + requestTime)
|
|
|
this.$axios.$post('resources/v5/time/transfer/transferDurationOperation', {
|
|
|
...this.params,
|
|
|
requestTime
|
|
|
- }, { headers: { Authorization: this.token, versionName: '5.7.4', requestTimeSign } }).then(res => {
|
|
|
+ }, { headers: { Authorization: this.token, versionName: '5.9.0', requestTimeSign } }).then(res => {
|
|
|
if (res.success) {
|
|
|
this.init()
|
|
|
Toast.success(res.msg)
|
|
@@ -240,7 +240,7 @@ export default {
|
|
|
this.$axios.$get('/public/v4/agreement/content', {
|
|
|
params: {
|
|
|
agreementCoding: 'YJSBSJZY2024'
|
|
|
- }, headers: { Authorization: this.token, versionName: '5.7.4' }
|
|
|
+ }, headers: { Authorization: this.token, versionName: '5.9.0' }
|
|
|
}).then(res => {
|
|
|
const html = res.data.content;
|
|
|
const rx = /<body[^>]*>([\s\S]+?)<\/body>/i;
|