Commit 50d5f0a4 by liang ce

文案修改

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