|
|
|
@ -621,6 +621,9 @@ import moment from 'moment'; |
|
|
|
import _ from 'lodash'; |
|
|
|
import { Plus } from '@element-plus/icons-vue'; |
|
|
|
import { startsWith } from './utils/util.js' |
|
|
|
import { isNumber } from 'lodash' |
|
|
|
// 筛选地区树 |
|
|
|
const market = ref([]) |
|
|
|
|
|
|
|
// 地区财务专属组件 |
|
|
|
import CurrencySelect from '@/components/MoneyManage/CurrencySelect.vue'; |
|
|
|
@ -646,8 +649,6 @@ const tableData = ref([]); |
|
|
|
const total = ref(0); |
|
|
|
const pageInfo = ref({ pageSize: 10, pageNum: 1 }); |
|
|
|
|
|
|
|
// 筛选地区树 |
|
|
|
const market = ref([]) |
|
|
|
|
|
|
|
// 搜索条件 |
|
|
|
const searchData = ref({}); |
|
|
|
@ -762,6 +763,11 @@ const exportExcel = async function () { |
|
|
|
payCurrencySelect = CurrencyForId(searchData.value.paymentCurrency); |
|
|
|
} |
|
|
|
|
|
|
|
if (searchData.value.jwcode && !isNumber(searchData.value.jwcode)) { |
|
|
|
ElMessage.error('精网号只能是数字') |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
const cashRoleId = '1'; |
|
|
|
const submitterMarket = adminData.value.markets; |
|
|
|
searchData.value.status = 46; |
|
|
|
@ -892,6 +898,11 @@ const getlist = async () => { |
|
|
|
console.log('地区转换', markets.value) |
|
|
|
} |
|
|
|
|
|
|
|
if (searchData.value.jwcode && !isNumber(searchData.value.jwcode)) { |
|
|
|
ElMessage.error('精网号只能是数字') |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
const result = await request({ |
|
|
|
url: '/cashCollection/selectCollection', |
|
|
|
data: { |
|
|
|
|