You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
73 lines
1.7 KiB
<template> |
|
<div class="app-container"> |
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="150px"> |
|
<el-form-item label="AppID" > |
|
<el-input v-model="form.wxpay_appId" style="width: 370px;"/> |
|
</el-form-item> |
|
<el-form-item label="商户id" > |
|
<el-input v-model="form.wxpay_mchId" style="width: 370px;" type="password" /> |
|
</el-form-item> |
|
<el-form-item label="商户密钥" > |
|
<el-input v-model="form.wxpay_mchKey" style="width: 370px;" type="password" /> |
|
</el-form-item> |
|
<el-form-item label="" > |
|
<el-button type="primary" @click="doSubmit">提交</el-button> |
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
|
|
</div> |
|
</template> |
|
|
|
<script> |
|
import checkPermission from '@/utils/permission' |
|
import initData from '@/mixins/initData' |
|
import { del, add, get } from '@/api/yxSystemConfig' |
|
import eForm from './form' |
|
import picUpload from '@/components/pic-upload' |
|
import { Message } from 'element-ui' |
|
export default { |
|
components: { eForm, picUpload }, |
|
mixins: [initData], |
|
data() { |
|
return { |
|
delLoading: false, |
|
form: { |
|
wxpay_appId: '', |
|
wxpay_mchId: '', |
|
wxpay_mchKey: '' |
|
}, |
|
rules: { |
|
} |
|
} |
|
}, |
|
created() { |
|
get().then(rese=>{ |
|
let newObj = {} |
|
rese.content.map(function (key,value) { |
|
let keyName = key.menuName; |
|
newObj[keyName] = key.value |
|
}) |
|
|
|
this.form = newObj |
|
}) |
|
}, |
|
methods: { |
|
checkPermission, |
|
doSubmit() { |
|
add(this.form).then(res => { |
|
Message({message: '设置成功',type: 'success'}) |
|
}).catch(err => { |
|
//this.loading = false |
|
console.log(err.response.data.message) |
|
}) |
|
}, |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
|
|
</style>
|
|
|