|
@@ -123,15 +123,16 @@ const handlePaymentReceipt = () => {
|
|
|
};
|
|
|
|
|
|
const outMonthAndPaper = computed(() => {
|
|
|
- const { invType, isOutMonth, isNormalOpen } = props;
|
|
|
/***
|
|
|
* 不跨月&不是普票专票&不是金税 -> 填写原票信息
|
|
|
*/
|
|
|
- return (
|
|
|
- isOutMonth &&
|
|
|
- (invType === "normal" || invType === "special") &&
|
|
|
- !isNormalOpen
|
|
|
- );
|
|
|
+ // const { invType, isOutMonth, isNormalOpen } = props;
|
|
|
+ // return (
|
|
|
+ // isOutMonth &&
|
|
|
+ // (invType === "normal" || invType === "special") &&
|
|
|
+ // !isNormalOpen
|
|
|
+ // );
|
|
|
+ return false
|
|
|
});
|
|
|
|
|
|
watchEffect(() => {
|
|
@@ -178,7 +179,7 @@ watchEffect(() => {
|
|
|
v-model="formData.return_type"
|
|
|
placeholder="请选择退票方式"
|
|
|
>
|
|
|
- <el-option :disabled="!isJs" value="1" label="金税" />
|
|
|
+ <el-option :disabled="!isJs" value="1" label="金税" disabled />
|
|
|
<el-option value="2" label="线下" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|