123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <template>
- <div class="pageIndexClass">
- <div class="content">
- <byTable :source="sourceList.data" :pagination="sourceList.pagination" :selectConfig="selectConfig" :config="config" :loading="loading"
- highlight-current-row :action-list="[
- {
- text: '添加',
- action: () => openModal('add'),
- },
- ]" @get-list="getList">
- <template #code="{item}">
- <div style="width:100%">
- <span class="el-click" @click="getDtl(item)">{{item.code}}</span>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog :title="modalType == 'add' ? '归还' : '编辑'" v-if="dialogVisible" v-model="dialogVisible" width="500">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit" v-loading="loadingDialog">
- </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="default">取 消</el-button>
- <el-button type="primary" @click="submitForm()" size="default">确 定</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { computed, ref } from "vue";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import useUserStore from "@/store/modules/user";
- import moment from "moment";
- // import $bus from "@/bus/index.js";
- import useRefreshTableData from "@/hooks/refreshTableData";
- const { proxy } = getCurrentInstance();
- const sealType = computed(() => proxy.useUserStore().allDict["seal_type"]);
- const sealCategory = computed(
- () => proxy.useUserStore().allDict["seal_category"]
- );
- const sealIsContract = computed(
- () => proxy.useUserStore().allDict["seal_is_contract"]
- );
- const userList = ref([]);
- const deptData = ref([]);
- const typeData = ref([
- {
- label: "收入",
- value: "10",
- },
- {
- label: "支出",
- value: "20",
- },
- ]);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- keyword: "",
- },
- });
- const loading = ref(false);
- const statusData = ref([
- {
- label: "草稿",
- value: 0,
- },
- {
- label: "审批中",
- value: 10,
- },
- {
- label: "审批驳回",
- value: 20,
- },
- {
- label: "审批通过",
- value: 30,
- },
- {
- label: "作废",
- value: 88,
- },
- ]);
- const isReturnedData = ref([
- {
- label: "是",
- value: 1,
- },
- {
- label: "否",
- value: 0,
- },
- ]);
- const useMethodData = ref([
- {
- dictValue: "借章",
- dictKey: "1",
- },
- {
- dictValue: "盖章",
- dictKey: "2",
- },
- ]);
- const selectConfig = computed(() => {
- return [
- {
- label: "审批状态",
- prop: "status",
- data: statusData.value,
- },
- // {
- // label: "是否归还",
- // prop: "isReturned",
- // data: isReturnedData.value,
- // },
- // {
- // label: "使用方式",
- // prop: "useMethod",
- // data: useMethodData.value,
- // },
- // {
- // label: "印章类型",
- // prop: "sealType",
- // data: sealType.value,
- // },
- // {
- // label: "盖章类别",
- // prop: "stampedType",
- // data: sealCategory.value,
- // },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "流水号",
- slot: "code",
- width: 130,
- fixed: "left",
- },
- },
- {
- attrs: {
- label: "提交人",
- prop: "createUserName",
- width: 130,
- },
- },
- {
- attrs: {
- label: "提交日期",
- prop: "applyTime",
- width: 100,
- },
- },
- {
- attrs: {
- label: "发票金额",
- prop: "amount",
- width: 130,
- },
- render(val) {
- return proxy.moneyFormat(val, 2);
- },
- },
- {
- attrs: {
- label: "摘要",
- prop: "remark",
- },
- },
- {
- attrs: {
- label: "审批状态",
- prop: "status",
- width: 100,
- fixed: "right",
- },
- render(type) {
- return proxy.dictValueLabel(type, statusData.value);
- },
- },
- {
- attrs: {
- label: "操作",
- width: "120",
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return row.createUser == proxy.useUserStore().user.userId
- ? [
- row.status == 0
- ? {
- attrs: {
- label: "修改",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickUpdate(row);
- },
- }
- : {},
- row.status == 0
- ? {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- proxy
- .msgConfirm()
- .then((res) => {
- proxy
- .post("/personalInvoice/delete", {
- id: row.id,
- })
- .then((res) => {
- proxy.msgTip("操作成功", 1);
- getList();
- });
- })
- .catch((err) => {});
- },
- }
- : {},
- row.status == 10 || row.status == 30
- ? {
- attrs: {
- label: "作废",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- proxy
- .msgConfirm()
- .then((res) => {
- proxy
- .post("/personalInvoice/cancellation", {
- id: row.id,
- })
- .then((res) => {
- proxy.msgTip("操作成功", 1);
- getList();
- });
- })
- .catch((err) => {});
- },
- }
- : {},
- ]
- : [];
- },
- },
- ];
- });
- const corporationList = ref([]);
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post("/personalInvoice/page", sourceList.value.pagination)
- .then((res) => {
- sourceList.value.data = res.rows;
- sourceList.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getList();
- const getDeptData = (val) => {
- proxy
- .get("/tenantUser/list", {
- pageNum: 1,
- pageSize: 10000,
- tenantId: proxy.useUserStore().user.tenantId,
- companyId: proxy.useUserStore().user.companyId,
- })
- .then((res) => {
- userList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.nickName,
- value: item.userId,
- };
- });
- });
- proxy
- .get("/tenantDept/list", {
- pageNum: 1,
- pageSize: 9999,
- keyword: "",
- ancestors: proxy.useUserStore().user.companyId,
- tenantId: proxy.useUserStore().user.tenantId,
- // type: 2,
- })
- .then((res) => {
- deptData.value = proxy.handleTree(res.data, "deptId");
- });
- };
- getDeptData();
- const modalType = ref("add");
- const dialogVisible = ref(false);
- const loadingDialog = ref(false);
- const submit = ref(null);
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const formConfig = computed(() => {
- return [
- {
- type: "date",
- prop: "realityReturnedTime",
- itemType: "date",
- label: "归还日期",
- itemWidth: 100,
- disabled: false,
- },
- ];
- });
- const rules = ref({
- realityReturnedTime: [
- { required: true, message: "请选择归还日期", trigger: "change" },
- ],
- });
- const formData = reactive({
- data: {
- accountRemainderList: [{ currency: "", remainder: undefined }],
- },
- });
- const openModal = (val) => {
- // modalType.value = val;
- // formData.data = {
- // accountRemainderList: [{ currency: "", remainder: undefined }],
- // };
- // loadingDialog.value = false;
- // dialogVisible.value = true;
- proxy.$router.replace({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "personal_invoice_flow",
- flowName: "个人电子发票提交发起流程",
- random: proxy.random(),
- },
- });
- };
- const clickBalance = () => {
- if (
- formData.data.accountRemainderList &&
- formData.data.accountRemainderList.length > 0
- ) {
- formData.data.accountRemainderList.push({
- currency: "",
- remainder: undefined,
- });
- } else {
- formData.data.accountRemainderList = [
- { currency: "", remainder: undefined },
- ];
- }
- };
- const handleRemove = (index) => {
- formData.data.accountRemainderList.splice(index, 1);
- };
- const isRepeat = (arr) => {
- var hash = {};
- for (var i in arr) {
- if (hash[arr[i].currency]) return true;
- hash[arr[i].currency] = true;
- }
- return false;
- };
- const submitForm = () => {
- submit.value.handleSubmit(() => {
- loadingDialog.value = true;
- proxy.post("/personalInvoice/returned", formData.data).then(
- () => {
- proxy.msgTip("操作成功", 1);
- dialogVisible.value = false;
- loadingDialog.value = false;
- getList();
- },
- (err) => {
- console.log(err);
- loadingDialog.value = false;
- }
- );
- // if (
- // formData.data.accountRemainderList &&
- // formData.data.accountRemainderList.length > 0
- // ) {
- // if (isRepeat(formData.data.accountRemainderList)) {
- // return ElMessage("请勿重复添加货币余额");
- // } else {
- // loadingDialog.value = true;
- // proxy.post("/accountManagement/" + modalType.value, formData.data).then(
- // () => {
- // ElMessage({
- // message: modalType.value == "add" ? "添加成功" : "编辑成功",
- // type: "success",
- // });
- // dialogVisible.value = false;
- // getList();
- // },
- // (err) => {
- // console.log(err);
- // loadingDialog.value = false;
- // }
- // );
- // }
- // } else {
- // return ElMessage("请添加至少一条类型余额");
- // }
- });
- };
- const update = (row) => {
- loadingDialog.value = false;
- modalType.value = "edit";
- formData.data = proxy.deepClone(row);
- dialogVisible.value = true;
- };
- const clickUpdate = (row) => {
- proxy.$router.push({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "personal_invoice_flow",
- flowName: "个人电子发票提交发起流程",
- random: proxy.random(),
- businessId: row.id,
- },
- });
- };
- const getDtl = (row) => {
- proxy.$router.push({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "personal_invoice_flow",
- flowName: "个人电子发票提交流程查看",
- random: proxy.random(),
- businessId: row.id,
- processType: 20,
- },
- });
- };
- const handleReturn = (row) => {
- modalType.value = "add";
- formData.data = {
- id: row.id,
- realityReturnedTime: moment().format("YYYY-HH-MM"),
- };
- dialogVisible.value = true;
- };
- useRefreshTableData(getList);
- </script>
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- </style>
|