Commit 50d5f0a4 by liang ce

文案修改

parent 31220c9d
...@@ -60,7 +60,7 @@ export default { ...@@ -60,7 +60,7 @@ export default {
scopedSlots: { customRender: 'productIcon' } scopedSlots: { customRender: 'productIcon' }
}, { }, {
title: '菜名', title: '菜名',
dataIndex: 'productName', dataIndex: 'productName'
}, { }, {
title: '价格(元)', title: '价格(元)',
dataIndex: 'productPrice', dataIndex: 'productPrice',
...@@ -134,7 +134,7 @@ export default { ...@@ -134,7 +134,7 @@ export default {
handleTableChange (pagination, filters, sorter) { handleTableChange (pagination, filters, sorter) {
this.pagination.current = pagination.current this.pagination.current = pagination.current
this.getStatisticalProductPage() this.getStatisticalProductPage()
}, }
} }
} }
</script> </script>
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</div> </div>
</div> </div>
<div class="item"> <div class="item">
<label></label><div>*请上传小于5M、16:9像素的PNG、JPG图片</div> <label></label><div>*请上传小于5M、16:9像素的PNG、JPG横图</div>
</div> </div>
</a-modal> </a-modal>
</div> </div>
......
...@@ -49,8 +49,8 @@ ...@@ -49,8 +49,8 @@
{{ cardNo }} {{ cardNo }}
</span> </span>
<span slot="cardStatus" slot-scope="cardStatus, record"> <span slot="cardStatus" slot-scope="cardStatus, record">
<a-badge v-if="record.cardNo != '' && cardStatus !== 'UNACTIVE'" status="success" text="已绑卡" /> <a-badge v-if="record.cardNo && cardStatus !== 'UNACTIVE'" status="success" text="已绑卡" />
<a-badge v-else-if="record.cardNo != '' && cardStatus === 'UNACTIVE'" status="error" text="已冻结" /> <a-badge v-else-if="record.cardNo && cardStatus === 'UNACTIVE'" status="error" text="已冻结" />
<a-badge v-else status="default" text="未绑卡" /> <a-badge v-else status="default" text="未绑卡" />
</span> </span>
<span slot="status" slot-scope="status"> <span slot="status" slot-scope="status">
...@@ -349,8 +349,7 @@ export default { ...@@ -349,8 +349,7 @@ export default {
this.rechargeData.orderPrice = this.form.getFieldsValue().orderPrice this.rechargeData.orderPrice = this.form.getFieldsValue().orderPrice
this.rechargeData.remark = this.form.getFieldsValue().remark this.rechargeData.remark = this.form.getFieldsValue().remark
this.rechargeData.orgId = localStorage.getItem('orgId') this.rechargeData.orgId = localStorage.getItem('orgId')
let rechargeData = this.$qs.stringify(this.rechargeData) $http.post(`/mingpay/v1/isv/charge/charge`, this.rechargeData).then((res) => {
$http.get(`/mingpay/v1/isv/charge/charge?${rechargeData}`).then((res) => {
if (res.data.resultCode === 0) { if (res.data.resultCode === 0) {
this.form.resetFields() this.form.resetFields()
this.$message.success(res.data.data.message) this.$message.success(res.data.data.message)
......
...@@ -31,7 +31,7 @@ export default { ...@@ -31,7 +31,7 @@ export default {
}, { }, {
title: '操作人', title: '操作人',
dataIndex: 'createBy', dataIndex: 'createBy',
scopedSlots: { customRender: 'createBy' }, scopedSlots: { customRender: 'createBy' }
}, { }, {
title: 'IP地址', title: 'IP地址',
dataIndex: 'remoteAddr' dataIndex: 'remoteAddr'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment