|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!-- 交收登记-->
|
|
|
|
|
|
|
+ <!-- 点价登记-->
|
|
|
<a-modal class="custom-detail add-custom "
|
|
<a-modal class="custom-detail add-custom "
|
|
|
- :title="selectedRow.contracttype===1? '采购合同-交收登记': '销售合同-交收登记'"
|
|
|
|
|
|
|
+ :title="selectedRow.contracttype===1? '采购合同-点价登记': '销售合同-点价登记'"
|
|
|
v-model:visible="visible"
|
|
v-model:visible="visible"
|
|
|
@cancel="cancel"
|
|
@cancel="cancel"
|
|
|
width="890px">
|
|
width="890px">
|
|
@@ -13,7 +13,7 @@
|
|
|
<a-button key="submit"
|
|
<a-button key="submit"
|
|
|
type="primary"
|
|
type="primary"
|
|
|
:loading="loading"
|
|
:loading="loading"
|
|
|
- @click="submit">交收登记
|
|
|
|
|
|
|
+ @click="submit">点价登记
|
|
|
</a-button>
|
|
</a-button>
|
|
|
</template>
|
|
</template>
|
|
|
<fieldset class="formFieldSet">
|
|
<fieldset class="formFieldSet">
|
|
@@ -138,7 +138,7 @@ import { operationContractReq } from '@/services/proto/contract';
|
|
|
import { message } from 'ant-design-vue';
|
|
import { message } from 'ant-design-vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
- name: 'purchase_pending_settlement',
|
|
|
|
|
|
|
+ name: 'purchase_pending_someprice',
|
|
|
components: {},
|
|
components: {},
|
|
|
props: {
|
|
props: {
|
|
|
selectedRow: {
|
|
selectedRow: {
|
|
@@ -147,7 +147,7 @@ export default defineComponent({
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
setup(props) {
|
|
setup(props) {
|
|
|
- const {visible, cancel} = closeModal('purchase_pending_settlement');
|
|
|
|
|
|
|
+ const {visible, cancel} = closeModal('purchase_pending_someprice');
|
|
|
const loading = ref<boolean>(false);
|
|
const loading = ref<boolean>(false);
|
|
|
function objectToUint8Array(data: object) {
|
|
function objectToUint8Array(data: object) {
|
|
|
const encode = encodeURI(JSON.stringify(data));// 对字符串进行编码
|
|
const encode = encodeURI(JSON.stringify(data));// 对字符串进行编码
|