|
@@ -141,6 +141,19 @@
|
|
|
type="date"
|
|
type="date"
|
|
|
placeholder="选择日期"
|
|
placeholder="选择日期"
|
|
|
:picker-options="pickerOptionsEnd"
|
|
:picker-options="pickerOptionsEnd"
|
|
|
|
|
+ v-if="payDate"
|
|
|
|
|
+ :disabled="true"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ style="width: 300px"
|
|
|
|
|
+ v-model="form.zbiPayDate"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ placeholder="选择日期"
|
|
|
|
|
+ :picker-options="pickerOptionsEnd"
|
|
|
|
|
+ v-if="!payDate"
|
|
|
>
|
|
>
|
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -460,7 +473,7 @@
|
|
|
<el-input v-model="invoice.ziiTotalAmount" maxlength="16" @input.native="changeRate($event,invoice.ziiTotalAmount,'0')" />
|
|
<el-input v-model="invoice.ziiTotalAmount" maxlength="16" @input.native="changeRate($event,invoice.ziiTotalAmount,'0')" />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<el-form-item label="税价金额:">
|
|
<el-form-item label="税价金额:">
|
|
|
- <el-input v-model="invoice.ziiAmount" maxlength="16" @input.native="changeRates($event,invoice.ziiAmount,'1')"/>
|
|
|
|
|
|
|
+ <el-input v-model="invoice.ziiAmount" maxlength="16" @input.native="changeRate($event,invoice.ziiAmount,'1')"/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
</el-main>
|
|
</el-main>
|
|
@@ -611,6 +624,11 @@ export default {
|
|
|
required: true,
|
|
required: true,
|
|
|
default: () => "",
|
|
default: () => "",
|
|
|
},
|
|
},
|
|
|
|
|
+ payDate: {
|
|
|
|
|
+ type: String,
|
|
|
|
|
+ required: false,
|
|
|
|
|
+ default: () => null,
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -756,6 +774,8 @@ export default {
|
|
|
// debugger;
|
|
// debugger;
|
|
|
const companyId = this.companyId;
|
|
const companyId = this.companyId;
|
|
|
const type = this.companyType;
|
|
const type = this.companyType;
|
|
|
|
|
+ const payDate = this.payDate;
|
|
|
|
|
+ this.form.zbiPayDate = payDate
|
|
|
getOwnCompany()
|
|
getOwnCompany()
|
|
|
.then((response) => {
|
|
.then((response) => {
|
|
|
this.company = response.data;
|
|
this.company = response.data;
|