123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <template>
- <BasicModal
- v-bind="$attrs"
- @register="register"
- :title="fileFlow.title"
- @visible-change="handleVisibleChange"
- @cancel="resetFields"
- @ok="handleConfirm"
- >
- <div class="pt-2px pr-3px zdysrk">
- <BasicForm @register="registerForm">
- <template #text="{ model, field }"> {{ model[field] }}{{ fileFlow.type }} </template>
- </BasicForm>
- </div>
- </BasicModal>
- </template>
- <script lang="ts">
- import { defineComponent, nextTick, onMounted, reactive, computed, h } from 'vue';
- import { BasicModal, useModalInner } from '/@/components/Modal';
- import { BasicForm, FormSchema, useForm } from '/@/components/Form/index';
- import { useMessage } from '/@/hooks/web/useMessage';
- import { InvoiceRegister } from '/@/api/order';
- import { useI18n } from '/@/hooks/web/useI18n';
- import { uploadApi } from '/@/api/product/index';
- import { ResultEnum } from '/@/enums/httpEnum';
- import { DetailsApi, dincrementList, AddUserIncrementApi, AddDownNumApi } from '/@/api/account';
- import dayjs from 'dayjs';
- import { remarkschemas, Addschemas } from "./data";
- import { otherInfoStore } from '/@/store/modules/other';
- const { t } = useI18n();
- export default defineComponent({
- components: { BasicModal, BasicForm },
- props: {
- userData: { type: Object },
- },
- emits: ['update', 'register'],
- setup(props, { emit }) {
- const otherInfo = otherInfoStore();
- const overviewInfo = computed(() => otherInfo.getOverviewInfo);
- // const overviewInfo = getOverviewInfo() || {}
- const fileFlow = reactive({
- file: null,
- id: '',
- type: 'down', //down-下载,equity-权益
- title: '新增下载',
- });
- const { createMessage, createConfirm } = useMessage();
- const schemas: FormSchema[] = [
- ...Addschemas,
- // {
- // field: 'id',
- // component: 'Input',
- // show: false,
- // label: 'id',
- // },
- {
- field: 'count',
- component: 'InputNumber',
- label: '新增次数',
- required: true,
- componentProps: {
- min: 1,
- },
- colProps: {
- span: 22,
- },
- },
- ...remarkschemas,
- ];
- const [registerForm, { validate, resetFields, setFieldsValue, updateSchema }] = useForm({
- labelWidth: 120,
- schemas: schemas,
- showActionButtonGroup: false,
- actionColOptions: {
- span: 24,
- },
- });
- onMounted(() => {});
- let addListFunc = () => {};
- const [register, { closeModal }] = useModalInner((data) => {
- data && onDataReceive(data);
- updateSchema([
- {
- field: 'useType',
- componentProps: {
- onChange: (value) => {
- updateSchema({ field: 'projectNum', ifShow: value == '4' });
- },
- },
- },
- {
- field: 'projectNum',
- ifShow: false,
- },
- ]);
- });
- async function onDataReceive(data) {
- const res = await dincrementList();
- console.log('onDataReceive', data, res);
- resetFields();
- fileFlow.type = data.type;
- fileFlow.id = data.id;
- fileFlow.title = data.type == '1' ? '新增下载(四维深时)' : '新增下载(四维看看)';
- // setFieldsValue(data);
- }
- async function handleConfirm() {
- await validate();
- createConfirm({
- iconType: 'warning',
- title: () => h('span', '温馨提示'),
- content: () => h('span', `确定要新增下载次数吗?`),
- onOk: async () => {
- handleSubmit();
- },
- });
- }
- const handleSubmit = async () => {
- const submitUrl = AddDownNumApi;
- try {
- const params = await validate();
- console.log('validate', params);
- const res = await submitUrl({ userId: fileFlow.id, downType:fileFlow.type, ...params });
- overviewInfo.value.surDownNum = overviewInfo.value.surDownNum + params.count;
- console.log('res', res);
- otherInfo.updateOverviewInfo();
- closeModal();
- resetFields();
- createMessage.success(t('common.optSuccess'));
- emit('update');
- } catch (error) {
- console.log('not passing', error);
- }
- };
- function handleVisibleChange(v) {
- v && props.userData && nextTick(() => onDataReceive(props.userData));
- }
- return {
- register,
- registerForm,
- fileFlow,
- handleVisibleChange,
- handleSubmit,
- addListFunc,
- resetFields,
- handleConfirm,
- t,
- };
- },
- });
- </script>
- <style lang="less">
- .zdysrk {
- .ant-calendar-picker {
- min-width: 285px;
- }
- }
- </style>
|