|
@@ -0,0 +1,196 @@
|
|
|
+<template>
|
|
|
+ <el-dialog :visible.sync="merchantDividendsModalVisible" v-bind="dialogConfig">
|
|
|
+ <el-form ref="formRef" :rules="merchantDividendsRules" :model="merchantDividendsForm" label-width="120px">
|
|
|
+ <el-form-item label="商家" prop="shopId">
|
|
|
+ <!-- 可搜索 -->
|
|
|
+ <el-select
|
|
|
+ :disabled="!!merchantDividendsForm.id"
|
|
|
+ filterable
|
|
|
+ remote
|
|
|
+ reserve-keyword
|
|
|
+ style="width: 100%"
|
|
|
+ :remote-method="handleSearchMerchant"
|
|
|
+ :loading="searchMerchantLoading"
|
|
|
+ v-model="merchantDividendsForm.shopId"
|
|
|
+ placeholder="请选择商家"
|
|
|
+ value-key="shopId"
|
|
|
+ >
|
|
|
+ <el-option v-for="item in merchantList" :key="item.shopId" :label="item.shopName" :value="item.shopId" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="利润分红比例" prop="profitRate">
|
|
|
+ <el-input v-model="merchantDividendsForm.profitRate" placeholder="请输入利润分红比例" />
|
|
|
+ <div class="tip">范围0-1,精确到小数点后2位, 多于两位默认会保留2位</div>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="赠送总份额" prop="totalQuota">
|
|
|
+ <el-input v-model="merchantDividendsForm.totalQuota" placeholder="请输入赠送总份额" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="年度运营目标" prop="targetAmount">
|
|
|
+ <el-input v-model="merchantDividendsForm.targetAmount" placeholder="请输入年度运营目标" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="分红平衡点" prop="balancePoint">
|
|
|
+ <el-input v-model="merchantDividendsForm.balancePoint" placeholder="请输入分红平衡点" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="close">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="handleConfirm" :loading="isLoading">确认{{ merchantDividendsForm.id ? '编辑' : '创建' }}</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { postShopDividendSettingsApi, patchShopDividendSettingsByIdApi } from '@/api/rm-bank'
|
|
|
+import { businessListGetAll } from '@/api/business'
|
|
|
+
|
|
|
+
|
|
|
+const validateNumber = (label) => {
|
|
|
+ return (_, value, cb) => {
|
|
|
+ const num = value * 1
|
|
|
+ if (typeof num !== 'number' || Number.isNaN(num)) {
|
|
|
+ cb(new Error(`${label}必须是一个数字`))
|
|
|
+ }
|
|
|
+ if (num < 0) {
|
|
|
+ cb(new Error(`${label}必须大于等于零`))
|
|
|
+ }
|
|
|
+ cb()
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ searchMerchantLoading: false,
|
|
|
+ isLoading: false,
|
|
|
+ merchantDividendsModalVisible: false,
|
|
|
+ merchantList: [],
|
|
|
+ merchantDividendsForm: {
|
|
|
+ id: undefined,
|
|
|
+ shopId: 498, // 商家ID
|
|
|
+ profitRate: 0.4, // 利润分红比例, 必须是一个数字 范围0-1,精确到小数点后2位
|
|
|
+ totalQuota: 1000, // 赠送总份额, 必须是一个数字
|
|
|
+ targetAmount: 2000000, // 年度运营目标, 必须是一个数字
|
|
|
+ balancePoint: 1500000 // 分红平衡点, 必须是一个数字
|
|
|
+ },
|
|
|
+ merchantDividendsRules: {
|
|
|
+ shopId: [{ required: true, message: '请选择商家', trigger: 'change' }],
|
|
|
+ profitRate: [
|
|
|
+ { required: true, message: '请输入利润分红比例', trigger: 'blur' },
|
|
|
+ { validator: validateNumber('利润分红比例'), trigger: 'blur' },
|
|
|
+ {
|
|
|
+ validator: (_, value, cb) => {
|
|
|
+ if (value < 0 || value > 1) {
|
|
|
+ cb(new Error('利润分红比例必须在0-1之间'))
|
|
|
+ } else {
|
|
|
+ cb()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ totalQuota: [
|
|
|
+ { required: true, message: '请输入赠送总份额', trigger: 'blur' },
|
|
|
+ { validator: validateNumber('赠送总份额'), trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ targetAmount: [
|
|
|
+ { required: true, message: '请输入年度运营目标', trigger: 'blur' },
|
|
|
+ { validator: validateNumber('年度运营目标'), trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ balancePoint: [
|
|
|
+ { required: true, message: '请输入分红平衡点', trigger: 'blur' },
|
|
|
+ { validator: validateNumber('分红平衡点'), trigger: 'blur' }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ dialogConfig: { title: '创建商家分红', width: '30%', 'close-on-click-modal': false }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ // 获取商家列表
|
|
|
+ this.getMerchantList()
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ show(row) {
|
|
|
+ this.resetDialog()
|
|
|
+ if (row) {
|
|
|
+ // 编辑
|
|
|
+ this.dialogConfig.title = '编辑商家分红'
|
|
|
+ this.merchantDividendsForm = Object.assign(this.merchantDividendsForm, row)
|
|
|
+ }
|
|
|
+ this.merchantDividendsModalVisible = true
|
|
|
+ },
|
|
|
+
|
|
|
+ close() {
|
|
|
+ this.merchantDividendsModalVisible = false
|
|
|
+ },
|
|
|
+
|
|
|
+ // 获取商家列表
|
|
|
+ async getMerchantList() {
|
|
|
+ const res = await businessListGetAll({
|
|
|
+ page: 1,
|
|
|
+ pageSize: 100,
|
|
|
+ shopType: 2,
|
|
|
+ shopName: ''
|
|
|
+ })
|
|
|
+ this.merchantList = res.data.list
|
|
|
+ },
|
|
|
+
|
|
|
+ // 点击编辑
|
|
|
+ handleConfirm() {
|
|
|
+ try {
|
|
|
+ this.isLoading = true
|
|
|
+ this.$refs.formRef.validate(async (valid) => {
|
|
|
+ if (valid) {
|
|
|
+ // 将数据转换成数字类型
|
|
|
+ const submitData = JSON.parse(JSON.stringify(this.merchantDividendsForm))
|
|
|
+ const api = submitData.id ? patchShopDividendSettingsByIdApi : postShopDividendSettingsApi
|
|
|
+ submitData.profitRate = submitData.profitRate * 1
|
|
|
+ submitData.totalQuota = submitData.totalQuota * 1
|
|
|
+ submitData.targetAmount = submitData.targetAmount * 1
|
|
|
+ submitData.balancePoint = submitData.balancePoint * 1
|
|
|
+ const res = await api({ shopDividendSettings: { ...submitData } })
|
|
|
+ if (res.code === '200') {
|
|
|
+ this.$message.success(submitData ? '编辑成功' : '创建成功')
|
|
|
+ this.$emit('refresh')
|
|
|
+ this.close()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (error) {
|
|
|
+ } finally {
|
|
|
+ this.isLoading = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // 重置
|
|
|
+ resetDialog() {
|
|
|
+ this.merchantDividendsForm = { id: undefined, shopId: undefined, profitRate: undefined, totalQuota: undefined, targetAmount: undefined, balancePoint: undefined }
|
|
|
+ },
|
|
|
+
|
|
|
+ // 搜索商家
|
|
|
+ async handleSearchMerchant(query) {
|
|
|
+ if (query) {
|
|
|
+ this.searchMerchantLoading = true
|
|
|
+ const res = await businessListGetAll({
|
|
|
+ page: 1,
|
|
|
+ pageSize: 100,
|
|
|
+ shopType: 2,
|
|
|
+ shopName: query
|
|
|
+ })
|
|
|
+ this.merchantList = res.data.list
|
|
|
+ this.searchMerchantLoading = false
|
|
|
+ } else {
|
|
|
+ this.merchantList = []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.tip {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999;
|
|
|
+}
|
|
|
+</style>
|