doctor-admin-components 1.0.14-beta.43 → 1.0.14-beta.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -246,13 +246,14 @@
|
|
|
246
246
|
</el-form>
|
|
247
247
|
<div slot="footer" class="dialog-footer">
|
|
248
248
|
<el-button @click="cancel">取 消</el-button>
|
|
249
|
-
<el-button type="primary" @click="submitForm">确认上传</el-button>
|
|
249
|
+
<!-- <el-button type="primary" @click="submitForm">确认上传</el-button>
|
|
250
250
|
<el-button
|
|
251
251
|
v-if="type == 'deposit'"
|
|
252
252
|
type="primary"
|
|
253
253
|
@click="uploadAndGenerate"
|
|
254
254
|
>上传并生成收付款</el-button
|
|
255
|
-
>
|
|
255
|
+
> -->
|
|
256
|
+
<el-button type="primary" @click="submitForm">上传并发起审核</el-button>
|
|
256
257
|
</div>
|
|
257
258
|
<el-dialog
|
|
258
259
|
title="系统计算金额和发票金额不一致"
|
|
@@ -385,6 +386,7 @@ export default {
|
|
|
385
386
|
this.$refs["form"].validate((valid) => {
|
|
386
387
|
if (valid) {
|
|
387
388
|
console.log('type', this.type);
|
|
389
|
+
// deposit 定金; finally尾款
|
|
388
390
|
if (this.type == "finally") {
|
|
389
391
|
if(comfirmClickFlag) {
|
|
390
392
|
if(this.form.fixedInvoiceList[0].amount && this.purchaseBalanceMoney && this.form.fixedInvoiceList[0].amount != this.purchaseBalanceMoney) {
|
|
@@ -421,6 +423,7 @@ export default {
|
|
|
421
423
|
},
|
|
422
424
|
/** 展示按钮操作 */
|
|
423
425
|
handleUpload(row, type, shipmentId) {
|
|
426
|
+
// deposit 定金; finally尾款
|
|
424
427
|
console.log('row:', row)
|
|
425
428
|
this.reset();
|
|
426
429
|
this.type = type;
|