|
|
@@ -206,7 +206,7 @@ export default {
|
|
|
form: {
|
|
|
billDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00:00", // 对账日期 默认 当天
|
|
|
isApproved: 2,
|
|
|
- isSignfor: 0,
|
|
|
+ isSignfor: 2,
|
|
|
isChecked: 2,
|
|
|
isCleared: 2,
|
|
|
isInvoice: 2,
|
|
|
@@ -247,7 +247,7 @@ export default {
|
|
|
label: "审核",
|
|
|
prop: "isApproved",
|
|
|
type: "select",
|
|
|
- clearable:false,
|
|
|
+ clearable: false,
|
|
|
dicData: [
|
|
|
{
|
|
|
label: "全部",
|
|
|
@@ -291,7 +291,7 @@ export default {
|
|
|
label: "签收",
|
|
|
prop: "isSignfor",
|
|
|
type: "select",
|
|
|
- clearable:false,
|
|
|
+ clearable: false,
|
|
|
dicData: [
|
|
|
{
|
|
|
label: "全部",
|
|
|
@@ -381,7 +381,7 @@ export default {
|
|
|
{
|
|
|
label: "对账",
|
|
|
prop: "isChecked",
|
|
|
- clearable:false,
|
|
|
+ clearable: false,
|
|
|
type: "select",
|
|
|
dicData: [
|
|
|
{
|
|
|
@@ -423,7 +423,7 @@ export default {
|
|
|
{
|
|
|
label: "销账",
|
|
|
prop: "isCleared",
|
|
|
- clearable:false,
|
|
|
+ clearable: false,
|
|
|
type: "select",
|
|
|
dicData: [
|
|
|
{
|
|
|
@@ -475,7 +475,7 @@ export default {
|
|
|
{
|
|
|
label: "发票",
|
|
|
prop: "isInvoice",
|
|
|
- clearable:false,
|
|
|
+ clearable: false,
|
|
|
type: "select",
|
|
|
dicData: [
|
|
|
{
|
|
|
@@ -778,16 +778,8 @@ export default {
|
|
|
}
|
|
|
if (name == "检索") {
|
|
|
this.activeName = "1";
|
|
|
- if (!this.form.corpId && (this.form.businessNo || this.form.hblno || this.form.mblno)) {
|
|
|
- //弹窗检索
|
|
|
- this.otherSearch();
|
|
|
- } else {
|
|
|
- if (!this.form.corpId) {
|
|
|
- return this.$message.error("请选择对账单位");
|
|
|
- }
|
|
|
- //直接检索
|
|
|
- this.$refs.queryData.search(name);
|
|
|
- }
|
|
|
+ //直接检索
|
|
|
+ this.$refs.queryData.search(name);
|
|
|
}
|
|
|
if (name == "重置条件") {
|
|
|
await this.$refs.avueForm.resetForm();
|