|
@@ -164,7 +164,7 @@
|
|
</basic-container>
|
|
</basic-container>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
-
|
|
|
|
|
|
+
|
|
<script>
|
|
<script>
|
|
import { optionList, sellOption, capitalOption } from "./js/optionList";
|
|
import { optionList, sellOption, capitalOption } from "./js/optionList";
|
|
import { getList, getCorpsAll, gainUser, getCorpType, getAllgoods } from "@/api/basicData/salesOrder";
|
|
import { getList, getCorpsAll, gainUser, getCorpType, getAllgoods } from "@/api/basicData/salesOrder";
|
|
@@ -285,6 +285,13 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async created() {
|
|
async created() {
|
|
|
|
+ this.getWorkDicts("payment_status").then(res => {
|
|
|
|
+ const arr = res.data.data.map(item => {
|
|
|
|
+ item.dictKey = Number(item.dictKey)
|
|
|
|
+ return item
|
|
|
|
+ })
|
|
|
|
+ this.findObject(this.sellOption.column, "status").dicData = arr
|
|
|
|
+ });
|
|
this.sellOption = await this.getColumnData(
|
|
this.sellOption = await this.getColumnData(
|
|
this.getColumnName(210.1),
|
|
this.getColumnName(210.1),
|
|
sellOption
|
|
sellOption
|
|
@@ -512,7 +519,7 @@ export default {
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
-
|
|
|
|
|
|
+
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.page-crad ::v-deep .basic-container__card {
|
|
.page-crad ::v-deep .basic-container__card {
|
|
height: 94.2vh;
|
|
height: 94.2vh;
|
|
@@ -555,4 +562,3 @@ export default {
|
|
margin-bottom: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
-
|
|
|